/* ============================================================
   HALO Sphere — premium marketing site
   Palette derived from the logo: deep navy → royal blue → cyan → teal
   ============================================================ */

:root {
  /* Brand */
  --navy-900: #060B18;
  --navy-850: #080F22;
  --navy-800: #0B1530;
  --navy-700: #0F1E45;
  --blue-600: #136BD5;
  --blue-500: #1092F2;
  --cyan-400: #01D5F7;
  --cyan-300: #56E0FB;
  --teal-500: #015E6A;
  --teal-400: #018993;

  --ink: #0A1124;
  --paper: #F6F8FC;
  --paper-2: #EDF2FB;
  --white: #FFFFFF;

  --text-on-dark: #C9D5EC;
  --text-on-dark-dim: #8294B7;
  --text-on-light: #2A3650;
  --text-on-light-dim: #5C6B86;

  --grad-brand: linear-gradient(110deg, #042F59 0%, #136BD5 30%, #01D5F7 64%, #018993 100%);
  --grad-brand-soft: linear-gradient(110deg, #1092F2 0%, #01D5F7 52%, #018993 100%);

  --radius: 20px;
  --radius-lg: 28px;
  --wrap: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  background: var(--navy-900);
  color: var(--text-on-dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

::selection { background: var(--cyan-400); color: var(--navy-900); }

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

.wrap { width: min(var(--wrap), 90vw); margin-inline: auto; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  z-index: 200; background: transparent; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 0%;
  background: var(--grad-brand-soft);
  box-shadow: 0 0 18px rgba(34, 201, 230, 0.6);
}

/* ---------- Animated background field ---------- */
.bg-field { position: fixed; inset: 0; z-index: -2; overflow: hidden; background: var(--navy-900); }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.62; will-change: transform; }
.orb--1 { width: 50vw; height: 50vw; background: radial-gradient(circle, rgba(19,107,213,0.55), transparent 70%); top: -10vw; left: -8vw; }
.orb--2 { width: 46vw; height: 46vw; background: radial-gradient(circle, rgba(1,213,247,0.45), transparent 70%); top: 30vh; right: -12vw; }
.orb--3 { width: 40vw; height: 40vw; background: radial-gradient(circle, rgba(1,137,147,0.4), transparent 70%); bottom: -10vw; left: 20vw; }
.grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 30%, transparent 80%);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 56px);
  transition: padding .4s var(--ease), background .4s var(--ease), backdrop-filter .4s var(--ease);
}
.nav.is-scrolled {
  padding-top: 14px; padding-bottom: 14px;
  background: rgba(8, 15, 34, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__mark {
  width: 36px; height: 36px; flex: none;
  background: url("../assets/brand/mark-sm.png") center / contain no-repeat;
  filter: drop-shadow(0 0 10px rgba(1,213,247,0.4));
  animation: spin 26s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.nav__word { font-family: var(--font-display); line-height: 1; display: flex; flex-direction: column; }
.nav__word strong { font-weight: 700; letter-spacing: 0.14em; font-size: 1.05rem; color: var(--white); }
.nav__word span { font-weight: 400; letter-spacing: 0.18em; font-size: 0.72rem; color: var(--cyan-300); text-transform: lowercase; margin-top: 1px; }

.nav__links { display: flex; gap: 34px; }
.nav__links a {
  font-size: 0.93rem; color: var(--text-on-dark); position: relative; padding: 4px 0;
  transition: color .25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--grad-brand-soft); transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__burger { display: none; background: none; border: 0; flex-direction: column; gap: 5px; cursor: pointer; }
.nav__burger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 500; font-size: 0.96rem;
  padding: 14px 26px; border-radius: 100px; cursor: pointer; border: 0;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  will-change: transform; white-space: nowrap;
}
.btn span { position: relative; z-index: 1; }
.btn--primary { color: #04122B; background: var(--grad-brand-soft); background-size: 180% 180%; box-shadow: 0 10px 30px -8px rgba(1,213,247,0.5); }
.btn--primary:hover { box-shadow: 0 16px 40px -8px rgba(1,213,247,0.7); transform: translateY(-2px); }
.btn--ghost { color: var(--white); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }
.btn--ghost svg { transition: transform .3s var(--ease); }
.btn--ghost:hover svg { transform: translateY(3px); }
.btn--pill { padding: 11px 22px; color: var(--white); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); }
.btn--pill:hover { background: var(--grad-brand-soft); color: #04122B; border-color: transparent; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 140px 20px 90px; overflow: hidden;
}
/* readability scrim: darkens the centre so text pops, swirl still glows at edges */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(ellipse 58% 46% at 50% 44%, rgba(6,11,24,0.78), rgba(6,11,24,0.42) 52%, transparent 78%),
    linear-gradient(to bottom, rgba(6,11,24,0.55), transparent 24%, transparent 78%, var(--navy-900));
}
.hero__inner { position: relative; z-index: 3; max-width: 1120px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-size: 0.82rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--cyan-300);
  padding: 8px 16px; border: 1px solid rgba(86,224,251,0.25); border-radius: 100px;
  background: rgba(1,213,247,0.06); margin-bottom: 30px;
}
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan-400); box-shadow: 0 0 12px var(--cyan-400); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ opacity:1; transform: scale(1);} 50%{ opacity:.4; transform: scale(.8);} }

