/* ============================================================
   AXEOM CONTENT BLITZ — Obsidian Sapphire
   ============================================================ */

:root {
  --bg-void: #040609;
  --bg-deep: #091020;
  --bg-surface: #0F1C38;
  --border: #142040;

  --sapphire-deep: #163572;
  --sapphire: #1E5AAA;
  --sapphire-accent: #6B94CC;
  --sapphire-pale: #A3BDE0;

  --text-primary: #ECF0F7;
  --text-secondary: #D6E2F0;
  --text-body: #A5B0C0; /* bumped from #8A95A8 for AA contrast on void */
  --text-muted: #5E6B7E;

  --glow: rgba(30, 90, 170, 0.4);
  --glow-deep: rgba(22, 53, 114, 0.22);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg-void);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }

/* Focus */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--sapphire);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: transparent;
  transition: background 250ms ease, border-color 250ms ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(4, 6, 9, 0.92);
  border-bottom-color: var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.nav__link {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 400;
  transition: color 200ms ease;
}
.nav__link:hover { color: var(--sapphire-accent); }

/* ============================================================
   SHARED — Containers, sections, type
   ============================================================ */
.section {
  padding: 128px 24px;
  position: relative;
}
.section--void { background: var(--bg-void); }
.section--deep { background: var(--bg-deep); }
.container { width: 100%; margin: 0 auto; }
.container--640 { max-width: 640px; }
.container--720 { max-width: 720px; }
.container--960 { max-width: 960px; }
.container--1040 { max-width: 1040px; }
.container--1120 { max-width: 1120px; }
.center { text-align: center; }

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sapphire-accent);
}
.eyebrow--left { text-align: left; }

.h2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.01em;
  color: var(--text-primary);
  line-height: 1.2;
  margin-top: 24px;
}

.subhead {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 600px;
  margin: 24px auto 0;
}

.prose {
  margin: 32px auto 0;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  text-align: center;
}
.prose p + p { margin-top: 24px; }
.prose--left { text-align: left; max-width: none; margin-left: 0; margin-right: 0; }
.prose--left p { font-size: 16px; }

.bottom-italic {
  margin-top: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--sapphire-accent);
  line-height: 1.5;
}

.hairline {
  margin: 64px auto 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--sapphire), transparent);
}

.badge-rule {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sapphire-accent);
  padding: 8px 16px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #163572, #1E5AAA);
  box-shadow: 0 0 28px rgba(30, 90, 170, 0.4);
  border-radius: 6px;
  padding: 16px 32px;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: -0.01em;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
  text-align: center;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 36px rgba(30, 90, 170, 0.6);
}
.btn--full { display: block; width: 100%; }
.btn--large { padding: 20px 40px; font-size: 17px; }

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--bg-void);
  padding: 144px 24px 64px;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(22, 53, 114, 0.22) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.hero__title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(36px, 6.5vw, 64px);
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.1;
  margin-top: 32px;
}
.hero__title span { display: block; }
.hero__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2.4vw, 22px);
  color: var(--sapphire-accent);
  margin-top: 24px;
}
.hero__sub {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-body);
  line-height: 1.6;
  max-width: 600px;
  margin: 32px auto 0;
}
.hero .btn--primary { margin-top: 40px; }
.hero__microcta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--text-secondary);
  margin-top: 20px;
  line-height: 1.5;
}
.hero__upsell {
  display: block;
  margin-top: 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--sapphire-accent);
  letter-spacing: 0.01em;
  transition: color 200ms ease;
}
.hero__upsell:hover { color: var(--sapphire-pale); text-decoration: underline; }

.hero__reels {
  margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hero-reel { display: flex; flex-direction: column; align-items: center; }
.reel-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sapphire-accent);
  margin-top: 12px;
}

/* Video container */
.video-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(22, 53, 114, 0.4);
  width: 100%;
}
.video-container--strong { box-shadow: 0 0 80px rgba(22, 53, 114, 0.5); }
.video-container wistia-player { display: block; width: 100%; }

/* Lazy-load poster (mobile only) */
.reel-poster {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: var(--bg-deep);
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
}
.reel-poster__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.reel-poster__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
  transition: transform 200ms ease;
}
.reel-poster:hover .reel-poster__play,
.reel-poster:focus-visible .reel-poster__play {
  transform: translate(-50%, -50%) scale(1.06);
}

/* ============================================================
   SECTION 3 — STEPS
   ============================================================ */
