:root {
  --bg: #07111f;
  --bg-2: #0b1628;
  --card: #172033;
  --card-2: #111b2d;
  --line: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --soft: rgba(255, 255, 255, 0.56);
  --green: #00c875;
  --green-2: #7cff00;
  --orange: #ff7a2f;
  --blue: #071a3d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(0, 200, 117, 0.12), transparent 32rem),
    radial-gradient(circle at top right, rgba(255, 122, 47, 0.12), transparent 28rem),
    var(--bg);
  color: var(--text);
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  overflow: hidden;
}

.section-padding {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 0;
  background: rgba(7, 17, 31, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 178px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.brand img {
  width: 100%;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  padding: 12px 14px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links .nav-cta {
  color: #04120d;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 12px 30px rgba(0, 200, 117, 0.25);
}

.nav-links .nav-cta:hover {
  color: #04120d;
  background: linear-gradient(135deg, var(--green-2), var(--green));
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 52px;
  min-height: calc(100vh - 92px);
  padding-top: 72px;
  padding-bottom: 86px;
}

.hero-bg {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  pointer-events: none;
}

.hero-bg-one {
  top: 10%;
  left: -12%;
  width: 280px;
  height: 280px;
  background: rgba(0, 200, 117, 0.16);
}

.hero-bg-two {
  right: -14%;
  bottom: 10%;
  width: 340px;
  height: 340px;
  background: rgba(255, 122, 47, 0.13);
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 2;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-bottom: 18px;
  color: var(--green-2);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orange-kicker {
  color: var(--orange);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7.2vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

.hero-cta-stack {
  margin-bottom: 28px;
}

.primary-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #04120d;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(0, 200, 117, 0.28);
  transition: 0.2s ease;
}

.primary-hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(0, 200, 117, 0.34);
}

.hero-cta-caption {
  margin: 12px 0 0;
  color: var(--soft);
  font-size: 14px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 230px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  transition: 0.2s ease;
}

.store-button:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 255, 0, 0.45);
  background: rgba(0, 200, 117, 0.14);
}

.store-button strong {
  display: block;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.1;
}

.store-button small {
  display: block;
  margin-top: 4px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
}

.store-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--green);
  color: #03130d;
  font-size: 26px;
  font-weight: 900;
}

.play-icon {
  font-size: 17px;
}

.hero-visual {
  min-height: 610px;
}

.phone-frame {
  position: absolute;
  right: 0;
  top: 28px;
  width: min(360px, 88vw);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}

.phone-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 98px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 0 0 16px 16px;
  background: #040b15;
  z-index: 2;
}

.phone-screen {
  min-height: 560px;
  padding: 60px 20px 22px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top, rgba(0, 200, 117, 0.18), transparent 14rem),
    #07111f;
  overflow: hidden;
}

.app-top-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 34px;
  border-radius: 999px;
  background: var(--green);
  font-size: 30px;
}

.phone-screen h3 {
  margin-bottom: 8px;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.phone-screen p {
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.5;
}

.app-button {
  margin-bottom: 20px;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--green);
  color: #04120d;
  text-align: center;
  font-weight: 900;
}

.mini-card {
  margin-bottom: 14px;
  padding: 17px;
  border-radius: 22px;
  background: #172033;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.mini-card strong,
.mini-card span {
  display: block;
}

.mini-card strong {
  margin-bottom: 6px;
}

.mini-card span {
  color: var(--soft);
  font-size: 13px;
}

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 13px;
}

.mini-tags small {
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-weight: 800;
}

.mini-card.muted {
  opacity: 0.62;
}

