/* ==========================================================================
   RankedBlueprint — blue/white blueprint on dark ground
   Motion doctrine: ONE easing, ONE duration, staggered reveals
   ========================================================================== */

/* Galgo Condensed (SIL OFL, Giulia Boggio) — display type, currently scoped to the hero */
@font-face {
  font-family: "Galgo";
  src: url("fonts/Galgo.woff2") format("woff2"),
       url("fonts/Galgo.woff") format("woff");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Palette — deep navy-black ground, electric blueprint blue accent */
  --bg: #05080f;
  --bg-raised: #0a101c;
  --bg-card: #0d1524;
  --line: rgba(96, 165, 250, 0.14);
  --line-strong: rgba(96, 165, 250, 0.32);
  --text: #eef2f8;
  --text-dim: #93a1b8;
  --accent: #4d9fff;
  --accent-bright: #7cc0ff;
  --accent-glow: rgba(77, 159, 255, 0.35);

  /* Type scale */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Motion — the ONLY easing and durations used anywhere */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.6s;
  --dur-fast: 0.25s;

  /* Rhythm */
  --section-pad: clamp(5rem, 10vw, 8.5rem);
  --container: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.mono { font-family: var(--font-mono); font-size: 0.8em; letter-spacing: 0.08em; color: var(--accent); }
.accent { color: var(--accent-bright); }
img, video { max-width: 100%; display: block; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }

/* Sections share one vertical rhythm */
.section { padding: var(--section-pad) 0; border-top: 1px solid var(--line); }
section[id] { scroll-margin-top: 5rem; }

.section__kicker {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section__title {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.section__sub { color: var(--text-dim); max-width: 46rem; margin-bottom: 3.5rem; }

/* ==========================================================================
   Reveal system — headline first, then text, then visual. Staggered ~130ms.
   .visible is added by IntersectionObserver in main.js (fires once).
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.reveal--d1 { transition-delay: 0.13s; }
.reveal--d2 { transition-delay: 0.26s; }
.reveal--d3 { transition-delay: 0.39s; }
.reveal--d4 { transition-delay: 0.52s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .rcard { opacity: 1; transform: none; transition: none; }
  .hero__scroll span { animation: none; }
}

/* ==========================================================================
   Buttons — one system: primary / ghost / outline
   ========================================================================== */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.8rem 1.7rem;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--accent);
  color: #041019;
  box-shadow: 0 0 0 rgba(77, 159, 255, 0);
}
.btn--primary:hover { background: var(--accent-bright); box-shadow: 0 6px 24px var(--accent-glow); }

.btn--ghost { border-color: rgba(255, 255, 255, 0.28); color: var(--text); }
.btn--ghost:hover { border-color: var(--text); background: rgba(255, 255, 255, 0.06); }

.btn--outline { border-color: var(--line-strong); color: var(--accent-bright); }
.btn--outline:hover { border-color: var(--accent); background: rgba(77, 159, 255, 0.08); }

.btn--lg { padding: 1rem 2.3rem; font-size: 1.02rem; }
.btn--block { display: block; text-align: center; width: 100%; }
.btn--nav { padding: 0.55rem 1.2rem; font-size: 0.88rem; }

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(5, 8, 15, 0);
  border-bottom: 1px solid transparent;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.nav.scrolled {
  background: rgba(5, 8, 15, 0.86);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.9rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__logo { font-weight: 900; letter-spacing: 0.04em; font-size: 1.02rem; }
.nav__logo span { color: var(--accent); }
.nav__logo .nav__logo-tld { color: var(--text-dim); font-weight: 700; }
.nav__links { display: flex; gap: 1.8rem; margin-left: auto; }
.nav__links a {
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color var(--dur-fast) var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav__burger span { width: 22px; height: 2px; background: var(--text); transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease); }

/* ==========================================================================
   Hero — full screen, video ground, single primary action
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__video { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(96, 165, 250, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero__vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 20%, rgba(5, 8, 15, 0.55) 75%),
    linear-gradient(to bottom, rgba(5, 8, 15, 0.5), transparent 30%, transparent 60%, var(--bg));
}
.hero__kicker {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--accent-bright);
  margin-bottom: 1.4rem;
}
.hero__name {
  font-family: "Galgo", var(--font-sans);
  font-size: clamp(4rem, 15vw, 11rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 50px rgba(0, 0, 0, 0.55);
}
.hero__name span { color: var(--accent); }
.hero__title {
  font-family: "Galgo", var(--font-sans);
  font-size: clamp(2.9rem, 8.5vw, 6.4rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}
.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text-dim);
  max-width: 34rem;
  margin: 0 auto 2.6rem;
}
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 2.2rem; left: 50%;
  width: 1px; height: 52px; margin-left: -0.5px;
  background: var(--line-strong);
  overflow: hidden;
}
.hero__scroll span {
  display: block; width: 100%; height: 40%;
  background: var(--accent-bright);
  animation: scrollhint 2.2s var(--ease) infinite;
}
@keyframes scrollhint {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(260%); }
}

/* ==========================================================================
   Proof bar
   ========================================================================== */
.proofbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-raised); }
.proofbar__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  text-align: center;
}
.proofbar__item strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--accent-bright);
  letter-spacing: -0.02em;
}
.proofbar__item span { font-size: 0.82rem; color: var(--text-dim); letter-spacing: 0.04em; }

