@import url('https://api.fontshare.com/v2/css?f[]=clash-display@700,900&f[]=satoshi@400,500&display=swap');

/* ═══════════════════════════════════════════
   1. THEME TOKENS
═══════════════════════════════════════════ */
@theme {
  --color-bg-primary: #0A0F1E;
  --color-bg-secondary: #111827;
  --color-ink-primary: #F0F4FF;
  --color-ink-muted: #8895B3;
  --color-accent: #3B7FD4;
  --font-display: 'Clash Display', sans-serif;
  --font-body: 'Satoshi', sans-serif;
  --radius-sm: 0px;
  --radius-md: 0px;
  --shadow-card: 0 4px 24px rgba(10,15,30,0.32);
}

/* ═══════════════════════════════════════════
   2. BASE RESET
═══════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: #0A0F1E;
}

body {
  background-color: #0A0F1E;
  color: #F0F4FF;
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: #3B7FD4; }

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

address { font-style: normal; }

/* ═══════════════════════════════════════════
   3. LAYOUT UTILITIES
═══════════════════════════════════════════ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 2rem; }
.container-md { max-width: 1080px; margin: 0 auto; padding: 0 2rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }

.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }

/* ═══════════════════════════════════════════
   4. SPACING
═══════════════════════════════════════════ */
.p-0 { padding: 0; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-12 { padding-top: 3rem; }
.pt-16 { padding-top: 4rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-24 { padding-bottom: 6rem; }
.pl-4 { padding-left: 1rem; }
.pl-6 { padding-left: 1.5rem; }
.pr-4 { padding-right: 1rem; }

.m-0 { margin: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mt-24 { margin-top: 6rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

/* ═══════════════════════════════════════════
   5. TYPOGRAPHY
═══════════════════════════════════════════ */
.font-display { font-family: 'Clash Display', sans-serif; }
.font-body { font-family: 'Satoshi', sans-serif; }
.font-mono { font-family: monospace; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }
.text-8xl { font-size: 6rem; }
.text-9xl { font-size: 8rem; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-[0\.14em] { letter-spacing: 0.14em; }
.tracking-[0\.16em] { letter-spacing: 0.16em; }
.tracking-[0\.18em] { letter-spacing: 0.18em; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.italic { font-style: italic; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }

.underline { text-decoration: underline; }
.no-underline { text-decoration: none; }
.underline-offset-4 { text-underline-offset: 4px; }
.decoration-1 { text-decoration-thickness: 1px; }

.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.whitespace-nowrap { white-space: nowrap; }

/* ═══════════════════════════════════════════
   6. COLORS
═══════════════════════════════════════════ */
.text-[#F0F4FF] { color: #F0F4FF; }
.text-[#8895B3] { color: #8895B3; }
.text-[#3B7FD4] { color: #3B7FD4; }
.text-[#0A0F1E] { color: #0A0F1E; }
.text-[#111827] { color: #111827; }
.text-[#D8E2DC] { color: #D8E2DC; }
.text-white { color: #ffffff; }

.bg-[#0A0F1E] { background-color: #0A0F1E; }
.bg-[#111827] { background-color: #111827; }
.bg-[#3B7FD4] { background-color: #3B7FD4; }
.bg-[#F0F4FF] { background-color: #F0F4FF; }
.bg-transparent { background-color: transparent; }
.bg-[rgba(59\,127\,212\,0\.06)] { background-color: rgba(59,127,212,0.06); }
.bg-[rgba(59\,127\,212\,0\.10)] { background-color: rgba(59,127,212,0.10); }
.bg-[rgba(59\,127\,212\,0\.12)] { background-color: rgba(59,127,212,0.12); }
.bg-[rgba(136\,149\,179\,0\.08)] { background-color: rgba(136,149,179,0.08); }
.bg-[rgba(255\,255\,255\,0\.06)] { background-color: rgba(255,255,255,0.06); }

.border-[#3B7FD4] { border-color: #3B7FD4; }
.border-[#8895B3] { border-color: #8895B3; }
.border-[rgba(136\,149\,179\,0\.12)] { border-color: rgba(136,149,179,0.12); }
.border-[rgba(136\,149\,179\,0\.15)] { border-color: rgba(136,149,179,0.15); }
.border-[rgba(136\,149\,179\,0\.20)] { border-color: rgba(136,149,179,0.20); }
.border-[rgba(136\,149\,179\,0\.30)] { border-color: rgba(136,149,179,0.30); }
.border-[rgba(59\,127\,212\,0\.35)] { border-color: rgba(59,127,212,0.35); }
.border-[rgba(255\,255\,255\,0\.18)] { border-color: rgba(255,255,255,0.18); }

/* ═══════════════════════════════════════════
   7. BORDERS & SHAPES
═══════════════════════════════════════════ */
.border { border-width: 1px; border-style: solid; }
.border-0 { border-width: 0; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l { border-left-width: 1px; border-left-style: solid; }
.border-r { border-right-width: 1px; border-right-style: solid; }
.rounded-none { border-radius: 0; }
.rounded-full { border-radius: 9999px; }
.rounded-sm { border-radius: 2px; }

.divide-y > * + * { border-top: 1px solid rgba(136,149,179,0.12); }

/* ═══════════════════════════════════════════
   8. EFFECTS
═══════════════════════════════════════════ */
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,0.2); }
.shadow { box-shadow: 0 4px 6px rgba(0,0,0,0.3); }
.shadow-lg { box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.shadow-xl { box-shadow: 0 20px 60px rgba(15,23,42,0.5); }
.shadow-[0_20px_60px_rgba(15\,23\,42\,0\.24)] { box-shadow: 0 20px 60px rgba(15,23,42,0.24); }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }

.backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }

/* ═══════════════════════════════════════════
   9. TRANSITIONS & TRANSFORMS
═══════════════════════════════════════════ */
.transition { transition: all 0.2s ease; }
.transition-all { transition: all 0.2s ease; }
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; }
.transition-opacity { transition: opacity 0.2s ease; }
.duration-150 { transition-duration: 0.15s; }
.duration-200 { transition-duration: 0.2s; }
.duration-300 { transition-duration: 0.3s; }
.ease-in-out { transition-timing-function: ease-in-out; }

.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.translate-y-0 { transform: translateY(0); }

.rotate-90 { transform: rotate(90deg); }
.-rotate-90 { transform: rotate(-90deg); }

/* ═══════════════════════════════════════════
   10. COMPONENTS — HEADER
═══════════════════════════════════════════ */
.site-header-wrap {
  width: 100%;
  border-bottom: 1px solid rgba(136,149,179,0.2);
  background-color: #0A0F1E;
}

.site-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-wordmark {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #F0F4FF;
}
.brand-wordmark:hover { color: #F0F4FF; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: #F0F4FF;
}
.header-nav a { color: #F0F4FF; }
.header-nav a:hover { color: #3B7FD4; }
.header-nav a.active { color: #3B7FD4; }

.header-phone {
  font-family: monospace;
  font-size: 0.875rem;
  letter-spacing: -0.02em;
  color: #F0F4FF;
}
.header-phone:hover { color: #3B7FD4; }

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #F0F4FF;
  font-size: 1.25rem;
  padding: 0.5rem;
  display: none;
}

.mobile-menu {
  border-top: 1px solid rgba(136,149,179,0.2);
  background-color: #0A0F1E;
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mobile-menu a { font-size: 1rem; color: #F0F4FF; }
.mobile-menu a:hover { color: #3B7FD4; }
.mobile-menu .mobile-phone {
  font-family: monospace;
  font-size: 0.875rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(136,149,179,0.2);
  margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════
   11. COMPONENTS — MARQUEE STRIP
═══════════════════════════════════════════ */
.marquee-strip {
  background: #111827;
  border-top: 1px solid rgba(136,149,179,0.12);
  border-bottom: 1px solid rgba(136,149,179,0.12);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  padding: 0.875rem 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-track.reverse { animation-direction: reverse; }
.marquee-item {
  font-family: monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8895B3;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.marquee-dot {
  width: 3px;
  height: 3px;
  background: #3B7FD4;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   12. COMPONENTS — SECTION LABELS
═══════════════════════════════════════════ */
.section-label {
  font-family: monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8895B3;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(136,149,179,0.15);
}
.section-label-before {
  font-family: monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8895B3;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label-before::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: #8895B3;
}
.section-num {
  font-family: 'Clash Display', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(59,127,212,0.15);
  letter-spacing: -0.04em;
  line-height: 1;
}

/* ═══════════════════════════════════════════
   13. COMPONENTS — HERO
═══════════════════════════════════════════ */
.hero-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2rem;
}
.hero-section-full {
  width: 100%;
  padding: 6rem 2rem;
  background-color: #0A0F1E;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.hero-h1 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: #F0F4FF;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1rem;
  color: #8895B3;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-image-block {
  position: relative;
  overflow: hidden;
  background: #111827;
  border: 1px solid rgba(136,149,179,0.12);
}
.hero-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: rgba(10,15,30,0.75);
  font-family: monospace;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8895B3;
}

/* ═══════════════════════════════════════════
   14. COMPONENTS — BUTTONS & CTAs
═══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #3B7FD4;
  color: #0A0F1E;
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.875rem 2rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
}
.btn-primary:hover { opacity: 0.88; color: #0A0F1E; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #F0F4FF;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.875rem;
  border: 1px solid rgba(136,149,179,0.3);
  padding: 0.875rem 1.75rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-secondary:hover { border-color: #3B7FD4; color: #3B7FD4; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #3B7FD4;
  font-size: 0.875rem;
  padding: 0;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
}
.btn-ghost:hover { opacity: 0.75; color: #3B7FD4; }

/* ═══════════════════════════════════════════
   15. COMPONENTS — CARDS
═══════════════════════════════════════════ */
.feature-card {
  background: #111827;
  border: 1px solid rgba(136,149,179,0.12);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.2s, border-color 0.2s;
}
.feature-card:hover { background: rgba(59,127,212,0.06); border-color: rgba(59,127,212,0.3); }

.service-card {
  background: #111827;
  border: 1px solid rgba(136,149,179,0.12);
  overflow: hidden;
  transition: border-color 0.2s;
}
.service-card:hover { border-color: rgba(59,127,212,0.4); }
.service-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: #0A0F1E;
}
.service-card-body { padding: 1.75rem; }

.stat-block {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(136,149,179,0.12);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.stat-block:last-child { border-right: none; }
.stat-num {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #3B7FD4;
  line-height: 1;
}
.stat-label {
  font-family: monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8895B3;
}

.tag {
  display: inline-block;
  font-family: monospace;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #3B7FD4;
  border: 1px solid rgba(59,127,212,0.3);
  padding: 0.25rem 0.625rem;
}

.badge {
  display: inline-block;
  font-family: monospace;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8895B3;
  background: rgba(136,149,179,0.08);
  padding: 0.2rem 0.5rem;
}

/* ═══════════════════════════════════════════
   16. COMPONENTS — FAQ ACCORDION
═══════════════════════════════════════════ */
.faq-item {
  border-bottom: 1px solid rgba(136,149,179,0.12);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #F0F4FF;
  font-family: 'Clash Display', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: #3B7FD4; }
.faq-icon {
  flex-shrink: 0;
  font-size: 0.875rem;
  color: #3B7FD4;
  transition: transform 0.2s;
}
.faq-answer {
  font-size: 0.9375rem;
  color: #8895B3;
  line-height: 1.75;
  padding-bottom: 1.5rem;
  max-width: 680px;
}

/* ═══════════════════════════════════════════
   17. COMPONENTS — TIMELINE
═══════════════════════════════════════════ */
.timeline-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(136,149,179,0.10);
  position: relative;
}
.timeline-num {
  font-family: 'Clash Display', sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  color: #3B7FD4;
  letter-spacing: 0.05em;
  padding-top: 0.2rem;
}
.timeline-content { }
.timeline-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #F0F4FF;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.timeline-text {
  font-size: 0.9375rem;
  color: #8895B3;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   18. COMPONENTS — FORM
═══════════════════════════════════════════ */
.form-label {
  display: block;
  font-family: monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8895B3;
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  background: #0A0F1E;
  border: 1px solid rgba(136,149,179,0.25);
  color: #F0F4FF;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus { border-color: #3B7FD4; }
.form-input::placeholder { color: #8895B3; }
.form-textarea {
  width: 100%;
  background: #0A0F1E;
  border: 1px solid rgba(136,149,179,0.25);
  color: #F0F4FF;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
  min-height: 9rem;
}
.form-textarea:focus { border-color: #3B7FD4; }
.form-textarea::placeholder { color: #8895B3; }
.form-select {
  width: 100%;
  background: #0A0F1E;
  border: 1px solid rgba(136,149,179,0.25);
  color: #F0F4FF;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-select:focus { border-color: #3B7FD4; }

/* ═══════════════════════════════════════════
   19. COMPONENTS — FOOTER
═══════════════════════════════════════════ */
.site-footer {
  width: 100%;
  background-color: #111827;
  border-top: 1px solid rgba(136,149,179,0.2);
  margin-top: 6rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand-name {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #F0F4FF;
  margin-bottom: 1rem;
}
.footer-brand-stmt {
  font-size: 0.875rem;
  color: #8895B3;
  line-height: 1.7;
}
.footer-col-label {
  font-family: monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8895B3;
  margin-bottom: 0.875rem;
}
.footer-address-line { font-size: 0.875rem; color: #F0F4FF; line-height: 1.9; }
.footer-address-link { font-size: 0.875rem; color: #F0F4FF; display: block; line-height: 1.9; }
.footer-address-link:hover { color: #3B7FD4; }
.footer-hours { font-size: 0.875rem; color: #8895B3; line-height: 1.9; padding-top: 0.5rem; }
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a { font-size: 0.875rem; color: #F0F4FF; }
.footer-nav a:hover { color: #3B7FD4; }
.footer-bottom { border-top: 1px solid rgba(136,149,179,0.15); }
.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: #8895B3;
}
.footer-legal-links a { color: #8895B3; }
.footer-legal-links a:hover { color: #3B7FD4; }
.footer-legal-links .dot { color: #8895B3; }
.footer-copy { font-size: 0.75rem; color: #8895B3; }

/* ═══════════════════════════════════════════
   20. COMPONENTS — COOKIE BANNER
═══════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1rem;
  width: calc(100% - 1.5rem);
  max-width: 1220px;
  z-index: 50;
  transition: opacity 0.3s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(27, 38, 44, 0.780);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.180);
  border-radius: 26px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.24);
}
.cookie-inner {
  max-width: 1220px;
  width: 100%;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cookie-text { font-size: 0.875rem; line-height: 1.6; }
.cookie-text a {
  color: #D8E2DC;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: #D8E2DC;
}
.cookie-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.cookie-btn-accept {
  background-color: #3B7FD4;
  color: #ffffff;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 600;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: opacity 0.15s;
}
.cookie-btn-accept:hover { opacity: 0.88; }
.cookie-btn-partial {
  background-color: rgba(255,255,255,0.10);
  color: #ffffff;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 600;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: opacity 0.15s;
}
.cookie-btn-partial:hover { opacity: 0.8; }
.cookie-btn-functional {
  background-color: rgba(27,67,50,0.14);
  color: #D8E2DC;
  border-radius: 999px;
  border: 1px solid rgba(216,226,220,0.28);
  font-weight: 600;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: opacity 0.15s;
}
.cookie-btn-functional:hover { opacity: 0.8; }

/* ═══════════════════════════════════════════
   21. LEGAL PAGE STYLES
═══════════════════════════════════════════ */
.legal-hero {
  border-bottom: 1px solid rgba(136,149,179,0.12);
  padding: 5rem 0 3rem;
  background: #0A0F1E;
}
.legal-h1 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #F0F4FF;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}
.legal-meta {
  font-family: monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8895B3;
}
.legal-body { max-width: 760px; margin: 0 auto; padding: 4rem 2rem 6rem; }
.legal-section { margin-bottom: 3rem; }
.legal-h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #F0F4FF;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(136,149,179,0.12);
}
.legal-h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #F0F4FF;
  margin-bottom: 0.625rem;
  margin-top: 1.5rem;
}
.legal-p {
  font-size: 0.9375rem;
  color: #8895B3;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.legal-ul li {
  font-size: 0.9375rem;
  color: #8895B3;
  line-height: 1.7;
  padding-left: 1.25rem;
  position: relative;
}
.legal-ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #3B7FD4;
}
.legal-disclaimer {
  background: #111827;
  border: 1px solid rgba(59,127,212,0.2);
  border-left: 3px solid #3B7FD4;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}
.legal-disclaimer p {
  font-size: 0.875rem;
  color: #8895B3;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════
   22. ARCHIVE / DOCUMENTARY DECORATORS
═══════════════════════════════════════════ */
.archive-metadata-bar {
  background: #111827;
  border: 1px solid rgba(136,149,179,0.12);
  padding: 1.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
.archive-meta-item { flex: 1; min-width: 160px; }
.archive-meta-key {
  font-family: monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8895B3;
  margin-bottom: 0.35rem;
}
.archive-meta-val {
  font-family: 'Clash Display', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #F0F4FF;
}
.archive-meta-val-accent {
  font-family: 'Clash Display', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #3B7FD4;
}

.vertical-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: monospace;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8895B3;
}

.caption-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.625rem 0.875rem;
  background: rgba(10,15,30,0.75);
  font-family: monospace;
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8895B3;
}

/* ═══════════════════════════════════════════
   23. DISPLAY HELPERS
═══════════════════════════════════════════ */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }

.aspect-ratio-16-9 { aspect-ratio: 16/9; }
.aspect-ratio-4-3 { aspect-ratio: 4/3; }
.aspect-ratio-1-1 { aspect-ratio: 1/1; }
.aspect-ratio-21-9 { aspect-ratio: 21/9; }

.object-cover { object-fit: cover; }
.object-center { object-position: center; }

/* ═══════════════════════════════════════════
   24. RESPONSIVE — TABLET
═══════════════════════════════════════════ */
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:col-span-1 { grid-column: span 1; }
  .md\:col-span-2 { grid-column: span 2; }
  .md\:flex-row { flex-direction: row; }
  .md\:flex-col { flex-direction: column; }
  .md\:items-center { align-items: center; }
  .md\:justify-between { justify-content: space-between; }
  .md\:justify-end { justify-content: flex-end; }
  .md\:gap-4 { gap: 1rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:gap-12 { gap: 3rem; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:mt-0 { margin-top: 0; }
  .md\:text-left { text-align: left; }
  .md\:text-right { text-align: right; }
  .md\:items-start { align-items: flex-start; }
  .cookie-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .cookie-btns { justify-content: flex-end; }
}

/* ═══════════════════════════════════════════
   25. RESPONSIVE — DESKTOP
═══════════════════════════════════════════ */
@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:col-span-2 { grid-column: span 2; }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:text-5xl { font-size: 3rem; }
  .lg\:text-6xl { font-size: 3.75rem; }
  .lg\:text-7xl { font-size: 4.5rem; }
}

/* ═══════════════════════════════════════════
   26. RESPONSIVE — MOBILE OVERRIDES
═══════════════════════════════════════════ */
@media (max-width: 767px) {
  .header-nav { display: none; }
  .header-phone { display: none; }
  .hamburger-btn { display: block; }
  .hero-split { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .site-header-inner { padding: 1.25rem 1.5rem; }
  .hero-section { padding: 4rem 1.5rem; }
  .container { padding: 0 1.5rem; }
  .container-sm { padding: 0 1.5rem; }
  .stat-block { border-right: none; border-bottom: 1px solid rgba(136,149,179,0.12); }
  .grid-cols-3 { grid-template-columns: 1fr; }
  .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-2 { grid-template-columns: 1fr; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-split { grid-template-columns: 1fr; gap: 3rem; }
  .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════
   27. ARBITRARY VALUE CLASSES
═══════════════════════════════════════════ */
.w-\[calc\(100\%-1\.5rem\)\] { width: calc(100% - 1.5rem); }
.max-w-\[1220px\] { max-width: 1220px; }
.max-w-\[860px\] { max-width: 860px; }
.max-w-\[680px\] { max-width: 680px; }
.max-w-\[540px\] { max-width: 540px; }
.max-w-\[480px\] { max-width: 480px; }

.text-\[0\.6rem\] { font-size: 0.6rem; }
.text-\[0\.625rem\] { font-size: 0.625rem; }
.text-\[0\.6875rem\] { font-size: 0.6875rem; }
.text-\[0\.5625rem\] { font-size: 0.5625rem; }
.text-\[clamp\(2rem\,5vw\,3\.5rem\)\] { font-size: clamp(2rem, 5vw, 3.5rem); }
.text-\[clamp\(2\.75rem\,6vw\,5\.5rem\)\] { font-size: clamp(2.75rem, 6vw, 5.5rem); }
.text-\[clamp\(1\.5rem\,4vw\,2\.5rem\)\] { font-size: clamp(1.5rem, 4vw, 2.5rem); }

.bottom-4 { bottom: 1rem; }
.left-1\/2 { left: 50%; }

.min-w-\[160px\] { min-width: 160px; }
.min-w-\[200px\] { min-width: 200px; }

.h-\[1px\] { height: 1px; }
.h-\[3px\] { height: 3px; }
.w-\[3px\] { width: 3px; }
.w-\[2rem\] { width: 2rem; }

.aspect-\[16\/9\] { aspect-ratio: 16/9; }
.aspect-\[21\/9\] { aspect-ratio: 21/9; }
.aspect-\[4\/3\] { aspect-ratio: 4/3; }

.-webkit-text-stroke-\[1px\] { -webkit-text-stroke-width: 1px; }

.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }

.not-italic { font-style: normal; }
.list-none { list-style: none; }

.cursor-pointer { cursor: pointer; }

/* AOS base */
[data-aos] { transition-property: opacity, transform; }