.floating-card {
  position: absolute;
  left: 0;
  bottom: 44px;
  z-index: 5;
  width: min(360px, 86vw);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: rgba(23, 32, 51, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.match-card-top,
.panel-header,
.panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.live-pill {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(0, 200, 117, 0.15);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.match-price {
  color: var(--green-2);
  font-size: 20px;
  font-weight: 900;
}

.match-card h2 {
  margin: 18px 0 8px;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.match-card p,
.preview-match-card p {
  color: var(--soft);
}

.match-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.match-tags span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.match-progress {
  height: 9px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.match-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--green-2));
}

.section {
  padding-top: 86px;
  padding-bottom: 86px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading-left {
  max-width: 760px;
  margin: 0 0 34px;
  text-align: left;
}

.section-heading h2,
.split-content h2,
.final-cta h2,
.why-heading h2,
.how-heading h2,
.availability-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 5.3vw, 62px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.section-heading p,
.split-content p,
.provider-panel p,
.final-cta p,
.why-heading p,
.how-heading p,
.availability-heading p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.why-heading h2,
.how-heading h2,
.availability-heading h2 {
  text-transform: uppercase;
  letter-spacing: -0.05em;
}

.why-heading h2 span,
.availability-heading h2 span {
  color: var(--green);
}

.compact-heading {
  margin-bottom: 28px;
}

.how-section {
  padding-top: 18px;
}

.enhanced-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.enhanced-step-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(26, 56, 99, 0.88), rgba(24, 47, 80, 0.94));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}

.enhanced-step-card::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--green-2));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.enhanced-step-card:hover::after {
  opacity: 1;
}

.step-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 34px;
}

.step-icon-badge {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 200, 117, 0.22), rgba(124, 255, 0, 0.12));
  color: var(--green-2);
  box-shadow: 0 14px 30px rgba(0, 200, 117, 0.16);
}

.step-icon-badge svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-big-number {
  color: rgba(255, 255, 255, 0.14);
  font-size: 72px;
  line-height: 0.9;
  font-weight: 900;
}

.enhanced-step-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.enhanced-step-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.why-section {
  padding-top: 26px;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card-pro,
.highlight-panel,
.screen-card,
.preview-match-card,
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}

.feature-card-pro {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(18, 42, 77, 0.95), rgba(23, 32, 51, 0.95));
}

.feature-card-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 200, 117, 0.2), rgba(124, 255, 0, 0.1));
  color: var(--green-2);
  box-shadow: inset 0 0 0 1px rgba(124, 255, 0, 0.24), 0 12px 28px rgba(0, 200, 117, 0.12);
}

.feature-card-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card-icon svg.feature-fill {
  fill: currentColor;
  stroke: none;
}

.feature-card-icon svg.feature-fill-bell {
  fill: currentColor;
  stroke: none;
}

.feature-card-icon svg.feature-fill-bell .bell-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card-icon svg.feature-fill-people {
  fill: currentColor;
  stroke: none;
}

.feature-card-pro h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.feature-card-pro p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.availability-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.9fr);
  align-items: start;
  gap: 28px;
  padding-top: 34px;
}

.availability-heading {
  max-width: 640px;
}

.availability-card-wrap {
  display: flex;
  justify-content: center;
}

.city-availability-card {
  width: 100%;
  max-width: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
}

.city-card-image-wrap {
  position: relative;
  min-height: 290px;
  background: linear-gradient(135deg, #0d3d18, #021d0c);
}

.city-card-image-wrap img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.city-status-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #29e83e;
  color: #03210f;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.city-image-badge {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  font-size: 32px;
}

.city-card-content {
  padding: 24px 22px 26px;
}

.city-card-content h3 {
  margin-bottom: 8px;
  color: #11233e;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.city-card-content p {
  margin-bottom: 0;
  color: #7a8798;
  font-size: 17px;
  line-height: 1.5;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  align-items: center;
  gap: 44px;
}

