@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@200;300;400;500;600;700&display=swap');

:root {
  --void: #07070a;
  --surface: #0d0d12;
  --surface-2: #12121a;
  --ink: #f4f2ec;
  --muted: #9a978f;
  --muted-2: #6f6c66;
  --gold: #dfbd7e; /* Increased luminance for CTA contrast */
  --emerald: #56d6ae;
  --border: rgba(255, 255, 255, 0.09);
  --glass-bg: rgba(255, 255, 255, 0.045);
  --glass-border: rgba(255, 255, 255, 0.14);
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --sidebar-width: 300px;
  --radius: 20px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html { background: var(--void); color: var(--ink); scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  line-height: 1.6;
  background: var(--void);
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; margin: 0 0 1rem 0; color: var(--ink); text-rendering: optimizeLegibility; }
.display { font-size: clamp(2.25rem, 3.5vw, 3.25rem); letter-spacing: normal; }
.display .accent-word { background: linear-gradient(100deg, var(--gold) 0%, #eddcb6 45%, var(--emerald) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
h2 { font-size: clamp(1.75rem, 2.5vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); }

.eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; display: inline-flex; align-items: center; gap: 0.6rem; }
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); display: inline-block; }

p { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.12rem); line-height: 1.6; font-weight: 300; margin: 0 0 1.5rem; } /* Increased line-height for cognitive ease */
p:last-child { margin-bottom: 0; }
a { color: inherit; }

/* ---------- Grain overlay ---------- */
.grain-overlay {
  position: fixed; inset: 0; z-index: 2; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- Aurora background ---------- */
.aurora-container { position: fixed; inset: 0; z-index: 0; overflow: hidden; background: var(--void); }
.aurora-blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35; will-change: transform; }
.aurora-blob.b1 { width: 46vw; height: 46vw; top: -12%; left: -8%; background: radial-gradient(circle, rgba(201,168,106,0.55), transparent 70%); animation: drift1 26s ease-in-out infinite alternate; }
.aurora-blob.b2 { width: 40vw; height: 40vw; bottom: -14%; right: -6%; background: radial-gradient(circle, rgba(86,214,174,0.45), transparent 70%); animation: drift2 30s ease-in-out infinite alternate; }
.aurora-blob.b3 { width: 30vw; height: 30vw; top: 35%; left: 55%; background: radial-gradient(circle, rgba(120,110,255,0.28), transparent 70%); animation: drift1 22s ease-in-out infinite alternate-reverse; }
@keyframes drift1 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(4%, 6%) scale(1.12); } }
@keyframes drift2 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-5%, -4%) scale(1.08); } }

/* ---------- Cinematic Background Video / Dual-Buffer ---------- */
.cinematic-bg-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; overflow: hidden; -webkit-mask-image: linear-gradient(to bottom, black 0%, black 75%, transparent 100%); mask-image: linear-gradient(to bottom, black 0%, black 75%, transparent 100%); background: #07090c; }
.cinematic-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.45) grayscale(0.2) contrast(1.1); opacity: 1; z-index: 1; transition: opacity 1.5s ease-in-out; }
.hero__v { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.4s linear; pointer-events: none; filter: brightness(0.45) grayscale(0.2) contrast(1.1); z-index: 0; }
.hero__v.is-active { opacity: 1; }
.cinematic-bg-container.is-visible .cinematic-poster { opacity: 0; }
.cinematic-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,9,12,0.45) 0%, rgba(7,9,12,0.85) 75%, #07090c 100%); pointer-events: none; z-index: 2;}

