/* ============================================================
   ARTEMIS DIGITAL STRATEGIES — v2 Stylesheet
   Design direction: Instrument × Linear × Stripe × Vercel
   Dark, editorial, gold-accented, Motion-powered
   ============================================================ */

/* ========== TOKENS ========== */
:root {
  --navy:        #0D1B2E;
  --navy-800:    #0f2035;
  --navy-700:    #132640;
  --navy-600:    #1a3254;
  --navy-500:    #213d66;
  --gold:        #C4A84A;
  --gold-light:  #D4BC76;
  --gold-muted:  rgba(196, 168, 74, 0.12);
  --gold-border: rgba(196, 168, 74, 0.22);
  --cream:       #EDE8DF;
  --ivory:       #F8F7F4;

  --text-primary:   #FDFAF5;
  --text-secondary: rgba(253, 250, 245, 0.68);
  --text-muted:     rgba(253, 250, 245, 0.38);

  --border:       rgba(196, 168, 74, 0.14);
  --border-hover: rgba(196, 168, 74, 0.32);
  --border-card:  rgba(255, 255, 255, 0.06);

  --font-display: 'Cinzel', serif;
  --font-body:    'Cormorant Garamond', serif;
  --font-ui:      'Montserrat', sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --ease-luxe:   cubic-bezier(0.22, 1, 0.36, 1);
  --sigil-loop:  16s;

  --section-pad: clamp(90px, 11vw, 160px);
  --container:   1240px;
  --pad:         clamp(20px, 4vw, 60px);
  --radius:      12px;
  --radius-sm:   6px;
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--navy);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.85;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

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

/* ========== CURSOR ========== */
#cursor {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
#cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  transition: width 0.25s var(--ease-out),
              height 0.25s var(--ease-out),
              opacity 0.3s;
}
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
  width: 52px;
  height: 52px;
  opacity: 0.3;
}

/* ========== CONTAINER ========== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ========== TYPOGRAPHY SYSTEM ========== */
.section-label {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ivory);
  margin-bottom: 28px;
}
.section-title em {
  font-style: italic;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 1.05em;
  font-weight: 300;
}

.section-body {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.section-body:last-child { margin-bottom: 0; }

/* Light section overrides */
.serve-section .section-title,
.problem-section .section-title,
.commitment-section .section-title,
.founder-section .section-title {
  color: var(--navy);
}
.serve-section .section-title em,
.problem-section .section-title em,
.commitment-section .section-title em,
.founder-section .section-title em {
  color: var(--gold);
}
.serve-section .section-body,
.problem-section .section-body,
.commitment-section .section-body,
.founder-section .section-body {
  color: #3a4a5c;
}
.serve-section .section-label,
.problem-section .section-label,
.commitment-section .section-label,
.founder-section .section-label {
  color: var(--gold);
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 34px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background 0.22s, transform 0.18s var(--ease-out), box-shadow 0.22s;
  box-shadow: 0 0 0 0 rgba(196, 168, 74, 0);
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 32px rgba(196, 168, 74, 0.28);
}
.btn-primary:active { transform: translateY(0); }

/* Gold shimmer sweep on hover */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
}
.btn-primary:hover::after { animation: ctaSweep 0.7s var(--ease-out) forwards; }
@keyframes ctaSweep {
  to { left: 130%; }
}

/* Magnetic buttons: transform driven by JS, spring-back on leave */
.btn-magnetic {
  transition: transform 0.35s var(--ease-luxe), background 0.25s, box-shadow 0.25s, border-color 0.25s, color 0.25s;
  will-change: transform;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border: 1px solid var(--border-hover);
  color: var(--ivory);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: border-color 0.22s, background 0.22s, transform 0.18s var(--ease-out);
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: var(--gold-muted);
  transform: translateY(-2px);
}
.btn-arrow { transition: transform 0.2s var(--ease-out); }
.btn-ghost:hover .btn-arrow { transform: translateX(4px); }

.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 11px 24px;
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: border-color 0.22s, background 0.22s, color 0.22s;
}
.btn-nav:hover {
  border-color: var(--gold);
  background: var(--gold-muted);
  color: var(--gold);
}

