/* ============================================================
   SKYEFIRE — Master Brand Design System
   Dark-native. Midnight Black foundation.
   Enterprise = cyan world. Consumer = magenta world. Master = phoenix gradient.
   ============================================================ */

:root {
  /* --- Phoenix master spectrum --- */
  --magenta: #FF007A;
  --purple: #8A2EFF;
  --blue: #00CFFF;

  /* --- Foundation --- */
  --midnight: #050816;
  --white: #FFFFFF;

  /* --- Enterprise (cyan world) --- */
  --ent-cyan: #00D4FF;
  --ent-blue: #0077FF;
  --ent-navy: #081221;
  --silver: #C2CBD6;
  --ent-gradient: linear-gradient(120deg, #00D4FF, #0077FF);

  /* --- Consumer (magenta world) --- */
  --con-magenta: #FF007A;
  --con-purple: #8A2EFF;
  --con-blue: #00CFFF;
  --con-violet: #B347FF;
  --con-gradient: linear-gradient(120deg, #FF007A, #8A2EFF, #00CFFF);

  /* --- Signature phoenix gradient (hero moments only) --- */
  --phoenix-gradient: linear-gradient(120deg, #FF007A 0%, #8A2EFF 50%, #00CFFF 100%);

  /* --- Surfaces (derived from midnight) --- */
  --surface-0: #050816;
  --surface-1: #0a0e1f;
  --surface-2: #10162b;
  --surface-3: #161d36;
  --border: rgba(194, 203, 214, 0.12);
  --border-strong: rgba(194, 203, 214, 0.22);

  /* --- Text (AA-safe on midnight: white / silver only for body) --- */
  --text-primary: #FFFFFF;
  --text-secondary: #C2CBD6;
  --text-muted: #8a93a6;

  /* --- Type --- */
  --font-head: 'Orbitron', system-ui, sans-serif;
  --font-display: 'Exo 2', 'Orbitron', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'Space Mono', ui-monospace, monospace;

  /* --- Scale --- */
  --text-hero: clamp(2.3rem, 6vw, 4.6rem);
  --text-3xl: clamp(2rem, 4.5vw, 3.25rem);
  --text-2xl: clamp(1.6rem, 3vw, 2.25rem);
  --text-xl: clamp(1.25rem, 2vw, 1.5rem);
  --text-lg: 1.175rem;
  --text-base: 1.05rem;
  --text-sm: 0.925rem;
  --text-xs: 0.78rem;

  /* --- Spacing --- */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-6: 3rem;
  --sp-8: 4rem;
  --sp-12: 6rem;
  --sp-16: 8rem;

  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1200px;
  --header-h: 76px;
}

/* ============================================================
   Reset / base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
/* Native CSS smooth-scroll ONLY when the Lenis JS smooth-scroll is NOT active.
   When Lenis owns scrolling (html.lenis), CSS smooth would fight it and cause jank. */
html:not(.lenis) { scroll-behavior: smooth; }
html.lenis { scroll-behavior: auto; }
/* Official Lenis base styles (required for correct sizing + smoothness) */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }
@media (prefers-reduced-motion: reduce) {
  html, html:not(.lenis) { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}

body {
  font-family: var(--font-body);
  background: var(--midnight);
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--text-primary);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0.005em;
}
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); font-weight: 600; letter-spacing: 0.01em; }
p { color: var(--text-secondary); }

:focus-visible {
  outline: 2px solid var(--ent-cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   Layout primitives
   ============================================================ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--sp-3); }
.section { padding-block: var(--sp-12); position: relative; }
.section--tight { padding-block: var(--sp-8); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--text-muted);
  display: inline-block;
  margin-bottom: var(--sp-2);
}
.eyebrow--cyan { color: var(--ent-cyan); }
.eyebrow--magenta { color: var(--con-magenta); }

.lede { font-size: var(--text-lg); color: var(--text-secondary); max-width: 60ch; }
.section-head { max-width: 64ch; margin-bottom: var(--sp-6); }

