/* ============================================================
   Diablo Padel — "Ace variant" landing page
   Ace Padel structure + design language, reskinned to Diablo.
   Monochrome-luxury base (noir / charcoal / silver) + crimson accent.
   Type: Geist only — one family; weight + tracking + case carry the hierarchy. Vanilla CSS.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&display=swap');

:root {
  /* Monochrome luxury base */
  --noir:        #0A0A0A;
  --noir-2:      #0F0F0E;
  --charcoal:    #161614;
  --card:        #1A1A18;
  --line:        rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.24);

  /* Text */
  --white:       #FAFAF9;
  --silver:      #A8A29E;
  --dim:         #78716C;

  /* Diablo accent */
  --red:         #B91C1C;
  --red-deep:    #991B1B;
  --gold:        #D4A574;   /* used sparingly */

  --radius:      4px;
  --maxw:        1240px;
  --pad:         clamp(88px, 12vw, 168px);   /* section vertical rhythm */
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);

  --font:        'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--noir);
  color: var(--white);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ---------- shared typography ---------- */
.eyebrow {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 26px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--red);
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-2px);
}

.section-title {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--white);
}

.section-lead {
  margin-top: 22px;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.75;
  color: var(--silver);
  max-width: 56ch;
  font-weight: 300;
}

.section-note {
  margin-top: 22px;
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 17px 38px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease),
              color .35s var(--ease), transform .35s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-deep); border-color: var(--red-deep); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--line-strong);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.06); }

.btn-block { width: 100%; }

/* primary conversion CTA — used identically in the hero and the top nav */
.btn-lg { padding: 19px 46px; font-size: 13px; letter-spacing: 0.14em; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 4px;
  transition: gap .3s var(--ease), border-color .3s var(--ease);
}
.link-arrow span { color: var(--red); transition: transform .3s var(--ease); }
.link-arrow:hover { border-color: var(--white); }
.link-arrow:hover span { transform: translateX(4px); }