.split-section.reverse {
  grid-template-columns: 0.86fr 1fr;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.feature-list div {
  display: flex;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.feature-list strong {
  color: var(--text);
}

.feature-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(0, 200, 117, 0.16);
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.feature-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon svg.feature-fill {
  fill: currentColor;
  stroke: none;
}

.two-column-list {
  grid-template-columns: 1fr 1fr;
}

.highlight-panel {
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(0, 200, 117, 0.2), transparent 16rem),
    rgba(23, 32, 51, 0.74);
}

.panel-header {
  margin-bottom: 22px;
}

.panel-header span {
  color: var(--soft);
  font-weight: 800;
}

.panel-header strong {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(0, 200, 117, 0.15);
  color: var(--green);
  font-size: 13px;
}

.panel-match {
  padding: 22px;
  border-radius: 24px;
  background: rgba(7, 17, 31, 0.82);
}

.panel-match h3,
.provider-panel h3 {
  margin-bottom: 8px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.panel-match p {
  color: var(--soft);
}

.panel-row {
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-row span {
  color: var(--soft);
}

.green-text {
  color: var(--green);
}

.provider-panel {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.outline-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.2s ease;
}

.outline-button {
  margin-top: 16px;
  border: 1px solid rgba(124, 255, 0, 0.45);
  color: var(--green-2);
  background: rgba(0, 200, 117, 0.08);
}

.outline-button:hover,
.primary-button:hover {
  transform: translateY(-2px);
}

.app-section {
  position: relative;
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
}

.screen-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(23, 32, 51, 0.72);
}

.screen-card img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  object-position: center;
  padding: 10px 10px 0;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.featured-screen img {
  height: 520px;
}

.screen-card div {
  flex: 1;
  padding: 22px;
}

.screen-card h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.screen-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.preview-list {
  display: grid;
  gap: 14px;
}

.preview-match-card {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(23, 32, 51, 0.8);
}

.preview-date {
  display: grid;
  place-items: center;
  min-height: 84px;
  border-radius: 20px;
  background: rgba(0, 200, 117, 0.14);
  color: var(--green);
  font-weight: 900;
}

.preview-match-card h3 {
  margin-bottom: 7px;
  font-size: 22px;
}

.preview-match-card p {
  margin-bottom: 0;
}

.preview-match-card > strong {
  color: var(--green);
  white-space: nowrap;
}

.faq-list {
  display: grid;
  max-width: 860px;
  margin: 0 auto;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border-radius: 20px;
  background: rgba(23, 32, 51, 0.72);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.faq-question span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(0, 200, 117, 0.14);
  color: var(--green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-item.is-open .faq-answer {
  max-height: 260px;
}

.faq-item.is-open .faq-question span {
  transform: none;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: 20px;
  margin-bottom: 46px;
  padding-top: 46px;
  padding-bottom: 46px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(0, 200, 117, 0.18), rgba(255, 122, 47, 0.1)),
    rgba(255, 255, 255, 0.05);
}

.final-cta h2 {
  max-width: 640px;
}

.final-cta p {
  max-width: 690px;
  margin-bottom: 0;
}

.site-footer {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 180px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
}

.footer-brand p,
.copyright {
  color: var(--soft);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.09);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--green);
  transition: 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(0, 200, 117, 0.14);
  color: var(--green-2);
}

.footer-social svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.copyright {
  margin: 0;
  font-size: 14px;
}

.invite-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(12px);
}

.invite-modal[hidden] {
  display: none;
}

.invite-card {
  position: relative;
  width: min(460px, 100%);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: #172033;
  box-shadow: var(--shadow);
  text-align: center;
}

.invite-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

.invite-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: var(--green);
  font-size: 34px;
}

.invite-card h2 {
  margin-bottom: 10px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.invite-card p {
  color: var(--muted);
  line-height: 1.65;
}

.invite-code {
  display: none;
  margin: 18px 0;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--green-2);
  font-weight: 900;
  word-break: break-all;
}

.invite-code:not(:empty) {
  display: block;
}

.primary-button {
  width: 100%;
  margin-top: 6px;
  background: var(--green);
  color: #04120d;
}

.legal-page {
  min-height: 100vh;
  padding: 42px 0;
}

.legal-container {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(23, 32, 51, 0.76);
}

.legal-container img {
  width: 190px;
  margin-bottom: 28px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
}

.legal-container h1 {
  font-size: clamp(34px, 6vw, 54px);
}

.legal-container h2 {
  margin-top: 30px;
}

.legal-container p,
.legal-container li {
  color: var(--muted);
  line-height: 1.7;
}

.legal-container a {
  color: var(--green-2);
  font-weight: 800;
}


.legal-container ul {
  margin: 12px 0 18px;
  padding-left: 22px;
}

.legal-container li + li {
  margin-top: 8px;
}