.hero__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 5.4rem); line-height: 1.02; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 28px;
}
.hero__title .line { display: block; overflow: hidden; }
.line--grad, .hero__title .grad {
  background: var(--grad-brand-soft); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__title--slogan { letter-spacing: -0.02em; line-height: 1.06; font-size: clamp(1.9rem, 4.7vw, 3.9rem); }
.hero__title--slogan .line { white-space: nowrap; }
.hero__title--slogan .line--always { margin-top: 0.06em; }
@media (max-width: 600px) { .hero__title--slogan .line { white-space: normal; } }
.hero__sub { max-width: 660px; margin: 0 auto 38px; font-size: clamp(1rem, 1.6vw, 1.2rem); color: var(--text-on-dark); }
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero__tag {
  font-family: var(--font-display); letter-spacing: 0.14em; text-transform: uppercase;
  font-size: 0.78rem; color: var(--text-on-dark-dim);
}

.hero__scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-on-dark-dim); }
.hero__scroll-line { width: 1px; height: 46px; background: linear-gradient(var(--cyan-400), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 40%; background: var(--cyan-300); animation: scrolldot 2s var(--ease) infinite; }
@keyframes scrolldot { 0%{ transform: translateY(-100%);} 100%{ transform: translateY(250%);} }

/* ----- The animated sphere ----- */
.hero__sphere { position: absolute; inset: 0; display: grid; place-items: center; z-index: 1; pointer-events: none; }
.sphere { position: relative; width: min(78vh, 720px); aspect-ratio: 1; display: grid; place-items: center; }
.sphere--sm { width: clamp(220px, 30vw, 360px); }
.sphere__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(8,20,48,0.55));
  animation: spin 80s linear infinite;
  will-change: transform;
}
.sphere--sm .sphere__img { animation: spin 110s linear infinite reverse; }
.sphere__glow { position: absolute; inset: 6%; border-radius: 50%;
  background: radial-gradient(circle, rgba(1,213,247,0.28), rgba(19,107,213,0.12) 45%, transparent 68%);
  filter: blur(46px); animation: breathe 7s var(--ease) infinite; }
@keyframes breathe { 0%,100%{ transform: scale(1); opacity:.85;} 50%{ transform: scale(1.05); opacity:1;} }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { position: relative; z-index: 3; padding: 26px 0; border-block: 1px solid rgba(255,255,255,0.07);
  background: rgba(8,15,34,0.5); overflow: hidden; }
.marquee__track { display: flex; align-items: center; gap: 34px; white-space: nowrap; width: max-content;
  animation: marquee 38s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-size: 1.05rem; color: var(--text-on-dark); letter-spacing: 0.02em; }