.steps {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: left;
}
.step-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.step-badge {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 32px;
  color: var(--sapphire-accent);
  text-shadow: 0 0 12px rgba(30, 90, 170, 0.4);
  line-height: 1;
}
.step-dash { color: var(--sapphire-deep); margin-left: 4px; }
.step-title {
  font-size: 19px;
  font-weight: 500;
  color: var(--text-primary);
  margin-top: 16px;
}
.step-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-body);
  margin-top: 12px;
}

/* ============================================================
   SECTION 4 — PROOF REELS
   ============================================================ */
.proof-reels {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  justify-items: center;
}
.proof-reel {
  width: 100%;
  max-width: 320px;
  text-align: center;
}
.proof-reel .reel-label { margin-top: 16px; }
.reel-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================================
   SECTION 5 — STUDIO GRID
   ============================================================ */
.studio-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: minmax(0, 620px);
  gap: 16px;
  align-items: stretch;
  height: clamp(400px, 48vw, 620px);
}
.studio-grid__main {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 12px;
}
.studio-grid__main img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 60%;
  transition: box-shadow 200ms ease;
}
.studio-grid__side {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 16px;
  min-height: 0;
}
.studio-grid__side img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  transition: box-shadow 200ms ease;
  display: block;
}
.studio-grid img:hover {
  box-shadow: 0 0 40px rgba(22, 53, 114, 0.3);
}

/* ============================================================
   SECTION 6 — TESTIMONIAL
   ============================================================ */
.testimonial-video {
  margin: 48px auto 0;
  max-width: 360px;
}
.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(22px, 3vw, 28px);
  color: var(--sapphire-accent);
  line-height: 1.4;
  max-width: 560px;
  margin: 48px auto 0;
}
.pull-attr {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-top: 16px;
}

/* ============================================================
   SECTION 7 — VALUE STACK
   ============================================================ */
.value-stack {
  margin: 56px auto 0;
  max-width: 560px;
  text-align: left;
}
.value-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.value-label {
  font-size: 16px;
  color: var(--text-secondary);
}
.value-amt {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-body);
  white-space: nowrap;
}
.value-row--total {
  border-top: 1px solid var(--sapphire);
  margin-top: 8px;
}
.value-row--total .value-label,
.value-row--total .value-amt {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}
.value-row--price .value-label,
.value-row--price .value-amt {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
}
.value-amt--glow {
  text-decoration: underline;
  text-decoration-color: var(--sapphire);
  text-underline-offset: 4px;
  text-shadow: 0 0 16px rgba(30, 90, 170, 0.4);
}

/* ============================================================
   SECTION 8 — LOCATION
   ============================================================ */
.location-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 32px;
  align-items: stretch;
}
.location-grid__map {
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
}
.location-grid__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
}
.location-grid__card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 0 40px rgba(22, 53, 114, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-card__label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sapphire-accent);
}
.location-card__addr {
  margin-top: 24px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--text-primary);
  line-height: 1.4;
}
.location-card__divider {
  border: 0;
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.location-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.4;
}
.location-info__icon {
  color: var(--sapphire-accent);
  flex-shrink: 0;
}
.location-card__cta {
  margin-top: 32px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--sapphire-accent);
  transition: color 200ms ease;
  align-self: flex-start;
}
.location-card__cta:hover {
  color: var(--sapphire-pale);
  text-decoration: underline;
}

/* ============================================================
   SECTION 9 — PRICING
   ============================================================ */
.pricing {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}
.pricing-card {
  position: relative;
  background: var(--bg-surface);
  border-radius: 14px;
  padding: 48px;
  display: flex;
  flex-direction: column;
}
.pricing-card--bronze {
  border: 1px solid var(--border);
  box-shadow: 0 0 24px rgba(22, 53, 114, 0.2);
}
.pricing-card--gold {
  border: 1px solid var(--sapphire-deep);
  box-shadow: 0 0 60px rgba(22, 53, 114, 0.5);
}
.pricing-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 6px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #163572, #1E5AAA);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-tier {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sapphire-accent);
}
.pricing-name {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 12px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.pricing-price {
  font-size: 56px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 24px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.pricing-sublabel {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}
.features {
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.features li {
  font-size: 15px;
  color: var(--text-secondary);
  position: relative;
  padding-left: 28px;
  line-height: 1.5;
}
.features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B94CC' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.features__highlight {
  font-weight: 500;
  color: var(--sapphire-accent) !important;
  font-style: italic;
  padding-left: 0 !important;
}
.features__highlight::before { display: none !important; }

/* ============================================================
   SECTION 10 — FAQ
   ============================================================ */
.faq {
  margin-top: 48px;
  text-align: left;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  font-size: 24px;
  font-weight: 400;
  color: var(--sapphire-accent);
  line-height: 1;
  transition: transform 200ms ease;
  flex-shrink: 0;
  display: inline-block;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-item p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  padding: 0 0 24px 0;
  max-width: 640px;
}

/* ============================================================
   SECTION 11 — FOUNDER
   ============================================================ */
.founder {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
}
.founder__portrait img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 60px rgba(22, 53, 114, 0.4);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.founder__title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 36px);
  letter-spacing: -0.01em;
  color: var(--text-primary);
  line-height: 1.2;
  margin-top: 24px;
}
.founder__copy .prose { margin-top: 32px; }
.founder__ig {
  display: inline-block;
  margin-top: 32px;
  font-size: 15px;
  font-weight: 500;
  color: var(--sapphire-accent);
  transition: color 200ms ease;
}
.founder__ig:hover { color: var(--sapphire-pale); text-decoration: underline; }