/* ---------- Glass components ---------- */
.glass-card { background: linear-gradient(150deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: var(--radius); padding: 2.2rem; box-shadow: inset 0 1px 1px rgba(255,255,255,0.1), 0 8px 32px rgba(0,0,0,0.6); }
.glass-card:hover { border-color: rgba(201,168,106,0.35); transition: border-color 0.4s var(--ease); }

/* ---------- Buttons ---------- */
.btn-editorial {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold), #b98f4d);
  color: #0a0a0a; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase;
  text-decoration: none; padding: 18px 36px; border-radius: 999px; border: none;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.25), 0 10px 30px -8px rgba(201,168,106,0.45); cursor: pointer;
}
.btn-editorial:hover { transform: translateY(-2px); box-shadow: inset 0 1px 1px rgba(255,255,255,0.35), 0 16px 40px -8px rgba(201,168,106,0.6); }
.btn-editorial.ghost { background: transparent; color: var(--ink); border: 1px solid var(--glass-border); box-shadow: none; }
.btn-editorial.ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Layout ---------- */
.layout-container { display: grid; grid-template-columns: var(--sidebar-width) 1fr; min-height: 100vh; position: relative; z-index: 1; }

/* Desktop Navigation */
.mobile-sitebar, .mobile-cta-dock { display: none; }

.layout-sidebar { border-right: 1px solid var(--border); padding: 2.6rem 2rem; display: flex; flex-direction: column; position: sticky; top: 0; height: 100vh; background: linear-gradient(180deg, rgba(7,7,10,0.95) 0%, rgba(7,7,10,0.85) 100%); box-shadow: 8px 0 32px rgba(0,0,0,0.4); z-index: 100; }
.brand-logo { font-family: var(--font-serif); font-size: 1.85rem; font-weight: 700; color: var(--ink); text-decoration: none; margin-bottom: 3rem; display: block; }
.brand-logo span { color: var(--gold); }
.nav-menu { display: flex; flex-direction: column; gap: 1.4rem; }
.nav-menu a { font-size: 0.88rem; font-weight: 500; color: var(--muted); text-decoration: none; transition: color 0.25s; position: relative; }
.nav-menu a:hover { color: var(--ink); }
.nav-menu a.cta-link { color: var(--gold); font-weight: 600; }
.sidebar-footer { margin-top: auto; font-size: 0.72rem; color: var(--muted-2); letter-spacing: 0.05em; }

.layout-main { flex: 1; padding: 0; min-height: 100svh; display: flex; flex-direction: column; }
.section-block { padding: clamp(4rem, 10vh, 8rem) clamp(1.25rem, 4vw, 3.5rem); border-bottom: 1px solid var(--border); position: relative; }
.hero { display: flex; align-items: center; justify-content: center; min-height: 100svh; border-bottom: none; overflow: hidden; position: relative; padding: 0; }
.hero-content { max-width: 800px; width: 100%; position: relative; z-index: 10; padding: clamp(2rem, 5vw, 4rem); text-align: left; margin-top: clamp(4rem, 10vh, 8rem); }
@media(max-width: 768px) { .hero-content { text-align: center; } .eyebrow { justify-content: center; } }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }

/* ---------- Bento Grid ---------- */
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(160px, auto); gap: 1.25rem; margin-top: 2.5rem; }
.bento-card { grid-column: span 2; grid-row: span 1; border-radius: var(--radius); background: linear-gradient(150deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.005) 100%); border: 1px solid rgba(255, 255, 255, 0.08); box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 12px 32px rgba(0,0,0,0.6); padding: 2rem; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.bento-card::after { content: ''; position: absolute; inset: -1px; border-radius: inherit; background: radial-gradient(400px circle at 50% -20%, rgba(255,255,255,0.06), transparent 50%); pointer-events: none; }
.bento-card:hover { transform: translateY(-4px); border-color: rgba(201,168,106,0.3); box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 12px 40px rgba(0,0,0,0.6); }
.bento-card.span-4 { grid-column: span 4; }
.bento-card.span-1 { grid-column: span 1; }
.bento-card.row-2 { grid-row: span 2; }
.bento-card .bento-eyebrow { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.bento-card h3 { margin-bottom: 0.5rem; }
.bento-card p { font-size: 0.95rem; margin-bottom: 0; }
.bento-card.image-card { padding: 0; justify-content: flex-end; min-height: 320px; }
.bento-card.image-card video, .bento-card.image-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.4s ease-in-out; }
.bento-card.image-card video.loaded, .bento-card.image-card img.loaded { opacity: 0.9; }
.bento-card.image-card .card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(7,7,10,0.92) 100%); }
.bento-card.image-card .card-content { position: relative; z-index: 1; padding: 1.75rem; }
.bento-card.stat { justify-content: center; text-align: center; background: radial-gradient(circle at top, rgba(201,168,106,0.08) 0%, rgba(255,255,255,0.02) 100%); box-shadow: inset 0 1px 1px rgba(201,168,106,0.15), 0 8px 32px rgba(0,0,0,0.5); border-color: rgba(201,168,106,0.15); }
.bento-card.stat .stat-number { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--gold); text-shadow: 0 0 20px rgba(201,168,106,0.3); }
.bento-card.stat .stat-label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.4rem; }
.bento-card.accent { background: linear-gradient(160deg, rgba(201,168,106,0.12), rgba(86,214,174,0.06)); border-color: rgba(201,168,106,0.25); }

/* ---------- Steps / timeline ---------- */
.step-row { display: flex; align-items: flex-start; gap: 1.5rem; padding: 1.6rem 0; border-bottom: 1px solid var(--border); }
.step-row:last-child { border-bottom: none; }
.step-num { font-family: var(--font-serif); font-size: 1.6rem; color: var(--gold); min-width: 48px; }

/* ---------- Fade animation ---------- */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.9s ease-out, transform 0.9s ease-out; }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Footer ---------- */
.site-footer { padding: 3rem 5%; text-align: center; color: var(--muted-2); font-size: 0.82rem; }