.gradient-text {
  background: var(--phoenix-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.gradient-text--cyan { background: var(--ent-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.gradient-text--magenta { background: var(--con-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-head); font-weight: 600; font-size: var(--text-sm);
  letter-spacing: 0.01em;
  padding: 0.85rem 1.6rem; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  color: var(--midnight); background: var(--white);
}
.btn:hover { transform: translateY(-2px); }
.btn .ico { width: 18px; height: 18px; }
.btn--phoenix { background: var(--phoenix-gradient); color: var(--white); box-shadow: 0 6px 30px rgba(138,46,255,.35); }
.btn--phoenix:hover { box-shadow: 0 10px 40px rgba(255,0,122,.45); }
.btn--cyan { background: var(--ent-gradient); color: var(--midnight); box-shadow: 0 6px 26px rgba(0,212,255,.3); }
.btn--cyan:hover { box-shadow: 0 10px 38px rgba(0,212,255,.45); }
.btn--magenta { background: var(--con-gradient); color: var(--white); box-shadow: 0 6px 26px rgba(255,0,122,.32); }
.btn--magenta:hover { box-shadow: 0 10px 38px rgba(255,0,122,.46); }
.btn--ghost { background: transparent; color: var(--white); border-color: var(--border-strong); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
.btn--ghost-cyan { background: transparent; color: var(--ent-cyan); border-color: rgba(0,212,255,.4); }
.btn--ghost-cyan:hover { border-color: var(--ent-cyan); background: rgba(0,212,255,.08); }
.btn--ghost-magenta { background: transparent; color: var(--con-magenta); border-color: rgba(255,0,122,.4); }
.btn--ghost-magenta:hover { border-color: var(--con-magenta); background: rgba(255,0,122,.08); }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-2); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(5,8,22,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-3);
}
.brand-link { display: inline-flex; align-items: center; }
/* Logo lockup: real phoenix mark image + Orbitron wordmark */
.logo { display: inline-flex; align-items: center; gap: 0.5em; line-height: 1; }
.logo__mark { display: block; width: auto; }
.logo__word {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.10em;
  white-space: nowrap;
}


.nav { display: flex; align-items: center; gap: var(--sp-3); }
.nav-links { display: flex; gap: var(--sp-3); list-style: none; padding: 0; }
.nav-links a {
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 500;
  color: var(--text-secondary); padding: 0.4rem 0; position: relative;
  transition: color .2s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--phoenix-gradient); transition: width .25s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }

.nav-cta { display: inline-flex; }

/* ---- "Apps by Skye" dropdown ---- */
.nav-apps { position: relative; }
.nav-apps__btn {
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 500;
  color: var(--text-secondary); background: transparent; border: 0; cursor: pointer;
  padding: 0.4rem 0; display: inline-flex; align-items: center; gap: 0.35em;
  position: relative; transition: color .2s ease;
}
.nav-apps__btn:hover, .nav-apps.is-active .nav-apps__btn { color: var(--white); }
.nav-apps__chev { width: 15px; height: 15px; transition: transform .25s ease; }
.nav-apps.open .nav-apps__chev, .nav-apps:hover .nav-apps__chev { transform: rotate(180deg); }
.nav-apps__btn::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--phoenix-gradient); transition: width .25s ease;
}
.nav-apps:hover .nav-apps__btn::after,
.nav-apps.open .nav-apps__btn::after,
.nav-apps.is-active .nav-apps__btn::after { width: 100%; }
.nav-apps__menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 260px; list-style: none; margin: 0; padding: 0.5rem;
  background: rgba(8, 11, 26, 0.96); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong); border-radius: var(--radius);
  box-shadow: 0 24px 60px -18px rgba(0,0,0,0.9);
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .22s ease, transform .22s ease;
  z-index: 1200;
}
.nav-apps__menu::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: rgba(8, 11, 26, 0.96);
  border-left: 1px solid var(--border-strong); border-top: 1px solid var(--border-strong);
}
.nav-apps:hover .nav-apps__menu,
.nav-apps:focus-within .nav-apps__menu,
.nav-apps.open .nav-apps__menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-apps__menu a {
  display: flex; flex-direction: column; gap: 0.1em;
  padding: 0.65rem 0.8rem; border-radius: 10px; text-decoration: none;
  transition: background .18s ease;
}
.nav-apps__menu a:hover, .nav-apps__menu a[aria-current="page"] { background: rgba(138, 46, 255, 0.14); }
.nav-apps__menu a::after { display: none; }
.nav-apps__menu .app-name {
  font-family: var(--font-head); font-weight: 700; font-size: 0.98rem; color: var(--white);
  letter-spacing: 0.02em;
}
.nav-apps__menu .app-desc {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.04em; color: var(--text-muted);
}

.menu-toggle {
  display: none; background: transparent; border: 1px solid var(--border-strong);
  border-radius: 10px; width: 44px; height: 44px; cursor: pointer; padding: 0;
  align-items: center; justify-content: center; color: var(--white);
}
.menu-toggle svg { width: 22px; height: 22px; }