/* ---------- layout ---------- */
.section { padding: var(--pad) 0; position: relative; }
/* offset anchored jumps so headings clear the fixed nav */
section[id], header[id] { scroll-margin-top: 84px; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.container.narrow { max-width: 860px; }
.center { text-align: center; }
.center .eyebrow::before { display: none; }
.center .section-lead { margin-left: auto; margin-right: auto; }
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.split-text { max-width: 540px; }
.split-text .btn { margin-top: 36px; }
.split-media {
  height: clamp(360px, 46vw, 600px);
  border-radius: var(--radius);
  background: var(--img) center / cover no-repeat, var(--charcoal);
  filter: grayscale(100%) contrast(1.04) brightness(0.92);
  transition: filter .6s var(--ease), transform .6s var(--ease);
}
.split-media:hover { filter: grayscale(20%) contrast(1.05) brightness(0.96); }

/* ---------- reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================ NAV ============================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links > li:not(.nav-cta-li) > a {
  font-size: 16px;
  letter-spacing: 0.01em;
  color: var(--silver);
  transition: color .25s var(--ease);
}
.nav-links > li:not(.nav-cta-li) > a:hover { color: var(--white); }
/* CTA pinned to the top-right while the other links stay centered */
.nav-cta-li { position: absolute; right: 32px; top: 50%; transform: translateY(-50%); }

.nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-mobile-toggle span { width: 24px; height: 1.5px; background: var(--white); transition: .3s var(--ease); }

/* ============================ HERO ============================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.08) brightness(0.6);
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 50% 30%, rgba(10,10,10,0.30) 0%, rgba(10,10,10,0.72) 70%, rgba(10,10,10,0.92) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.10) 35%, rgba(10,10,10,0.85) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 980px; }
.hero-logo { height: clamp(168px, 22.5vw, 273px); width: auto; margin: 0 auto 28px; }
.hero-title {
  font-weight: 500;
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  font-weight: 300;
  color: var(--silver);
  margin-bottom: 40px;
}
.hero-foot {
  margin-top: 36px;
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}
.hero-chevron {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 30px; height: 30px;
  color: var(--silver);
  animation: bob 2.4s var(--ease) infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ============================ CLUBS ============================ */
.clubs { background: var(--noir); }
.club-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
}
.club-card {
  position: relative;
  min-height: clamp(420px, 42vw, 560px);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.club-card::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background: var(--img) center / cover no-repeat, var(--charcoal);
  filter: grayscale(100%) contrast(1.05) brightness(0.78);
  transition: filter .7s var(--ease), transform .9s var(--ease);
}
.club-card:hover::before { filter: grayscale(35%) contrast(1.05) brightness(0.86); transform: scale(1.04); }
.club-card-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,10,0) 30%, rgba(10,10,10,0.55) 65%, rgba(10,10,10,0.92) 100%);
}
.club-card-body { padding: clamp(28px, 3vw, 44px); }
.club-status {
  font-family: var(--font);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.club-status--soon { color: var(--silver); }
.club-name {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.club-copy {
  color: var(--silver);
  font-weight: 300;
  max-width: 42ch;
  margin-bottom: 24px;
}

/* ============================ MEMBERSHIP / ABOUT ============================ */
.membership-intro { background: var(--noir-2); border-top: 1px solid var(--line); }
.about { background: var(--noir); }
.about .section-lead { font-size: clamp(1.1rem, 1.7vw, 1.5rem); line-height: 1.7; color: var(--white); font-weight: 300; }

/* ============================ MANIFESTO (scroll-pinned flip) ============================ */
.manifesto { position: relative; height: 300vh; background: var(--noir); }
.manifesto-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  overflow: hidden;
}
.manifesto-line {
  position: absolute;
  width: 100%;
  text-align: center;
  padding: 0 24px;
  transform-origin: center center;
  transition: transform .7s var(--ease), opacity .7s var(--ease);
  will-change: transform, opacity;
}
.manifesto-line span {
  display: inline-block;
  font-size: clamp(2.2rem, 7vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.manifesto-line.is-next   { opacity: 0; transform: translateY(55%) rotateX(-75deg); }
.manifesto-line.is-active { opacity: 1; transform: translateY(0)   rotateX(0deg); }
.manifesto-line.is-prev   { opacity: 0; transform: translateY(-55%) rotateX(75deg); }

@media (prefers-reduced-motion: reduce) {
  .manifesto { height: auto; }
  .manifesto-sticky { position: static; height: auto; flex-direction: column; gap: 8vh; padding: 14vh 24px; perspective: none; }
  .manifesto-line { position: static; opacity: 1; transform: none; transition: none; }
}

/* ============================ FOUNDER ============================ */
.founder { background: var(--noir-2); border-top: 1px solid var(--line); }
.split--reverse .split-media { order: -1; }
/* founder flip card — full color; flips to the on-court action shot on hover */
.founder-flip { height: clamp(360px, 46vw, 600px); perspective: 1400px; }
.founder-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .9s var(--ease);
}
.founder-flip:hover .founder-flip-inner { transform: rotateY(180deg); }
.founder-face {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: var(--img) center / cover no-repeat, var(--charcoal);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}
.founder-front { background-position: center top; }
.founder-back { transform: rotateY(180deg); background-position: center; }
@media (prefers-reduced-motion: reduce) {
  .founder-flip-inner { transition: none; }
}
.founder-name {
  margin-top: 18px;
  font-family: var(--font);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}
.founder .section-lead + .section-lead { margin-top: 18px; }

/* ============================ MEMBERSHIP CARD (pricing + benefits) ============================ */
.pricing { background: var(--noir-2); border-top: 1px solid var(--line); }
.pricing-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(26px, 4vw, 56px);
}
.pricing-head { text-align: center; margin-bottom: 34px; }
.pricing-head .eyebrow::before { display: none; }
.pricing-title { font-size: clamp(1.7rem, 3.2vw, 2.6rem); font-weight: 400; letter-spacing: -0.02em; color: var(--silver); }
.pricing-title span { color: var(--white); font-weight: 500; }

/* segmented membership-type toggle */
.seg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--noir-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 5px;
  max-width: 620px;
  margin: 0 auto 38px;
}
.seg-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 14px 10px;
  border-radius: 8px;
  color: var(--silver);
  transition: background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.seg-opt .seg-name { font-family: var(--font); font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.seg-opt .seg-sub { font-size: 11px; color: var(--dim); }
.seg-opt.active { background: var(--charcoal); box-shadow: inset 0 0 0 1px var(--line-strong); }
.seg-opt.active .seg-name { color: var(--red); }

/* price block */
.price-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(28px, 6vw, 72px);
  margin-bottom: 40px;
}
.price-col { text-align: center; }
.price-label { font-family: var(--font); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--silver); margin-bottom: 10px; }
.price-val { font-size: clamp(2.6rem, 6vw, 3.6rem); font-weight: 500; letter-spacing: -0.03em; line-height: 1; }
.price-unit { font-family: var(--font); font-size: 14px; font-weight: 400; color: var(--silver); margin-left: 4px; }
.price-note { font-family: var(--font); font-size: 11px; letter-spacing: 0.04em; color: var(--dim); margin-top: 8px; min-height: 1em; }
.price-sep { width: 1px; background: var(--line); }