/* ---------- Responsive Breakpoints ---------- */
@media (max-width: 1200px) {
  .layout-container { grid-template-columns: 1fr; }
  .layout-sidebar { height: auto; position: relative; border-right: none; border-bottom: 1px solid var(--border); padding: 1.4rem 5%; flex-direction: row; justify-content: space-between; align-items: center; }
  .nav-menu { flex-direction: row; gap: 1.5rem; flex-wrap: wrap; }
  .sidebar-footer { display: none; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .bento-card.span-4 { grid-column: span 2; }
  .feature-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .display { font-size: clamp(2.5rem, 5vw, 4rem); }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card, .bento-card.span-4, .bento-card.span-2, .bento-card.row-2 { grid-column: span 1 !important; grid-row: auto !important; }
  .section-block { padding: 4rem 6%; }
  .section-block.hero .hero-content { padding-top: 6rem; padding-bottom: 4rem; }
  .glass-card { padding: 1.5rem; }
  .step-row { flex-direction: column; gap: 0.5rem; }
  .step-num { font-size: 1.2rem; }
}

@media print {
  body { background: white !important; color: black !important; }
  .sp-header, .sp-nav, .sp-sheet, .sp-dim-overlay, .sp-bonus-sheet { display: none !important; }
  .sp-dashboard, .sp-view, .sp-step, .sp-container { max-width: none !important; margin: 0 !important; padding: 0 !important; }
  textarea { border: 1px solid #ccc !important; min-height: 150px !important; }
  * { break-inside: avoid; }
}

@keyframes bonusPulse {
  0% { box-shadow: 0 0 0 0 rgba(223, 189, 126, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(223, 189, 126, 0); }
  100% { box-shadow: 0 0 0 0 rgba(223, 189, 126, 0); }
}

.bonus-highlight-active {
  animation: bonusPulse 1.5s infinite;
  border-radius: 50%;
  background-color: rgba(223, 189, 126, 0.1);
}

/* Fix grid blowout */
.layout-main > *, .bento-card, .feature-grid > * { min-width: 0; }

/* ---------- Mobile UX Replacements ---------- */
@media (max-width: 1000px) {
  /* Kill sidebar completely so the 1200px "horizontal strip" never shows */
  .layout-container { display: block; }
  .layout-sidebar { display: none !important; }
  
  /* ---- Sticky top sitebar ---- */
  .mobile-sitebar {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; padding: 0.95rem 5.5%; position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 60;
    background: linear-gradient(180deg, rgba(7, 9, 12, 0.98) 0%, rgba(7, 9, 12, 0.92) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 10px 40px rgba(0, 0, 0, 0.45);
    box-sizing: border-box;
  }
  .brand-logo-mobile { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 700; color: var(--ink); text-decoration: none; letter-spacing: 0.01em; }
  .brand-logo-mobile span { color: var(--gold); }
  
  .icon-button {
    appearance: none; background: linear-gradient(150deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
    border: 1px solid var(--glass-border); color: var(--ink); width: 48px; height: 48px;
    border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
    transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
  }
  .icon-button:hover { border-color: rgba(223, 189, 126, 0.45); }
  .icon-button:active { transform: scale(0.96); }
  .icon-button__lines { display: flex; flex-direction: column; gap: 6px; width: 16px; }
  .icon-button__lines i { display: block; height: 1.5px; width: 100%; background: var(--ink); border-radius: 2px; }
  .icon-button__lines i:last-child { width: 70%; margin-left: auto; }
  .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
  
  /* ---- Full-viewport cinematic dialog ---- */
  dialog.site-menu {
    width: 100vw; height: 100dvh; max-width: none; max-height: none; margin: 0; padding: 0; border: 0; inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(223, 189, 126, 0.12), transparent 55%),
                radial-gradient(ellipse 60% 40% at 100% 100%, rgba(86, 214, 174, 0.08), transparent 50%), var(--void);
    color: var(--ink); overflow: hidden;
  }
  dialog.site-menu[open] { display: flex; flex-direction: column; animation: menuIn 420ms var(--ease) both; }
  dialog.site-menu.is-closing { animation: menuOut 280ms ease forwards; }
  dialog.site-menu::backdrop { background: rgba(0, 0, 0, 0.72); }
  @keyframes menuIn { from { opacity: 0; transform: translateY(12px) scale(1.01); } to { opacity: 1; transform: translateY(0) scale(1); } }
  @keyframes menuOut { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(8px); } }
  
  .site-menu__inner {
    flex: 1; display: flex; flex-direction: column;
    padding: max(1.25rem, env(safe-area-inset-top)) 7% max(2rem, env(safe-area-inset-bottom));
    overflow-y: auto; -webkit-overflow-scrolling: touch;
  }
  .site-menu__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: clamp(2.5rem, 8vh, 4.5rem); }
  .site-menu__eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin: 0 0 1.75rem; }
  
  .nav-menu-mobile { display: flex; flex-direction: column; gap: 0; }
  .nav-menu-mobile a {
    display: flex; align-items: baseline; gap: 1.1rem; padding: 1.15rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06); color: var(--ink); text-decoration: none;
    font-family: var(--font-serif); font-size: clamp(1.65rem, 6.5vw, 2.15rem); font-weight: 600; line-height: 1.15;
    letter-spacing: -0.01em; transition: color 0.25s ease, padding-left 0.35s var(--ease);
  }
  .nav-menu-mobile a:active { padding-left: 0.35rem; color: var(--gold); }
  .nav-menu-mobile a.cta-link {
    margin-top: 1.75rem; border-bottom: none; color: var(--gold); font-size: clamp(1.15rem, 4.2vw, 1.35rem);
    font-family: var(--font-sans); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  }
  .nav-idx { font-family: var(--font-sans); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; color: var(--muted-2); min-width: 1.6rem; }
  .site-menu__foot { margin-top: auto; padding-top: 3rem; font-size: 0.78rem; color: var(--muted-2); letter-spacing: 0.06em; }
  body.menu-open { overflow: hidden; touch-action: none; }
  
  /* Filter chips */
  .filter-chips {
    display: flex; gap: 0.5rem; overflow-x: auto; -webkit-overflow-scrolling: touch;
    padding: 0.25rem 0 0.5rem; margin: 1rem 0 0.25rem; scrollbar-width: none;
  }
  .filter-chips::-webkit-scrollbar { display: none; }
  .filter-chip {
    flex: 0 0 auto; appearance: none; border: 1px solid var(--glass-border);
    background: linear-gradient(150deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    color: var(--muted); border-radius: 999px; padding: 0.55rem 0.95rem; font-size: 0.72rem;
    font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
  }
  .filter-chip.is-active { color: #0a0a0a; border-color: transparent; background: linear-gradient(135deg, var(--gold), #b98f4d); }
}

@media (min-width: 1001px) {
  .mobile-sitebar, dialog.site-menu { display: none !important; }
}

/* Default: never show on desktop */
.mobile-protocol-bar { display: none; }
@media (max-width: 1000px) {
  :root { --protocol-bar-h: 5.75rem; }
  body.has-protocol-bar { padding-bottom: calc(var(--protocol-bar-h) + env(safe-area-inset-bottom, 0px)); }
  .mobile-protocol-bar {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
    padding: 0.85rem 5.5% calc(0.85rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(222, 174, 107, 0.22);
    background: linear-gradient(180deg, rgba(7, 9, 12, 0.92) 0%, rgba(7, 9, 12, 0.98) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 -12px 40px rgba(0, 0, 0, 0.55);
    transform: translate3d(0, 110%, 0); opacity: 0; pointer-events: none;
    transition: transform 480ms cubic-bezier(0.16, 1, 0.3, 1), opacity 320ms ease;
    will-change: transform, opacity;
  }
  .mobile-protocol-bar.is-visible { transform: translate3d(0, 0, 0); opacity: 1; pointer-events: auto; }
  .mobile-protocol-bar.is-covered { transform: translate3d(0, 110%, 0); opacity: 0; pointer-events: none; transition-duration: 380ms, 240ms; }
  .mobile-protocol-bar__btn { display: flex !important; width: 100%; justify-content: center; }
  
  @media (prefers-reduced-motion: reduce) {
    .mobile-protocol-bar { transition: opacity 160ms linear; transform: none; }
    .mobile-protocol-bar.is-visible:not(.is-covered) { opacity: 1; }
    .mobile-protocol-bar.is-covered, .mobile-protocol-bar:not(.is-visible) { opacity: 0; }
  }
  
  /* Type */
  .display { font-size: clamp(2.05rem, 7.2vw, 2.55rem); line-height: 1.1; letter-spacing: -0.015em; text-align: center; }
  h2 { font-size: clamp(1.55rem, 5.5vw, 1.9rem); line-height: 1.18; text-align: center; }
  h3 { font-size: clamp(1.15rem, 4vw, 1.3rem); line-height: 1.25; text-align: center; }
  p { font-size: 1.0625rem; line-height: 1.7; font-weight: 300; text-align: center; margin-left: auto; margin-right: auto; }
  
  .section-block > .fade-up > h2 + p, .section-block > div > h2 + p, .friction-copy, .longform { max-width: 36em; text-align: center; margin-left: auto; margin-right: auto; }
  .section-block > .fade-up, .section-block > div { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .section-block { padding: clamp(4.25rem, 8vh, 5.5rem) 6%; display: flex; flex-direction: column; align-items: center; }
  .section-block.hero .hero-content { padding: calc(6.75rem + env(safe-area-inset-top, 0px)) 6% 3.5rem; margin-top: 0; text-align: center; width: 100%; align-items: center; }
  .hero-content .eyebrow { justify-content: center; }

  /* ---- Mobile hero video / cinematic background ---- */
  .hero { min-height: 100svh; min-height: 100dvh; }
  .cinematic-bg-container { width: 100%; height: 100%; }
  .cinematic-poster,
  .hero__v {
    object-position: center center !important;
    width: 100% !important; height: 100% !important;
  }
  .cinematic-overlay {
    background: linear-gradient(180deg, rgba(7,9,12,0.35) 0%, rgba(7,9,12,0.7) 50%, #07090c 100%) !important;
  }
  /* Bento video card on mobile */
  .bento-card.image-card video {
    width: 100%; height: 100%; object-fit: cover; object-position: center center;
  }
  
  /* CTA stack */
  .hero-content .fade-up[style*="flex"], .hero-actions { display: flex; flex-direction: column; align-items: stretch; gap: 0.75rem !important; }
  .hero-content .btn-editorial { width: 100%; justify-content: center; padding: 16px 22px; font-size: 0.78rem; }
  
  /* Bento */
  .bento-grid { grid-template-columns: 1fr; gap: 0.9rem; margin-top: 1.75rem; }
  .bento-card { padding: 1.75rem 1.25rem; border-radius: 16px; text-align: center; display: flex; flex-direction: column; align-items: center; }
  .bento-card.image-card { min-height: 240px; }
  .bento-card.stat .stat-number { font-size: clamp(2rem, 12vw, 2.6rem); }
  .feature-grid { gap: 1.75rem; }
  
  .timeline-item { padding-left: 0.25rem; }
  .timeline-num { letter-spacing: 0.12em; }
  
  .glass-card { padding: 1.35rem 1.2rem; border-radius: 16px; }
  #access .glass-card { max-width: none; }
  #access a[href*="stripe"], #access .purchase-btn { font-size: 1.02rem !important; padding: 1.1rem 1rem !important; }
  body.has-protocol-bar .site-footer { padding-bottom: 1rem; }
  
  .aurora-blob { opacity: 0.22; filter: blur(70px); }
  
  /* Protocol CTA Block (already mobile) */
  .protocol-cta { display: block; padding: 1.5rem; }
  .protocol-cta__action { margin-top: 1.5rem; text-align: left; }
  .protocol-cta__action .btn-editorial { width: 100%; justify-content: center; }
}

@media (min-width: 721px) and (max-width: 1000px) {
  .protocol-cta { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 2rem; }
  .protocol-cta__action { margin-top: 0; text-align: right; }
  .protocol-cta__action .btn-editorial { width: auto; justify-content: flex-start; }
}

/* Original Protocol CTA desktop structure (above 1000px) */
.protocol-cta {
    display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 4rem; padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 18px;
    background: linear-gradient(150deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 12px 40px rgba(0,0,0,0.6); position: relative;
}
.protocol-cta::before { content: ''; position: absolute; inset: -2px; border-radius: 20px; background: radial-gradient(circle at top, rgba(201,168,106,0.12) 0%, transparent 60%); z-index: -1; pointer-events: none; }
.protocol-cta h3 { margin: 0.55rem 0 0.75rem; font-size: clamp(1.4rem, 2vw, 1.9rem); }
.protocol-cta p { max-width: 540px; margin: 0; color: var(--muted); }
.protocol-cta__action { flex: 0 0 auto; text-align: center; }

@media (max-width: 380px) {
  .display { font-size: 1.9rem; }
  .mobile-sitebar { padding-left: 4.5%; padding-right: 4.5%; }
  .btn-editorial { letter-spacing: 0.04em; }
}

@media (prefers-reduced-motion: reduce) {
  .aurora-blob { animation: none !important; }
  .fade-up { opacity: 1 !important; transform: none !important; transition: none !important; }
}



@media (max-width: 1000px) {
  /* Prevent fixed mobile-sitebar from covering top content across entire site */
  .layout-main {
    padding-top: 75px !important;
  }
}