@media (max-width: 920px) {
  .nav { position: static; }
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 0.2rem; align-items: stretch;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: #050816; -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border); box-shadow: 0 24px 50px -20px rgba(0,0,0,0.85);
    padding: var(--sp-2) var(--sp-3) var(--sp-3);
    margin: 0; list-style: none;
    z-index: 1200;
  }
  .nav.open .nav-links li { width: 100%; }
  .nav.open .nav-links a { display: block; font-size: var(--text-lg); padding: 0.85rem 0; border-bottom: 1px solid var(--border); }
  .nav.open .nav-links li:last-child a { border-bottom: none; }
  .nav.open .nav-links a::after { display: none; }
  /* primary CTA is redundant on mobile (Contact is in the list) */

  /* Apps dropdown becomes an inline accordion on mobile */
  .nav.open .nav-apps { width: 100%; }
  .nav.open .nav-apps__btn {
    display: flex; width: 100%; justify-content: space-between;
    font-size: var(--text-lg); padding: 0.85rem 0; border-bottom: 1px solid var(--border);
  }
  .nav.open .nav-apps__menu {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    min-width: 0; width: 100%; background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none;
    border: 0; box-shadow: none; padding: 0;
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav.open .nav-apps__menu::before { display: none; }
  .nav.open .nav-apps.open .nav-apps__menu { max-height: 280px; }
  .nav.open .nav-apps__menu a { display: flex; flex-direction: column; gap: 0.15em; padding: 0.7rem 0 0.7rem 1rem; border-bottom: 1px solid var(--border); }
  .nav.open .nav-apps__menu .app-name { font-size: 1.05rem; }
  .nav.open .nav-apps__menu .app-desc { font-size: 0.78rem; }
}

/* ============================================================
   Hero (master / generic)
   ============================================================ */
.hero {
  position: relative; min-height: calc(100svh - var(--header-h));
  display: flex; align-items: center;
  padding-block: var(--sp-12);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.hero__bg-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; display: block; }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 18%, transparent 0%, rgba(5,8,22,0.4) 55%, rgba(5,8,22,0.92) 100%),
    linear-gradient(180deg, rgba(5,8,22,0.55) 0%, rgba(5,8,22,0.25) 45%, rgba(5,8,22,0.95) 100%);
}
.hero__inner { position: relative; z-index: 1; max-width: 900px; }
.hero__inner::before {
  content: ''; position: absolute; z-index: -1;
  left: -6%; right: -6%; top: -8%; bottom: -8%;
  background: radial-gradient(70% 75% at 30% 50%, rgba(5,8,22,0.72) 0%, rgba(5,8,22,0.45) 45%, transparent 80%);
  filter: blur(8px); pointer-events: none;
}
.hero h1 {
  font-size: var(--text-hero); font-weight: 700; letter-spacing: 0.01em;
  margin-block: var(--sp-2) var(--sp-3);
}
.hero__sub { font-size: var(--text-xl); color: var(--text-secondary); max-width: 56ch; margin-bottom: var(--sp-4); font-weight: 300; }

/* Division hero accents */
.hero--ent .hero__bg::after {
  background:
    radial-gradient(100% 100% at 75% 30%, rgba(0,119,255,0.22) 0%, transparent 55%),
    linear-gradient(180deg, rgba(5,8,22,0.65) 0%, rgba(5,8,22,0.4) 40%, rgba(5,8,22,0.96) 100%);
}
.hero--con .hero__bg::after {
  background:
    radial-gradient(100% 100% at 70% 25%, rgba(138,46,255,0.25) 0%, transparent 55%),
    linear-gradient(180deg, rgba(5,8,22,0.6) 0%, rgba(5,8,22,0.35) 40%, rgba(5,8,22,0.96) 100%);
}

/* ============================================================
   Brand architecture split (signature section)
   ============================================================ */
.arch-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }

.arch-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  padding: var(--sp-6); border: 1px solid var(--border);
  background: var(--surface-1);
  transition: transform .3s ease, border-color .3s ease;
  display: flex; flex-direction: column;
}
.arch-card:hover { transform: translateY(-4px); }
.arch-card::before {
  content: ''; position: absolute; inset: 0; z-index: 0; opacity: 0.9;
}
.arch-card--ent { border-color: rgba(0,212,255,0.25); }
.arch-card--ent::before { background: radial-gradient(120% 90% at 0% 0%, rgba(0,212,255,0.16) 0%, transparent 60%); }
.arch-card--ent:hover { border-color: rgba(0,212,255,0.6); }
.arch-card--con { border-color: rgba(255,0,122,0.25); }
.arch-card--con::before { background: radial-gradient(120% 90% at 100% 0%, rgba(255,0,122,0.16) 0%, rgba(138,46,255,0.08) 50%, transparent 70%); }
.arch-card--con:hover { border-color: rgba(255,0,122,0.6); }
.arch-card > * { position: relative; z-index: 1; }
.arch-card .division-label { font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.28em; }
.arch-card--ent .division-label { color: var(--ent-cyan); }
.arch-card--con .division-label { color: var(--con-magenta); }
.arch-card h3 { font-size: var(--text-2xl); font-weight: 700; margin-block: var(--sp-1) var(--sp-3); }
.arch-card .msg { color: var(--text-secondary); margin-bottom: var(--sp-3); }
.arch-card ul { list-style: none; padding: 0; margin-bottom: var(--sp-4); display: grid; gap: 0.7rem; }
.arch-card li { display: flex; align-items: flex-start; gap: 0.7rem; color: var(--text-secondary); font-size: var(--text-base); }
.arch-card li .ico { flex: 0 0 auto; width: 22px; height: 22px; margin-top: 2px; }
.arch-card--ent li .ico { color: var(--ent-cyan); }
.arch-card--con li .ico { color: var(--con-magenta); }
.arch-card .card-foot { margin-top: auto; }
@media (max-width: 820px) {
  .arch-split { grid-template-columns: 1fr; }
  .arch-card { padding: var(--sp-4); }
}

