:root {
  color-scheme: dark;
  --bg: #0b0f1a;
  --bg-2: #0f1829;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --text-primary: #e8edf7;
  --text-muted: #9aa7c1;
  --border: rgba(255, 255, 255, 0.08);
  --cyan: #58f0ff;
  --blue: #5aa0ff;
  --violet: #8f7cff;
  --green: #63f5c6;
  --danger: #ff6b6b;
  --shadow-1: 0 25px 80px rgba(0, 0, 0, 0.4);
  --glow: 0 0 35px rgba(88, 240, 255, 0.25);
  --radius: 16px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100% - 48px));
  --font-heading: 'Space Grotesk', 'Inter', 'Satoshi', system-ui, -apple-system, sans-serif;
  --font-body: 'Manrope', 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text-primary);
  background: radial-gradient(120% 120% at 20% 20%, rgba(88, 240, 255, 0.08), transparent),
    radial-gradient(120% 120% at 80% 0%, rgba(143, 124, 255, 0.12), transparent),
    linear-gradient(160deg, #0b0f1a 0%, #0d1322 40%, #0b0f1a 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) repeat center/120px 120px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) repeat center/120px 120px;
  opacity: 0.35;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  pointer-events: none;
  z-index: -1;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(600px 600px at 70% 20%, rgba(90, 160, 255, 0.15), transparent 60%),
    radial-gradient(500px 500px at 15% 70%, rgba(99, 245, 198, 0.18), transparent 65%),
    radial-gradient(500px 400px at 80% 85%, rgba(143, 124, 255, 0.16), transparent 70%);
  filter: blur(16px);
  pointer-events: none;
  z-index: -2;
}

/* Global atmospheric bridge to eliminate section boundary edges */
body::before,
body::after {
  pointer-events: none;
}

body::after {
  z-index: -2;
}

body::before {
  z-index: -1;
}

body::after {
  content: '';
  position: fixed;
  inset: -20%;
  background:
    radial-gradient(1200px 800px at 50% 10%, rgba(88, 240, 255, 0.10), transparent 65%),
    radial-gradient(1000px 900px at 20% 40%, rgba(143, 124, 255, 0.12), transparent 70%),
    radial-gradient(900px 700px at 80% 55%, rgba(99, 245, 198, 0.10), transparent 72%);
  filter: blur(28px);
  opacity: 0.75;
  mix-blend-mode: screen;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--cyan);
}

img {
  max-width: 100%;
  display: block;
}

p {
  margin: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: clamp(72px, 9vw, 124px) 0;
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(7, 10, 18, 0.95) 0%, rgba(10, 13, 22, 0.85) 60%, rgba(10, 13, 22, 0.7) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.site-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 140% at 50% -20%, rgba(255, 255, 255, 0.06), transparent 50%);
  pointer-events: none;
  opacity: 0.8;
}

.site-header.scrolled {
  background: rgba(10, 13, 22, 0.92);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.52);
  border-color: rgba(255, 255, 255, 0.1);
}

.header-bar {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  --glow-strength: 0.6;
  --spin: 0deg;
  --shift-x: 0px;
  --shift-y: 0px;
  animation: brandBreath 6s ease-in-out infinite;
  background: conic-gradient(
    from var(--spin),
    rgba(88, 240, 255, 0.9),
    rgba(143, 124, 255, 0.95),
    rgba(90, 160, 255, 0.9),
    rgba(88, 240, 255, 0.9)
  );
  box-shadow: var(--glow);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.24s ease, filter 0.24s ease;
  transform: translate(var(--shift-x), var(--shift-y)) scale(1);
}

@keyframes brandBreath {
  0% {
    box-shadow: 0 0 24px rgba(88, 240, 255, 0.35);
    transform: scale(1);
    filter: saturate(1);
  }
  50% {
    box-shadow: 0 0 42px rgba(143, 124, 255, 0.55);
    transform: scale(1.035);
    filter: saturate(1.1);
  }
  100% {
    box-shadow: 0 0 24px rgba(88, 240, 255, 0.35);
    transform: scale(1);
    filter: saturate(1);
  }
}

.brand-mark::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: rgba(11, 15, 26, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.brand-mark::before {
  content: '';
  position: absolute;
  inset: -30%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.35),
    transparent 60%
  );
  opacity: var(--glow-strength);
  filter: blur(22px);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.brand:hover .brand-mark,