.btn-full { width: 100%; justify-content: center; }

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0 var(--pad);
  height: 72px;
  background: transparent;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(13, 27, 46, 0.88);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 7px;
  flex-shrink: 0;
}
.nav-logo-word {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--ivory);
}
.nav-logo-cap {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ivory); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

/* ========== HERO FRAME — asymmetric editorial layout ========== */
.hero-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding-top: 96px;
  padding-bottom: 24px;
}
.hero-overline {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 34px;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.15s forwards;
}
.hero-overline-rule {
  display: block;
  height: 1px;
  width: 0;
  background: var(--gold);
  animation: ruleDraw 0.9s var(--ease-luxe) 0.15s forwards;
}
@keyframes ruleDraw {
  to { width: 44px; }
}

/* ========== HERO STAGE ========== */
.hero-stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  will-change: transform;
  transform-style: preserve-3d;
}
/* ========== DISCIPLINE TICKER ========== */
.hero-ticker {
  position: relative;
  border-top: 1px solid rgba(196, 168, 74, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px 0;
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1s ease 2.2s forwards;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: tickerScroll 38s linear infinite;
}
.hero-ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes tickerScroll {
  to { transform: translateX(-50%); }
}
.ticker-item {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-primary);
  white-space: nowrap;
}
.ticker-item em {
  font-style: normal;
  font-weight: 500;
  color: var(--gold-light);
  opacity: 0.85;
}
.tick-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--pad);
  padding-top: 72px;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  font-weight: 500;
  line-height: 1.07;
  color: var(--ivory);
  letter-spacing: -0.005em;
  margin-bottom: 36px;
  text-shadow: 0 2px 40px rgba(13, 27, 46, 0.85);
}
/* Title sequence: masked line reveals, film-credit cadence */
.ht-mask {
  display: block;
  overflow: hidden;
  padding-block: 0.08em;
  margin-block: -0.08em;
}
.ht-line {
  display: block;
  transform: translateY(115%);
}
.ht-mask:nth-child(1) .ht-line { animation: maskUp 0.85s var(--ease-luxe) 0.40s forwards; }
.ht-mask:nth-child(2) .ht-line { animation: maskUp 0.85s var(--ease-luxe) 0.58s forwards,
                                            goldSweep 1.6s ease-in-out 1.8s 1 both; }
.ht-mask:nth-child(3) .ht-line { animation: maskUp 0.85s var(--ease-luxe) 0.76s forwards; }
@keyframes maskUp {
  to { transform: translateY(0); }
}

.ht-gold {
  color: var(--gold);
  font-style: italic;
  font-family: var(--font-body);
  font-size: 1.05em;
  font-weight: 300;
  background: linear-gradient(100deg,
    var(--gold) 0%, var(--gold) 38%,
    #F4E5B0 50%,
    var(--gold) 62%, var(--gold) 100%);
  background-size: 240% 100%;
  background-position: 120% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes goldSweep {
  from { background-position: 120% 0; }
  to   { background-position: -120% 0; }
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 0 40px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 1.1s forwards;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 1.3s forwards;
}

/* ========== PROOF BAR ========== */
.proof-bar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--navy-800);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px var(--pad);
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 clamp(24px, 4vw, 60px);
}
.proof-num {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.03em;
}
.proof-lbl {
  font-family: var(--font-ui);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ========== PROBLEM SECTION ========== */
.problem-section {
  padding: var(--section-pad) 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(13, 27, 46, 0.08);
}
.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.problem-quote {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  line-height: 1.55;
  border-left: 3px solid var(--gold);
  padding-left: 1.75rem;
  margin-top: 2rem;
}
.problem-section .section-body strong {
  font-family: var(--font-ui);
  font-size: 0.82em;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
}
@media (max-width: 900px) {
  .problem-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ========== WHO WE SERVE ========== */
.serve-section {
  padding: var(--section-pad) 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(13, 27, 46, 0.08);
}
.serve-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.serve-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.serve-card {
  padding: 28px 32px;
  background: #fff;
  border: 1px solid rgba(13, 27, 46, 0.1);
  border-radius: var(--radius);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.serve-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(196, 168, 74, 0.1);
}
.serve-card-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
}
.serve-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.serve-card p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.75;
}

/* ========== SERVE BLUEPRINT CTA ========== */
.serve-blueprint-cta {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--mid-gray);
  letter-spacing: 0.01em;
}