.marquee__track i { color: var(--cyan-400); font-style: normal; font-size: 0.7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS — shared
   ============================================================ */
section { position: relative; z-index: 2; }
.section-eyebrow {
  font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cyan-300); margin-bottom: 18px; display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--cyan-400); }
.section-title { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.03em;
  font-size: clamp(2.05rem, 4.6vw, 3.55rem); line-height: 1.04; max-width: 16ch;
  background: linear-gradient(180deg, #ffffff 32%, #6fcdec); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section-intro { color: var(--text-on-dark); max-width: 58ch; margin-top: 24px; font-size: 1.1rem; line-height: 1.7; }

/* ---------- INTRO / PROBLEM ---------- */
.intro { padding: clamp(90px, 14vh, 170px) 0; }
.intro__lead {
  font-family: var(--font-body); font-weight: 400; letter-spacing: 0;
  font-size: clamp(1.1rem, 1.7vw, 1.4rem); line-height: 1.65; color: var(--text-on-dark);
  max-width: 62ch;
}
.intro__lead .hl { font-weight: 600; }
.strike { position: relative; color: var(--text-on-dark-dim); }
.strike::after { content: ""; position: absolute; left: -2px; right: -2px; top: 52%; height: 2px; background: var(--cyan-400); transform: scaleX(0); transform-origin: left; }
.is-inview .strike::after { animation: strike .6s var(--ease) forwards; }
.is-inview .strike:nth-of-type(2)::after { animation-delay: .25s; }
@keyframes strike { to { transform: scaleX(1); } }
.hl { color: var(--cyan-300); }

.intro__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 70px; }
.intro__stat { padding: 30px; border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)); }
.intro__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 5vw, 3.6rem);
  background: var(--grad-brand-soft); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  display: block; line-height: 1; margin-bottom: 14px; }
.intro__stat p { color: var(--text-on-dark-dim); font-size: 0.98rem; }

/* ---------- CAPABILITIES ---------- */
.caps { padding: clamp(90px, 12vh, 150px) 0; background: radial-gradient(55% 50% at 84% 14%, rgba(1,213,247,0.14), transparent 68%); }
.caps__head { max-width: 760px; margin-bottom: 60px; }
.caps__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.cap {
  grid-column: span 2; padding: 34px; border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08); position: relative; overflow: hidden;
  transition: transform .45s var(--ease), border-color .45s, box-shadow .45s;
}
.cap::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--grad-brand-soft); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .45s; }
.cap:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(1,213,247,0.4); }
.cap:hover::before { opacity: 1; }
.cap__icon { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(150deg, rgba(19,107,213,0.25), rgba(1,137,147,0.18)); border: 1px solid rgba(86,224,251,0.2); color: var(--cyan-300); }
.cap__icon svg { width: 26px; height: 26px; }
.cap h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.28rem; color: var(--white); margin-bottom: 12px; line-height: 1.2; }
.cap p { color: var(--text-on-dark-dim); font-size: 0.98rem; }
.cap__list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 9px; }
.cap__list li { position: relative; padding-left: 22px; font-size: 0.9rem; color: var(--text-on-dark); }
.cap__list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 9px; height: 9px; border-radius: 3px; background: var(--grad-brand-soft); }
.cap__list--two { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }

.cap--wide { grid-column: span 4; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 30px; align-items: center; }
.cap--accent { grid-column: span 2; background: var(--grad-brand); border: 0; }
.cap--accent::before { display: none; }
.cap--accent .cap__icon { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.3); color: #fff; }
.cap--accent h3, .cap--accent p { color: #fff; }
.cap--accent p { color: rgba(255,255,255,0.85); }

/* kit visual */
.kit { display: grid; place-items: center; gap: 14px; }
.kit__bag { display: grid; grid-template-columns: repeat(2, 64px); grid-auto-rows: 50px; gap: 10px;
  padding: 16px; border-radius: 18px; background: rgba(4,10,28,0.5); border: 1px solid rgba(86,224,251,0.18);
  box-shadow: inset 0 0 30px rgba(1,213,247,0.08); transform: rotateX(12deg) rotateZ(-3deg); transform-style: preserve-3d; }
.kit__pocket { border-radius: 10px; background: linear-gradient(150deg, rgba(19,107,213,0.4), rgba(1,137,147,0.25));
  border: 1px solid rgba(86,224,251,0.3); animation: kitpulse 4s var(--ease) infinite; }
.kit__pocket:nth-child(2){ animation-delay:.4s } .kit__pocket:nth-child(3){ animation-delay:.8s }
.kit__pocket:nth-child(4){ animation-delay:1.2s } .kit__pocket:nth-child(6){ animation-delay:1.6s }
.kit__pocket--alert { background: linear-gradient(150deg, rgba(244,114,94,0.5), rgba(244,63,94,0.3)); border-color: rgba(255,150,120,0.5); }
@keyframes kitpulse { 0%,100%{ opacity:.55 } 50%{ opacity:1 } }
.kit__label { font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-on-dark-dim); }

