/* ═══════════════════════════════════════════════════════════════════
   MASTER LANDING v3 — NOIR VAULT · CONVERSION FOCUS
   Display: Cormorant Garamond · UI: Syne
   Palette: void / pearl / silk-gold / rose
   2026 — AI Girls Pinterest → Telegram funnel
═══════════════════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────────────────── */
:root {
  --void:       #040408;
  --deep:       #0a0910;
  --panel:      rgba(255,255,255,0.04);
  --panel-b:    rgba(255,255,255,0.09);
  --pearl:      #ede8df;
  --silk:       #c8a87a;
  --silk-deep:  #b8935a;
  --silk-dim:   rgba(200,168,122,0.28);
  --rose:       #c4536c;
  --rose-dim:   rgba(196,83,108,0.28);
  --muted:      rgba(237,232,223,0.55);
  --dim:        rgba(237,232,223,0.28);
  --tg:         #2aabee;
  --tg-dim:     rgba(42,171,238,0.2);
  --hero-bg:    none;
  --ease:       cubic-bezier(0.4,0,0.2,1);
  --ease-out:   cubic-bezier(0,0,0.2,1);
  --r:          0px; /* border-radius — square = editorial */
}

/* ── RESET ───────────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  background: var(--void);
  color: var(--pearl);
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(200,168,122,0.22); color: var(--pearl); }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: rgba(200,168,122,0.28); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* ── LAYOUT ──────────────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── GRAIN OVERLAY ───────────────────────────────────────────────── */
.grain {
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.45;
}

/* ── LABEL ───────────────────────────────────────────────────────── */
.label {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--silk);
  margin-bottom: 14px;
}

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 16px 36px;
  font-family: 'Syne', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--r);
  cursor: pointer;
  transition: background 0.28s, border-color 0.28s, color 0.28s, transform 0.2s, box-shadow 0.28s;
  -webkit-tap-highlight-color: transparent;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

/* Primary — solid gold. Max CTR. */
.btn--primary {
  background: var(--silk);
  color: #04040a;
  border-color: var(--silk);
}
.btn--primary:hover {
  background: var(--silk-deep);
  border-color: var(--silk-deep);
  box-shadow: 0 4px 28px rgba(200,168,122,0.35);
}

/* Ghost — transparent + pearl border */
.btn--ghost {
  background: transparent;
  color: var(--pearl);
  border-color: rgba(237,232,223,0.35);
}
.btn--ghost:hover {
  border-color: rgba(237,232,223,0.7);
  background: rgba(237,232,223,0.05);
}

/* Outline — silk border */
.btn--outline {
  background: transparent;
  color: var(--silk);
  border-color: rgba(200,168,122,0.45);
}
.btn--outline:hover {
  border-color: var(--silk);
  background: rgba(200,168,122,0.07);
}

/* VIP — rose */
.btn--vip {
  background: transparent;
  color: var(--rose);
  border-color: rgba(196,83,108,0.45);
}
.btn--vip:hover {
  border-color: var(--rose);
  background: rgba(196,83,108,0.08);
}

/* ── EYEBROW ─────────────────────────────────────────────────────── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silk);
  margin-bottom: 22px;
  animation: slideUp 0.7s 0.6s ease both;
}
.eyebrow__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
  animation: pulseDot 2.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(196,83,108,0.55); }
  50%      { box-shadow: 0 0 0 7px rgba(196,83,108,0); }
}

/* ── REVEAL ANIMATION ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .w { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ── KEYFRAMES ───────────────────────────────────────────────────── */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes kenBurns {
  from { transform: scale(1.0) translateX(0); }
  to   { transform: scale(1.06) translateX(-14px); }
}
@keyframes heroBgReveal {
  from { opacity: 0; transform: scale(1.08); }
  to   { opacity: 1; transform: scale(1.0); }
}

/* ═══════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0;
  background-image: var(--hero-bg, none);
  background-size: cover;
  background-position: center 18%;
  background-repeat: no-repeat;
  animation: heroBgReveal 2.2s var(--ease-out) both,
             kenBurns 22s 2.2s ease-in-out infinite alternate;
  will-change: transform;
}

/* Gradient: dark left + dark bottom, lighter right */
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(4,4,8,0.97) 0%, rgba(4,4,8,0.82) 35%, rgba(4,4,8,0.32) 62%, rgba(4,4,8,0.08) 85%),
    linear-gradient(to top,   rgba(4,4,8,0.96) 0%, rgba(4,4,8,0.35) 22%, transparent 50%);
}

.hero__body {
  position: relative; z-index: 2;
  width: 100%;
  padding: 100px 0;
}

.hero__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero__content { max-width: 555px; flex-shrink: 0; }