/* ============================================================
   Card grids (values, capabilities)
   ============================================================ */
.grid { display: grid; gap: var(--sp-3); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid--3, .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface-1); border: 1px solid var(--border);
  border-radius: var(--radius); padding: var(--sp-4);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.card:hover { transform: translateY(-3px); border-color: var(--border-strong); background: var(--surface-2); }
.card h3 { font-size: var(--text-lg); margin-bottom: 0.5rem; }
.card p { font-size: var(--text-sm); color: var(--text-secondary); margin: 0; }

.icon-badge {
  width: 52px; height: 52px; border-radius: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-3);
  border: 1px solid var(--border-strong); background: var(--surface-2);
}
.icon-badge .ico { width: 28px; height: 28px; }
.icon-badge--cyan { color: var(--ent-cyan); border-color: rgba(0,212,255,0.3); background: rgba(0,212,255,0.06); }
.icon-badge--magenta { color: var(--con-magenta); border-color: rgba(255,0,122,0.3); background: rgba(255,0,122,0.06); }
.icon-badge--phoenix { color: var(--white); border-color: rgba(138,46,255,0.35); background: rgba(138,46,255,0.08); }
.card--cyan:hover { border-color: rgba(0,212,255,0.5); }
.card--magenta:hover { border-color: rgba(255,0,122,0.5); }

/* ============================================================
   Mission strip
   ============================================================ */
.strip {
  border-block: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface-1), var(--surface-0));
}
.strip .container { display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--sp-2); }
.strip h2 { font-size: var(--text-2xl); max-width: 22ch; }
.strip p { max-width: 60ch; }

/* ============================================================
   Trio (Be Seen / Heard / Limitless)
   ============================================================ */
.trio { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-4); }
@media (max-width: 760px) { .trio { grid-template-columns: 1fr; gap: var(--sp-6); } }
.trio-item { text-align: center; display: flex; flex-direction: column; align-items: center; }
.trio-item .icon-badge { width: 64px; height: 64px; }
.trio-item .icon-badge .ico { width: 34px; height: 34px; }
.trio-item h3 { font-size: var(--text-xl); margin-bottom: 0.4rem; }
.trio-item p { font-size: var(--text-sm); max-width: 32ch; }

/* ============================================================
   Image feature (split visual + copy)
   ============================================================ */
.feature { display: grid; grid-template-columns: 1.05fr 1fr; gap: var(--sp-6); align-items: center; }
.feature--rev { grid-template-columns: 1fr 1.05fr; }
.feature--rev .feature__media { order: 2; }
@media (max-width: 860px) { .feature, .feature--rev { grid-template-columns: 1fr; gap: var(--sp-4); } .feature--rev .feature__media { order: 0; } }
.feature__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.feature__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.feature__media video, .feature__video { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 16/9; }
.feature__media--cyan { box-shadow: 0 0 0 1px rgba(0,212,255,0.18), 0 30px 70px -30px rgba(0,119,255,0.4); }
.feature__media--magenta { box-shadow: 0 0 0 1px rgba(255,0,122,0.18), 0 30px 70px -30px rgba(255,0,122,0.4); }
.feature__media--tall img { aspect-ratio: 3/4; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: var(--sp-8) var(--sp-4); text-align: center; border: 1px solid var(--border); }
.cta-band::before { content: ''; position: absolute; inset: 0; opacity: 0.5; }
.cta-band--phoenix::before { background: radial-gradient(120% 140% at 50% -20%, rgba(138,46,255,0.35), transparent 60%); }
.cta-band--cyan::before { background: radial-gradient(120% 140% at 50% -20%, rgba(0,119,255,0.35), transparent 60%); }
.cta-band--magenta::before { background: radial-gradient(120% 140% at 50% -20%, rgba(255,0,122,0.32), transparent 60%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: var(--sp-2); }
.cta-band p { max-width: 54ch; margin-inline: auto; margin-bottom: var(--sp-4); }
.cta-band .btn-row { justify-content: center; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { border-top: 1px solid var(--border); background: var(--surface-0); padding-block: var(--sp-8) var(--sp-4); margin-top: var(--sp-8); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--sp-6); margin-bottom: var(--sp-6); align-items: start; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6) var(--sp-5); } .footer-brand { grid-column: 1 / -1; margin-bottom: var(--sp-2); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: var(--sp-4); } .footer-brand { grid-column: auto; } }
.footer-brand .logo { margin-bottom: var(--sp-2); }
.footer-brand .tagline { font-family: var(--font-head); font-weight: 500; color: var(--text-primary); }
.footer-desc { font-size: 0.9rem; max-width: 46ch; margin-top: 0.6rem; color: var(--text-secondary); line-height: 1.55; }
.footer-news { margin-top: var(--sp-4); max-width: 400px; }
.footer-news__label { display: block; font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.2em; color: var(--text-muted); margin-bottom: 0.5rem; }
.footer-news__row { display: flex; gap: 0.5rem; flex-wrap: wrap; }
@media (max-width: 460px) { .footer-news__row input, .footer-news__btn { flex: 1 1 100%; } }
.footer-news__row input { flex: 1 1 auto; min-width: 0; padding: 0.7rem 0.9rem; border-radius: 10px; border: 1px solid var(--border); background: var(--surface-1); color: var(--text-primary); font-size: 0.95rem; }
.footer-news__row input:focus { outline: 2px solid var(--cyan); outline-offset: 1px; border-color: var(--cyan); }
.footer-news__btn { flex: 0 0 auto; white-space: nowrap; padding-inline: 1.1rem; }
.footer-news__msg { font-size: 0.85rem; margin-top: 0.5rem; min-height: 1em; color: var(--text-muted); }
.footer-news__msg.is-ok { color: var(--cyan); }
.footer-col h4 { font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.24em; color: var(--text-muted); margin-bottom: var(--sp-2); font-weight: 400; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 0.6rem; }
.footer-col a { color: var(--text-secondary); font-size: var(--text-sm); transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--sp-2); padding-top: var(--sp-4); border-top: 1px solid var(--border); }
.footer-bottom .micro { font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.16em; color: var(--text-muted); text-transform: uppercase; }
.footer-bottom .copy { font-size: var(--text-xs); color: var(--text-muted); }