/* ---------- SHOWCASE ---------- */
.showcase { padding: clamp(80px, 11vh, 140px) 0; background: radial-gradient(50% 55% at 14% 50%, rgba(19,107,213,0.14), transparent 68%); }
.showcase__wrap { display: grid; grid-template-columns: 1fr 0.85fr; gap: 60px; align-items: center; }
.showcase__points { list-style: none; margin-top: 30px; display: flex; flex-direction: column; gap: 16px; }
.showcase__points li { display: flex; align-items: center; gap: 14px; font-size: 1.02rem; color: var(--text-on-dark); }
.showcase__points li::before { content: ""; width: 24px; height: 24px; flex: none; border-radius: 50%;
  background: radial-gradient(circle, var(--cyan-300) 0 3.5px, transparent 4.5px), rgba(1,213,247,0.12);
  border: 1px solid rgba(86,224,251,0.4); }

.showcase__device { display: grid; place-items: center; perspective: 1200px; }
.phone { width: 270px; height: 560px; border-radius: 42px; padding: 12px;
  background: linear-gradient(160deg, #11203f, #060b18); border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 50px 90px -30px rgba(0,0,0,0.8), 0 0 0 1px rgba(1,213,247,0.05), inset 0 0 30px rgba(1,213,247,0.06);
  position: relative; transform: rotateY(-16deg) rotateX(6deg); transform-style: preserve-3d; }
.phone__notch { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 90px; height: 22px; border-radius: 20px; background: #04091a; z-index: 3; }
.phone__screen { width: 100%; height: 100%; border-radius: 32px; overflow: hidden; background: radial-gradient(120% 80% at 50% 0%, #0e1d3e, #070d1f); position: relative; }
.ui { padding: 50px 20px 24px; display: flex; flex-direction: column; height: 100%; gap: 18px; }
.ui__top { display: flex; align-items: center; gap: 10px; }
.ui__mark { width: 22px; height: 22px; background: url("../assets/brand/mark-sm.png") center/contain no-repeat; }
.ui__title { font-family: var(--font-display); color: #fff; font-weight: 600; font-size: 1rem; }
.ui__ring { position: relative; display: grid; place-items: center; margin: 6px 0; }
.ui__ring svg { width: 150px; height: 150px; transform: rotate(-90deg); }
.ui__ring-bg { fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 10; }
.ui__ring-fg { fill: none; stroke: url(#x); stroke: var(--cyan-400); stroke-width: 10; stroke-linecap: round;
  stroke-dasharray: 314; stroke-dashoffset: 314; filter: drop-shadow(0 0 6px rgba(1,213,247,0.7)); }
.is-inview .ui__ring-fg { animation: ring 1.6s var(--ease) .3s forwards; }
@keyframes ring { to { stroke-dashoffset: 25; } }
.ui__ring-label { position: absolute; text-align: center; }
.ui__ring-label strong { display: block; font-family: var(--font-display); font-size: 1.7rem; color: #fff; }
.ui__ring-label span { font-size: 0.72rem; color: var(--text-on-dark-dim); text-transform: uppercase; letter-spacing: 0.1em; }
.ui__rows { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.ui__row { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; color: var(--text-on-dark);
  padding: 11px 13px; border-radius: 12px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); }
.ui__row i { margin-left: auto; font-style: normal; font-size: 0.72rem; color: var(--text-on-dark-dim); }
.ui__row span { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.ui__row .ok { background: #2dd4a7; box-shadow: 0 0 8px #2dd4a7; }
.ui__row .warn { background: #f5c451; box-shadow: 0 0 8px #f5c451; }
.ui__row .alert { background: #f4715e; box-shadow: 0 0 8px #f4715e; }

/* ---------- INDUSTRIES ---------- */
.industries { padding: clamp(90px, 12vh, 150px) 0; background: radial-gradient(54% 50% at 12% 16%, rgba(1,213,247,0.13), transparent 68%); }
.industries__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.ind { padding: 30px 26px 34px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(170deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  transition: transform .4s var(--ease), background .4s; position: relative; overflow: hidden; min-height: 230px;
  display: flex; flex-direction: column; }
.ind:hover { transform: translateY(-6px); background: linear-gradient(170deg, rgba(1,213,247,0.1), rgba(1,137,147,0.04)); }
.ind__no { font-family: var(--font-display); font-size: 0.85rem; color: var(--cyan-300); letter-spacing: 0.15em; margin-bottom: auto; }
.ind h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; color: var(--white); margin: 18px 0 10px; }
.ind p { font-size: 0.92rem; color: var(--text-on-dark-dim); }

/* ---------- STORY ---------- */
.story { padding: clamp(90px, 12vh, 160px) 0; background: radial-gradient(48% 55% at 86% 42%, rgba(1,159,170,0.15), transparent 68%); }
.story__wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: center; }
.story__mark { display: grid; place-items: center; }
.story__copy p { color: var(--text-on-dark); margin-top: 18px; font-size: 1.05rem; max-width: 52ch; }

/* ---------- PRICING ---------- */
.pricing { padding: clamp(90px, 12vh, 150px) 0; background: radial-gradient(65% 50% at 50% 2%, rgba(1,213,247,0.12), transparent 62%); }
.pricing__head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.pricing__head .section-eyebrow { justify-content: center; }
.pricing__head .section-title, .pricing__head .section-intro { max-width: none; margin-left: auto; margin-right: auto; }
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.plan { position: relative; padding: 40px 32px; border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.09); display: flex; flex-direction: column;
  transition: transform .4s var(--ease); }
.plan:hover { transform: translateY(-6px); }
.plan--featured {
  background: linear-gradient(165deg, rgba(19,107,213,0.20), rgba(1,137,147,0.10));
  border-color: rgba(86,224,251,0.45);
  box-shadow: 0 30px 70px -30px rgba(1,213,247,0.45);
}
.plan__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 100px; background: var(--grad-brand-soft); color: #04122B; white-space: nowrap;
  box-shadow: 0 8px 20px -6px rgba(1,213,247,0.6); }
.plan__name { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: #fff; }
.plan__for { color: var(--text-on-dark-dim); font-size: 0.92rem; margin: 8px 0 20px; min-height: 42px; }
.plan__price { font-family: var(--font-display); font-weight: 600; font-size: 2rem; line-height: 1; margin-bottom: 22px; }
.plan__price span { background: var(--grad-brand-soft); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.plan__cta { justify-content: center; width: 100%; }
.plan__list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 13px; }
.plan__list li { position: relative; padding-left: 28px; font-size: 0.92rem; color: var(--text-on-dark); }
.plan__list li::before { content: ""; position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 50%;
  background: rgba(1,213,247,0.14); border: 1px solid rgba(86,224,251,0.5); }
.plan__list li::after { content: ""; position: absolute; left: 5.5px; top: 7px; width: 4px; height: 7px;
  border-right: 2px solid var(--cyan-300); border-bottom: 2px solid var(--cyan-300); transform: rotate(43deg); }

/* ---------- CTA ---------- */
.cta { padding: clamp(90px, 14vh, 170px) 0; text-align: center; position: relative; overflow: hidden; }
.cta__glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 70vw; height: 70vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, rgba(1,213,247,0.18), transparent 60%); filter: blur(40px); }
.cta__wrap { position: relative; z-index: 2; }
.cta__title { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em;
  font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.04; color: var(--white);
  background: linear-gradient(180deg, #fff, #9fd9ec); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cta__sub { max-width: 52ch; margin: 22px auto 36px; font-size: 1.1rem; color: var(--text-on-dark); }
.cta__form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto 22px; flex-wrap: wrap; justify-content: center; }
.cta__form input { flex: 1; min-width: 220px; padding: 15px 22px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05); color: #fff; font-family: var(--font-body); font-size: 0.98rem; }
.cta__form input::placeholder { color: var(--text-on-dark-dim); }
.cta__form input:focus { outline: none; border-color: var(--cyan-400); box-shadow: 0 0 0 3px rgba(1,213,247,0.2); }
.cta__fine { font-family: var(--font-display); letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.76rem; color: var(--text-on-dark-dim); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { position: relative; z-index: 2; padding: 80px 0 40px; border-top: 1px solid rgba(255,255,255,0.07); background: rgba(6,11,24,0.6); }
.footer__wrap { display: grid; grid-template-columns: 1.3fr 2fr; gap: 50px; }
.footer__brand p { color: var(--text-on-dark-dim); margin: 20px 0; max-width: 38ch; font-size: 0.95rem; }
.footer__pills { display: flex; flex-wrap: wrap; gap: 8px; }
.footer__pills span { font-size: 0.76rem; padding: 6px 13px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.12); color: var(--text-on-dark); }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer__cols h4 { font-family: var(--font-display); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan-300); margin-bottom: 18px; }
.footer__cols a { display: block; color: var(--text-on-dark-dim); font-size: 0.92rem; padding: 6px 0; transition: color .25s, padding-left .25s; }
.footer__cols a:hover { color: var(--white); padding-left: 5px; }
.footer__base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  margin-top: 60px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.85rem; color: var(--text-on-dark-dim); }
.footer__motto { color: var(--cyan-300); font-family: var(--font-display); letter-spacing: 0.06em; }
.footer__contact { margin-top: 44px; padding-top: 34px; border-top: 1px solid rgba(255,255,255,0.07); }
.footer__contact-head { font-family: var(--font-display); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan-300); margin-bottom: 20px; }
.footer__people { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px 40px; max-width: 720px; }
.person { display: flex; flex-direction: column; gap: 2px; }
.person strong { font-family: var(--font-display); font-weight: 600; color: var(--white); font-size: 1.05rem; }
.person span { color: var(--text-on-dark-dim); font-size: 0.88rem; }
.person a { color: var(--cyan-300); font-size: 0.92rem; margin-top: 5px; transition: color .2s; width: fit-content; }
.person a:hover { color: var(--white); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].is-inview { opacity: 1; transform: none; }
[data-reveal-line] { display: block; transform: translateY(110%); transition: transform 1s var(--ease); }
.is-inview > [data-reveal-line], .hero__title.is-inview [data-reveal-line] { transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .caps__grid { grid-template-columns: repeat(2, 1fr); }
  .cap, .cap--accent { grid-column: span 1; }
  .cap--wide { grid-column: span 2; grid-template-columns: 1fr; }
  .industries__grid { grid-template-columns: repeat(2, 1fr); }
  .showcase__wrap, .story__wrap { grid-template-columns: 1fr; gap: 40px; }
  .story__mark { order: 2; }
}
@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .intro__grid { grid-template-columns: 1fr; }
  .caps__grid { grid-template-columns: 1fr; }
  .cap, .cap--accent, .cap--wide { grid-column: span 1; }
  .cap--wide { grid-template-columns: 1fr; }
  .cap__list--two { grid-template-columns: 1fr; }
  .industries__grid, .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__wrap { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .hero { padding-top: 120px; }
}
@media (max-width: 480px) {
  .footer__cols { grid-template-columns: 1fr; }
  .industries__grid { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal], [data-reveal-line] { opacity: 1 !important; transform: none !important; }
}