/* Headline word animation */
.hero__headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.2rem, 6.5vw, 5.6rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--pearl);
  margin-bottom: 22px;
}
.w {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  animation: slideUp 0.65s ease both;
}

.hero__sub {
  font-family: 'Syne', sans-serif;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 440px;
  animation: slideUp 0.7s 1.3s ease both;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  animation: slideUp 0.7s 1.6s ease both;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-family: 'Syne', sans-serif;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--dim);
  animation: slideUp 0.7s 1.9s ease both;
}

/* Desktop aside — social proof stats */
.hero__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  animation: fadeIn 1s 2.2s ease both;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 18px 0;
}
.hero__stat-n {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--pearl);
  line-height: 1;
  text-shadow: 0 0 40px rgba(4,4,8,0.9);
}
.hero__stat-l {
  font-family: 'Syne', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
  text-shadow: 0 0 20px rgba(4,4,8,0.9);
}
.hero__stat-div {
  width: 36px;
  height: 1px;
  background: rgba(200,168,122,0.3);
  align-self: flex-end;
}

/* ═══════════════════════════════════════════════════════════════════
   STRIP
═══════════════════════════════════════════════════════════════════ */
.strip {
  background: rgba(200,168,122,0.07);
  border-top: 1px solid rgba(200,168,122,0.12);
  border-bottom: 1px solid rgba(200,168,122,0.12);
  overflow: hidden;
  white-space: nowrap;
  padding: 13px 0;
}
.strip__track {
  display: inline-flex;
  gap: 28px;
  animation: scrollTicker 28s linear infinite;
}
.strip__track span {
  font-family: 'Syne', sans-serif;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silk);
}
.strip__sep { color: rgba(200,168,122,0.3) !important; }

/* ═══════════════════════════════════════════════════════════════════
   PERSONA + VALUE (Interest)
═══════════════════════════════════════════════════════════════════ */
.interest {
  padding: 100px 0 80px;
}

/* Persona card */
.persona {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 64px;
  max-width: 620px;
}
.persona__avatar {
  position: relative;
  flex-shrink: 0;
  width: 72px; height: 72px;
}
.persona__avatar img {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(200,168,122,0.35);
}
.persona__online {
  position: absolute;
  bottom: 2px; right: 2px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #4caf78;
  border: 2px solid var(--void);
  animation: pulseDot 2.4s ease-in-out infinite;
}
.persona__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--pearl);
  margin-bottom: 4px;
  line-height: 1.1;
}
.persona__desc {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.55;
}
.persona__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.badge {
  font-family: 'Syne', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silk);
  padding: 4px 10px;
  border: 1px solid rgba(200,168,122,0.28);
}

/* Value grid */
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 2px;
}

.value-card {
  background: var(--panel);
  border: 1px solid var(--panel-b);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.value-card:hover {
  border-color: rgba(200,168,122,0.22);
  transform: translateY(-4px);
}

.value-card__img {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.value-card__img--tall { height: 420px; }

.value-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.8);
  transform: scale(1.05);
  transition: filter 0.5s, transform 0.5s var(--ease);
}
.value-card:hover .value-card__img img {
  filter: brightness(0.75) saturate(0.9);
  transform: scale(1.0);
}

/* gradient on card image */
.value-card__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,4,8,0.85) 0%, rgba(4,4,8,0.2) 40%, transparent 70%);
}

.value-card__lock {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(4,4,8,0.65);
  border: 1px solid rgba(200,168,122,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silk);
  z-index: 2;
}

.value-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  font-family: 'Syne', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--silk);
  padding: 4px 10px;
  z-index: 3;
}

.value-card__body {
  padding: 20px 22px 28px;
}
.value-card__body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--pearl);
  margin-bottom: 8px;
}
.value-card__body p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════
   UNLOCK (Desire)
═══════════════════════════════════════════════════════════════════ */
.unlock {
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--void) 0%, var(--deep) 50%, var(--void) 100%);
}

.unlock__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}

.unlock__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--pearl);
  margin-bottom: 40px;
}
.unlock__title em {
  font-style: italic;
  color: var(--silk);
}