.legal-table-wrap {
  width: 100%;
  margin: 20px 0 24px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(7, 17, 31, 0.45);
}

.legal-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  text-align: left;
  line-height: 1.45;
}

.legal-table th {
  color: var(--text);
  background: rgba(0, 200, 117, 0.1);
  font-weight: 900;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 1080px) {
  .feature-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .enhanced-steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 80px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: rgba(11, 22, 40, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
  }

  .hero,
  .availability-section,
  .split-section,
  .split-section.reverse,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .hero-visual {
    min-height: 680px;
  }

  .phone-frame {
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(2deg);
  }

  .floating-card {
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
  }

  .availability-card-wrap {
    justify-content: flex-start;
  }

  .screens-grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured-screen img,
  .screen-card img {
    height: 500px;
  }

  .final-cta {
    display: grid;
  }
}

@media (max-width: 680px) {
  .section-padding,
  .navbar,
  .site-footer {
    width: min(100% - 22px, var(--max-width));
  }

  .brand {
    width: 150px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .hero {
    gap: 28px;
    padding-top: 44px;
    padding-bottom: 54px;
  }

  .hero-actions,
  .final-cta .hero-actions {
    width: 100%;
  }

  .store-button,
  .primary-hero-button {
    width: 100%;
  }

  .hero-visual {
    min-height: 630px;
  }

  .phone-frame {
    width: min(330px, 96vw);
  }

  .phone-screen {
    min-height: 520px;
  }

  .floating-card {
    width: min(330px, 94vw);
  }

  .feature-cards-grid,
  .enhanced-steps-grid,
  .screens-grid,
  .two-column-list {
    grid-template-columns: 1fr;
  }


  .featured-screen img,
  .screen-card img {
    height: 520px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-heading,
  .section-heading-left {
    text-align: left;
  }

  .step-card {
    min-height: auto;
  }

  .city-card-image-wrap,
  .city-card-image-wrap img {
    height: 240px;
    min-height: 240px;
  }

  .preview-match-card {
    grid-template-columns: 1fr;
  }

  .preview-date {
    width: fit-content;
    min-height: auto;
    padding: 10px 14px;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-social {
    width: 100%;
    justify-content: flex-start;
  }

  .legal-container {
    padding: 24px;
  }
}


.testimonials-section {
  width: 100%;
  margin-top: 24px;
  padding-top: 86px;
  padding-bottom: 92px;
  background:
    radial-gradient(circle at top left, rgba(0, 200, 117, 0.13), transparent 30rem),
    radial-gradient(circle at bottom right, rgba(255, 122, 47, 0.09), transparent 26rem),
    var(--bg);
}

.testimonials-inner {
  width: min(var(--max-width), calc(100% - 32px));
}

.testimonials-heading {
  max-width: 640px;
  margin-bottom: 42px;
}

.testimonials-heading h2 {
  text-transform: uppercase;
  letter-spacing: -0.05em;
}

.testimonials-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.testimonials-track {
  display: flex;
  width: max-content;
  gap: 22px;
  animation: testimonial-scroll 70s linear infinite;
}

.testimonials-marquee:hover .testimonials-track {
  animation-play-state: paused;
}

.testimonial-card {
  flex: 0 0 300px;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(23, 32, 51, 0.92), rgba(17, 27, 45, 0.92));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
}

.testimonial-stars {
  color: var(--green-2);
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1;
}

.testimonial-quote {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.75;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #04120d;
  font-size: 13px;
  font-weight: 900;
}

.testimonial-author strong,
.testimonial-author small {
  display: block;
}

.testimonial-author strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.testimonial-author small {
  margin-top: 3px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@keyframes testimonial-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 11px));
  }
}

@media (max-width: 680px) {
  .testimonials-section {
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .testimonials-inner {
    width: min(100% - 22px, var(--max-width));
  }

  .testimonials-track {
    gap: 16px;
    animation-duration: 80s;
  }

  .testimonial-card {
    flex-basis: 82vw;
    min-height: 250px;
  }
}

/* Partners / Canchas section */
.partners-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 44px;
}