.brand-mark:hover {
  box-shadow: 0 0 30px rgba(88, 240, 255, 0.36), 0 0 60px rgba(143, 124, 255, 0.28), 0 0 0 2px rgba(255, 255, 255, 0.14);
  filter: brightness(1.08) saturate(1.04);
}

.brand:hover .brand-mark::after,
.brand-mark:hover::after {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(11, 15, 26, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.1rem;
}

.brand-tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.primary-nav a {
  padding: 10px 12px;
  border-radius: 12px;
  color: #dfe7fb;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.primary-nav a:not(.nav-cta):hover {
  color: #f4f7ff;
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

.nav-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #06101d;
  background: linear-gradient(120deg, #2896a0, #413684);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  box-shadow: 0 12px 40px rgba(88, 240, 255, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.12);
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.24);
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: -35%;
  background: radial-gradient(140% 140% at 30% 50%, rgba(88, 240, 255, 0.28), transparent 60%),
    radial-gradient(120% 120% at 75% 50%, rgba(143, 124, 255, 0.32), transparent 62%);
  filter: blur(18px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-cta::after {
  content: '';
  position: absolute;
  top: -70%;
  left: -130%;
  width: 60%;
  height: 240%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.75) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}

@keyframes navCtaShine {
  0% {
    transform: translateX(-160%) skewX(-18deg);
    opacity: 0;
  }
  25% {
    opacity: 0.95;
  }
  100% {
    transform: translateX(200%) skewX(-18deg);
    opacity: 0;
  }
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: #ffffff;
  background: linear-gradient(120deg, #2896a0, #413684);
  box-shadow: 0 14px 50px rgba(143, 124, 255, 0.35), 0 0 35px rgba(88, 240, 255, 0.45);
  transform: translateY(-1px);
  filter: saturate(1.08);
}

.nav-cta:hover::before,
.nav-cta:focus-visible::before {
  opacity: 1;
}

.nav-cta:hover::after,
.nav-cta:focus-visible::after {
  opacity: 1;
  animation: navCtaShine 1.05s ease-in-out infinite;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text-primary);
  cursor: pointer;
}

.nav-toggle-line {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 10px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.primary-nav.open {
  display: flex;
}

.hero-shell {
  position: relative;
  overflow: hidden;
}

.hero-shell::after {
  content: '';
  position: absolute;
  inset: 12%;
  background: radial-gradient(600px 600px at 35% 35%, rgba(90, 160, 255, 0.08), transparent 60%),
    radial-gradient(520px 520px at 80% 70%, rgba(143, 124, 255, 0.12), transparent 65%),
    radial-gradient(480px 480px at 0% 85%, rgba(99, 245, 198, 0.1), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.shell-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: stretch;
}

.glass {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1), var(--glow);
  backdrop-filter: blur(14px);
}

.shell-copy {
  padding: clamp(28px, 5vw, 38px);
  display: grid;
  gap: 16px;
  align-content: center;
}

.headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  letter-spacing: 0.01em;
  margin: 0;
}

.accent-text {
  background: linear-gradient(120deg, var(--cyan), var(--violet), var(--blue));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.lede {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 54ch;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--cyan);
  font-weight: 700;
}

.pill-row,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.btn {
  --magnet-x: 0px;
  --magnet-y: 0px;
  --lift: 0px;
  --press-scale: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transform: translate(var(--magnet-x), calc(var(--magnet-y) + var(--lift))) scale(var(--press-scale));
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border 0.18s ease, color 0.18s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--cyan), var(--blue));
  color: #0b0f1a;
  box-shadow: 0 18px 40px rgba(88, 240, 255, 0.25);
}

.btn.primary:hover {
  --lift: -2px;
  box-shadow: 0 20px 55px rgba(90, 160, 255, 0.32);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  --lift: -2px;
}

.btn.subtle {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.btn.subtle:hover {
  background: rgba(255, 255, 255, 0.06);
  --lift: -2px;
}

.shell-preview {
  display: grid;
  gap: 18px;
}

.preview-card {
  padding: clamp(22px, 3vw, 28px);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.preview-card.glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: var(--shadow-1);
}

.preview-card.gradient {
  background: linear-gradient(135deg, rgba(88, 240, 255, 0.2), rgba(143, 124, 255, 0.22));
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45), 0 10px 30px rgba(143, 124, 255, 0.3);
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.tag-grid.tight {
  gap: 8px;
  margin-top: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--text-primary);
}