.serve-blueprint-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.serve-blueprint-link:hover {
  opacity: 0.75;
}

/* ========== SERVE CARD RULE ACCENT ========== */
.serve-card {
  position: relative;
}
.serve-card-rule {
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 18px;
  opacity: 0.7;
}

/* ========== SERVICES BENTO ========== */
.services-section {
  padding: var(--section-pad) 0;
  background: var(--navy-800);
  overflow: hidden;
}

/* Two-col intro layout */
.services-top {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  margin-bottom: 72px;
}
.services-copy {
  max-width: 520px;
}
.services-copy .section-title { margin-bottom: 20px; }

/* legacy .services-header kept for safety */
.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.services-intro {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  color: var(--text-secondary);
  line-height: 1.8;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.bento-card {
  position: relative;
  padding: 36px 32px;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.35s, background 0.35s, transform 0.3s var(--ease-out);
}
.bento-card:hover {
  border-color: var(--gold-border);
  background: rgba(196, 168, 74, 0.04);
  transform: translateY(-3px);
}

.bento-featured {
  grid-column: 1 / 2;
  grid-row: auto;
  display: flex;
  flex-direction: column;
}
.bento-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bento-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(196,168,74,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.bento-num {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 18px;
}
.bento-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 14px;
  line-height: 1.35;
  letter-spacing: 0.02em;
}
.bento-featured h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}
.bento-card p {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.85;
  flex: 1;
}
.bento-tag {
  display: inline-block;
  margin-top: 24px;
  padding: 6px 14px;
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  width: fit-content;
}

/* ========== ORBIT SYSTEM ========== */
.orbit-system {
  position: relative;
  width: 360px;
  height: 360px;
  flex-shrink: 0;
  margin: 0 auto;
}

/* Static ring visuals */
.orbit-ring-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid var(--gold-border);
}
.orbit-ring-bg--outer { width: 290px; height: 290px; }
.orbit-ring-bg--inner { width: 184px; height: 184px; }

/* Center mark */
.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: var(--navy-700);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Rotating dials */
.orbit-dial {
  position: absolute;
  inset: 0;
}
.orbit-dial--cw  { animation: orbit-spin  32s linear infinite; }
.orbit-dial--ccw { animation: orbit-spin  22s linear infinite reverse; }

@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Planet — positioned by angle + radius */
.orbit-planet {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  margin-left: -24px;
  transform: rotate(var(--deg)) translateX(var(--r));
}

/* Icon circle — counter-rotates to stay upright */
.orbit-face {
  width: 48px;
  height: 48px;
  background: var(--navy-700);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  transition: border-color 0.3s, background 0.3s;
}
.orbit-face:hover {
  border-color: var(--gold);
  background: rgba(196, 168, 74, 0.1);
}
.orbit-face--counter-cw  { animation: orbit-counter  32s linear infinite; }
.orbit-face--counter-ccw { animation: orbit-counter  22s linear infinite reverse; }

@keyframes orbit-counter {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

/* Label under icon */
.orbit-label {
  font-family: var(--font-ui);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

/* ========== BENTO MARK (SVG icon) ========== */
.bento-mark {
  margin-bottom: 20px;
  opacity: 0.9;
}
.bento-featured .bento-mark {
  margin-bottom: 16px;
}

/* ========== CHECKLIST PREVIEW ========== */
.checklist-preview {
  position: relative;
  margin-top: 36px;
  padding: 24px 28px;
  background: rgba(13, 27, 46, 0.7);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
  max-height: 200px;
}
.checklist-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.checklist-preview-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory);
}
.checklist-preview-count {
  font-family: var(--font-ui);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.checklist-preview-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checklist-preview-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.checklist-preview-item--mid  { opacity: 0.7; }
.checklist-preview-item--faded { opacity: 0.35; }
.checklist-check {
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
  font-family: var(--font-ui);
}
.checklist-check--empty {
  color: var(--text-muted);
  font-weight: 400;
}
.checklist-preview-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 72px;
  background: linear-gradient(to bottom, transparent, rgba(13, 27, 46, 0.95));
  pointer-events: none;
}