.partners-visual-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(0, 200, 117, 0.18), transparent 16rem),
    rgba(23, 32, 51, 0.74);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}

.partners-image-wrap {
  position: relative;
  min-height: 270px;
  overflow: hidden;
}

.partners-image-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
}

.partners-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 17, 31, 0.68));
  pointer-events: none;
}

.partners-status-pill {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #04120d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.partners-visual-content {
  padding: 30px;
}

.partners-visual-content .section-kicker {
  max-width: 520px;
  line-height: 1.3;
}

.partners-card-title {
  margin-bottom: 18px;
  max-width: 430px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.partners-main-title {
  max-width: 690px;
  margin-bottom: 16px;
  font-size: clamp(36px, 4.5vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.partners-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.partners-benefits {
  margin-top: 28px;
}

.partners-benefits .feature-icon {
  color: var(--green);
  background: rgba(0, 200, 117, 0.16);
}

@media (max-width: 980px) {
  .partners-section {
    grid-template-columns: 1fr;
  }

  .partners-image-wrap img {
    height: 300px;
  }
}

@media (max-width: 680px) {
  .partners-image-wrap img {
    height: 240px;
  }

  .partners-visual-content {
    padding: 24px;
  }
}

/* Contact section */
.contact-section {
  padding-top: 84px;
  padding-bottom: 86px;
}

.contact-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.contact-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 5.3vw, 62px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.contact-heading p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

.contact-form-card,
.contact-info-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(0, 200, 117, 0.14), transparent 16rem),
    rgba(23, 32, 51, 0.74);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}

.contact-form-card {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.contact-form-row > label {
  min-width: 0;
}

.contact-form-row-contact {
  align-items: start;
}

.contact-form-card label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(7, 17, 31, 0.72);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  outline: none;
  transition: 0.2s ease;
}

.contact-form-card input,
.contact-form-card select {
  min-height: 52px;
  padding: 0 16px;
}

.contact-form-card textarea {
  min-height: 145px;
  padding: 15px 16px;
  resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: rgba(0, 200, 117, 0.68);
  box-shadow: 0 0 0 4px rgba(0, 200, 117, 0.12);
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: var(--soft);
}

.phone-input-group {
  display: grid;
  grid-template-columns: minmax(142px, 0.9fr) minmax(0, 1.1fr);
  gap: 10px;
  width: 100%;
}

.phone-input-group select,
.phone-input-group input {
  min-width: 0;
}

.field-error {
  min-height: 0;
  color: #ff8c7a;
  font-size: 12px;
  font-weight: 800;
}

.field-error:not(:empty) {
  min-height: 18px;
  margin-top: 2px;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form-card input.is-invalid,
.contact-form-card select.is-invalid,
.contact-form-card textarea.is-invalid {
  border-color: rgba(255, 122, 47, 0.8);
  box-shadow: 0 0 0 4px rgba(255, 122, 47, 0.12);
}

.contact-submit-button {
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #04120d;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0, 200, 117, 0.22);
  transition: 0.2s ease;
}

.contact-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(0, 200, 117, 0.28);
}

.contact-submit-button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.contact-form-status {
  min-height: 22px;
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.contact-form-status.is-success {
  color: var(--green-2);
}

.contact-form-status.is-error {
  color: #ff9b7a;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.contact-card-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  color: var(--green-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-info-card h3 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.contact-info-card > p {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-links-grid {
  display: grid;
  gap: 12px;
}

.contact-link-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  transition: 0.2s ease;
}

.contact-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 255, 0, 0.36);
  background: rgba(0, 200, 117, 0.1);
}

.contact-link-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: rgba(0, 200, 117, 0.16);
  color: var(--green);
}

.contact-link-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-link-card:nth-child(3) .contact-link-icon svg,
.contact-link-card:nth-child(4) .contact-link-icon svg {
  fill: currentColor;
  stroke: none;
}

.contact-link-card strong,
.contact-link-card small {
  display: block;
}

.contact-link-card strong {
  margin-bottom: 3px;
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
}

.contact-link-card small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .contact-section {
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 22px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .phone-input-group {
    grid-template-columns: 1fr;
  }
}