/* ============================================================
   Contact form
   ============================================================ */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--sp-8); align-items: start; }
@media (max-width: 860px) { .contact-wrap { grid-template-columns: 1fr; gap: var(--sp-6); } }
.form { display: grid; gap: var(--sp-3); background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--sp-6); }
.field { display: grid; gap: 0.45rem; }
.field label { font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-secondary); }
.field input, .field select, .field textarea {
  background: var(--surface-0); border: 1px solid var(--border-strong); border-radius: 10px;
  padding: 0.8rem 1rem; color: var(--white); font-family: var(--font-body); font-size: var(--text-base);
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ent-cyan); box-shadow: 0 0 0 3px rgba(0,212,255,0.18); }
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; cursor: pointer; }
.form .btn { justify-content: center; }
.contact-info { display: grid; gap: var(--sp-4); }
.contact-info .info-block { border-left: 2px solid var(--border-strong); padding-left: var(--sp-3); }
.contact-info .info-block h3 { font-size: var(--text-lg); margin-bottom: 0.3rem; }
.contact-info .info-block p { font-size: var(--text-sm); }

.form-success { display: none; text-align: center; background: var(--surface-1); border: 1px solid rgba(138,46,255,0.4); border-radius: var(--radius-lg); padding: var(--sp-8) var(--sp-6); }
.form-success.show { display: block; }
.form-success .icon-badge { width: 72px; height: 72px; margin-inline: auto; }
.form-success .icon-badge .ico { width: 38px; height: 38px; }
.form-success h3 { font-size: var(--text-2xl); margin-block: var(--sp-2) var(--sp-1); }

/* ============================================================
   Phoenix story / about specifics
   ============================================================ */
.mvp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-3); }
@media (max-width: 820px) { .mvp-grid { grid-template-columns: 1fr; } }
.mvp { background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--sp-4); }
.mvp .division-label { font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.24em; color: var(--purple); }
.mvp h3 { margin-block: 0.5rem; }

.where-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--sp-3); }
@media (max-width: 700px) { .where-grid { grid-template-columns: 1fr; } }
.where-item { display: flex; gap: var(--sp-2); padding: var(--sp-3); background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--radius); }
.where-item .ico { flex: 0 0 auto; width: 26px; height: 26px; color: var(--ent-cyan); margin-top: 2px; }
.where-item h3 { font-size: var(--text-base); margin-bottom: 0.25rem; }
.where-item p { font-size: var(--text-sm); margin: 0; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* utility */
.center { text-align: center; }
.mt-6 { margin-top: var(--sp-6); }
.divider-mono { font-family: var(--font-mono); color: var(--text-muted); font-size: var(--text-xs); letter-spacing: 0.3em; text-transform: uppercase; text-align:center; margin-block: var(--sp-4); }

/* ============================================================
   IMMERSIVE WEBGL HERO  +  SITE-WIDE MOTION LAYER
   ============================================================ */

/* ---- Immersive hero shell ---- */
.hero--immersive {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding-block: var(--sp-12);
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 110%, rgba(138,46,255,0.16) 0%, transparent 60%),
    radial-gradient(90% 70% at 50% 40%, rgba(0,207,255,0.06) 0%, transparent 70%),
    var(--midnight);
  isolation: isolate;
}