/* ==========================================================================
   About
   ========================================================================== */
.about__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.about__text p { color: var(--text-dim); margin-bottom: 1.3rem; }
.about__text p strong { color: var(--text); }
.about__text .btn { margin-top: 0.8rem; }
.about__card {
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 0 60px rgba(77, 159, 255, 0.06);
}
.about__card-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}
.about__card-line:last-child { border-bottom: 0; }

/* ==========================================================================
   Coaching cards — rows of three, one card featured
   ========================================================================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2.1rem 1.8rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35); }
.card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 50px rgba(77, 159, 255, 0.12);
}
.card--featured:hover { box-shadow: 0 12px 60px rgba(77, 159, 255, 0.2); }
.card__badge {
  position: absolute;
  top: -0.8rem; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #041019;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 99px;
  white-space: nowrap;
}
.card__badge--alt { background: var(--bg-raised); color: var(--accent-bright); border: 1px solid var(--accent); }
.card__name { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.3rem; }
.card__desc { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 1.4rem; }
.card__price { display: flex; align-items: baseline; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.card__amount { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.02em; }
.card__strike { color: var(--text-dim); text-decoration: line-through; font-size: 1rem; }
.card__save {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-bright);
  border: 1px solid var(--line-strong);
  border-radius: 99px;
  padding: 0.15rem 0.6rem;
}
.card__features { flex: 1; margin-bottom: 1.4rem; }
.card__features li {
  font-size: 0.92rem;
  color: var(--text-dim);
  padding: 0.45rem 0 0.45rem 1.5rem;
  position: relative;
  border-bottom: 1px dashed var(--line);
}
.card__features li strong { color: var(--text); }
.card__features li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.95rem;
  width: 0.55rem; height: 0.55rem;
  border: 1px solid var(--accent);
  border-radius: 2px;
  transform: rotate(45deg);
}
.card__fit { font-size: 0.82rem; color: var(--text-dim); font-style: italic; margin-bottom: 1.4rem; }
.card__alt { font-size: 0.8rem; color: var(--text-dim); text-align: center; margin-top: 0.9rem; }

/* Improvement Camp — full-width feature block below the row */
.camp {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
  background: linear-gradient(135deg, var(--bg-card), rgba(77, 159, 255, 0.06));
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 2.4rem;
}
.camp__flags { display: flex; gap: 0.6rem; margin-bottom: 1rem; }
.camp__flag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--accent-bright);
  border: 1px solid var(--line-strong);
  border-radius: 99px;
  padding: 0.25rem 0.75rem;
}
.camp__flag--new { background: var(--accent); color: #041019; border-color: var(--accent); font-weight: 700; }
.camp__title { font-size: 1.6rem; font-weight: 800; margin-bottom: 0.4rem; }
.camp__desc { color: var(--text-dim); margin-bottom: 1.2rem; }
.camp__features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1.5rem; }
.camp__features li { font-size: 0.9rem; color: var(--text-dim); padding: 0.3rem 0 0.3rem 1.4rem; position: relative; }
.camp__features li::before {
  content: "";
  position: absolute; left: 0; top: 0.75rem;
  width: 0.5rem; height: 0.5rem;
  border: 1px solid var(--accent);
  border-radius: 2px;
  transform: rotate(45deg);
}
.camp__right { display: flex; flex-direction: column; justify-content: center; gap: 0.9rem; text-align: center; }
.camp__price { display: flex; align-items: baseline; justify-content: center; gap: 0.7rem; }
.camp__was { font-family: var(--font-mono); font-size: 1rem; color: var(--text-dim); text-decoration: line-through; text-decoration-color: rgba(147, 161, 184, 0.6); }
.camp__value {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #041019;
  background: var(--accent-bright);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}
.camp__seats { font-size: 0.8rem; color: var(--text-dim); }