.tag.success {
  border-color: rgba(88, 240, 255, 0.4);
  color: var(--cyan);
}

.tag.info {
  border-color: rgba(90, 160, 255, 0.4);
  color: var(--blue);
}

.tag.warning {
  border-color: rgba(143, 124, 255, 0.4);
  color: var(--violet);
}

.tag.neutral {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
}

.meter {
  margin-top: 18px;
  height: 10px;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.meter-fill {
  display: block;
  height: 100%;
  width: 78%;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}

.meter-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
  animation: shimmer 2.2s infinite;
}

.muted {
  color: var(--text-muted);
}

/* Hero Experience */

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  padding: clamp(110px, 14vh, 160px) 0 clamp(82px, 12vh, 120px);
  display: flex;
  align-items: center;
  --hero-progress: 0;
  --hero-tilt-x: 0px;
  --hero-tilt-y: 0px;
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  transform: translate3d(var(--hero-tilt-x), var(--hero-tilt-y), 0) scale(1.04);
  transition: transform 0.25s ease;
}

.hero-gradient {
  position: absolute;
  inset: -20%;
  filter: saturate(1.05);
  opacity: calc(0.92 - var(--hero-progress) * 0.2);
  animation: gradientDrift 72s ease-in-out infinite alternate;
  mix-blend-mode: screen;
  transform: translate3d(calc(var(--hero-tilt-x) * 0.65), calc(var(--hero-tilt-y) * 0.65), 0);
}

.hero-gradient.layer-1 {
  background:
    radial-gradient(120% 90% at 18% 20%, rgba(83, 140, 255, 0.34), transparent 60%),
    radial-gradient(80% 100% at 82% 22%, rgba(143, 124, 255, 0.36), transparent 62%),
    radial-gradient(90% 90% at 30% 80%, rgba(99, 245, 198, 0.24), transparent 64%),
    linear-gradient(175deg, #0b0f1a 0%, #0d1428 50%, #0a0f1c 100%);
}

.hero-gradient.layer-2 {
  background:
    radial-gradient(110% 120% at 70% 70%, rgba(88, 240, 255, 0.16), transparent 58%),
    radial-gradient(120% 90% at 12% 82%, rgba(143, 124, 255, 0.18), transparent 60%),
    linear-gradient(140deg, rgba(9, 14, 25, 0.8), rgba(12, 16, 30, 0.92));
  mix-blend-mode: screen;
  animation-duration: 120s;
  animation-direction: alternate-reverse;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.22'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  opacity: 0.35;
  animation: floatNoise 36s linear infinite;
  transform: translate3d(calc(var(--hero-tilt-x) * 0.85), calc(var(--hero-tilt-y) * 0.85), 0);
}

.hero-energy-band {
  position: absolute;
  top: 44%;
  left: -22%;
  width: 150%;
  height: 320px;
  background: linear-gradient(115deg, transparent 16%, rgba(88, 240, 255, 0.16) 38%, rgba(143, 124, 255, 0.22) 54%, transparent 76%);
  background-size: 220% 100%;
  filter: blur(18px) saturate(1.2);
  mix-blend-mode: screen;
  opacity: 0.55;
  animation: energySweep 24s ease-in-out infinite;
  transform: translateY(calc(var(--hero-progress) * -12px));
  will-change: background-position, transform;
  filter: blur(16px) saturate(1.24);
  transform: translate3d(calc(var(--hero-tilt-x) * 0.5), calc(var(--hero-tilt-y) * 0.5), 0) translateY(calc(var(--hero-progress) * -12px));
}

.transition-zone {
  position: relative;
  height: 18vh;
  min-height: 140px;
  max-height: 240px;
  pointer-events: none;
  background: linear-gradient(180deg, #0c101c 0%, #0a0d18 35%, #070b14 70%, #050912 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.transition-band {
  display: grid;
  place-items: center;
  gap: 10px;
  text-align: center;
}

.band-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.band-divider {
  display: block;
  height: 2px;
  width: 180px;
  max-width: 50vw;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(88, 240, 255, 0.1) 0%, rgba(88, 240, 255, 0.65) 25%, rgba(143, 124, 255, 0.7) 50%, rgba(88, 240, 255, 0.65) 75%, rgba(88, 240, 255, 0.1) 100%);
  box-shadow: 0 0 18px rgba(88, 240, 255, 0.25);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  gap: 18px;
  transform: translateY(calc(var(--hero-progress) * 8px));
}

.hero-inner::before {
  content: '';
  position: absolute;
  inset: -12% -18% -8%;
  background:
    radial-gradient(720px 480px at 24% 32%, rgba(88, 240, 255, 0.12), transparent 62%),
    radial-gradient(640px 420px at 72% 48%, rgba(143, 124, 255, 0.14), transparent 66%),
    radial-gradient(520px 360px at 40% 82%, rgba(255, 255, 255, 0.08), transparent 70%);
  filter: blur(26px);
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
}

.hero-inner > * {
  position: relative;
  z-index: 1;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(88, 240, 255, 0.35);
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  box-shadow: 0 10px 30px rgba(88, 240, 255, 0.14);
  backdrop-filter: blur(10px);
}

.status-led {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, #58f0ff);
  box-shadow: 0 0 0 0 rgba(88, 240, 255, 0.24);
  animation: pulse 2.4s ease-in-out infinite;
}

.status-divider {
  width: 10px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  opacity: 0.8;
}

.status-note {
  letter-spacing: 0.04em;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: none;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  letter-spacing: 0.01em;
  margin: 10px 0 6px;
  line-height: 1.05;
  max-width: 16ch;
  animation: fadeUp 1s ease forwards;
}

.title-accent {
  background: linear-gradient(120deg, var(--cyan) 30%, var(--violet));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 62ch;
  margin-bottom: 8px;
  line-height: 1.6;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 6px;
}

.hero-pill {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.hero-pill:nth-child(1) { animation-delay: 0.1s; }
.hero-pill:nth-child(2) { animation-delay: 0.2s; }
.hero-pill:nth-child(3) { animation-delay: 0.3s; }
.hero-pill:nth-child(4) { animation-delay: 0.4s; }
.hero-pill:nth-child(5) { animation-delay: 0.5s; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 4px 0 8px;
}

.btn.primary,
.btn.ghost,
.btn.subtle {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.btn.primary::after,
.btn.ghost::after,
.btn.subtle::after {
  content: '';
  position: absolute;
  inset: -10%;
  background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, 0.3) 50%, transparent 75%);
  transform: translateX(-120%);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.btn.primary:hover::after,
.btn.ghost:hover::after,
.btn.subtle:hover::after {
  transform: translateX(120%);
}

.btn.primary:active,
.btn.ghost:active,
.btn.subtle:active {
  --press-scale: 0.99;
  --lift: 1px;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);
}

.hero-footnote {
  display: grid;
  gap: 8px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.5;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: clamp(24px, 6vh, 48px);
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: calc(0.82 - var(--hero-progress) * 0.9);
  transition: opacity 0.3s ease;
}

.scroll-dot {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 6px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--violet));
  transform: translateX(-50%);
  animation: scrollHint 2.6s ease-in-out infinite;
}

