/* ═══════════════════════════════════════════════════
   SHOT ON IPHONE: MASTERED
   Design: Clean editorial · Pallet Ross–inspired
   Fonts: SF Pro Display (headings) · Helvetica Neue (body)
═══════════════════════════════════════════════════ */

/* ─── VARIABLES ─────────────────────────────────── */
:root {
  --white:       #ffffff;
  --off-white:   #f6f6f6;
  --light:       #efefef;
  --black:       #0a0a0a;
  --dark:        #111111;
  --text:        #0a0a0a;
  --text-2:      #333333;
  --text-muted:  #777777;
  --text-dim:    #aaaaaa;
  --border:      rgba(0,0,0,0.09);
  --radius:      16px;
  --radius-sm:   10px;
  --radius-pill: 100px;
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-2:      cubic-bezier(0.65, 0, 0.35, 1);
}

/* ─── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--white);
  color: var(--text);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* ─── GRAIN TEXTURE ──────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.034;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: multiply;
}

/* ─── TYPE SCALE ─────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.9;
  color: var(--text);
}
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); line-height: 0.93; }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.2rem); font-weight: 600; line-height: 1.12; }
h4 { font-size: 0.95rem; font-weight: 600; }
p  { font-size: 0.975rem; color: var(--text-muted); line-height: 1.72; }
em { font-style: italic; font-weight: 300; }
h2 em { font-weight: 300; }

.label, .section-eyebrow {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 100px;
  padding: 0.28rem 0.8rem;
  margin-bottom: 0.9rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ─── CONTAINERS ─────────────────────────────────── */