/* ==========================================================================
   How it works — four steps
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.8rem 1.5rem;
  transition: transform var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.step:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.step__num { display: block; font-size: 0.85rem; margin-bottom: 1rem; }
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.step p { font-size: 0.88rem; color: var(--text-dim); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.quote {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.9rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.quote blockquote { font-size: 0.98rem; color: var(--text); line-height: 1.65; flex: 1; }
.quote blockquote::before { content: "“"; color: var(--accent); font-size: 1.6em; line-height: 0; vertical-align: -0.3em; margin-right: 0.1em; }
.quote figcaption { font-size: 0.82rem; color: var(--text-dim); }

/* Discord testimonial gallery — gif background + screenshot cards */
.results__label {
  text-align: center;
  margin-top: 4rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.results__gallery {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin: 2.2rem auto 0;
  max-width: 780px;
}
.rcard {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card);
  margin: 0;
  /* Sequential scroll reveal — hidden until the IntersectionObserver adds .visible */
  opacity: 0;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  will-change: opacity, transform;
}
.rcard:nth-child(odd) { align-self: flex-start; }
.rcard:nth-child(even) { align-self: flex-end; }
.rcard.visible { opacity: 1; transform: none; }
/* Each card enters slightly differently — same easing + duration keep the sequence flowing */
.rcard--v1 { transform: translate(-46px, 28px) rotate(-0.8deg); }
.rcard--v2 { transform: translate(46px, 30px) rotate(0.8deg); }
.rcard--v3 { transform: translate(-38px, 46px) scale(0.93); }
.rcard--v4 { transform: translate(46px, 24px) rotate(1deg); }
.rcard--v5 { transform: translate(-40px, 40px) scale(0.95) rotate(-0.6deg); }
.rcard__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.rcard__frame {
  position: relative;
  padding: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rcard__img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.55);
  display: block;
}
.rcard__ph {
  width: 100%;
  min-height: 220px;
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(5, 8, 15, 0.45);
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
.rcard__ph small { font-size: 0.68rem; opacity: 0.65; letter-spacing: 0.16em; }

/* ==========================================================================
   Community
   ========================================================================== */
.community__box {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: clamp(2rem, 5vw, 3.5rem);
}
.community__text p { color: var(--text-dim); margin-bottom: 1.4rem; }
.community__tiers li {
  font-size: 0.94rem;
  color: var(--text-dim);
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--line);
}
.community__tiers li:last-child { border-bottom: 0; }
.community__tiers strong { color: var(--accent-bright); }
.community__cta { text-align: center; display: flex; flex-direction: column; gap: 0.8rem; align-items: center; }
.community__note { font-size: 0.8rem; color: var(--text-dim); }

/* ==========================================================================
   Final CTA — full-width media ground, one action
   ========================================================================== */
.final {
  position: relative;
  padding: clamp(7rem, 14vw, 11rem) 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.final__media { position: absolute; inset: 0; z-index: -1; }
.final__video { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.final__gif {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transform: scale(1.12);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.final__title { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 1rem; }
.final__sub { color: var(--text-dim); font-size: 1.1rem; margin-bottom: 2.4rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq__list { max-width: 820px; margin: 3rem auto 0; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--text);
  transition: color var(--dur-fast) var(--ease);
}
.faq__item summary:hover { color: var(--accent-bright); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-weight: 400;
  color: var(--accent-bright);
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--dur-fast) var(--ease);
}
.faq__item[open] summary::after { content: "\2212"; }
.faq__item p {
  color: var(--text-dim);
  padding: 0 0 1.5rem;
  margin: 0;
  line-height: 1.7;
  max-width: 68ch;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { border-top: 1px solid var(--line); padding: 2.6rem 0; background: var(--bg-raised); }
.footer__row { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.footer__socials { display: flex; align-items: center; gap: 1.5rem; margin-left: auto; }
.footer__socials a { display: inline-flex; align-items: center; color: var(--text-dim); transition: color var(--dur-fast) var(--ease); }
.footer__socials a svg { width: 20px; height: 20px; fill: currentColor; display: block; }
.footer__socials a:hover { color: var(--accent-bright); }
.footer__copy { font-size: 0.78rem; color: var(--text-dim); width: 100%; }
.footer__credit { color: var(--accent-bright); text-decoration: none; transition: color var(--dur-fast) var(--ease); }
.footer__credit:hover { color: var(--text); text-decoration: underline; }

/* ==========================================================================
   Responsive — re-laid out, not shrunk
   ========================================================================== */
@media (max-width: 960px) {
  .cards, .quotes { grid-template-columns: 1fr; max-width: 30rem; margin-left: auto; margin-right: auto; }
  .rcard, .rcard:nth-child(odd), .rcard:nth-child(even) { align-self: center; max-width: 100%; }
  .card--featured { order: -1; }
  .steps { grid-template-columns: 1fr 1fr; }
  .about__grid, .camp, .community__box { grid-template-columns: 1fr; }
  .proofbar__row { grid-template-columns: repeat(3, 1fr); row-gap: 1.6rem; }
  .camp__right { text-align: left; align-items: flex-start; }
  .camp__price { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .nav__links, .btn--nav { display: none; }
  .nav__burger { display: flex; margin-left: auto; }
  .nav.open .nav__links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(5, 8, 15, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 0;
  }
  .nav.open .nav__links a { padding: 0.9rem 1.5rem; font-size: 1rem; }
  .nav.open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .steps { grid-template-columns: 1fr; }
  .proofbar__row { grid-template-columns: repeat(2, 1fr); }
  .hero__cta .btn { width: 100%; max-width: 20rem; }
  .footer__socials { margin-left: 0; }
}