/* WebGL canvas — fixed behind hero content, above the bg gradient */
.hero__canvas,
.hero__fallback-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  display: block;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.hero__canvas.is-in,
.hero__fallback-canvas.is-in { opacity: 1; }
/* only show the fallback canvas when in fallback mode */
.hero--webgl .hero__fallback-canvas { display: none; }
.hero--fallback .hero__canvas { display: none; }

/* ---- Phoenix video hero ---- */
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}
.hero--video.is-ready .hero__video { opacity: 1; }
/* scrim: darken edges + lift center legibility over the video */
.hero__video-scrim {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(75% 60% at 50% 50%, rgba(5,8,22,0.30) 0%, rgba(5,8,22,0.62) 55%, rgba(5,8,22,0.88) 100%),
    linear-gradient(to bottom, rgba(5,8,22,0.55) 0%, transparent 22%, transparent 60%, rgba(5,8,22,0.92) 100%);
}
.hero--video .hero__content { z-index: 3; }
.hero--video .hero__scroll-cue { z-index: 3; }
@media (prefers-reduced-motion: reduce) {
  .hero__video { opacity: 1; transition: none; }
}

/* ---- Figure overlays ---- */
.hero__figures {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero__figure {
  position: absolute;
  bottom: 0;
  height: clamp(440px, 78vh, 880px);
  width: auto;
  opacity: 0.92;
  filter: drop-shadow(0 0 36px rgba(138,46,255,0.45)) drop-shadow(0 0 80px rgba(255,0,122,0.22));
  animation-name: heroFigIn;
  animation-duration: 1.4s;
  animation-timing-function: ease;
  animation-fill-mode: both;
  will-change: transform, opacity;
  --px: 0px; --pyp: 0px;
}
@keyframes heroFigIn { from { opacity: 0; } to { opacity: 0.92; } }
.hero__figure--left {
  left: clamp(-60px, -2vw, 0px);
  transform: translate(var(--px), var(--pyp));
  animation: heroFigIn 1.4s ease both, heroFloatL 7s ease-in-out infinite;
}
.hero__figure--right {
  right: clamp(-80px, -4vw, -20px);
  height: clamp(420px, 72vh, 820px);
  transform: translate(var(--px), var(--pyp));
  animation: heroFigIn 1.4s ease both, heroFloatR 8s ease-in-out infinite;
}

@keyframes heroFloatL {
  0%,100% { margin-bottom: 0; }
  50% { margin-bottom: 16px; }
}
@keyframes heroFloatR {
  0%,100% { margin-bottom: 0; }
  50% { margin-bottom: -14px; }
}

/* ---- Center content ---- */
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  text-align: center;
  padding-inline: var(--sp-3);
  margin-inline: auto;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.16,.84,.44,1);
}
.hero__content.is-ready { opacity: 1; transform: none; }

.hero__vignette {
  position: absolute; z-index: -1;
  left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 150%; height: 190%;
  background: radial-gradient(60% 55% at 50% 50%,
    rgba(5,8,22,0.82) 0%, rgba(5,8,22,0.55) 42%, rgba(5,8,22,0.18) 68%, transparent 85%);
  filter: blur(6px);
  pointer-events: none;
}

.hero__logo { display: flex; justify-content: center; margin-bottom: var(--sp-3); }
.hero__logo .logo { filter: drop-shadow(0 0 22px rgba(138,46,255,0.5)); gap: 0.55em; }
.hero--immersive .eyebrow { color: var(--text-secondary); }
.hero--immersive h1 {
  font-size: var(--text-hero); font-weight: 700; letter-spacing: 0.01em;
  margin-block: var(--sp-2) var(--sp-3);
}
.hero--immersive .gradient-text { filter: drop-shadow(0 0 30px rgba(255,0,122,0.25)); }
.hero--immersive .hero__sub {
  font-size: var(--text-xl); color: var(--text-secondary);
  max-width: 52ch; margin: 0 auto var(--sp-4); font-weight: 300;
}
.hero--immersive .btn-row { justify-content: center; }