.magnetic {
  will-change: transform;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 20px 0 28px;
  background: rgba(10, 13, 22, 0.7);
  backdrop-filter: blur(12px);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.foot-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.foot-links a {
  color: var(--text-muted);
}

.foot-links a:hover {
  color: var(--cyan);
}

.footnote {
  letter-spacing: 0.04em;
}

/* Selected Work */

.work {
  position: relative;
  background: linear-gradient(180deg, #050912 0%, #060a12 100%);
}

.work::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(140% 120% at 50% 8%, rgba(0, 0, 0, 0.2), transparent 58%),
    radial-gradient(120% 120% at 10% 50%, rgba(0, 0, 0, 0.18), transparent 60%),
    radial-gradient(120% 120% at 90% 50%, rgba(0, 0, 0, 0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.work-inner {
  display: grid;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.flagship {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
  position: relative;
}

.flagship::before {
  content: '';
  position: absolute;
  inset: -6% -4%;
  background: radial-gradient(120% 90% at 35% 40%, rgba(0, 0, 0, 0.28), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.flagship-copy {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: clamp(18px, 3vw, 24px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
}

.flagship-title {
  margin: 6px 0 6px;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
}

.flagship-outcome {
  color: #c7d3eb;
  line-height: 1.6;
  margin: 0 0 10px;
}

.flagship-points {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
  color: #dce4f5;
}

.flagship-points li {
  position: relative;
  padding-left: 18px;
  line-height: 1.55;
}

.flagship-points li::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan);
}

.flagship-media {
  display: flex;
  height: 100%;
  padding: clamp(14px, 2vw, 18px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 1;
}

.flagship-video {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #0b0f1a;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.flagship-video::-webkit-media-controls-panel {
  background: rgba(0, 0, 0, 0.35);
}

.supporting {
  display: grid;
  gap: 26px;
}

.supporting-category {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.supporting-header h4 {
  margin: 6px 0 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.supporting-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.supporting-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.015);
  display: grid;
  gap: 10px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.supporting-item:hover {
  transform: translateY(-4px);
  border-color: rgba(88, 240, 255, 0.18);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
}

.item-meta h5 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-family: var(--font-heading);
}

.item-meta p {
  margin: 0;
  color: #c7d3eb;
  line-height: 1.55;
}

.item-video {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0b0f1a;
  display: block;
}

.item-visual {
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.muted-surface {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.08);
  color: #dce4f5;
}

/* About */

.about {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 18% 12%, rgba(88, 240, 255, 0.15), transparent 52%),
    radial-gradient(120% 120% at 82% 8%, rgba(90, 160, 255, 0.18), transparent 60%),
    radial-gradient(140% 120% at 55% 90%, rgba(200, 183, 154, 0.12), transparent 72%),
    radial-gradient(160% 120% at 50% 110%, rgba(148, 177, 170, 0.08), transparent 74%),
    linear-gradient(180deg, #0f223a 0%, #0d1d32 40%, #123145 68%, #163b51 100%);
  color: #eaf2ff;
}

.about-ambient {
  position: absolute;
  inset: -18% -10% -12%;
  background:
    radial-gradient(90% 90% at 24% 30%, rgba(143, 214, 255, 0.18), transparent 55%),
    radial-gradient(82% 82% at 70% 36%, rgba(88, 240, 255, 0.14), transparent 52%),
    radial-gradient(110% 120% at 50% 88%, rgba(196, 204, 178, 0.12), transparent 66%),
    radial-gradient(100% 100% at 60% 84%, rgba(222, 199, 176, 0.1), transparent 68%);
  filter: blur(28px);
  opacity: 0.9;
  pointer-events: none;
  mix-blend-mode: screen;
}

.about-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-header {
  max-width: 860px;
}

.about-title {
  max-width: 20ch;
  color: #eef5ff;
}

.about-body {
  position: relative;
  width: min(960px, 100%);
  margin-left: clamp(0px, 4vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-shape {
  position: absolute;
  top: -26%;
  right: -12%;
  width: 520px;
  height: 520px;
  background:
    radial-gradient(circle at 30% 30%, rgba(90, 160, 255, 0.38), transparent 60%),
    radial-gradient(circle at 74% 48%, rgba(88, 240, 255, 0.32), transparent 62%),
    radial-gradient(circle at 42% 78%, rgba(255, 183, 133, 0.22), transparent 68%);
  filter: blur(38px);
  opacity: 0.9;
  pointer-events: none;
  mix-blend-mode: screen;
  animation: aboutDrift 28s ease-in-out infinite alternate;
}

.about-thread {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-right: clamp(8px, 4vw, 28px);
  color: #dbe6fb;
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-thread::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 8px;
  bottom: 14px;
  width: 3px;
  background: linear-gradient(180deg, rgba(88, 240, 255, 0.7), rgba(90, 160, 255, 0.5), rgba(255, 183, 133, 0.5));
  border-radius: 999px;
  opacity: 0.9;
  filter: drop-shadow(0 0 10px rgba(88, 240, 255, 0.3));
}

.about-thread p {
  margin: 0;
}

.about-note {
  font-weight: 700;
  color: #f3f7ff;
  letter-spacing: 0.01em;
  padding-left: 6px;
}

.about-footline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #eaf2ff;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding-left: 4px;
}

.about-sigil {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fdfefe, #8fddff 60%, #5a8dff 100%);
  box-shadow: 0 10px 28px rgba(88, 240, 255, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.18);
  position: relative;
}

.about-sigil::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: rgba(12, 20, 36, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.engage {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 12vw, 160px) 0 clamp(96px, 12vw, 164px);
  background:
    radial-gradient(170% 150% at 50% 20%, rgba(176, 208, 234, 0.44), transparent 60%),
    radial-gradient(150% 150% at 50% 48%, rgba(182, 205, 190, 0.34), transparent 62%),
    radial-gradient(150% 160% at 50% 76%, rgba(201, 183, 164, 0.32), transparent 66%),
    radial-gradient(160% 160% at 52% 96%, rgba(188, 180, 198, 0.3), transparent 70%),
    linear-gradient(180deg, #12344a 0%, #18495d 32%, #245a65 52%, #4c746f 68%, #99a8a0 82%, #d7e0d5 100%);
  color: #0c2336;
  text-align: center;
  isolation: isolate;
}

.engage::before {
  content: '';
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(130% 140% at 50% 46%, rgba(183, 183, 183, 0.42), transparent 54%),
    radial-gradient(120% 120% at 50% 64%, rgba(156, 201, 204, 0.28), transparent 60%),
    radial-gradient(120% 120% at 50% 30%, rgba(162, 200, 236, 0.32), transparent 60%);
  filter: blur(42px);
  opacity: 0.55;
  mix-blend-mode: soft-light;
  animation: engageGlow 32s ease-in-out infinite alternate;
  z-index: 0;
}

.engage::after {
  content: '';
  position: absolute;
  inset: -6%;
  background:
    radial-gradient(120% 140% at 50% 52%, rgba(10, 28, 46, 0.22), transparent 78%);
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: soft-light;
}

.engage-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 3vw, 24px);
}

.engage-eyebrow {
  color: #0f6a8b;
  letter-spacing: 0.16em;
}

.engage-title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.4rem, 4.6vw, 3.2rem);
  line-height: 1.1;
  color: #062033;
}

.engage-copy {
  margin: 0;
  color: #123248;
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 760px;
}

.engage-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.engage-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
  text-decoration: none;
}

.engage-primary {
  background: linear-gradient(120deg, #93f1ff 0%, #78baff 100%);
  color: #052033;
  box-shadow: 0 22px 50px rgba(122, 186, 255, 0.48), 0 0 0 1px rgba(255, 255, 255, 0.6), 0 0 42px rgba(143, 240, 255, 0.45);
}

.engage-primary:hover {
  transform: translateY(-2px);
  color: #052033;
  box-shadow: 0 26px 60px rgba(122, 186, 255, 0.54), 0 0 0 1px rgba(255, 255, 255, 0.7), 0 0 50px rgba(80, 198, 214, 0.5);
}

.engage-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: #0b273d;
  border: 1px solid rgba(11, 39, 61, 0.12);
  box-shadow: 0 16px 38px rgba(6, 18, 33, 0.16), 0 0 34px rgba(255, 255, 255, 0.38);
}

.engage-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.82);
  color: #052033;
  box-shadow: 0 18px 44px rgba(6, 18, 33, 0.18), 0 0 40px rgba(255, 255, 255, 0.42);
}

.engage-trust {
  margin: 6px 0 0;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #0c2940;
  opacity: 0.92;
}

@keyframes aboutDrift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-12px, 10px, 0) scale(1.04); }
  100% { transform: translate3d(10px, -6px, 0) scale(1.02); }
}

