/* =================================================================
   THE VAULT — shared stylesheet
   Design system: black + green, cinematic, members-only.
   ================================================================= */

/* ---------- TOKENS ---------- */
:root {
  --vault-black: #0A0A0A;
  --surface: #121413;
  --surface-2: #171A18;
  --green: #57E389;
  --green-hover: #3FCC73;
  --green-glow: rgba(87, 227, 137, .30);
  --text: #F2F4F3;
  --muted: #9BA39E;
  --border: #222724;
  --btn-text: #06130B;
  --focus-ring: 0 0 0 3px rgba(87, 227, 137, .12);

  --maxw: 1120px;
  --gap: clamp(1rem, 4vw, 2rem);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video { display: block; max-width: 100%; height: auto; }

body {
  background: var(--vault-black);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* ---------- LAYOUT ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gap);
}

section { position: relative; }

.section-pad { padding-block: clamp(3.5rem, 9vw, 7rem); }

.center { text-align: center; }

/* ---------- TYPE ---------- */
h1, h2, h3, .display {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.03;
  letter-spacing: -0.01em;
}

h1, .h1 {
  font-size: clamp(40px, 9vw, 76px);
  line-height: 1.0;
}

h2, .h2 { font-size: clamp(30px, 5vw, 40px); }
h3, .h3 { font-size: 22px; font-weight: 700; }

p { color: var(--text); }
.muted { color: var(--muted); }

.lead {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--muted);
  line-height: 1.6;
  max-width: 46ch;
}
.lead strong { color: var(--text); font-weight: 600; }

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

/* ---------- SECTION MARKER ---------- */
.marker {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .35em;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.marker::before {
  content: "\25C6"; /* ◆ */
  color: var(--green);
  letter-spacing: 0;
  font-size: 11px;
}

/* ---------- GLOW ---------- */
/* one glow per viewport — radial green wash */
.glow-top::before,
.glow-center::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 65%);
}
.glow-top::before {
  top: -28%;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  max-width: 130%;
  height: 760px;
  filter: blur(20px);
}
.glow-center::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  max-width: 120%;
  height: 560px;
  filter: blur(24px);
}
.glow-top > .wrap,
.glow-center > .wrap { position: relative; z-index: 1; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 15px;
  line-height: 1;
  padding: 1rem 1.6rem;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--green);
  color: var(--btn-text);
  box-shadow: 0 0 0 1px var(--green), 0 8px 30px -8px var(--green-glow);
}
.btn-primary:hover {
  background: var(--green-hover);
  box-shadow: 0 0 0 1px var(--green-hover), 0 10px 38px -8px var(--green-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  color: var(--green);
  border-color: var(--green);
}

.btn-lg { padding: 1.15rem 2rem; font-size: 16px; }

/* text link (secondary CTAs) */
.tlink {
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color .18s ease, border-color .18s ease;
}
.tlink:hover { color: var(--green); border-color: var(--green); }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.wordmark {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 20px;
  color: var(--green);
  /* neon glow to match the brand wordmark */
  text-shadow: 0 0 18px var(--green-glow), 0 0 4px rgba(87, 227, 137, .45);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .18s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links .btn { font-size: 13px; padding: .7rem 1.1rem; }

.nav-toggle { display: none; }

@media (max-width: 760px) {
  .nav-links .nav-text { display: none; }
}

/* ---------- HERO ---------- */
.hero { padding-block: clamp(3.5rem, 10vw, 7rem) clamp(2.5rem, 6vw, 4rem); overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero h1 {
  font-size: clamp(30px, 4vw, 49px);
  letter-spacing: -0.025em;
  margin-bottom: 1.3rem;
}
.hl-line2 { white-space: nowrap; }   /* keeps "HIT $10K+ MONTHS" (and the green) on one line */
.hero .lead { margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem 1.6rem; }
.hero-fineprint { margin-top: 1rem; color: var(--muted); font-size: 13px; letter-spacing: .04em; }

/* hero proof — clean 2-column wins, no rotation, fully visible */
.hero-shots { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; align-items: start; }
.hero-col { display: flex; flex-direction: column; gap: .9rem; }
.hero-col:nth-child(2) { margin-top: 12%; }   /* subtle stagger */
.hero-shot {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 18px 44px -22px rgba(0, 0, 0, .85);
  line-height: 0;
}
.hero-shot img { display: block; width: 100%; height: auto; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero-col:nth-child(2) { margin-top: 0; }
}

/* ---------- TRUST STRIP ---------- */
.trust-label {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .25em;
  margin-bottom: 1.4rem;
}
.marquee-muted .brand-logo { color: var(--muted); opacity: .4; font-weight: 700; }
.marquee-muted .brand-logo:hover { opacity: .55; }
.marquee-muted .marquee-track { animation-duration: 46s; }

/* ---------- VSL LABEL (pulsing dot) ---------- */
.vsl-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--text);
  margin-bottom: 1rem;
}
.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  flex: 0 0 auto;
  animation: pulse-dot 1.5s ease-out infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(87, 227, 137, .7); }
  70%  { box-shadow: 0 0 0 9px rgba(87, 227, 137, 0); }
  100% { box-shadow: 0 0 0 0 rgba(87, 227, 137, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .pulse-dot { animation: none; }
}

/* ---------- VSL ---------- */
.vsl {
  position: relative;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 16 / 9;
}
.vsl video { width: 100%; height: 100%; object-fit: cover; }

/* ---------- PROOF BAR ---------- */
.proof {
  display: grid;
  /* auto-fit adapts to 3 (apply) or 4 (home) stat cells */
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.proof-cell {
  background: var(--surface);
  padding: 1.8rem 1.4rem;
  text-align: center;
}
.proof-cell .stat {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: var(--green);
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.1;
  margin-bottom: .35rem;
}
.proof-cell .stat-label {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

/* ---------- SECTION HEADS ---------- */
.section-head { max-width: 56ch; margin-bottom: 2.6rem; }
.section-head.center { margin-inline: auto; }
/* balance heading wrap (no orphan word) + guard tight-tracking left-edge clip */
.section-head h2 { text-wrap: balance; padding-left: 0.04em; }

/* ---------- CARD GRID (generic) ---------- */
.cards {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.8rem;
}
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--muted); font-size: 16px; }

/* flagship / emphasized card */
.card-flag {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green), 0 12px 40px -16px var(--green-glow);
}
.card-flag h3 { font-size: 26px; }
.card-flag p { color: var(--text); font-size: 17px; }