/* ============================================================
   SECTION 12 — FINAL CTA
   ============================================================ */
.section--final {
  position: relative;
  background: var(--bg-void);
  padding: 160px 24px;
  overflow: hidden;
}
.final-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(22, 53, 114, 0.3) 0%, transparent 70%);
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.section--final .container { position: relative; z-index: 1; }
.final__title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.15;
  margin-top: 32px;
}
.final__sub {
  font-size: 18px;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 560px;
  margin: 24px auto 0;
}
.section--final .btn { margin-top: 48px; }
.final__secondary {
  display: block;
  margin-top: 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--sapphire-accent);
}
.final__secondary:hover { text-decoration: underline; }
.final__whatsapp {
  display: block;
  margin-top: 48px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--sapphire-accent);
  transition: color 200ms ease;
  line-height: 1.5;
}
.final__whatsapp:hover { color: var(--sapphire-pale); text-decoration: underline; }

.inline-link {
  color: var(--sapphire-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}
.inline-link:hover { color: var(--sapphire-pale); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-void);
  border-top: 1px solid var(--border);
  padding: 64px 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.footer__logo {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--sapphire-accent);
  margin-top: 12px;
}
.footer__heading {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer__addr {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
  margin-top: 12px;
}
.footer__links {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  font-size: 14px;
  color: var(--text-body);
  transition: color 200ms ease;
}
.footer__links a:hover { color: var(--sapphire-accent); }
.footer__bottom {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================================
   STICKY CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  background: linear-gradient(135deg, #163572, #1E5AAA);
  color: var(--text-secondary);
  padding: 16px 28px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  box-shadow: 0 0 28px rgba(30, 90, 170, 0.4);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 250ms ease, transform 250ms ease, box-shadow 200ms ease;
}
.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta:hover {
  box-shadow: 0 0 36px rgba(30, 90, 170, 0.6);
}

/* ============================================================
   WELCOME PAGE (/welcome)
   ============================================================ */
.welcome {
  min-height: 100vh;
  background: var(--bg-void);
  padding: 96px 24px 64px;
  position: relative;
  overflow: hidden;
}
.welcome__glow {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(30, 90, 170, 0.18) 0%, rgba(22, 53, 114, 0.08) 30%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.welcome__streak {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(30, 90, 170, 0.15) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.welcome__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.welcome__logo {
  display: block;
  width: fit-content;
  margin: 0 auto;
}
.welcome__logo img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 24px rgba(30, 90, 170, 0.3));
  opacity: 0.95;
}
@keyframes welcome-fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.welcome__fade {
  opacity: 0;
  animation: welcome-fade-up 600ms ease-out forwards;
  animation-delay: var(--fade-delay, 0ms);
}
@media (prefers-reduced-motion: reduce) {
  .welcome__fade {
    opacity: 1;
    animation: none;
    transform: none;
  }
}
.welcome__badge {
  margin-top: 64px;
}
.welcome__title {
  margin-top: 32px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 6vw, 56px);
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.15;
}
.welcome__sub {
  margin: 24px auto 0;
  max-width: 520px;
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-body);
  line-height: 1.6;
}
.welcome__next {
  margin-top: 64px;
}
.welcome-steps {
  margin: 24px auto 0;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}
.welcome-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: baseline;
}
.welcome-step__num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--sapphire-accent);
  line-height: 1;
  white-space: nowrap;
}
.welcome-step__title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.4;
}
.welcome-step__desc {
  margin-top: 4px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
}
.welcome__closing {
  margin: 48px auto 0;
  max-width: 480px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}