/* ========== MANIFESTO ========== */
.manifesto-section {
  padding: var(--section-pad) 0;
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 900px;
}
.manifesto-label {
  margin-bottom: 48px;
}
.manifesto-lines {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.manifesto-line {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-secondary);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.5s;
}
.manifesto-line:first-child { border-top: 1px solid var(--border); }
.manifesto-line em {
  font-style: italic;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 1.05em;
  font-weight: 300;
}
.manifesto-gold {
  color: var(--gold) !important;
  font-weight: 500;
}
.manifesto-gold em { color: var(--gold-light); }
.manifesto-coda {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 300;
  font-style: normal;
  color: rgba(237, 232, 223, 0.6);
  line-height: 1.9;
  max-width: 640px;
  margin-top: 0.25rem;
  letter-spacing: 0.01em;
}

/* ========== COMMITMENT ========== */
.commitment-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
  border-top: 1px solid rgba(13, 27, 46, 0.08);
  border-bottom: 1px solid rgba(13, 27, 46, 0.08);
}
.commitment-header {
  max-width: 560px;
  margin-bottom: 64px;
}
.commitment-sub {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(13, 27, 46, 0.5);
  margin-top: -12px;
}
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.commitment-item {
  padding: 40px 40px 40px 48px;
  border-left: 2px solid var(--gold);
  background: #fff;
  position: relative;
  transition: background 0.3s, box-shadow 0.3s;
}
.commitment-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(13, 27, 46, 0.07);
  pointer-events: none;
}
.commitment-item:hover {
  background: #f9f8f6;
  box-shadow: 0 4px 20px rgba(196, 168, 74, 0.08);
}
.commitment-marker {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.commitment-item p {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  color: #3a4a5c;
  line-height: 1.85;
}

/* ========== FOUNDER ========== */
.founder-section {
  padding: var(--section-pad) 0;
  background: var(--ivory);
  border-bottom: 1px solid rgba(13, 27, 46, 0.08);
}
.founder-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: center;
}
.founder-photo-wrap {
  position: relative;
}
.founder-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--navy-600);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gold-border);
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.1em;
}
.founder-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.founder-title {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.founder-location {
  font-style: italic;
  color: rgba(13, 27, 46, 0.45);
  margin-bottom: 32px !important;
}
.founder-signoff {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.28rem;
  line-height: 1.5;
  color: var(--navy);
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 32px !important;
}
.founder-content .btn-ghost {
  margin-top: 8px;
  color: var(--navy);
  border-color: var(--gold);
}
.founder-content .btn-ghost:hover {
  color: var(--navy);
  border-color: var(--gold);
  background: var(--gold-muted);
}

/* ========== OPT-IN ========== */
.optin-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg,
    rgba(196, 168, 74, 0.08) 0%,
    transparent 60%),
    var(--navy-700);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.optin-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.optin-label { color: var(--gold-light); }
.optin-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--ivory);
  margin-bottom: 24px;
}
.optin-body {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 28px;
}
.optin-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.optin-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.65;
}
.optin-list li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.optin-form-wrap {
  padding: 44px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
}
.optin-form,
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ========== FORMS ========== */
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
input,
textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.6;
  transition: border-color 0.22s, background 0.22s;
  outline: none;
  -webkit-appearance: none;
}
input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
  font-style: italic;
}
input:focus,
textarea:focus {
  border-color: var(--gold);
  background: rgba(196, 168, 74, 0.04);
}
textarea { resize: vertical; min-height: 120px; }
.optin-note {
  font-family: var(--font-ui);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-align: center;
  margin-top: -4px;
}

/* ========== HUBSPOT FORM OVERRIDES ========== */
.artemis-hs-form,
.hs-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.artemis-hs-form .hs-form-field,
.hs-form .hs-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.artemis-hs-form label,
.hs-form label {
  font-family: var(--font-ui) !important;
  font-size: 10.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--text-muted) !important;
}

.artemis-hs-form input[type="text"],
.artemis-hs-form input[type="email"],
.artemis-hs-form textarea,
.hs-form input[type="text"],
.hs-form input[type="email"],
.hs-form textarea {
  width: 100% !important;
  padding: 14px 18px !important;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--ivory) !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  transition: border-color 0.22s, background 0.22s !important;
}