.container       { max-width: 1060px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.container--narrow { max-width: 680px; }

/* ─── SECTIONS ───────────────────────────────────── */
.section { padding: clamp(64px, 8vw, 112px) 0; }
.section-header { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-header h2 { margin-bottom: 0.6rem; }

/* ─── FADE IN ────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), filter 0.6s var(--ease);
  transition-delay: var(--delay, 0s);
}
.fade-in.visible { opacity: 1; transform: none; filter: blur(0); }

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-pill);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-dark {
  background: var(--black);
  color: #fff;
  border: 1.5px solid var(--black);
}
.btn-dark:hover {
  background: var(--dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}
.btn-dark:active { transform: none; }

/* Waitlist button — black default, green on hover */
.btn-waitlist {
  background: var(--black);
  color: #fff;
  border: 1.5px solid var(--black);
}
.btn-waitlist:hover {
  background: #28a745;
  border-color: #28a745;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(40,167,69,0.32);
}
.btn-waitlist:active { transform: none; }

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: rgba(0,0,0,0.25); background: var(--off-white); color: var(--text); }

/* Legacy aliases */
.btn-primary { background: var(--black); color: #fff; border: 1.5px solid var(--black); }
.btn-primary:hover { background: var(--dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.btn-glass { background: rgba(0,0,0,0.05); border: 1px solid var(--border); color: var(--text-2); }
.btn-glass:hover { background: rgba(0,0,0,0.08); }

.btn-lg { padding: 0.85rem 2rem; font-size: 0.925rem; font-weight: 600; }
.inline-link { color: var(--black); text-decoration: underline; text-underline-offset: 2px; }

/* ─── LAUNCH MODE ─────────────────────────────────── */
body:not(.mode-sales) .mode-sales { display: none !important; }
body.mode-sales .mode-waitlist { display: none !important; }


/* ════════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  flex-shrink: 0;
}
/* Legacy nav-logo spans */
.nav-logo-colon { color: var(--text); }
.nav-logo-sub { color: var(--text-muted); font-weight: 500; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.825rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  flex-shrink: 0;
  font-size: 0.8rem;
  padding: 0.5rem 1.1rem;
}

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 0.5rem;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
/* X state */
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile dropdown menu */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0.5rem 1.25rem 1rem;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}
.nav-mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover { color: var(--text); }
.nav-mobile-menu.open { display: flex; }

/* Discount badge inside enroll buttons */
.btn-was {
  font-size: 0.7em;
  font-weight: 500;
  opacity: 0.6;
  text-decoration: line-through;
  margin-left: 0.2em;
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-logo { flex: 1; }
  .nav-hamburger { display: flex; }
}


/* ════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════ */
.hero {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 88px clamp(1.25rem, 5vw, 2.5rem) 48px;
  background: radial-gradient(ellipse 90% 55% at 50% 18%, rgba(0,122,255,0.04) 0%, var(--white) 68%);
  overflow: hidden;
}

.hero-inner {
  width: 100%;
  max-width: 1060px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ── Headline ── */
.hero-title {
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.048em;
  line-height: 0.84;
  background: linear-gradient(175deg, #0a0a0a 0%, #1c1c24 60%, #2a2a38 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.9rem;
  max-width: 13ch;
}

/* ── Sub + actions — now above cards ── */
.hero-sub { margin-bottom: 1.1rem; }

/* ── Fanned photo cards ── */
.hero-cards {
  position: relative;
  width: 100%;
  height: clamp(300px, 46vw, 560px);
  margin-top: clamp(0.5rem, 0.75vw, 1rem);
  margin-bottom: 0;
}

.hero-card-fan {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(580px, 88vw, 1080px);
  height: clamp(250px, 38vw, 470px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.photo-card {
  position: absolute;
  width: clamp(168px, 22vw, 272px);
  height: clamp(208px, 30vw, 360px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 4px 12px rgba(0,0,0,0.10),
    0 20px 48px rgba(0,0,0,0.14);
  transform-origin: bottom center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.photo-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.16), 0 32px 64px rgba(0,0,0,0.20);
  z-index: 10;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  pointer-events: none;
  user-select: none;
}

.photo-card-inner {
  width: 100%;
  height: 100%;
}

/* Card positions — geometry only, no transform (handled by animation) */
.photo-card-1 { left: 0;    z-index: 1; background: linear-gradient(145deg, #c9a96e 0%, #8b5e3c 40%, #2d1a0e 100%); }
.photo-card-2 { left: 16%;  z-index: 2; background: linear-gradient(145deg, #f5c87a 0%, #e07b3c 50%, #9b2d1f 100%); }
.photo-card-3 { left: 50%;  z-index: 5; background: linear-gradient(160deg, #d4e8f5 0%, #7fb3d3 35%, #1a4a6b 100%); }
.photo-card-4 { right: 16%; z-index: 2; background: linear-gradient(145deg, #e8d5c4 0%, #c4956a 50%, #7a4a2a 100%); }
.photo-card-5 { right: 0;   z-index: 1; background: linear-gradient(145deg, #1a1a2e 0%, #2d3561 50%, #4a3080 100%); }

/* Pre-animation state — all cards start stacked and hidden */
.photo-card-1, .photo-card-5 { opacity: 0; transform: rotate(0deg) translateY(35px) scale(0.82); }
.photo-card-2, .photo-card-4 { opacity: 0; transform: rotate(0deg) translateY(22px) scale(0.88); }
.photo-card-3 { opacity: 0; transform: translateX(-50%) translateY(22px) scale(0.88); }

/* Fan-in keyframes per card */
@keyframes fanIn1 {
  from { opacity: 0; transform: rotate(0deg) translateY(35px) scale(0.82); }
  to   { opacity: 1; transform: rotate(-14deg) translateY(18px); }
}
@keyframes fanIn2 {
  from { opacity: 0; transform: rotate(0deg) translateY(22px) scale(0.88); }
  to   { opacity: 1; transform: rotate(-7deg) translateY(8px); }
}
@keyframes fanIn3 {
  from { opacity: 0; transform: translateX(-50%) translateY(22px) scale(0.88); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0px); }
}
@keyframes fanIn4 {
  from { opacity: 0; transform: rotate(0deg) translateY(22px) scale(0.88); }
  to   { opacity: 1; transform: rotate(7deg) translateY(8px); }
}
@keyframes fanIn5 {
  from { opacity: 0; transform: rotate(0deg) translateY(35px) scale(0.82); }
  to   { opacity: 1; transform: rotate(14deg) translateY(18px); }
}

/* Fire animations when hero-loaded class is added */
body.hero-loaded .photo-card-1 { animation: fanIn1 0.85s cubic-bezier(0.16,1,0.3,1) 0.18s both; }
body.hero-loaded .photo-card-2 { animation: fanIn2 0.85s cubic-bezier(0.16,1,0.3,1) 0.10s both; }
body.hero-loaded .photo-card-3 { animation: fanIn3 0.85s cubic-bezier(0.16,1,0.3,1) 0.00s both; }
body.hero-loaded .photo-card-4 { animation: fanIn4 0.85s cubic-bezier(0.16,1,0.3,1) 0.10s both; }
body.hero-loaded .photo-card-5 { animation: fanIn5 0.85s cubic-bezier(0.16,1,0.3,1) 0.18s both; }

/* After animation: remove animation, apply static transforms so hover works */
body.hero-fanned .photo-card-1 { animation: none; opacity: 1; transform: rotate(-14deg) translateY(18px); }
body.hero-fanned .photo-card-2 { animation: none; opacity: 1; transform: rotate(-7deg) translateY(8px); }
body.hero-fanned .photo-card-3 { animation: none; opacity: 1; transform: translateX(-50%) translateY(0px); }
body.hero-fanned .photo-card-4 { animation: none; opacity: 1; transform: rotate(7deg) translateY(8px); }
body.hero-fanned .photo-card-5 { animation: none; opacity: 1; transform: rotate(14deg) translateY(18px); }

/* Hover states (only active once fanned) */
body.hero-fanned .photo-card-1:hover { transform: rotate(-14deg) translateY(3px); }
body.hero-fanned .photo-card-2:hover { transform: rotate(-7deg) translateY(-5px); }
body.hero-fanned .photo-card-3:hover { transform: translateX(-50%) translateY(-9px); }
body.hero-fanned .photo-card-4:hover { transform: rotate(7deg) translateY(-5px); }
body.hero-fanned .photo-card-5:hover { transform: rotate(14deg) translateY(3px); }

/* Tags row — below the photo fan */
.hero-photo-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  opacity: 0;
}
body.hero-fanned .hero-photo-tags {
  animation: tagFadeIn 0.4s ease 0.2s forwards;
}

.hero-tag {
  position: static;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.38rem 0.9rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.09);
}
a.hero-tag { text-decoration: none; cursor: pointer; }
a.hero-tag:hover { opacity: 0.82; transform: translateY(-1px); }
.hero-tag-1 {
  background: rgba(0,122,255,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}
.hero-tag-2 {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0.07);
  color: var(--text);
}
@keyframes tag-float {
  0%   { transform: translateY(0px); }
  100% { transform: translateY(-6px); }
}
@keyframes tagFadeIn {
  to { opacity: 1; }
}

/* ── Sub + actions ── */
.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--text-muted);
  max-width: 48ch;
  line-height: 1.65;
  margin-bottom: 1rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.hero-enrolled-link { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.35rem; }
.hero-enrolled-link a { color: var(--text-2); text-decoration: underline; text-underline-offset: 2px; }
.hero-enrolled-link a:hover { color: var(--text); }

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-cta-note { font-size: 0.72rem; color: var(--text-dim); margin-top: 0.5rem; text-align: center; }
.hero-cta-note a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 2px; }

.hero-ck-embed { max-width: 380px; margin-top: 1rem; }

/* Scroll hint */
.hero-scroll-hint { display: none; }

/* Legacy classes no-op */
.hero-bg, .hero-grain, .hero-glow, .hero-device-float,
.hero-iphone, .hero-byline, .br-desktop { display: none; }
.ck-form-wrapper { max-width: 380px; }
.form-fallback, .form-fallback-link { font-size: 0.72rem; color: var(--text-dim); text-align: center; margin-top: 0.5rem; }

/* ─── CONVERTKIT GLOBAL OVERRIDES ───────────────────── */
[data-uid] .formkit-form { background: transparent !important; box-shadow: none !important; }
[data-uid] .formkit-submit,
.formkit-submit {
  background: #0a0a0f !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 14px !important;
  outline: none !important;
  box-shadow: none !important;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: background 0.2s, box-shadow 0.2s !important;
}
[data-uid] .formkit-submit:hover,
.formkit-submit:hover {
  background: #28a745 !important;
  box-shadow: 0 6px 24px rgba(40,167,69,0.28) !important;
  outline: none !important;
}
[data-uid] .formkit-submit:focus,
.formkit-submit:focus {
  outline: none !important;
  box-shadow: none !important;
}
[data-uid] .formkit-submit > span { pointer-events: none; }
[data-uid] .formkit-powered-by-convertkit-container { display: none !important; }


/* ════════════════════════════════════════════════════
   BEFORE / AFTER SLIDERS
════════════════════════════════════════════════════ */
.ba-section { background: #f4f6f9; }

.ba-section .section-header { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.ba-section-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 44ch;
  margin: 0.7rem auto 0;
  line-height: 1.65;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.ba-sliders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
}

.ba-slider {
  --split: 50%;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  aspect-ratio: 3/4;
  box-shadow: 0 4px 28px rgba(0,0,0,0.11), 0 1px 4px rgba(0,0,0,0.07);
}

.ba-before,
.ba-after { position: absolute; inset: 0; overflow: hidden; }

/* after is first in DOM = base layer (painted first, sits behind)
   before is second in DOM = top layer, clipped to left portion only */
.ba-before { clip-path: inset(0 calc(100% - var(--split)) 0 0); }

.ba-before img {
  width: 100%; height: 100%; object-fit: cover; pointer-events: none;
}
.ba-after img {
  width: 100%; height: 100%; object-fit: cover; pointer-events: none;
}

.ba-label {
  position: absolute;
  bottom: 12px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.22rem 0.55rem;
  border-radius: 20px;
  z-index: 5;
  pointer-events: none;
}
.ba-before .ba-label { left: 10px; }
.ba-after  .ba-label { right: 10px; }

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--split);
  transform: translateX(-50%);
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.ba-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%; width: 2px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 0 10px rgba(0,0,0,0.28);
  transform: translateX(-50%);
}
.ba-circle {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 14px rgba(0,0,0,0.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  z-index: 1;
  transition: transform 0.12s;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.ba-slider:active .ba-circle { transform: scale(1.08); }

@media (max-width: 768px) {
  .ba-sliders { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; gap: 1.25rem; }
}


/* ════════════════════════════════════════════════════
   PROOF BAR
════════════════════════════════════════════════════ */
.proof-bar {
  background: #0d0d12;
  border-top: none;
  border-bottom: none;
  padding: 1.5rem 0;
}
.proof-bar-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.proof-stat { text-align: center; }
.proof-number {
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #ffffff;
  line-height: 1;
  display: block;
}
.proof-label {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-top: 0.2rem;
}
.proof-divider { width: 1px; height: 1.75rem; background: rgba(255,255,255,0.1); }
@media (max-width: 560px) { .proof-divider { display: none; } }


/* ════════════════════════════════════════════════════
   PAIN — card stack design
════════════════════════════════════════════════════ */
.pain-section {
  background: radial-gradient(ellipse 100% 70% at 50% 110%, rgba(0,122,255,0.035) 0%, var(--white) 60%);
  padding-bottom: clamp(48px, 6vw, 80px);
}

.pain-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.pain-header h2 { margin-bottom: 0; }

.pain-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

/* Physical card stack effect — stacked layers visible below each card */
.pain-stack-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 22px;
  margin-bottom: 14px; /* room for stack layers */
  box-shadow:
    /* Stacked card layers */
    0 4px 0 0 #f4f4f4,
    0 8px 0 0 #ebebeb,
    0 12px 0 0 #e2e2e2,
    /* Ambient lift */
    0 20px 40px rgba(0,0,0,0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.pain-stack-card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow:
    0 4px 0 0 #f4f4f4,
    0 8px 0 0 #ebebeb,
    0 12px 0 0 #e2e2e2,
    0 36px 64px rgba(0,0,0,0.12);
}

.pain-stack-body {
  padding: clamp(2rem, 3.5vw, 2.75rem) clamp(1.75rem, 3vw, 2.25rem);
}

.pain-num {
  display: block;
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(0, 122, 255, 0.45);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.pain-stack-card h3 {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  margin-bottom: 0.7rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.pain-stack-card p {
  font-size: 0.875rem;
  line-height: 1.72;
  color: var(--text-muted);
}

@media (max-width: 800px) {
  .pain-cards { grid-template-columns: 1fr; gap: 2rem; }
  .pain-stack-card { margin-bottom: 10px; }
}


/* ════════════════════════════════════════════════════
   OUTCOMES — dark contrast section
════════════════════════════════════════════════════ */
.outcomes-section {
  background: linear-gradient(180deg, #0c0c14 0%, #0a0a0f 100%);
  color: #fff;
  position: relative;
}
.outcomes-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4rem;
  background: linear-gradient(180deg, rgba(250,250,250,0.04) 0%, transparent 100%);
  pointer-events: none;
}
/* Eyebrow + headings inside dark section */
.outcomes-section .section-eyebrow {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.45);
}
.outcomes-section h2    { color: #fff; }
.outcomes-section h2 em { color: rgba(255,255,255,0.4); }
.outcomes-section h3    { color: #fff; }
.outcomes-section p     { color: rgba(255,255,255,0.45); }

/* Centered header above the grid */
.outcomes-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

/* Bordered 2×2 grid */
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  overflow: hidden;
}
.outcome-item {
  padding: clamp(1.75rem, 3vw, 2.75rem);
  border-right: 1px solid rgba(255,255,255,0.09);
  border-bottom: 1px solid rgba(255,255,255,0.09);
  transition: background 0.2s;
}
.outcome-item:nth-child(even)   { border-right: none; }
.outcome-item:nth-child(3),
.outcome-item:nth-child(4)      { border-bottom: none; }
.outcome-item:hover              { background: rgba(255,255,255,0.03); }

.outcome-number {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  margin-bottom: 0.75rem;
  display: block;
}
.outcome-item h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.55rem;
}
.outcome-item p  { font-size: 0.875rem; line-height: 1.68; }

@media (max-width: 600px) {
  .outcomes-grid { grid-template-columns: 1fr; border-radius: 16px; }
  .outcome-item { border-right: none; }
  .outcome-item:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,0.09); }
}


/* ════════════════════════════════════════════════════
   CURRICULUM
════════════════════════════════════════════════════ */
.curriculum-section {
  background-color: var(--white);
  background-image: radial-gradient(rgba(0,0,0,0.045) 1px, transparent 1px);
  background-size: 26px 26px;
  background-position: center;
}

.accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.accordion-item {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s, box-shadow 0.2s;
  border-radius: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: inset 0 0 0 transparent !important;
}
.accordion-item.glass {
  background: var(--white) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: inset 0 0 0 transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--border) !important;
  border-radius: 0 !important;
}
.accordion-item:last-child, .accordion-item.glass:last-child { border-bottom: none !important; }
.accordion-item:hover, .accordion-item.glass:hover { background: var(--off-white) !important; }
/* Open state: left blue accent + very subtle tint */
.accordion-item.open,
.accordion-item.glass.open {
  background: rgba(0,122,255,0.018) !important;
  box-shadow: inset 3px 0 0 #007AFF !important;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  text-align: left;
}
.acc-num {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  flex-shrink: 0;
  min-width: 1.6rem;
  transition: color 0.2s;
}
.accordion-item.open .acc-num { color: #007AFF; }
.acc-title {
  flex: 1;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
.acc-badge {
  font-size: 0.6rem;
  color: var(--text-dim);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.15rem 0.5rem;
  flex-shrink: 0;
}
.acc-arrow { color: var(--text-dim); flex-shrink: 0; transition: transform 0.3s var(--ease), color 0.2s; }
.accordion-trigger[aria-expanded="true"] .acc-arrow { transform: rotate(180deg); color: var(--text); }

.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.accordion-body p {
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  font-size: 0.85rem;
  line-height: 1.73;
  color: var(--text-muted);
}
.accordion-item.open .accordion-body { max-height: 280px; }


/* ════════════════════════════════════════════════════
   BONUSES
════════════════════════════════════════════════════ */
.bonuses-section { background: var(--off-white); }

.bonuses-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.bonus-card {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: box-shadow 0.2s;
}
.bonus-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
.bonus-card.glass { background: var(--white) !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; box-shadow: none; }
.bonus-card::before { display: none; }

.bonus-badge { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 1.1rem; }
.bonus-icon { margin-bottom: 1rem; color: var(--text-2); }
.bonus-card h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: 0.6rem; line-height: 1.2; }
.bonus-card p  { font-size: 0.875rem; margin-bottom: 1.1rem; line-height: 1.68; }
.bonus-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.825rem; color: var(--text); font-weight: 600; transition: gap 0.2s; }
.bonus-link:hover { gap: 0.65rem; }
.bonus-coming-soon { display: inline-block; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); border: 1px solid var(--border); border-radius: 100px; padding: 0.25rem 0.7rem; }
@media (max-width: 600px) { .bonuses-grid { grid-template-columns: 1fr; } }


/* ════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════ */
.about-section { background: var(--white); }

.about-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.about-visual { display: flex; flex-direction: column; gap: 0.75rem; position: sticky; top: 88px; }
.about-photo-frame {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: none;
}
.about-photo-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: var(--text-dim); }
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-store-link {
  padding: 0.8rem 1rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  backdrop-filter: none;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.about-store-link span { font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }
.about-store-link a { font-size: 0.8rem; color: var(--text); font-weight: 600; }
.about-name { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1.25rem; }
.about-content p { margin-bottom: 0.9rem; font-size: 0.975rem; line-height: 1.78; }

@media (max-width: 760px) { .about-layout { grid-template-columns: 1fr; } .about-visual { position: static; max-width: 180px; } }


/* ════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════ */
.testimonials-section { background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.testimonial-card {
  padding: 1.6rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: none;
  box-shadow: none;
}
.testimonial-card.glass { background: var(--white) !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; box-shadow: none; }
.testimonial-stars { color: #f59e0b; font-size: 0.72rem; letter-spacing: 0.04em; margin-bottom: 0.85rem; }
.testimonial-quote { font-style: italic; font-size: 0.9rem; color: var(--text-2); line-height: 1.65; margin-bottom: 1rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.6rem; }
.testimonial-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--light); border: 1px solid var(--border); flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text); }
.testimonial-author span   { font-size: 0.68rem; color: var(--text-dim); }
@media (max-width: 720px) { .testimonials-grid { grid-template-columns: 1fr; } }


/* ════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════ */
.faq-section { background: var(--white); }

.faq-list {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.faq-item {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  backdrop-filter: none;
  border-radius: 0 !important;
}
.faq-item.glass { background: var(--white) !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; box-shadow: none; border: none !important; border-bottom: 1px solid var(--border) !important; border-radius: 0 !important; }
.faq-item:last-child, .faq-item.glass:last-child { border-bottom: none !important; }
.faq-item:hover, .faq-item.glass:hover { background: var(--off-white) !important; }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.faq-arrow { color: var(--text-dim); flex-shrink: 0; transition: transform 0.3s var(--ease), color 0.2s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--text); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-body p {
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  font-size: 0.85rem;
  line-height: 1.73;
}
.faq-item.open .faq-body { max-height: 400px; }


/* ════════════════════════════════════════════════════
   FINAL CTA
════════════════════════════════════════════════════ */
.final-cta-section {
  background: radial-gradient(ellipse 90% 60% at 50% 100%, rgba(0,122,255,0.05) 0%, #ffffff 65%);
  position: relative;
  overflow: hidden;
}

/* Ambient glow blobs — hidden in light mode */
.final-cta-section::before {
  content: '';
  display: none;
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(30,80,200,0.22) 0%, rgba(80,30,160,0.14) 45%, transparent 70%);
  pointer-events: none;
}
.final-cta-section::after {
  content: '';
  position: fixed; /* visual trick to keep it stable */
  display: none;
}
.final-cta-glow {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0,140,180,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-card {
  max-width: 600px;
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(2rem, 5vw, 4.5rem);
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  position: relative;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}

.final-cta-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 0.92;
}
.final-cta-title em { color: var(--text-muted); font-style: italic; font-weight: 300; }
.final-cta-sub { font-size: 0.975rem; color: var(--text-muted); max-width: 36ch; margin: 0 auto 2.25rem; line-height: 1.65; }

.final-ck-form { max-width: 360px; margin: 0 auto 0.6rem; }
.final-cta-note { font-size: 0.72rem; color: var(--text-dim); }
.final-cta-note a { color: var(--text-muted); text-decoration: underline; }

.final-price-block { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.final-price-row { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.final-price {
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}
.final-price-stack { display: flex; flex-direction: column; align-items: flex-start; gap: 0.15rem; }
.final-price-was { font-size: 1.4rem; font-weight: 500; color: var(--text-dim); text-decoration: line-through; letter-spacing: -0.02em; line-height: 1; }
.final-price-details { display: flex; flex-direction: column; gap: 0.2rem; text-align: left; }
.final-price-details span { font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); }
.guarantee-note { font-size: 0.72rem; color: var(--text-dim); margin-top: 0.6rem; }

/* Proof bar: was-price */
.proof-was { font-size: 0.75em; color: rgba(255,255,255,0.25); text-decoration: line-through; font-weight: 400; margin-left: 0.25rem; }

/* Hero: was-price line */
.hero-price-line { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; text-align: center; width: 100%; }
.hero-price-was { text-decoration: line-through; color: rgba(255,255,255,0.3); }
.hero-price-now { font-weight: 600; color: rgba(255,255,255,0.85); }
.price-pill { font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif; font-size: 2rem; font-weight: 700; color: #fff; }
.price-note { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.price-row { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap; }

/* Buttons inside CTA — standard sizing */
.final-cta-section .btn-primary,
.final-cta-section .btn-dark,
.final-cta-section .btn-waitlist {
  font-size: 0.95rem;
  padding: 0.95rem 2.25rem;
}
.final-cta-section .btn-primary:hover,
.final-cta-section .btn-dark:hover {
  background: var(--dark);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  color: #ffffff;
  transform: translateY(-2px);
}


/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 0;
}
.footer-inner { max-width: 1060px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.footer-logo { font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif; font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.7); letter-spacing: -0.02em; }
.footer-by { font-size: 0.72rem; color: rgba(255,255,255,0.25); }
.footer-by a { color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 1.75rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: color 0.15s; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-copy { font-size: 0.68rem; color: rgba(255,255,255,0.18); }


/* ════════════════════════════════════════════════════
   STICKY BAR
════════════════════════════════════════════════════ */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 0.75rem clamp(1rem, 4vw, 2rem);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  display: none;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.06);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-inner { max-width: 1060px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.sticky-bar-waitlist, .sticky-bar-sales { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 1rem; }
.sticky-bar-text { font-size: 0.825rem; color: var(--text-muted); }
.sticky-bar-price { font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }

@media (max-width: 768px) { .sticky-bar { display: block; } }
@media (min-width: 769px) { .sticky-bar { display: none !important; } }


/* ════════════════════════════════════════════════════
   SHAKE
════════════════════════════════════════════════════ */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-7px); }
  40% { transform: translateX(7px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}
.shake { animation: shake 0.38s var(--ease-2); }


/* ════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .hero-title { font-size: clamp(2.5rem, 11vw, 3.5rem); }
  .hero-cards { height: 260px; }
  .hero-card-fan { width: 380px; }
  .photo-card { width: 112px; height: 148px; }
  .hero-tag { font-size: 0.65rem; padding: 0.3rem 0.65rem; }
  .btn-lg { padding: 0.75rem 1.5rem; font-size: 0.875rem; }
}

@media (max-width: 400px) {
  .hero-card-fan { width: 320px; }
  .photo-card { width: 96px; height: 126px; }
}

@media print {
  .nav, .sticky-bar { display: none; }
  body { background: white; color: black; }
}