@media (max-width: 900px) {
  .about-body {
    margin-left: 0;
  }

  .about-thread::before {
    left: -6px;
  }

  .about-shape {
    right: -22%;
    top: -12%;
    width: 420px;
    height: 420px;
  }
}

@media (max-width: 640px) {
  .about {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .about-body {
    width: 100%;
    gap: 14px;
  }

  .about-thread {
    font-size: 1rem;
    line-height: 1.65;
  }

  .about-shape {
    top: -4%;
    right: -40%;
    width: 360px;
    height: 360px;
  }

  .about-footline {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* How We Build & Deliver */

.build {
  position: relative;
  background: linear-gradient(180deg, #05070f 0%, #060912 100%);
  overflow: hidden;
}

.build::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 20% 10%, rgba(0, 0, 0, 0.22), transparent 60%),
    radial-gradient(120% 120% at 80% 0%, rgba(0, 0, 0, 0.18), transparent 58%);
  pointer-events: none;
  opacity: 0.75;
}

.build-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.build-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 18px;
  line-height: 1.6;
  color: #cdd7ed;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.32);
}

.build-card h3 {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  color: #e8edf7;
}

.build-flow {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.015);
}

.flow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
}

.flow-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(88, 240, 255, 0.5);
  background: radial-gradient(circle at 30% 30%, rgba(88, 240, 255, 0.6), rgba(6, 9, 18, 0.9));
  box-shadow: 0 0 0 6px rgba(88, 240, 255, 0.08);
  margin-top: 4px;
}