.welcome-wait {
  margin-top: 64px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.welcome-wait__body {
  margin: 24px auto 0;
  max-width: 480px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
}
.welcome-wait__cta {
  margin-top: 24px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}
.welcome__footer {
  margin-top: 0;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.welcome__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--sapphire-accent);
}
.welcome__copyright {
  margin-top: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: var(--text-muted);
}

/* ============================================================
   LOCK-IN BRIDGE PAGE (/lock-in)
   ============================================================ */
.lockin-hero {
  position: relative;
  background: var(--bg-void);
  padding: 144px 24px 64px;
  overflow: hidden;
}
.lockin-hero__glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(22, 53, 114, 0.22) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.lockin-hero .container {
  position: relative;
  z-index: 1;
}
.lockin-hero__title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 5.5vw, 52px);
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.15;
}
.lockin-hero__sub {
  margin-top: 20px;
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-body);
  line-height: 1.6;
  font-weight: 400;
}

/* Vertical 7-step timeline */
.timeline {
  position: relative;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 22px;
  width: 1px;
  background: linear-gradient(to bottom,
    var(--sapphire-deep) 0%,
    var(--sapphire-accent) 50%,
    var(--sapphire-deep) 100%);
  opacity: 0.5;
  z-index: 0;
}
.timeline__step {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 24px;
  align-items: start;
  padding: 0 0 32px;
}
.timeline__step:last-child { padding-bottom: 0; }
.timeline__num {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--sapphire-deep);
  box-shadow: 0 0 24px rgba(22, 53, 114, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--sapphire-accent);
  line-height: 1;
}
.timeline__body {
  padding-top: 8px;
}
.timeline__label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sapphire-accent);
}
.timeline__desc {
  margin-top: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Studio block */
.lockin-studio {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: center;
}
.lockin-studio__addr {
  margin-top: 24px;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.5;
  color: var(--text-primary);
}
.lockin-studio__media {
  margin: 0;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-surface);
  box-shadow: 0 0 60px rgba(22, 53, 114, 0.3);
}
.lockin-studio__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Preview Guarantee */
.guarantee-body {
  margin: 24px auto 0;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
}
.guarantee-emphasis {
  margin-top: 28px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.lockin-whatsapp {
  margin-top: 48px;
  font-size: 14px;
  color: var(--text-muted);
}
.lockin-whatsapp a {
  color: var(--sapphire-accent);
  transition: color 200ms ease;
}
.lockin-whatsapp a:hover { color: var(--sapphire-pale); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 80px 20px; }
  .section--final { padding: 100px 20px; }
  .hero { padding: 120px 20px 48px; }

  .hero__reels {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: calc(80% - 16px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 16px;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    scrollbar-width: none;
  }
  .hero__reels::-webkit-scrollbar { display: none; }
  .hero-reel { scroll-snap-align: start; }

  .steps { grid-template-columns: 1fr; gap: 16px; }
  .step-card { padding: 24px; }

  .proof-reels { grid-template-columns: 1fr; gap: 32px; }

  .studio-grid {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }
  .studio-grid__main,
  .studio-grid__side img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 12px;
  }
  .studio-grid__side {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .pricing { grid-template-columns: 1fr; gap: 24px; }
  .pricing-card { padding: 32px; }
  .pricing-price { font-size: 48px; }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
  }
  .location-grid__map,
  .location-grid__map iframe { min-height: 320px; }
  .location-grid__card { padding: 32px; }
  .location-card__addr { font-size: 18px; }

  .founder { grid-template-columns: 1fr; gap: 48px; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }

  .welcome { padding: 64px 20px 48px; }
  .welcome__badge { margin-top: 48px; }
  .welcome__next { margin-top: 48px; }

  .lockin-hero { padding: 120px 20px 32px; }
  .lockin-studio {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .timeline__step {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }
  .timeline__num { width: 40px; height: 40px; font-size: 20px; }
  .timeline::before { left: 20px; }

  /* Sticky CTA mobile: full-width bottom bar */
  .sticky-cta {
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
    margin: 0;
    text-align: center;
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--border);
    background: linear-gradient(135deg, #163572, #1E5AAA);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  }
}

@media (max-width: 400px) {
  .pricing-card { padding: 24px; }
  .location-grid__card { padding: 24px; }
  .pricing-price { font-size: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
  .sticky-cta { transition: opacity 0.001ms ease; transform: none; }
  .sticky-cta.is-visible { transform: none; }
}