.artemis-hs-form input:focus,
.artemis-hs-form textarea:focus,
.hs-form input:focus,
.hs-form textarea:focus {
  border-color: var(--gold) !important;
  background: rgba(196, 168, 74, 0.04) !important;
}

.artemis-hs-form .hs-button,
.hs-form .hs-button,
.hs-form input[type="submit"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px 32px !important;
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-family: var(--font-ui) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: var(--radius-sm) !important;
  cursor: pointer !important;
  width: 100% !important;
  margin-top: 8px !important;
  transition: opacity 0.2s !important;
}

.artemis-hs-form .hs-button:hover,
.hs-form .hs-button:hover {
  opacity: 0.85 !important;
}

.artemis-hs-form .hs-error-msgs,
.hs-form .hs-error-msgs {
  list-style: none !important;
  padding: 0 !important;
  margin: 4px 0 0 !important;
}

.artemis-hs-form .hs-error-msgs label,
.hs-form .hs-error-msgs label {
  color: #e05c5c !important;
  font-size: 10px !important;
  letter-spacing: 0.06em !important;
  text-transform: none !important;
}

.artemis-hs-form .submitted-message,
.hs-form .submitted-message {
  color: var(--gold) !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  text-align: center !important;
  padding: 24px 0 !important;
}

/* ========== CONTACT ========== */
.contact-section {
  padding: var(--section-pad) 0;
  background: var(--navy);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 44px;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-detail-label {
  font-family: var(--font-ui);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-link {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--gold-light);
  transition: color 0.2s;
}
.contact-link:hover { color: var(--gold); }
.contact-detail span {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--text-secondary);
}
.contact-right {
  padding: 48px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy-800);
  border-top: 1px solid var(--border);
  padding: 72px 0 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--ivory);
  margin-bottom: 12px;
}
.footer-logo-cap {
  color: var(--gold);
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 8px;
}
.footer-loc {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-title {
  font-family: var(--font-ui);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer-col a {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--ivory); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.footer-legal a { transition: color 0.2s; }
.footer-legal a:hover { color: var(--ivory); }

/* ========== SCROLL ANIMATIONS ========== */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

.reveal-section { --stagger: 0; }
.reveal-child {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal-child.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-child:nth-child(1) { transition-delay: 0.05s; }
.reveal-child:nth-child(2) { transition-delay: 0.14s; }
.reveal-child:nth-child(3) { transition-delay: 0.23s; }
.reveal-child:nth-child(4) { transition-delay: 0.32s; }
.reveal-child:nth-child(5) { transition-delay: 0.41s; }
.reveal-child:nth-child(6) { transition-delay: 0.50s; }

.manifesto-line {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), color 0.5s;
}
.manifesto-line.visible {
  opacity: 1;
  transform: translateX(0);
}
.manifesto-line:nth-child(1).visible { transition-delay: 0s; }
.manifesto-line:nth-child(2).visible { transition-delay: 0.12s; }
.manifesto-line:nth-child(3).visible { transition-delay: 0.24s; }
.manifesto-line:nth-child(4).visible { transition-delay: 0.36s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-frame { padding-top: 110px; }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .serve-layout { gap: 48px; }
  .contact-layout { gap: 48px; }
  .founder-layout { grid-template-columns: 280px 1fr; gap: 60px; }
  .services-top { grid-template-columns: 1fr; gap: 52px; }
  .orbit-system { margin: 0 auto; }
}

@media (max-width: 768px) {
  :root { --section-pad: clamp(60px, 8vw, 100px); }

  .nav-links { display: none; }
  .nav { gap: 12px; justify-content: space-between; }
  .btn-nav { padding: 9px 14px; font-size: 10px; letter-spacing: 0.1em; white-space: nowrap; flex-shrink: 0; }

  .hero-title { font-size: clamp(2.3rem, 8.5vw, 3.6rem); }
  .ticker-track { gap: 36px; animation-duration: 26s; }

  .proof-bar { gap: 8px; }
  .proof-item { padding: 0 16px; }
  .proof-divider { display: none; }

  .serve-layout { grid-template-columns: 1fr; gap: 40px; }
  .bento-grid { grid-template-columns: 1fr; }
  .commitment-grid { grid-template-columns: 1fr; }
  .optin-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-right { padding: 32px; }
  .optin-form-wrap { padding: 32px; }
  .founder-layout { grid-template-columns: 1fr; gap: 40px; }
  .founder-photo { max-width: 300px; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }

  .orbit-system { width: 300px; height: 300px; }
  .orbit-ring-bg--outer { width: 240px; height: 240px; }
  .orbit-ring-bg--inner { width: 152px; height: 152px; }
  .orbit-planet[style*="145px"] { --r: 120px; }
  .orbit-planet[style*="92px"]  { --r: 76px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost { text-align: center; justify-content: center; }
  .commitment-item { padding: 28px 24px 28px 28px; }
}

/* ========== MOBILE NAV ========== */
.nav-toggle { display: none; }
.mobile-menu { display: none; }

@media (max-width: 940px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 40px; padding: 0;
    background: none; border: none; cursor: pointer;
    flex-shrink: 0; position: relative; z-index: 2; margin-left: auto;
  }
  .nav-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--ivory); border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: flex; flex-direction: column;
    position: fixed; top: 0; right: 0;
    width: min(82vw, 320px); height: 100%;
    padding: 100px 32px 40px;
    background: var(--navy);
    border-left: 1px solid var(--gold-border);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
    transform: translateX(100%);
    transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 890;
  }
  body.nav-open .mobile-menu { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  .mobile-menu a {
    font-family: var(--font-ui); font-size: 14px; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-secondary); text-decoration: none;
    padding: 16px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--ivory); }
  .mobile-menu-cta {
    margin-top: 24px; text-align: center;
    background: var(--gold); color: var(--navy) !important;
    border-radius: var(--radius-sm); border-bottom: none !important;
    font-weight: 700; padding: 16px 0;
  }
}