.flow-title {
  margin: 0 0 2px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.flow-copy {
  margin: 0;
  color: #c7d3eb;
  line-height: 1.55;
}

.build-close {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 12px;
  color: #d6def1;
  font-weight: 700;
  letter-spacing: 0.01em;
}

@keyframes gradientDrift {
  0% { transform: translate3d(-6%, -3%, 0) scale(1); }
  35% { transform: translate3d(3%, 5%, 0) scale(1.05) rotate(0.4deg); }
  70% { transform: translate3d(-2%, 4%, 0) scale(1.02) rotate(-0.3deg); }
  100% { transform: translate3d(4%, -2%, 0) scale(1.04) rotate(0.2deg); }
}

@keyframes floatNoise {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-6%, -8%, 0); }
}

@keyframes energySweep {
  0% { background-position: 0% 50%; opacity: 0.55; }
  50% { background-position: 100% 50%; opacity: 0.72; }
  100% { background-position: 0% 50%; opacity: 0.6; }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(88, 240, 255, 0.22); }
  100% { box-shadow: 0 0 0 12px rgba(88, 240, 255, 0); }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes scrollHint {
  0% { transform: translate(-50%, 0); opacity: 0.3; }
  40% { opacity: 1; }
  100% { transform: translate(-50%, 12px); opacity: 0; }
}