.unlock__list {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.unlock__list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.unlock__bullet {
  color: var(--silk);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.85rem;
}
.unlock__list strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--pearl);
  margin-bottom: 2px;
}
.unlock__list span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Right side */
.unlock__proof-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 28px;
  background: var(--panel);
  border: 1px solid var(--panel-b);
  margin-bottom: 16px;
  text-align: center;
}
.unlock__proof-n {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4rem;
  font-weight: 600;
  color: var(--pearl);
  line-height: 1;
}
.unlock__proof-l {
  font-family: 'Syne', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.unlock__scarcity {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(196,83,108,0.07);
  border: 1px solid rgba(196,83,108,0.2);
  margin-bottom: 16px;
  font-family: 'Syne', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.scarcity__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
  animation: pulseDot 1.8s ease-in-out infinite;
}
.scarcity__timer {
  margin-left: auto;
  font-variant-numeric: tabular-nums;
  color: var(--rose);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.unlock__preview {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.unlock__preview img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(8px) brightness(0.45);
  transform: scale(1.1);
}
.unlock__preview-overlay {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(4,4,8,0.35);
}
.unlock__preview-lock {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(4,4,8,0.7);
  border: 1px solid rgba(200,168,122,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silk);
}
.unlock__preview-overlay span {
  font-family: 'Syne', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════════════
   LADDER (Action)
═══════════════════════════════════════════════════════════════════ */
.ladder {
  padding: 100px 0 120px;
}

.ladder__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  color: var(--pearl);
  margin-bottom: 56px;
  line-height: 1.1;
}

.ladder__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.ladder__tier {
  padding: 36px 32px 40px;
  background: var(--panel);
  border: 1px solid var(--panel-b);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.3s;
}
.ladder__tier:hover {
  border-color: rgba(200,168,122,0.2);
}

.ladder__tier--primary {
  border-color: rgba(200,168,122,0.28);
  background: rgba(200,168,122,0.05);
}
.ladder__tier--vip {
  border-color: rgba(196,83,108,0.2);
}

.ladder__tier-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.ladder__tier-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pearl);
}
.ladder__badge {
  font-family: 'Syne', sans-serif;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 8px;
}
.ladder__badge--rec {
  color: var(--void);
  background: var(--silk);
}
.ladder__badge--vip {
  color: var(--rose);
  border: 1px solid rgba(196,83,108,0.4);
}

.ladder__tier-desc {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
  flex: 1;
}

.ladder__cta {
  width: 100%;
  margin-bottom: 14px;
}

.ladder__trust {
  font-family: 'Syne', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--dim);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════ */
.footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__brand {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silk);
}
.footer__legal {
  font-size: 0.7rem;
  color: var(--dim);
}

/* ═══════════════════════════════════════════════════════════════════
   MOBILE STICKY CTA
═══════════════════════════════════════════════════════════════════ */
.sticky {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(4,4,8,0.95);
  border-top: 1px solid rgba(200,168,122,0.2);
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  display: none; /* shown only mobile */
}
.sticky--visible {
  transform: none;
}
.sticky__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 20px;
  background: var(--silk);
  color: #04040a;
  font-family: 'Syne', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--r);
  -webkit-tap-highlight-color: transparent;
  transition: background 0.25s;
}
.sticky__btn:active {
  background: var(--silk-deep);
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .value-grid { grid-template-columns: 1fr 1fr; }
  .value-card--featured { grid-column: 1 / -1; }
  .value-card--featured .value-card__img { height: 320px; }
  .unlock__inner { grid-template-columns: 1fr; gap: 48px; }
  .unlock__right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
  .unlock__preview { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .hero__container { display: block; }
  .hero__aside { display: none; }
  .hero__body { padding: 0 0 44px; }
  .hero { align-items: flex-end; }
  .hero__overlay {
    background:
      linear-gradient(to top, rgba(4,4,8,0.98) 0%, rgba(4,4,8,0.9) 40%, rgba(4,4,8,0.5) 64%, rgba(4,4,8,0) 85%);
  }
  .hero__headline { font-size: clamp(2.4rem, 9.5vw, 3.4rem); margin-bottom: 14px; }
  .hero__sub { font-size: 0.88rem; margin-bottom: 22px; }
  .hero__ctas { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 14px; }
  .hero__ctas .btn { width: 100%; justify-content: center; padding: 14px 24px; }
  .hero__trust { gap: 10px; font-size: 0.62rem; }

  .interest { padding: 72px 0 60px; }
  .persona { flex-direction: column; align-items: flex-start; gap: 18px; }
  .value-grid { grid-template-columns: 1fr; gap: 2px; }
  .value-card--featured { grid-column: auto; }
  .value-card__img { height: 260px; }
  .value-card__img--tall { height: 300px; }

  .unlock { padding: 72px 0; }
  .unlock__inner { grid-template-columns: 1fr; gap: 40px; }
  .unlock__right { display: flex; flex-direction: column; gap: 12px; }
  .unlock__proof-n { font-size: 3rem; }

  .ladder { padding: 72px 0 100px; }
  .ladder__grid { grid-template-columns: 1fr; gap: 2px; }
  .ladder__tier { padding: 28px 24px 32px; }

  .footer__inner { flex-direction: column; text-align: center; }

  .sticky { display: block; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: clamp(2.4rem, 11vw, 3.2rem); }
  .unlock__proof-n { font-size: 2.6rem; }
}