@media (max-width: 400px) {
  .nav-logo-word { font-size: 12px; letter-spacing: 0.14em; }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  .grain, #cursor, #cursor-ring { display: none; }
  .ht-line,
  .hero-sub,
  .hero-ctas,
  .hero-overline,
  .hero-ticker { opacity: 1; transform: none; animation: none; }
  .hero-overline-rule { width: 44px; animation: none; }
  .ticker-track { animation: none; }
  .hero-stage { transform: none !important; }
  .ht-gold { background-position: 0 0; }
  .reveal-child { opacity: 1; transform: none; transition: none; }
  .manifesto-line { opacity: 1; transform: none; transition: none; }
  .orbit-dial, .orbit-face { animation: none; }
  .btn-primary:hover::after { animation: none; }
  .btn-magnetic { transition: none; }
}


/* ============================================================
   HERO — "THE ENGINE"
   560vh scroll journey; sticky 3D stage (engine.js);
   beats fade in sync with the assembly.
   ============================================================ */
.engine {
  position: relative;
  height: 440vh;
}
.engine-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: radial-gradient(120% 100% at 62% 42%,
    #142338 0%, #0C1626 55%, #070E19 100%);
}
#engine-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.engine-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(100deg, rgba(6, 12, 22, 0.62) 0%, rgba(6, 12, 22, 0.25) 34%, transparent 55%),
    radial-gradient(95% 85% at 50% 50%, transparent 55%, rgba(4, 9, 17, 0.55) 100%);
}
.engine-beat h1, .engine-beat h2, .engine-beat h3, .engine-beat p {
  text-shadow: 0 2px 24px rgba(5, 10, 18, 0.75);
}