/* inside grid — six cards, flagship spans the full top row */
.inside-grid { grid-template-columns: repeat(3, 1fr); }
.inside-grid .card-flag { grid-column: 1 / -1; }
@media (max-width: 900px) {
  .inside-grid { grid-template-columns: 1fr 1fr; }
  .inside-grid .card-flag { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .inside-grid { grid-template-columns: 1fr; }
}

/* ---------- GUARANTEE ---------- */
.guarantee {
  text-align: center;
  overflow: hidden;
  border-block: 1px solid var(--border);
}
.guarantee h2 {
  font-size: clamp(34px, 6vw, 54px);
  margin: .6rem auto 1.2rem;
  max-width: 16ch;
}
.guarantee .support { color: var(--muted); max-width: 48ch; margin-inline: auto; font-size: 18px; }
.guarantee .support-note { color: var(--muted); max-width: 48ch; margin: 1.1rem auto 0; font-size: 14px; font-weight: 500; opacity: .85; }

/* ---------- MENTORS ---------- */
/* mentors — small LinkedIn-style cards (tiny avatar + name + description) */
.mentor-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; max-width: 1040px; }
@media (max-width: 640px) { .mentor-cards { grid-template-columns: 1fr; } }
.mentor-card {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.1rem 1.2rem;
}
.mentor-avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--green);
}
.mentor-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
}
.mentor-role {
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: .6rem;
}
.mentor-bullets { list-style: none; display: flex; flex-direction: column; gap: .3rem; }
.mentor-bullets li {
  position: relative;
  padding-left: .95rem;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}
.mentor-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

/* ---------- TESTIMONIAL / RESULTS WALL ---------- */
/* ---------- WINS CAROUSEL (auto-scroll, hover to pause) ---------- */
.win-carousel {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.win-track {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: max-content;
  animation: winscroll 120s linear infinite;
}
.win-carousel:hover .win-track { animation-play-state: paused; }
@keyframes winscroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.win-card {
  flex: 0 0 auto;
  height: 380px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 14px 36px -22px rgba(0, 0, 0, .8);
  transition: transform .2s ease, box-shadow .2s ease;
}
.win-card img { height: 100%; width: auto; display: block; }
.win-card:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 24px 52px -18px rgba(0, 0, 0, .9); }
@media (prefers-reduced-motion: reduce) {
  .win-carousel { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .win-track { animation: none; }
}

/* masonry — full testimonial screenshots of varied heights */
.wall {
  column-count: 2;
  column-gap: 1.2rem;
}
@media (max-width: 620px) { .wall { column-count: 1; } }
.result-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  break-inside: avoid;
  margin: 0 0 1.2rem;
  display: block;
}
.result-card img { width: 100%; height: auto; display: block; }
/* screenshot slot — payout / win image goes here */
.result-shot {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(135deg, var(--surface-2) 0 14px, var(--surface) 14px 28px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
}
/* real screenshot fills the slot; placeholder shows until file exists */
.result-shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.result-body { padding: 1.3rem 1.4rem 1.5rem; }
.result-meta { font-weight: 600; margin-bottom: .5rem; font-size: 15px; }
.result-meta .res { color: var(--green); }
.result-quote { color: var(--muted); font-size: 15px; }

/* ---------- TWO WAYS IN (brands) ---------- */
.two-ways {
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  max-width: 800px;
  margin-inline: auto;
}
.two-ways .step { padding: 2rem 2rem 2.2rem; }
.two-ways .step .num { margin-bottom: 1rem; }
.two-ways .step h3 { margin-bottom: .7rem; }
@media (max-width: 640px) { .two-ways { grid-template-columns: 1fr; max-width: 460px; } }

/* ---------- STEPS (HOW IT WORKS) ---------- */
.steps { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step .num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--muted);
  line-height: 1;
  margin-bottom: .8rem;
}
.step.card-flag .num { color: var(--green); }