@keyframes pulseBar {
  0% { filter: drop-shadow(0 0 6px rgba(88, 240, 255, 0.3)); }
  50% { filter: drop-shadow(0 0 12px rgba(143, 124, 255, 0.35)); }
  100% { filter: drop-shadow(0 0 6px rgba(88, 240, 255, 0.3)); }
}

@keyframes engageGlow {
  0% { transform: translate3d(-10px, -8px, 0) scale(1); opacity: 0.6; }
  100% { transform: translate3d(12px, 10px, 0) scale(1.03); opacity: 0.82; }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@media (max-width: 1180px) {
  .hero {
    padding-top: clamp(90px, 11vh, 120px);
  }

  .flagship {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .hero {
    padding: 82px 0 68px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 7vw, 2.8rem);
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .section-title {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
  }

  .flagship {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 76px 0 64px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .supporting-items {
    grid-template-columns: 1fr;
  }

  .build-grid {
    grid-template-columns: 1fr;
  }

  .engage {
    padding: 74px 0 92px;
  }

  .engage-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .engage-btn {
    width: 100%;
  }

}

/* Approach Section */

.approach {
  position: relative;
  overflow: hidden;
}

.approach::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #060914 0%, #070b14 100%);
  opacity: 1;
  z-index: 0;
}

.approach::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

.approach-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
}

.section-header {
  max-width: 760px;
}

.section-title {
  margin: 10px 0 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.1rem, 3.4vw, 2.7rem);
  letter-spacing: 0.01em;
  line-height: 1.18;
}

.section-lede {
  color: #c7d3eb;
  font-size: 1.05rem;
  line-height: 1.65;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.pillar {
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 18px 20px;
  backdrop-filter: blur(4px);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.pillar h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #e6edfb;
}

.pillar p {
  margin: 0;
  color: #c5d0e7;
  line-height: 1.6;
}

.pillar:hover {
  border-color: rgba(88, 240, 255, 0.14);
  background: rgba(255, 255, 255, 0.028);
}

.approach-footnote {
  padding-top: 14px;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #d2d9ec;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.approach-grid .reveal {
  transition-delay: 0.08s;
}

.approach-grid .reveal:nth-child(2) {
  transition-delay: 0.16s;
}

.approach-grid .reveal:nth-child(3) {
  transition-delay: 0.24s;
}

.approach-grid .reveal:nth-child(4) {
  transition-delay: 0.32s;
}

@media (max-width: 1024px) {
  .shell-grid {
    grid-template-columns: 1fr;
  }

  .header-bar {
    height: 70px;
  }
}

@media (max-width: 900px) {
  .primary-nav {
    position: absolute;
    top: 72px;
    right: 24px;
    width: calc(100% - 48px);
    border-radius: 16px;
    background: rgba(11, 15, 26, 0.95);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-1);
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    display: none;
  }

  .primary-nav a,
  .nav-cta {
    width: 100%;
    text-align: left;
  }

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

@media (max-width: 640px) {
  .container {
    width: calc(100% - 32px);
  }

  .section {
    padding: 56px 0;
  }

  .brand-tagline {
    display: none;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