/* ---------- beats ---------- */
.engine-beat {
  position: absolute;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.eb-intro {
  left: clamp(20px, 6vw, 96px);
  top: 50%;
  transform: translateY(-50%);
  max-width: 640px;
}
.engine .hero-title {
  font-size: clamp(2.3rem, 4.4vw, 4.3rem);
  line-height: 1.1;
  margin-bottom: 28px;
}
.engine .hero-sub {
  margin-bottom: 36px;
  max-width: 480px;
}
.engine-cue {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 44px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.engine-cue-line {
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  animation: cuePulse 2.2s ease-in-out infinite;
}
@keyframes cuePulse {
  0%, 100% { opacity: 0.4; transform: scaleX(1); }
  50%      { opacity: 1;   transform: scaleX(1.25); }
}

/* ---------- sticky service labels ---------- */
.engine-labels {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.engine-labels.dim { opacity: 0.4; }
.engine-label {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.3vw, 2.15rem);
  font-weight: 500;
  color: var(--ivory);
  text-shadow: 0 2px 24px rgba(5, 10, 18, 0.8);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-luxe), transform 0.7s var(--ease-luxe);
}
.engine-label i {
  font-style: normal;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--gold);
}
.engine-label.on { opacity: 1; transform: translateY(0); }
.el-l1 { left: clamp(20px, 7vw, 120px); top: 26%; }
.el-l2 { left: clamp(20px, 7vw, 120px); top: 46%; }
.el-l3 { left: clamp(20px, 7vw, 120px); top: 66%; }
.el-r1 { right: clamp(20px, 7vw, 120px); top: 26%; flex-direction: row-reverse; }
.el-r2 { right: clamp(20px, 7vw, 120px); top: 46%; flex-direction: row-reverse; }
.el-r3 { right: clamp(20px, 7vw, 120px); top: 66%; flex-direction: row-reverse; }

.eb-ignite h2, .eb-ignite p,
.eb-outro h2, .eb-outro p {
  text-shadow: 0 2px 18px rgba(4, 9, 17, 0.95), 0 0 56px rgba(4, 9, 17, 0.8);
}

.eb-ignite,
.eb-outro {
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--pad);
}
.eb-ignite { justify-content: flex-end; padding-bottom: 9vh; }
.eb-ignite h2,
.eb-outro h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 14px;
}
.eb-ignite p,
.eb-outro p {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  color: var(--text-secondary);
}
.eb-outro .hero-ctas--center {
  justify-content: center;
  margin-top: 34px;
}

/* ---------- static fallback (reduced motion / no WebGL / no JS) ---------- */
.engine--static {
  height: auto;
}
.engine--static .engine-sticky {
  position: relative;
  height: auto;
  min-height: 0;
  padding: 140px 0 80px;
}
.engine--static #engine-canvas {
  position: relative;
  height: 46svh;
  margin: 40px auto 0;
}
.engine--static .engine-beat {
  position: relative;
  left: auto;
  top: auto;
  bottom: auto;
  transform: none;
  opacity: 1;
  pointer-events: auto;
  margin: 0 auto 48px;
  padding: 0 var(--pad);
  max-width: 760px;
}
.engine--static .eb-ignite,
.engine--static .eb-outro { width: auto; }
.engine--static .engine-cue { display: none; }
.engine--static .engine-labels {
  position: relative;
  inset: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  max-width: 560px;
  margin: 32px auto 0;
  padding: 0 var(--pad);
}
.engine--static .engine-label { position: static; }

/* ---------- responsive ---------- */
@media (max-width: 768px) {
  .engine { height: 380vh; }
  .eb-intro {
    left: 0;
    right: 0;
    top: auto;
    bottom: 10%;
    transform: none;
    padding: 0 var(--pad);
    max-width: none;
  }
  .engine .hero-title { font-size: clamp(2rem, 8vw, 2.9rem); }
  .engine .hero-sub { max-width: none; }
  .engine-cue { margin-top: 28px; }
  .engine-labels {
    inset: auto 0 8% 0;
    top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    padding: 0 var(--pad);
  }
  .engine-label { position: static; font-size: 1.2rem; gap: 10px; }
  .el-r1, .el-r2, .el-r3 { flex-direction: row; }
}

/* ============================================================
   V4 — THE LIVING STILL
   One-screen hero: the arrival frame, permanently. No journey.
   ============================================================ */
.engine--still {
  height: 100svh;
  min-height: 640px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 100% at 62% 42%,
    #142338 0%, #0C1626 55%, #070E19 100%);
}
.engine--still #engine-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-still {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 84px;
  max-width: var(--container);
}
.hero-still .hero-title {
  font-size: clamp(2.3rem, 4.4vw, 4.3rem);
  line-height: 1.1;
  margin-bottom: 28px;
  max-width: 700px;
}
.hero-still .hero-sub {
  margin-bottom: 36px;
  max-width: 480px;
}
@media (max-width: 768px) {
  .hero-still { justify-content: flex-end; padding-bottom: 9svh; }
  .hero-still .hero-title { font-size: clamp(2rem, 8vw, 2.9rem); }
}