/* 3 benefit pillars */
.pill-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  margin-bottom: 44px;
}
.pill {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 22px;
  background: var(--noir-2);
}
.pill-check { display: inline-flex; align-items: center; justify-content: center; margin-bottom: 12px; color: var(--red); }
.pill-check svg { width: 24px; height: 24px; }
.pill h3 { font-size: 1.05rem; font-weight: 500; margin-bottom: 10px; }
.pill p { color: var(--silver); font-weight: 300; font-size: 0.9rem; line-height: 1.6; }

/* also included */
.also-label { text-align: center; font-family: var(--font); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--silver); margin-bottom: 26px; }
.also-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 40px;
  max-width: 640px;
  margin: 0 auto 38px;
}
.also-item { display: flex; align-items: center; gap: 14px; color: var(--white); font-weight: 300; font-size: 0.95rem; }
.also-ic { flex: 0 0 20px; color: var(--silver); }
.also-ic svg { width: 20px; height: 20px; }
.pricing-contact { text-align: center; margin-top: 18px; font-size: 13px; color: var(--dim); }
.pricing-contact a { color: var(--silver); border-bottom: 1px solid var(--line-strong); padding-bottom: 1px; }

/* ============================ SHOWCASE ============================ */
.showcase { background: var(--noir); }
.showcase-media { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.showcase-img {
  height: clamp(220px, 26vw, 340px);
  border-radius: var(--radius);
  background: var(--img) center / cover no-repeat, var(--charcoal);
  filter: grayscale(100%) contrast(1.04) brightness(0.9);
  transition: filter .6s var(--ease);
}
.showcase-img:nth-child(2) { margin-top: 40px; }
.showcase-media:hover .showcase-img { filter: grayscale(20%) contrast(1.05) brightness(0.95); }
.check-list { margin-bottom: 36px; }
.check-list li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid var(--line);
  color: var(--silver);
  font-weight: 300;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 19px;
  width: 14px; height: 8px;
  border-left: 1.5px solid var(--red);
  border-bottom: 1.5px solid var(--red);
  transform: rotate(-45deg);
}