/* ---------- FINAL CTA ---------- */
.cta-block { text-align: center; }
.cta-block h2 { margin-bottom: 1rem; max-width: 20ch; margin-inline: auto; }
.cta-block .cta-lead { color: var(--muted); margin-bottom: 1.8rem; font-size: 17px; }
.cta-block .sub { margin-top: 1.2rem; }

/* ---------- FORMS ---------- */
.form-shell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(1.5rem, 4vw, 2.4rem);
}
/* embedded form (Typeform) container */
.form-embed {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  height: clamp(560px, 80vh, 760px);
}
.form-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.field { margin-bottom: 1.3rem; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
  margin-bottom: .5rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  padding: .85rem 1rem;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: var(--focus-ring);
}
.field input::placeholder,
.field textarea::placeholder { color: #5f655f; }
.field-row { display: grid; gap: 1.3rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-shell .btn { width: 100%; }

/* thank-you state */
.thanks {
  display: none;
  text-align: center;
  padding: clamp(2rem, 6vw, 3.5rem) 1rem;
}
.thanks.show { display: block; }
.thanks .check {
  font-family: 'Poppins', sans-serif;
  color: var(--green);
  font-size: 40px;
  margin-bottom: 1rem;
}
.thanks h3 { margin-bottom: .8rem; }
.thanks p { color: var(--muted); max-width: 40ch; margin-inline: auto; }

/* ---------- LOGO ROW ---------- */
.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 4vw, 3rem);
}
.logo-chip {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  font-size: 18px;
  opacity: .8;
  padding: .6rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 6px;
}

/* ---------- MOVING LOGO MARQUEE (trusted by) ---------- */
.marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* fade the edges so logos slide in/out softly */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(1.8rem, 5vw, 4rem);
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* track holds two identical sets */
}
.brand-logo {
  flex: 0 0 auto;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 24px);
  letter-spacing: -0.01em;
  color: #FFFFFF;            /* all logos white */
  background: none;          /* no background */
  border: 0;
  white-space: nowrap;
  opacity: .85;
  transition: opacity .18s ease;
}
.brand-logo:hover { opacity: 1; }
.brand-logo .tld { color: inherit; }   /* stay white, no green */
/* real logo art: forced white, transparent bg expected */
img.brand-logo {
  height: clamp(24px, 3.2vw, 34px);
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);   /* any colored logo → solid white */
}
@media (prefers-reduced-motion: reduce) {
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; gap: 1.4rem 2.4rem; }
  .marquee-track[aria-hidden="true"] { display: none; }
}

/* ---------- CREATOR ROSTER (niche tiles) ---------- */
.roster { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.6rem 2.2rem; }
.roster-tile { width: 92px; text-align: center; }
.roster-photo {
  width: 72px;
  height: 72px;
  margin: 0 auto .55rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface-2);
}
.roster-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.roster-niche { color: var(--muted); font-size: 13px; line-height: 1.3; }

/* ---------- TRUSTED-BY LOGO ROW (one per brand, static) ---------- */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 6vw, 4.5rem);
}
.trust-row img {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);   /* all logos white */
  opacity: .65;
  transition: opacity .2s ease;
}
.trust-row img:hover { opacity: .9; }
.trust-row img.logo-tall { height: 46px; }   /* square logos need more height */
.trust-row .trust-word {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: #fff;
  opacity: .65;
  transition: opacity .2s ease;
}
.trust-row .trust-word:hover { opacity: .9; }

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding-block: 3rem;
  background: var(--surface);
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer .wordmark { font-size: 24px; margin-bottom: .8rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.2rem 1.8rem; list-style: none; }
.footer-links a { color: var(--muted); font-size: 14px; transition: color .18s ease; }
.footer-links a:hover { color: var(--green); }
.powered {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.powered .logo-chip { font-size: 14px; padding: .4rem .9rem; }
.powered-logo { height: 20px; width: auto; filter: brightness(0) invert(1); opacity: .7; }
.disclaimer {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  max-width: 70ch;
}

/* =================================================================
   /BRANDS — calmer register (sentence case, no glow, left aligned)
   ================================================================= */
.brands h1,
.brands h2,
.brands h3 {
  text-transform: none;
  letter-spacing: -0.015em;
  font-weight: 700;
}
.brands .hero { padding-block: clamp(4rem, 10vw, 8rem) clamp(2rem, 5vw, 3.5rem); }
.brands h1 { font-size: clamp(36px, 6.5vw, 60px); line-height: 1.05; max-width: 18ch; }
.brands .lead { max-width: 54ch; font-size: clamp(18px, 2.3vw, 21px); }
.brands .section-head { margin-bottom: 2.2rem; }
.brands .marker { color: var(--muted); }
/* brands uses no green glow per spec */

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- UTILITIES ---------- */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.stack > * + * { margin-top: 1rem; }