/* ---- scroll cue ---- */
.hero__scroll-cue {
  position: absolute; left: 50%; bottom: clamp(16px, 4vh, 36px);
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--text-secondary);
  text-decoration: none;
  opacity: 0; animation: cueIn 0.8s ease 1.6s forwards;
}
.hero__scroll-label {
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-muted);
}
.hero__scroll-cue svg { width: 22px; height: 22px; animation: cueBob 1.8s ease-in-out infinite; }
.hero__scroll-cue:hover { color: var(--white); }
@keyframes cueIn { to { opacity: 1; } }
@keyframes cueBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---- Mobile: keep center content legible ---- */
@media (max-width: 768px) {
  .hero__figure { opacity: 0.32; }
  @keyframes heroFigIn { from { opacity: 0; } to { opacity: 0.32; } }
  .hero__figure--left { height: clamp(320px, 52vh, 520px); left: -90px; }
  .hero__figure--right { height: clamp(300px, 50vh, 500px); right: -90px; }
  .hero__vignette { width: 200%; height: 220%; }
}
@media (max-width: 480px) {
  .hero__figure { opacity: 0.22; }
  @keyframes heroFigIn { from { opacity: 0; } to { opacity: 0.22; } }
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
@media (hover: hover) and (pointer: fine) {
  .has-custom-cursor,
  .has-custom-cursor a,
  .has-custom-cursor button,
  .has-custom-cursor .btn,
  .has-custom-cursor [role="button"] { cursor: none; }
}
.sf-cursor-dot, .sf-cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  opacity: 0;
  margin-left: 0; margin-top: 0;
  will-change: transform;
}
.sf-cursor-dot {
  width: 7px; height: 7px;
  margin: -3.5px 0 0 -3.5px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,207,255,0.9), 0 0 18px rgba(255,0,122,0.6);
  transition: opacity .25s ease;
}
.sf-cursor-ring {
  width: 34px; height: 34px;
  margin: -17px 0 0 -17px;
  border: 1.5px solid rgba(0,207,255,0.7);
  box-shadow: 0 0 14px rgba(138,46,255,0.5), inset 0 0 10px rgba(255,0,122,0.25);
  transition: width .22s ease, height .22s ease, margin .22s ease,
              border-color .22s ease, opacity .25s ease, background .22s ease;
}
.sf-cursor-ring.is-hover {
  width: 56px; height: 56px; margin: -28px 0 0 -28px;
  border-color: rgba(255,0,122,0.85);
  background: rgba(138,46,255,0.10);
}
.sf-cursor-ring.is-down { width: 26px; height: 26px; margin: -13px 0 0 -13px; }

/* ============================================================
   AMBIENT 2D PARTICLE FIELD (inner pages)
   ============================================================ */
.sf-ambient {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  max-width: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}
/* keep page content above the ambient field */
body > main, body > .site-footer, body > #site-footer { position: relative; z-index: 1; }
/* header (and its mobile dropdown) must sit above page content */
body > .site-header, body > #site-header { position: sticky; z-index: 200; }

/* ============================================================
   REVEAL upgrade — gentle fade + rise (keeps existing .reveal API)
   ============================================================ */
.reveal { will-change: opacity, transform; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__content { opacity: 1 !important; transform: none !important; }
  .hero__figure { animation: none !important; }
  .hero__scroll-cue svg { animation: none !important; }
}

/* ---- Reusable newsletter / consent opt-in (phoenix theme) ---- */
.form-optin {
  display: flex; gap: 0.7em; align-items: flex-start;
  padding: 0.85rem 1rem; border-radius: var(--radius);
  border: 1px solid var(--border); background: rgba(255,255,255,0.02);
  margin-top: 0.4rem;
}
.form-optin input {
  appearance: none; -webkit-appearance: none;
  width: 20px; height: 20px; flex: none; margin-top: 0.1em;
  border: 1.5px solid var(--border-strong); border-radius: 6px;
  background: rgba(255,255,255,0.03); cursor: pointer; position: relative;
  transition: all .2s ease;
}
.form-optin input:checked { background: var(--phoenix-gradient); border-color: transparent; }
.form-optin input:checked::after {
  content: ''; position: absolute; left: 6px; top: 2px;
  width: 5px; height: 10px; border: solid #0a0a0f; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.form-optin input:focus-visible { outline: 2px solid var(--accent-cyan, #00CFFF); outline-offset: 2px; }
.form-optin label {
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; cursor: pointer;
}

/* ====================================================================
   HOMEPAGE PRODUCT ARCHITECTURE — added by audit fix (2026-06)
   ==================================================================== */

/* ---- "What SkyeFire Is" mission band ---- */
.sf-mission {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-primary, #e8e8f0);
  max-width: 72ch;
  letter-spacing: 0.01em;
}

/* ---- Product card grid ---- */
.sf-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
@media (max-width: 1080px) {
  .sf-product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .sf-product-grid { grid-template-columns: 1fr; }
}

.sf-product-card {
  position: relative;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-4) var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.sf-product-card:hover {
  transform: translateY(-4px);
  background: var(--surface-2);
}
.sf-product-card--cyan { border-color: rgba(0, 212, 255, 0.18); }
.sf-product-card--cyan:hover { border-color: rgba(0, 212, 255, 0.45); }
.sf-product-card--magenta { border-color: rgba(255, 0, 122, 0.18); }
.sf-product-card--magenta:hover { border-color: rgba(255, 0, 122, 0.45); }

/* Flagship card spans full width on wide screens */
.sf-product-card--flagship {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--sp-5);
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(0, 212, 255, 0.07) 0%, transparent 70%),
    var(--surface-1);
  border-color: rgba(0, 212, 255, 0.28);
}
.sf-product-card--flagship:hover { border-color: rgba(0, 212, 255, 0.55); }
@media (max-width: 760px) {
  .sf-product-card--flagship {
    flex-direction: column;
    grid-column: auto;
  }
}
.sf-product-card--flagship .sf-product-card__desc { max-width: 52ch; }
.sf-product-card--flagship .sf-product-card__name {
  font-size: var(--text-3xl, clamp(1.5rem, 3.5vw, 2.2rem));
}

