/* ===================================================================
   Ascend — Valorant Coaching
   Dark esports aesthetic · Valorant red (#ff4655) accent · mobile-first
   =================================================================== */

:root {
  --bg:        #0e1014;
  --bg-1:      #0b0d11;   /* deepest — form fields, freebie band */
  --bg-2:      #14171d;
  --bg-3:      #1b1f27;
  --line:      #272c36;
  --text:      #eef1f6;
  --muted:     #99a1b0;
  --accent:    #ff4655;   /* Valorant red */
  --accent-2:  #ff6b78;
  --teal:      #2ec4b6;   /* secondary highlight */
  --gold:      #ffcf5c;
  --radius:    14px;
  --radius-lg: 22px;
  --maxw:      1140px;
  --shadow:    0 18px 50px rgba(0,0,0,.45);
  --ease:      cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .brand__name, .stat__num, .plan__amt {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.muted { color: var(--muted); }
.grad {
  background: linear-gradient(100deg, var(--accent), var(--accent-2) 50%, var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; font-weight: 600; font-size: .95rem;
  padding: .8rem 1.4rem; border-radius: 10px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s var(--ease), box-shadow .2s, background .2s, border-color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 10px 26px rgba(255,70,85,.35); }
.btn--primary:hover { background: var(--accent-2); box-shadow: 0 14px 34px rgba(255,70,85,.5); }
.btn--ghost { background: rgba(255,255,255,.04); border-color: var(--line); color: var(--text); }
.btn--ghost:hover { border-color: var(--accent); background: rgba(255,70,85,.08); }
.btn--dark { background: #fff; color: #0e1014; }
.btn--dark:hover { background: #e7e9ee; }
.btn--lg { padding: 1rem 1.7rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14,16,20,.78); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; gap: 1.4rem; height: 68px; }
.brand { display: flex; align-items: baseline; gap: .5rem; }
.brand__mark { color: var(--accent); font-size: 1.1rem; transform: translateY(-1px); }
.brand__name { font-weight: 700; font-size: 1.25rem; }
.brand__accent { color: var(--accent); }
.brand__tag { font-size: .68rem; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; }
.nav__links { display: none; gap: 1.6rem; margin-left: auto; font-size: .92rem; }
.nav__links a { color: var(--muted); transition: color .2s; }
.nav__links a:hover { color: var(--text); }
.nav__cta { display: none; gap: .6rem; }
.nav__links + .nav__cta { margin-left: 0; }
.nav__toggle {
  margin-left: auto; width: 42px; height: 42px; display: grid; place-content: center; gap: 5px;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 10px; cursor: pointer;
}
.nav__toggle span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav.open .nav__links {
  display: flex; flex-direction: column; gap: 0;
  position: absolute; top: 68px; left: 0; right: 0;
  background: var(--bg-2); border-bottom: 1px solid var(--line); padding: .5rem 0;
}
.nav.open .nav__links a { padding: .9rem 22px; border-top: 1px solid var(--line); }
.nav.open .nav__cta { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-2); padding: 1rem 22px 1.4rem; gap: .7rem; flex-direction: column; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(3rem, 8vw, 6rem) 0 2.5rem; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(48% 42% at 82% 2%, rgba(255,70,85,.42), transparent 60%),
    radial-gradient(55% 60% at 62% 38%, rgba(255,70,85,.15), transparent 66%),
    radial-gradient(52% 58% at 14% 98%, rgba(150,120,255,.34), transparent 66%),
    radial-gradient(40% 40% at 98% 76%, rgba(46,196,182,.11), transparent 58%),
    linear-gradient(180deg, #120710 0%, #0e1014 46%, #0b0d11 100%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(80% 60% at 50% 0%, #000, transparent 75%);
}
.hero__inner { position: relative; z-index: 1; display: grid; gap: 2.5rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: var(--muted); background: rgba(255,255,255,.04);
  border: 1px solid var(--line); padding: .35rem .8rem; border-radius: 999px; margin-bottom: 1.2rem;
}
.eyebrow strong { color: var(--text); }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(255,70,85,.2); }
.hero__title { font-size: clamp(2.5rem, 7.4vw, 4.6rem); font-weight: 700; line-height: 1.01; letter-spacing: -.022em; margin-bottom: 1.2rem; }
.hero__sub { font-size: clamp(1rem, 2.6vw, 1.15rem); color: var(--muted); max-width: 36ch; margin-bottom: 1.8rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.6rem; }
.hero__guarantee {
  display: inline-flex; align-items: center; gap: .7rem; flex-wrap: wrap;
  font-size: .92rem; color: #d7dce6; font-weight: 500;
  background: rgba(46,196,182,.07); border: 1px solid rgba(46,196,182,.3);
  padding: .6rem .95rem; border-radius: 12px;
}
.badge { background: rgba(46,196,182,.16); color: var(--teal); border: 1px solid rgba(46,196,182,.4); padding: .25rem .7rem; border-radius: 8px; font-weight: 700; font-size: .82rem; }
.hero__proof { margin-top: 1.1rem; font-size: .82rem; color: #6f7686; }

/* Hero visual — official Valorant agent art + the Ascent rank ladder */
.hero__visual { position: relative; min-height: 420px; display: flex; align-items: center; justify-content: flex-end; }
.hero__glow { position: absolute; inset: -14% -10%; z-index: 0; pointer-events: none;
  background: radial-gradient(50% 52% at 64% 44%, rgba(255,70,85,.48), transparent 70%),
              radial-gradient(40% 46% at 24% 74%, rgba(150,120,255,.30), transparent 72%); }
.hero__glow::before { content:""; position:absolute; right:5%; top:48%; transform:translateY(-50%);
  width: clamp(220px, 27vw, 380px); aspect-ratio:1; border-radius:50%;
  background: radial-gradient(circle, rgba(255,70,85,.16), transparent 60%);
  border:1px solid rgba(255,70,85,.15); box-shadow: 0 0 90px rgba(255,70,85,.12); }
/* Floating product cards (illustrative service UI — the 'alive' layer) */
.hcard { position:absolute; z-index:3; display:flex; align-items:center; gap:.65rem;
  background: rgba(18,21,27,.80); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border:1px solid rgba(255,255,255,.11); border-radius:13px; padding:.6rem .8rem;
  box-shadow: 0 16px 38px rgba(0,0,0,.55); animation: floaty 5.5s ease-in-out infinite; }
.hcard strong { display:block; color:#fff; font-family:'Space Grotesk',sans-serif; font-size:.8rem; line-height:1.2; }
.hcard small { color: var(--muted); font-size:.71rem; }
.hcard__ic { width:30px; height:30px; border-radius:9px; flex:none; display:grid; place-items:center; font-weight:700; font-size:.95rem; }
.hcard--review { left:36%; top:55%; }
.hcard--review .hcard__ic { background:linear-gradient(135deg,var(--accent),var(--accent-2)); color:#fff; }
.hcard--rankup { right:-3%; top:21%; animation-delay:-2.7s; }
.hcard--rankup .hcard__ic { background:rgba(46,196,182,.16); color:var(--teal); border:1px solid rgba(46,196,182,.4); }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-11px);} }
@media (prefers-reduced-motion: reduce){ .hcard { animation:none; } }
@media (max-width:760px){ .hcard--review{ left:4%; top:auto; bottom:6%; } .hcard--rankup{ right:0; top:4%; } }
.hero__agent { position: relative; z-index: 2; max-height: min(420px, 56vh); width: auto; transform: scaleX(-1);
  margin-right: -1.5rem; filter: drop-shadow(0 28px 46px rgba(0,0,0,.6)); pointer-events: none; user-select: none; }
.ascent { position: absolute; left: 0; top: 50%; transform: translateY(-50%); z-index: 1;
  list-style: none; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.rung { display: flex; align-items: center; gap: .65rem; position: relative;
  transform: translateX(calc(var(--i) * 8px)); opacity: calc(.45 + var(--i) * .07); }
.rung i { width: 12px; height: 12px; flex: none; border-radius: 3px; transform: rotate(45deg);
  background: var(--bg-3); border: 1.5px solid var(--line); }
.rung span { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: .82rem; color: #e7ebf2; white-space: nowrap; text-shadow: 0 1px 7px rgba(0,0,0,.95), 0 0 16px rgba(0,0,0,.8); }
.rung--goal { opacity: 1; }
.rung--goal i { background: var(--accent); border-color: var(--accent); animation: rungpulse 2.4s ease-in-out infinite; }
.rung--goal span { color: #fff; text-shadow: 0 0 12px rgba(255,70,85,.6); }
.rung--you i { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 12px var(--gold); }
.rung--you em { font-style: normal; font-size: .66rem; font-weight: 700; color: #0e1014;
  background: var(--gold); padding: .12rem .45rem; border-radius: 999px; margin-left: .35rem; white-space: nowrap; }
@keyframes rungpulse { 0%,100%{ box-shadow: 0 0 9px var(--accent); } 50%{ box-shadow: 0 0 22px var(--accent); } }
@media (prefers-reduced-motion: reduce){ .rung--goal i { animation: none; } }
@media (max-width: 760px){
  .hero__visual { min-height: 380px; justify-content: center; margin-top: .5rem; }
  .hero__agent { max-height: 360px; }
  .ascent { left: -.4rem; }
  .rung span { font-size: .74rem; }
}

/* Trust strip */
.trust { position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center; gap: .7rem 1.4rem; margin-top: 2.5rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.trust__label { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.trust__items { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem 1.3rem; }
.trust__items li { font-weight: 600; color: var(--text); opacity: .8; font-size: .9rem; }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.kicker { display: inline-block; color: var(--accent); font-weight: 600; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .8rem; }
.section__title { font-size: clamp(1.6rem, 4.5vw, 2.5rem); font-weight: 700; max-width: 22ch; }
.section__lead { color: var(--muted); max-width: 60ch; margin-top: .9rem; font-size: 1.05rem; }

/* Problem */
.problem { background: var(--bg-2); border-block: 1px solid var(--line); }
.problem .section__title { max-width: 30ch; margin-bottom: 2rem; }
.problem__grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.problem__card { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; border-left: 3px solid var(--accent); }
.problem__card h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.problem__card p { color: var(--muted); font-size: .94rem; }
.problem__turn { margin-top: 2rem; font-size: 1.2rem; font-weight: 600; color: #fff; max-width: 40ch; }

/* Start Free / lead magnet */
.freebie { background: radial-gradient(120% 80% at 85% 0%, rgba(46,196,182,.1), transparent 55%), var(--bg-1); }
.freebie__grid { display: grid; gap: 1.6rem; margin-top: 2.6rem; grid-template-columns: 1fr; align-items: start; }
.freebie__list { list-style: none; display: grid; gap: 1.1rem; }
.freebie__item { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.3rem; }
.freebie__icon { font-size: 1.5rem; line-height: 1; }
.freebie__item h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.freebie__item p { color: var(--muted); font-size: .92rem; }
.freebie__gap { display: block; margin-top: .5rem; color: var(--teal); font-weight: 600; font-size: .86rem; }
.freebie__also { color: var(--muted); font-size: .88rem; margin-top: 1.1rem; }

/* Lead-capture form */
.freebie__formwrap { position: sticky; top: 90px; }
.leadform { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem 1.6rem; box-shadow: var(--shadow); }
.leadform__title { font-size: 1.3rem; margin-bottom: .3rem; }
.leadform__sub { color: var(--muted); font-size: .9rem; margin-bottom: 1.3rem; }
.leadform__field { display: block; margin-bottom: 1rem; }
.leadform__field span { display: block; font-size: .82rem; font-weight: 600; color: #c2c8d4; margin-bottom: .4rem; }
.leadform__field span em { color: var(--accent); font-style: normal; }
.leadform input, .leadform select { width: 100%; background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--radius); color: #fff; padding: .7rem .8rem; font: inherit; transition: border-color .2s; }
.leadform input:focus, .leadform select:focus { outline: none; border-color: var(--accent); }
.leadform input::placeholder { color: #6b7280; }
.leadform .btn { margin-top: .4rem; }
.leadform__fine { text-align: center; color: var(--muted); font-size: .78rem; margin-top: .8rem; }
.leadform__hp { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }

/* How */
.how__grid { display: grid; gap: 1.2rem; margin-top: 2.4rem; grid-template-columns: 1fr; }
.how__step { background: linear-gradient(165deg, var(--bg-2), var(--bg-3)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; position: relative; }
.how__num { font-family: 'Space Grotesk'; font-size: 2.2rem; font-weight: 700; color: rgba(255,70,85,.25); }
.how__step h3 { font-size: 1.25rem; margin: .4rem 0 .6rem; }
.how__step p { color: var(--muted); margin-bottom: 1rem; }
.link { color: var(--accent); font-weight: 600; font-size: .92rem; }
.link:hover { color: var(--accent-2); }

/* Features */
.features__grid { display: grid; gap: 1rem; margin-top: 2.4rem; grid-template-columns: 1fr; }
.feature { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; transition: transform .2s var(--ease), border-color .2s; }
.feature:hover { transform: translateY(-4px); border-color: rgba(255,70,85,.4); }
.feature__icon { font-size: 1.7rem; display: block; margin-bottom: .7rem; }
.feature h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.feature p { color: var(--muted); font-size: .92rem; }

/* Classes / curriculum */
.classes__grid { display: grid; gap: 1.2rem; margin-top: 2.6rem; grid-template-columns: 1fr; }
.class-cat { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; display: flex; flex-direction: column; transition: transform .2s var(--ease), border-color .2s; }
.class-cat:hover { transform: translateY(-4px); border-color: rgba(255,70,85,.4); }
.class-cat__head { margin-bottom: 1.1rem; }
.class-cat__icon { font-size: 1.7rem; display: block; margin-bottom: .6rem; }
.class-cat__head h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.class-cat__head p { color: var(--muted); font-size: .92rem; }
.class-list { list-style: none; display: grid; gap: .55rem; margin-bottom: 1rem; }
.class-list li { display: flex; justify-content: space-between; align-items: center; gap: .8rem; padding: .65rem .8rem; background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); }
.class-list__name { color: #e7ebf2; font-size: .92rem; font-weight: 500; }
.class-list__tag { flex: none; color: var(--teal); background: rgba(46,196,182,.1); border: 1px solid rgba(46,196,182,.25); padding: .18rem .5rem; border-radius: 8px; font-size: .68rem; font-weight: 600; white-space: nowrap; }
.class-cat__note { margin-top: auto; color: var(--muted); font-size: .8rem; font-style: italic; }
.classes__cta { margin-top: 2.2rem; text-align: center; color: #d7dce6; font-size: 1rem; }
.classes__cta .link { margin-left: .4rem; }

/* Pricing */
.pricing { background: var(--bg-2); border-block: 1px solid var(--line); }
.pricing__grid { display: grid; gap: 1.3rem; margin-top: 2.6rem; grid-template-columns: 1fr; align-items: stretch; }
.plan { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.9rem 1.6rem; display: flex; flex-direction: column; position: relative; }
.plan--featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 22px 50px rgba(255,70,85,.18); }
.plan__flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: .74rem; font-weight: 700; padding: .3rem .9rem; border-radius: 999px; letter-spacing: .04em; }
.plan__badge { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .04em; padding: .26rem .7rem; border-radius: 999px; margin-bottom: .7rem; }
.plan__badge--free { background: rgba(45,212,160,.14); color: var(--teal); border: 1px solid rgba(45,212,160,.35); }
.plan__badge--pop { background: rgba(255,70,85,.14); color: var(--accent); border: 1px solid rgba(255,70,85,.4); }
.plan__badge--elite { background: rgba(150,120,255,.16); color: #b8a6ff; border: 1px solid rgba(150,120,255,.4); }
.plan__name { font-size: 1.25rem; }
.plan__price { display: flex; align-items: baseline; gap: .3rem; margin: .7rem 0 .3rem; }
.plan__from { font-size: .85rem; color: var(--muted); }
.plan__was { font-size: 1.25rem; font-weight: 600; color: var(--muted); text-decoration: line-through; text-decoration-color: var(--accent); align-self: center; }
.plan__amt { font-size: 2.4rem; font-weight: 700; color: #fff; }
.plan__per { color: var(--muted); }
.plan__save { color: var(--gold); font-size: .78rem; font-weight: 600; margin: 0 0 .5rem; }
.plan__desc { color: var(--muted); font-size: .92rem; min-height: 2.6em; }
.plan__list { list-style: none; margin: 1.2rem 0 1.5rem; display: grid; gap: .6rem; flex: 1; }
.plan__list li { padding-left: 1.5rem; position: relative; font-size: .93rem; color: #d7dce6; }
.plan__list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.plan__list li strong { color: #fff; }
.plan__fine { text-align: center; font-size: .76rem; color: var(--muted); margin-top: .8rem; }
.pricing__note { text-align: center; color: var(--muted); font-size: .82rem; margin-top: 1.6rem; }
.pricing__note code { background: var(--bg-3); padding: .1rem .4rem; border-radius: 5px; border: 1px solid var(--line); }

/* Founding-member block (honest launch state — replaces fake testimonials until real ones arrive) */
.founding { max-width: 760px; margin: 2.4rem auto 0; text-align: center; background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2.2rem 1.8rem; }
.founding__badge { display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .04em; color: var(--gold); background: rgba(255,207,92,.12); border: 1px solid rgba(255,207,92,.35); padding: .26rem .8rem; border-radius: 999px; margin-bottom: .9rem; }
.founding__title { font-size: 1.5rem; margin-bottom: .6rem; }
.founding__copy { color: var(--muted); max-width: 56ch; margin: 0 auto 1.4rem; }

/* Compare */
.compare__wrap { margin-top: 2.4rem; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.compare__table { width: 100%; border-collapse: collapse; min-width: 560px; }
.compare__table th, .compare__table td { padding: 1rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); font-size: .92rem; }
.compare__table thead th { background: var(--bg-3); font-size: .95rem; }
.compare__table thead th.is-us { color: var(--accent); }
.compare__table th[scope="row"] { color: var(--muted); font-weight: 500; }
.compare__table td.is-us { color: #fff; font-weight: 600; background: rgba(255,70,85,.06); }
.compare__table tbody tr:last-child th, .compare__table tbody tr:last-child td { border-bottom: none; }

/* Guarantee */
.guarantee { background: linear-gradient(120deg, rgba(255,70,85,.12), rgba(46,196,182,.08)); border-block: 1px solid var(--line); }
.guarantee__inner { display: grid; gap: 1.8rem; align-items: center; }
.guarantee__seal {
  width: 120px; height: 120px; border-radius: 50%; display: grid; place-content: center; text-align: center;
  background: var(--accent); color: #fff; font-family: 'Space Grotesk'; font-weight: 700; font-size: 2.2rem; line-height: 1;
  box-shadow: 0 0 0 8px rgba(255,70,85,.18); margin: 0 auto;
}
.guarantee__seal small { font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.guarantee__copy h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); margin-bottom: .8rem; }
.guarantee__copy p { color: var(--muted); max-width: 52ch; margin-bottom: 1.4rem; }

/* Results */
.results__grid { display: grid; gap: 1.2rem; margin-top: 2.4rem; grid-template-columns: 1fr; }
.quote { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.7rem; }
.quote__rank { display: inline-block; font-weight: 700; color: var(--teal); background: rgba(46,196,182,.1); border: 1px solid rgba(46,196,182,.25); padding: .25rem .7rem; border-radius: 8px; font-size: .82rem; margin-bottom: 1rem; }
.quote blockquote { font-size: 1.02rem; color: #e7ebf2; }
.quote blockquote em { color: #fff; font-style: italic; }
.quote figcaption { margin-top: 1rem; color: var(--muted); font-size: .88rem; }
.results__shots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.4rem; }
.shot { aspect-ratio: 16/10; display: grid; place-content: center; text-align: center; background: repeating-linear-gradient(45deg, var(--bg-2), var(--bg-2) 12px, var(--bg-3) 12px, var(--bg-3) 24px); border: 1px dashed var(--line); border-radius: var(--radius); color: var(--muted); font-size: .82rem; }

/* Share-your-rank-up submission form */
.rankup { margin-top: 3rem; background: linear-gradient(150deg, var(--bg-2), var(--bg-3)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.4rem); box-shadow: var(--shadow); }
.rankup__inner { display: grid; gap: 1.8rem; align-items: start; }
.rankup__title { font-size: clamp(1.4rem, 3.5vw, 1.9rem); margin: .2rem 0 .6rem; }
.rankup__lead { color: var(--muted); font-size: 1rem; max-width: 42ch; }
.rankup__note { margin-top: 1rem; font-size: .86rem; color: var(--teal); background: rgba(46,196,182,.08); border: 1px solid rgba(46,196,182,.25); border-radius: var(--radius); padding: .7rem .9rem; }
.rankup__note strong { color: #fff; }
.rankform { background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.4rem; }
.rankform__row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.rankform textarea { width: 100%; background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--radius); color: #fff; padding: .7rem .8rem; font: inherit; resize: vertical; transition: border-color .2s; }
.rankform textarea:focus { outline: none; border-color: var(--accent); }
.rankform textarea::placeholder { color: #6b7280; }
.rankform input[type="file"] { width: 100%; background: var(--bg-1); border: 1px dashed var(--line); border-radius: var(--radius); color: var(--muted); padding: .6rem .7rem; font: inherit; font-size: .86rem; cursor: pointer; }
.rankform input[type="file"]::file-selector-button { background: var(--bg-3); color: var(--text); border: 1px solid var(--line); border-radius: 8px; padding: .35rem .7rem; margin-right: .7rem; cursor: pointer; font: inherit; font-size: .82rem; }
.rankform__check { display: grid; grid-template-columns: auto 1fr; gap: .6rem; align-items: start; margin: .4rem 0 1rem; font-size: .86rem; color: #c2c8d4; cursor: pointer; }
.rankform__check input { margin-top: .15rem; accent-color: var(--accent); width: 16px; height: 16px; }
.rankform__check em { color: var(--accent); font-style: normal; }

/* Coach */
.coach__inner { display: grid; gap: 2rem; align-items: center; }
.coach__photo { aspect-ratio: 4/5; border-radius: var(--radius-lg); display: grid; place-content: center; text-align: center; color: var(--muted); background: linear-gradient(160deg, var(--bg-3), #0b0d11); border: 1px solid var(--line); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.coach__photo::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 50% at 50% 0%, rgba(255,70,85,.2), transparent 60%); }
.coach__photo span { position: relative; }
.coach__copy .section__title { max-width: none; margin: .4rem 0 1rem; }
.coach__creds { list-style: none; margin: 1.2rem 0 1.6rem; display: grid; gap: .6rem; }
.coach__creds li { padding-left: 1.4rem; position: relative; color: #d7dce6; font-size: .95rem; }
.coach__creds li::before { content: "▸"; position: absolute; left: 0; color: var(--accent); }

/* Team roster */
.team { margin-top: 3.5rem; }
.team__grid { display: grid; gap: 1.2rem; margin-top: 2.4rem; grid-template-columns: 1fr; }
.team__card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; }
.team__photo { aspect-ratio: 1/1; border-radius: var(--radius); display: grid; place-content: center; text-align: center; color: var(--muted); font-size: .9rem; background: linear-gradient(160deg, var(--bg-3), #0b0d11); border: 1px solid var(--line); margin-bottom: 1.1rem; position: relative; overflow: hidden; }
.team__photo::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 50% at 50% 0%, rgba(255,70,85,.18), transparent 60%); }
.team__photo span { position: relative; }
.team__name { font-size: 1.15rem; margin-bottom: .2rem; }
.team__role { display: inline-block; font-weight: 700; color: var(--teal); background: rgba(46,196,182,.1); border: 1px solid rgba(46,196,182,.25); padding: .2rem .6rem; border-radius: 8px; font-size: .78rem; margin-bottom: 1rem; }
.team__creds { list-style: none; display: grid; gap: .5rem; }
.team__creds li { padding-left: 1.3rem; position: relative; color: #d7dce6; font-size: .9rem; }
.team__creds li::before { content: "▸"; position: absolute; left: 0; color: var(--accent); }

/* FAQ */
.faq__list { margin-top: 2.2rem; display: grid; gap: .8rem; max-width: 760px; }
.faq__item { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 0 1.3rem; }
.faq__item summary { cursor: pointer; padding: 1.1rem 0; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--accent); font-size: 1.4rem; transition: transform .2s; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--muted); padding-bottom: 1.1rem; }

/* Final CTA */
.cta-final { background: linear-gradient(120deg, rgba(255,70,85,.14), rgba(14,16,20,1) 70%); text-align: center; }
.cta-final__inner { max-width: 640px; margin: 0 auto; }
.cta-final h2 { font-size: clamp(1.7rem, 5vw, 2.6rem); margin-bottom: .9rem; }
.cta-final p { color: var(--muted); margin-bottom: 1.8rem; font-size: 1.05rem; }
.cta-final__actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer { background: #0a0c0f; border-top: 1px solid var(--line); padding: 3rem 0 1.5rem; }
.footer__inner { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.footer__brand p { color: var(--muted); margin-top: .6rem; max-width: 38ch; font-size: .92rem; }
.footer__col h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: .9rem; }
.footer__col a { display: block; color: #c2c8d4; padding: .25rem 0; font-size: .93rem; transition: color .2s; }
.footer__col a:hover { color: var(--accent); }
.footer__legal { margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid var(--line); display: grid; gap: .4rem; }
.footer__legal p { font-size: .78rem; color: var(--muted); }

/* Scroll-reveal */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

/* ===================== Responsive ===================== */
@media (min-width: 560px) {
  .problem__grid { grid-template-columns: 1fr 1fr; }
  .results__shots { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 820px) {
  .nav__links { display: flex; }
  .nav__cta { display: flex; }
  .nav__toggle { display: none; }
  .hero__inner { grid-template-columns: 1.25fr .85fr; align-items: center; }
  .how__grid { grid-template-columns: repeat(3, 1fr); }
  .features__grid { grid-template-columns: repeat(3, 1fr); }
  .classes__grid { grid-template-columns: repeat(3, 1fr); }
  .freebie__grid { grid-template-columns: 1.15fr .85fr; gap: 2.2rem; }
  .pricing__grid { grid-template-columns: repeat(3, 1fr); }
  .plan--featured { transform: translateY(-12px); }
  .results__grid { grid-template-columns: repeat(3, 1fr); }
  .rankup__inner { grid-template-columns: 1fr 1.1fr; gap: 2.4rem; align-items: center; }
  .guarantee__inner { grid-template-columns: 140px 1fr; }
  .guarantee__seal { margin: 0; }
  .coach__inner { grid-template-columns: .8fr 1.2fr; }
  .team__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 2fr 1fr 1fr; }
  .footer__legal { display: flex; justify-content: space-between; align-items: center; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