/* ============================ FAQ ============================ */
.faq { background: var(--noir-2); border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  padding: 28px 4px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 400;
  color: var(--white);
  transition: color .25s var(--ease);
}
.faq-q:hover { color: var(--silver); }
.faq-icon { position: relative; flex: 0 0 16px; width: 16px; height: 16px; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--red); transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq-icon::before { top: 50%; left: 0; width: 16px; height: 1.5px; transform: translateY(-50%); }
.faq-icon::after  { left: 50%; top: 0; width: 1.5px; height: 16px; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { padding: 0 4px 28px; color: var(--silver); font-weight: 300; max-width: 64ch; }

/* ============================ APPLICATION ============================ */
.apply { background: var(--noir); }
.apply-form {
  margin-top: 8px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 22px; display: flex; flex-direction: column; }
.field-row .field { margin-bottom: 22px; }
.field label {
  font-family: var(--font);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 10px;
}
.field .optional { text-transform: none; letter-spacing: 0; color: var(--dim); }
.field input,
.field select {
  width: 100%;
  background: var(--noir-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 15px 16px;
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field input::placeholder { color: var(--dim); }
.field input:focus,
.field select:focus { outline: none; border-color: var(--red); background: var(--charcoal); }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A8A29E' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.apply-form .btn { margin-top: 10px; }
.apply-fine { margin-top: 18px; text-align: center; font-size: 12px; color: var(--dim); }
.hp { position: absolute; left: -9999px; }

.apply-success { text-align: center; padding: clamp(48px, 7vw, 88px) 24px; }
.success-mark {
  width: 64px; height: 64px;
  margin: 0 auto 28px;
  border-radius: 999px;
  border: 1px solid var(--red);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.success-mark svg { width: 30px; height: 30px; }
.apply-success h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 400; letter-spacing: -0.02em; margin-bottom: 14px; }
.apply-success p { color: var(--silver); font-weight: 300; max-width: 46ch; margin: 0 auto; }

/* ============================ FOOTER ============================ */
.footer { background: var(--noir-2); border-top: 1px solid var(--line); padding: 80px 0 36px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer-logo { height: 44px; width: auto; margin-bottom: 18px; }
.footer-tag { color: var(--silver); font-weight: 300; max-width: 30ch; }
.footer-nav { display: flex; flex-direction: column; gap: 14px; }
.footer-nav a { font-size: 14px; color: var(--silver); transition: color .25s var(--ease); }
.footer-nav a:hover { color: var(--white); }
.footer-contact p { color: var(--silver); font-weight: 300; margin-bottom: 8px; font-size: 14px; }
.footer-contact a { border-bottom: 1px solid var(--line-strong); padding-bottom: 2px; }
.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  font-family: var(--font);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ============================ TOAST ============================ */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translate(-50%, 140%);
  z-index: 200;
  background: var(--card);
  border: 1px solid var(--line-strong);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  transition: transform .4s var(--ease);
  pointer-events: none;
}
.toast.show { transform: translate(-50%, 0); }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 900px) {
  .nav-mobile-toggle {
    display: flex; z-index: 110;
    position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  }
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(12px);
    transform: translateX(100%);
    transition: transform .45s var(--ease);
  }
  .nav-links.active { transform: none; }
  .nav-links > li:not(.nav-cta-li) > a { font-size: 18px; color: var(--white); }
  /* CTA returns to normal flow inside the mobile overlay */
  .nav-cta-li { position: static; transform: none; margin-top: 8px; }

  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .split-media { height: clamp(280px, 70vw, 420px); }
  .club-grid { grid-template-columns: 1fr; }
  .pill-row { grid-template-columns: 1fr; }
  .also-grid { grid-template-columns: 1fr; max-width: 360px; }
  .seg-opt { padding: 12px 6px; }
  .seg-opt .seg-name { font-size: 12px; letter-spacing: 0.04em; }
  .showcase-media { grid-template-columns: 1fr; }
  .showcase-img:nth-child(2) { margin-top: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 560px) {
  .container { padding: 0 22px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .hero-title { font-size: clamp(2.8rem, 16vw, 4.4rem); }
  .footer-base { flex-direction: column; gap: 10px; }
}