.sf-product-card__tag {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 4px;
  padding: 0.2em 0.6em;
}
.sf-product-card__head { margin-bottom: 0; }
.sf-product-card__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--text-2xl, 1.5rem);
  line-height: 1.1;
  margin: 0;
}
.sf-product-card--cyan .sf-product-card__name { color: var(--text-primary, #e8e8f0); }
.sf-product-card--magenta .sf-product-card__name { color: var(--text-primary, #e8e8f0); }
.sf-product-card__desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.sf-product-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ---- Audience grid ---- */
.sf-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}
@media (max-width: 880px) { .sf-audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .sf-audience-grid { grid-template-columns: 1fr; } }

.sf-audience-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  text-align: center;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--text-secondary);
  transition: border-color .2s ease, background .2s ease;
}
.sf-audience-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  background: var(--surface-2);
  color: var(--text-primary, #e8e8f0);
}
.sf-audience-card__ico {
  width: 30px;
  height: 30px;
  color: var(--accent-cyan, #00CFFF);
  flex-shrink: 0;
}

/* ---- Trust cards (built by operators / pilot / data control) ---- */
.sf-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-4);
}
@media (max-width: 880px) { .sf-trust-grid { grid-template-columns: 1fr; } }
.sf-trust-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-4);
  transition: border-color .2s ease, background .2s ease;
}
.sf-trust-card:hover { border-color: rgba(0, 212, 255, 0.3); background: var(--surface-2); }
.sf-trust-card__ico { width: 34px; height: 34px; color: var(--accent-cyan, #00CFFF); margin-bottom: var(--sp-3); }
.sf-trust-card h3 { font-size: var(--text-lg); margin-bottom: var(--sp-2); }
.sf-trust-card p { color: var(--text-secondary); font-size: var(--text-sm); line-height: 1.6; }
.sf-trust-card a { color: var(--cyan); }

/* ---- How it works steps ---- */
.sf-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}
@media (max-width: 880px) { .sf-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .sf-steps { grid-template-columns: 1fr; } }

.sf-step {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-4);
  transition: transform .25s ease, border-color .25s ease;
}
.sf-step:hover { transform: translateY(-3px); border-color: rgba(0, 212, 255, 0.4); }
.sf-step__num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.sf-step h3 { font-size: var(--text-lg); margin-bottom: 0.5rem; }
.sf-step p  { font-size: var(--text-sm); color: var(--text-secondary); margin: 0; }

/* ---- Form trust line ---- */
.form-trust {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: var(--sp-2) 0 0;
  font-family: var(--font-body);
}

/* ---- Mobile hero LCP: poster-only (video stripped by js/mobile-hero.js) ---- */
@media (max-width: 820px) {
  .hero__video--poster-only {
    opacity: 1 !important;
    object-fit: cover;
  }
}

/* ---- Why SkyeFire + Who It's For (homepage depth sections) ---- */
.sf-why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem); margin-top: clamp(2rem, 4vw, 3rem);
}
.sf-why-col h3 {
  font-family: "Orbitron", sans-serif; font-size: 1.15rem;
  color: #fff; margin: 0 0 .75rem;
}
.sf-why-col p { color: var(--text-secondary, #aeb6d6); line-height: 1.7; margin: 0; }

.sf-forwhom-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem); margin-top: clamp(2rem, 4vw, 3rem);
}
.sf-forwhom-col {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: clamp(1.4rem, 2.5vw, 2rem);
}
.sf-forwhom-col h3 {
  font-family: "Orbitron", sans-serif; font-size: 1.1rem; margin: 0 0 1rem;
}
.sf-forwhom-list { list-style: none; margin: 0; padding: 0; }
.sf-forwhom-list li {
  color: var(--text-secondary, #aeb6d6); line-height: 1.6;
  padding-left: 1.4rem; position: relative; margin-bottom: .75rem; font-size: .95rem;
}
.sf-forwhom-list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 7px; height: 7px; border-radius: 50%;
  background: linear-gradient(135deg, #8a2eff, #00cfff);
}
@media (max-width: 820px) {
  .sf-why-grid, .sf-forwhom-grid { grid-template-columns: 1fr; }
}
