/* ==========================================================================
   theme.css - Core Styles, Variables, and Reusable Components
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & Variables
   -------------------------------------------------------------------------- */
:root {
  --accent-h: 232;
  --accent-s: 76%;
  --accent-l: 56%;
  --accent: hsl(var(--accent-h) var(--accent-s) var(--accent-l));
  --accent-soft: hsl(var(--accent-h) var(--accent-s) 70%);
  --accent-deep: hsl(var(--accent-h) 80% 32%);
  --glow: hsl(var(--accent-h) var(--accent-s) var(--accent-l) / .45);
  --glow-soft: hsl(var(--accent-h) var(--accent-s) var(--accent-l) / .14);

  /* Dark theme (default) */
  --bg: #07080b;
  --bg-1: #0a0c10;
  --bg-2: #0e1117;
  --surface: #11141b;
  --surface-2: #161a23;

  --tint-rgb: 255 255 255;
  --ink-rgb: 0 0 0;

  --border: rgb(var(--tint-rgb) / .06);
  --border-2: rgb(var(--tint-rgb) / .10);
  --hairline: rgb(var(--tint-rgb) / .045);

  --text: #f2f4f8;
  --text-2: #c7ccd6;
  --text-3: #8a93a4;
  --text-4: #5d6577;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --maxw: 1280px;
  --pad-x: clamp(24px, 4vw, 56px);
  --section-y: clamp(96px, 11vw, 144px);

  --shadow-soft: rgba(0, 0, 0, .45);
}

/* Light Theme Overrides */
[data-theme="light"] {
  --bg: #f7f7f5;
  --bg-1: #f1f1ee;
  --bg-2: #ebebe7;
  --surface: #ffffff;
  --surface-2: #f9faf9;
  --paper: #fbfbf9;

  --tint-rgb: 15 20 32;
  --ink-rgb: 15 20 32;

  --border: rgb(var(--tint-rgb) / .06);
  --border-2: rgb(var(--tint-rgb) / .10);
  --hairline: rgb(var(--tint-rgb) / .04);

  --text: #0f172a;
  --text-2: #232b3d;
  --text-3: #4a536a;
  --text-4: #7c8497;

  --accent-h: 232;
  --accent-s: 78%;
  --accent-l: 52%;
  --accent: hsl(var(--accent-h) var(--accent-s) var(--accent-l));
  --accent-soft: hsl(var(--accent-h) 80% 68%);
  --accent-deep: hsl(var(--accent-h) 80% 32%);
  --glow: hsl(var(--accent-h) var(--accent-s) var(--accent-l) / .22);
  --glow-soft: hsl(var(--accent-h) 90% 60% / .08);

  --shadow-1: 0 1px 1px rgb(15 20 32 / .04);
  --shadow-2: 0 2px 4px rgb(15 20 32 / .04), 0 12px 32px -8px rgb(15 20 32 / .08);
  --shadow-3: 0 4px 8px rgb(15 20 32 / .04), 0 30px 60px -16px rgb(15 20 32 / .12);
  --shadow-lift: 0 4px 12px rgb(15 20 32 / .05), 0 50px 100px -20px rgb(15 20 32 / .14);
  --shadow-soft: rgb(15 20 32 / .08);
  color-scheme: light;
}

/* --------------------------------------------------------------------------
   2. Resets & Typography
   -------------------------------------------------------------------------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--bg); color-scheme: dark; }
body {
  font-family: "Satoshi", ui-sans-serif, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-feature-settings: "ss01", "ss02", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  letter-spacing: -0.005em;
  transition: background-color .25s ease, color .25s ease;
}

h1, h2, h3, h4 {
  font-family: "Satoshi", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-weight: 600; letter-spacing: -0.04em; }
p { margin: 0; color: var(--text-2); }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
button { font-family: inherit; transition: background-color .25s ease, border-color .25s ease, color .25s ease; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent-soft); outline-offset: 2px; border-radius: 6px; }

.mono { font-family: "JetBrains Mono", ui-monospace, monospace; font-feature-settings: "ss01"; }
.num-mono { font-variant-numeric: tabular-nums; letter-spacing: -.04em; }

/* --------------------------------------------------------------------------
   3. Global Layout & Utilities
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
}

section { position: relative; }

body::before {
  content: "";
  position: fixed;
  inset: -20vh -10vw auto -10vw;
  height: 80vh;
  background:
    radial-gradient(60% 50% at 50% 10%, var(--glow-soft), transparent 70%),
    radial-gradient(40% 30% at 80% 40%, hsl(var(--accent-h) 80% 50% / .06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
[data-theme="light"] body::before {
  height: 100vh;
  background:
    radial-gradient(50% 60% at 20% 8%,  hsl(var(--accent-h) 95% 65% / .10), transparent 70%),
    radial-gradient(45% 50% at 88% 12%, hsl(280 90% 65% / .06), transparent 70%);
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgb(var(--tint-rgb) / .025) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(var(--tint-rgb) / .025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(80% 60% at 50% 30%, #000 30%, transparent 80%);
  pointer-events: none;
}
[data-theme="light"] .grid-bg {
  background-image:
    linear-gradient(to right,  rgb(12 18 32 / .035) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(12 18 32 / .035) 1px, transparent 1px);
}

/* Typography Utilities */
.grad-text {
  background: linear-gradient(180deg, #ffffff 0%, #d4dbe8 55%, #8c93a4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
[data-theme="light"] .grad-text {
  background-image: linear-gradient(180deg, #060b18 0%, #1a2540 55%, #4a5470 100%);
}

.grad-accent {
  background: linear-gradient(120deg, var(--accent-soft) 0%, var(--accent) 50%, hsl(var(--accent-h) 70% 50%) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
[data-theme="light"] .grad-accent {
  background-image: linear-gradient(120deg, hsl(var(--accent-h) 90% 32%), hsl(var(--accent-h) 95% 48%), hsl(var(--accent-h) 80% 38%));
}

.section-head { display: flex; flex-direction: column; gap: 16px; max-width: 720px; }
.section-head h2 { font-size: clamp(34px, 4vw, 52px); line-height: 1.05; }
.section-head p { font-size: 17px; line-height: 1.55; color: var(--text-3); }

.hair {
  height: 1px;
  background: linear-gradient(to right, transparent, rgb(var(--tint-rgb) / .08), transparent);
  border: 0; margin: 0;
}

/* Utility Tokens */
.d-block { display: block; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.max-w-none { max-width: none !important; }
.max-w-720 { max-width: 720px; }
.img-fluid { width: 100%; height: auto; display: block; }

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

.mx-auto { margin-left: auto; margin-right: auto; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mb-56 { margin-bottom: 56px; }
.mt-24 { margin-top: 24px; }
.py-section { padding: var(--section-y) 0; }

.text-center { text-align: center; }
.text-lg { font-size: 1.2rem; }
.text-3xl { font-size: 3rem; }
.italic { font-style: italic; }

.rotate-180 { transform: rotate(180deg); }
.delay-80 { animation-delay: 0.08s; }
.delay-100 { animation-delay: 0.1s; }
.delay-150 { animation-delay: 0.15s; }

/* Section Modifiers */
.section-head.is-centered { margin: 0 auto; text-align: center; align-items: center; }
.section-head.is-row { flex-direction: row; justify-content: space-between; align-items: flex-end; max-width: none; margin-bottom: 40px; }

/* --------------------------------------------------------------------------
   4. Reusable Components
   -------------------------------------------------------------------------- */

/* Icons */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  vertical-align: middle;
  flex-shrink: 0;
}
.icon-sm { width: 14px; height: 14px; }
.icon-md { width: 16px; height: 16px; }
.icon-lg { width: 20px; height: 20px; }
.icon-xl { width: 24px; height: 24px; }
.icon-11 { width: 11px; height: 11px; }
.icon-13 { width: 13px; height: 13px; }
.icon-15 { width: 15px; height: 15px; }
.icon-18 { width: 18px; height: 18px; }
.icon-36 { width: 36px; height: 36px; }

.star-glow { color: var(--accent-soft); filter: drop-shadow(0 0 4px var(--glow-soft)); }
.quote-glow { color: var(--accent-soft); opacity: 0.8; }

.i-arrow-right { -webkit-mask-image: url('/static/images/icons/arrow-right.svg'); mask-image: url('/static/images/icons/arrow-right.svg'); }
.i-check { -webkit-mask-image: url('/static/images/icons/check.svg'); mask-image: url('/static/images/icons/check.svg'); }
.i-star { -webkit-mask-image: url('/static/images/icons/star.svg'); mask-image: url('/static/images/icons/star.svg'); }
.i-search { -webkit-mask-image: url('/static/images/icons/search.svg'); mask-image: url('/static/images/icons/search.svg'); }
.i-plus { -webkit-mask-image: url('/static/images/icons/plus.svg'); mask-image: url('/static/images/icons/plus.svg'); }
.i-moon { -webkit-mask-image: url('/static/images/icons/moon.svg'); mask-image: url('/static/images/icons/moon.svg'); }
.i-sun { -webkit-mask-image: url('/static/images/icons/sun.svg'); mask-image: url('/static/images/icons/sun.svg'); }
.i-x { -webkit-mask-image: url('/static/images/icons/x.svg'); mask-image: url('/static/images/icons/x.svg'); }
.i-github { -webkit-mask-image: url('/static/images/icons/github.svg'); mask-image: url('/static/images/icons/github.svg'); }
.i-linkedin { -webkit-mask-image: url('/static/images/icons/linkedin.svg'); mask-image: url('/static/images/icons/linkedin.svg'); }
.i-quote { -webkit-mask-image: url('/static/images/icons/quote.svg'); mask-image: url('/static/images/icons/quote.svg'); }
.i-storage { -webkit-mask-image: url('/static/images/icons/storage.svg'); mask-image: url('/static/images/icons/storage.svg'); }
.i-network { -webkit-mask-image: url('/static/images/icons/network.svg'); mask-image: url('/static/images/icons/network.svg'); }
.i-security { -webkit-mask-image: url('/static/images/icons/security.svg'); mask-image: url('/static/images/icons/security.svg'); }
.i-deploy { -webkit-mask-image: url('/static/images/icons/deploy.svg'); mask-image: url('/static/images/icons/deploy.svg'); }
.i-support { -webkit-mask-image: url('/static/images/icons/support.svg'); mask-image: url('/static/images/icons/support.svg'); }
.i-backup { -webkit-mask-image: url('/static/images/icons/backup.svg'); mask-image: url('/static/images/icons/backup.svg'); }
.i-server-fast { -webkit-mask-image: url('/static/images/icons/server-fast.svg'); mask-image: url('/static/images/icons/server-fast.svg'); }
.i-shield-check { -webkit-mask-image: url('/static/images/icons/shield-check.svg'); mask-image: url('/static/images/icons/shield-check.svg'); }
.i-scale { -webkit-mask-image: url('/static/images/icons/scale.svg'); mask-image: url('/static/images/icons/scale.svg'); }
.i-activity { -webkit-mask-image: url('/static/images/icons/activity.svg'); mask-image: url('/static/images/icons/activity.svg'); }
.i-lock { -webkit-mask-image: url('/static/images/icons/lock.svg'); mask-image: url('/static/images/icons/lock.svg'); }

/* Badges */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 10px 6px 8px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  font-size: 12px; color: var(--text-2);
  background: linear-gradient(180deg, rgb(var(--tint-rgb) / .04), rgb(var(--tint-rgb) / .01));
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  letter-spacing: 0.02em; white-space: nowrap;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--glow-soft), 0 0 12px var(--glow);
}
[data-theme="light"] .eyebrow {
  background: #ffffff; color: var(--text-2); border-color: rgb(12 18 32 / .1); box-shadow: 0 1px 2px rgb(12 18 32 / .04);
}
[data-theme="light"] .eyebrow .dot {
  box-shadow: 0 0 0 3px hsl(var(--accent-h) var(--accent-s) 55% / .14), 0 0 10px hsl(var(--accent-h) var(--accent-s) 55% / .5);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 999px;
  font-size: 14.5px; font-weight: 500;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  border: 1px solid transparent; line-height: 1; white-space: nowrap;
}
.btn-primary {
  color: #061018;
  background: linear-gradient(180deg, #ffffff, #d8dde6);
  box-shadow: 0 1px 0 rgb(var(--tint-rgb) / .4) inset, 0 -8px 16px rgba(0,0,0,.18) inset, 0 8px 30px rgba(0,0,0,.45);
  position: relative;
}
.btn-primary::after {
  content: ""; position: absolute; inset: -2px; border-radius: 999px;
  background: radial-gradient(50% 50% at 50% 50%, var(--glow) 0%, transparent 70%);
  z-index: -1; opacity: .9; filter: blur(12px);
}
.btn-primary:hover { transform: translateY(-1px); }
[data-theme="light"] .btn-primary {
  background: linear-gradient(180deg, #0a0f1c 0%, #1a2238 100%); color: #ffffff;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .14), inset 0 -8px 16px rgb(0 0 0 / .25), 0 2px 6px rgb(12 18 32 / .15), 0 12px 32px rgb(12 18 32 / .25);
}
[data-theme="light"] .btn-primary::after { display: none; }

.btn-accent {
  color: #fff;
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
  border: 1px solid hsl(var(--accent-h) var(--accent-s) 75% / .5);
  box-shadow: 0 0 0 1px hsl(var(--accent-h) var(--accent-s) 70% / .25) inset, 0 1px 0 hsl(var(--accent-h) 100% 85% / .35) inset, 0 -10px 24px hsl(var(--accent-h) 80% 30% / .4) inset, 0 12px 36px hsl(var(--accent-h) var(--accent-s) 50% / .35), 0 0 60px hsl(var(--accent-h) var(--accent-s) 60% / .25);
}
.btn-accent:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px hsl(var(--accent-h) var(--accent-s) 70% / .35) inset, 0 1px 0 hsl(var(--accent-h) 100% 85% / .45) inset, 0 -10px 24px hsl(var(--accent-h) 80% 30% / .45) inset, 0 16px 44px hsl(var(--accent-h) var(--accent-s) 50% / .45), 0 0 80px hsl(var(--accent-h) var(--accent-s) 60% / .35); }
[data-theme="light"] .btn-accent {
  box-shadow: inset 0 0 0 1px hsl(var(--accent-h) var(--accent-s) 70% / .35), inset 0 1px 0 hsl(var(--accent-h) 100% 85% / .55), inset 0 -10px 24px hsl(var(--accent-h) 80% 38% / .35), 0 6px 16px hsl(var(--accent-h) var(--accent-s) 55% / .35), 0 16px 40px hsl(var(--accent-h) var(--accent-s) 55% / .22);
}

.btn-ghost { color: var(--text); background: transparent; border-color: var(--border-2); }
.btn-ghost:hover { background: rgb(var(--tint-rgb) / .04); border-color: rgb(var(--tint-rgb) / .18); }
[data-theme="light"] .btn-ghost { background: #ffffff; border-color: rgb(12 18 32 / .12); box-shadow: 0 1px 2px rgb(12 18 32 / .05); }
[data-theme="light"] .btn-ghost:hover { background: var(--surface-2); border-color: rgb(12 18 32 / .18); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text); font-size: 14.5px; font-weight: 500;
  padding: 6px 0; border-bottom: 1px solid transparent; white-space: nowrap;
}
.link-arrow:hover { color: var(--accent-soft); }
.link-arrow svg { transition: transform .25s ease; }
.link-arrow:hover svg { transform: translateX(3px); }

/* Theme Toggle */
.theme-toggle {
  position: relative; width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; background: transparent; border: 1px solid var(--border-2); color: var(--text-2); padding: 0; margin-right: 4px;
}
.theme-toggle:hover { color: var(--text); background: rgb(var(--tint-rgb) / .04); border-color: rgb(var(--tint-rgb) / .18); }
.theme-toggle .sun, .theme-toggle .moon { position: absolute; transition: opacity .25s, transform .35s ease; }
.theme-toggle .sun { opacity: 0; transform: rotate(-90deg) scale(.6); }
.theme-toggle .moon { opacity: 1; transform: rotate(0deg) scale(1); }
[data-theme="light"] .theme-toggle .sun { opacity: 1; transform: rotate(0deg) scale(1); }
[data-theme="light"] .theme-toggle .moon { opacity: 0; transform: rotate(90deg) scale(.6); }

/* --------------------------------------------------------------------------
   5. Section Layouts
   -------------------------------------------------------------------------- */

/* Navigation */
.nav-shell { position: fixed; top: 12px; left: 0; right: 0; z-index: 60; display: flex; justify-content: center; pointer-events: none; }
.nav-inner {
  pointer-events: auto; width: min(1180px, calc(100vw - 32px)); height: 56px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 10px 0 18px;
  background: rgba(10, 12, 16, .55); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--border-2); border-radius: 100px; box-shadow: 0 1px 0 rgb(var(--tint-rgb) / .04) inset, 0 16px 40px rgba(0,0,0,.4);
}
[data-theme="light"] .nav-inner {
  background: rgb(255 255 255 / .82); border-color: rgb(12 18 32 / .08);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .9), 0 1px 2px rgb(12 18 32 / .04), 0 12px 32px rgb(12 18 32 / .08);
}
.nav-menu { display: flex; align-items: center; gap: 4px; justify-self: center; }
.nav-menu a { padding: 8px 12px; border-radius: 999px; color: var(--text-3); font-size: 14px; font-weight: 500; }
.nav-menu a:hover { color: var(--text); background: rgb(var(--tint-rgb) / .04); }
[data-theme="light"] .nav-menu a:hover { background: rgb(12 18 32 / .04); }
.nav-menu a.has-chevron { display: inline-flex; align-items: center; gap: 4px; }
.nav-cta { justify-self: end; display: flex; align-items: center; gap: 6px; }
.nav-cta .login { padding: 8px 12px; color: var(--text-2); font-size: 14px; font-weight: 500; border-radius: 999px; white-space: nowrap; }
.nav-cta .login:hover { color: var(--text); background: rgb(var(--tint-rgb) / .04); }
[data-theme="light"] .nav-cta .login:hover { background: rgb(12 18 32 / .04); }
.nav-cta .signup {
  padding: 9px 16px; border-radius: 999px; font-size: 14px; font-weight: 500;
  background: #fff; color: #07080b; box-shadow: 0 0 0 1px rgb(var(--tint-rgb) / .1), 0 8px 30px rgba(0,0,0,.4); white-space: nowrap;
}
[data-theme="light"] .nav-cta .signup { background: #0a0f1c; color: #ffffff; box-shadow: 0 0 0 1px rgb(0 0 0 / .08), 0 4px 14px rgb(12 18 32 / .25); }
[data-theme="light"] .nav-cta .signup:hover { background: #1a2238; }

.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-weight: 600; font-size: 15px; letter-spacing: -0.02em; }
.logo .mark { width: 24px; height: 24px; flex: 0 0 24px; display: inline-flex; align-items: center; justify-content: center; }

/* Hero */
.hero { position: relative; height: 100svh; min-height: 600px; display: flex; align-items: center; padding-top: 56px; padding-bottom: 0; overflow: hidden; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-bg-img {
  position: absolute; inset: 0; background-size: cover; background-repeat: no-repeat;
  opacity: 0; transform: scale(1.08); transition: opacity 1.4s cubic-bezier(.4,0,.2,1), transform 8s linear; will-change: opacity, transform;
}
.hero-bg-img.is-active { opacity: 1; transform: scale(1.0); transition: opacity 1.4s cubic-bezier(.4,0,.2,1), transform 8s ease-out; }
.hero-bg-overlay {
  position: absolute; inset: 0;
  /* Extended dark fade on the left to properly mute the map contrast behind the text */
  background: 
    linear-gradient(to right, rgba(7,8,11, 0.95) 0%, rgba(7,8,11, 0.8) 35%, transparent 55%),
    linear-gradient(180deg, transparent 0%, transparent 75%, var(--bg) 100%);
}
.hero-bg-vignette {
  position: absolute; inset: 0; background: radial-gradient(80% 60% at 75% 40%, hsl(var(--accent-h) 90% 50% / .14), transparent 60%);
  mix-blend-mode: screen; pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; width: 100%; height: 100%; display: flex; align-items: center; }

/* Floating Widgets (Hero) - Holographic HUD */
.fw {
  position: absolute; padding: 16px 24px;
  background: rgba(7, 109, 242, 0.04); /* Faint neon tint */
  border: none; border-radius: 0;
  display: flex; align-items: center; gap: 16px; z-index: 3;
  box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none;
  pointer-events: none; will-change: transform;
}
/* HUD Brackets [ ] */
.fw::before {
  content: ""; position: absolute; top: 0; left: 0; bottom: 0; width: 8px;
  border: 1.5px solid var(--g-1); border-right: none;
  filter: drop-shadow(0 0 6px var(--g-1)); opacity: 0.8;
}
.fw::after {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 8px;
  border: 1.5px solid var(--g-1); border-left: none;
  filter: drop-shadow(0 0 6px var(--g-1)); opacity: 0.8;
}
.fw-icon {
  width: 32px; height: 32px; border-radius: 0;
  background: transparent; border: none;
  display: flex; align-items: center; justify-content: center; color: var(--g-1);
  box-shadow: none; filter: drop-shadow(0 0 6px var(--g-1));
}
.fw-data { display: flex; flex-direction: column; gap: 2px; }
.fw-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--g-1); font-weight: 600; font-family: "JetBrains Mono", ui-monospace, monospace; opacity: 0.9; }
[data-theme="light"] .fw-label { color: var(--g-2); }
.fw-val { font-size: 18px; font-weight: 600; color: #fff; font-family: "JetBrains Mono", ui-monospace, monospace; letter-spacing: -0.02em; text-shadow: 0 0 10px var(--g-1), 0 0 20px var(--g-2); }
[data-theme="light"] .fw-val { color: var(--text); text-shadow: none !important; }
.fw-sub { font-size: 12px; color: var(--g-1); font-weight: 500; font-family: "JetBrains Mono", ui-monospace, monospace; margin-left: 2px; opacity: 0.8; }
[data-theme="light"] .fw-sub { color: var(--text-3); }
.fw-spark { width: 56px; height: 22px; margin-left: 10px; }

.fw-1 { top: 20%; right: 6%; animation: float-1 8s ease-in-out infinite; }
.fw-2 { top: 48%; right: 16%; animation: float-2 11s ease-in-out infinite; }
.fw-3 { bottom: 20%; right: 10%; animation: float-3 9s ease-in-out infinite; }

@keyframes float-1 { 0%, 100% { transform: translateY(0) scale(var(--fw-scale, 1)); } 50% { transform: translateY(-12px) scale(var(--fw-scale, 1)); } }
@keyframes float-2 { 0%, 100% { transform: translateY(0) scale(var(--fw-scale, 1)); } 50% { transform: translateY(-18px) scale(var(--fw-scale, 1)); } }
@keyframes float-3 { 0%, 100% { transform: translateY(0) scale(var(--fw-scale, 1)); } 50% { transform: translateY(-10px) scale(var(--fw-scale, 1)); } }

@media (max-width: 1200px) {
  .fw { --fw-scale: 0.85; }
  .fw-1 { right: 2%; top: 15%; }
  .fw-2 { right: 4%; top: 48%; }
  .fw-3 { right: 2%; bottom: 15%; }
}

@media (max-width: 900px) {
  .fw { display: none; /* Hide on smaller tablets/mobile to keep hero text clean */ }
}

.hero-copy { max-width: 620px; }
.hero-copy h1 { font-size: clamp(46px, 5.5vw, 82px); line-height: 1; font-weight: 600; letter-spacing: -0.045em; margin: 16px 0 20px; }
.hero-sub { font-size: 18px; line-height: 1.5; color: var(--text-2); max-width: 540px; margin-bottom: 28px; text-shadow: 0 1px 12px rgba(0,0,0,.35); }
.hero-sub-em { color: var(--text); font-weight: 500; }
.hero-cta { display: flex; align-items: center; gap: 20px; margin-bottom: 40px; }
.hero-meta { display: flex; align-items: center; gap: 28px; padding-top: 24px; border-top: 1px solid var(--hairline); max-width: 540px; }
.meta-item { display: flex; flex-direction: column; gap: 4px; }
.meta-num { font-size: 28px; font-weight: 600; letter-spacing: -0.04em; color: var(--text); font-variant-numeric: tabular-nums; }
.meta-num .meta-pct { font-size: 16px; color: var(--text-3); font-weight: 500; margin-left: 1px; }
.meta-label { font-size: 12px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; }
.meta-divider { width: 1px; height: 26px; background: var(--hairline); }

/* Light Mode Overrides for Hero */
[data-theme="light"] .hero {
  --text: #0f172a;
  --text-2: #232b3d;
  --text-3: #4a536a;
  --text-4: #7c8497;
  --hairline: rgb(15 20 32 / 0.08);
}
[data-theme="light"] .hero .grad-text {
  background-image: linear-gradient(180deg, #060b18 0%, #1a2540 55%, #4a5470 100%);
}
[data-theme="light"] .hero .eyebrow {
  background: #ffffff; color: var(--text-2); border-color: rgb(12 18 32 / .1); box-shadow: 0 1px 2px rgb(12 18 32 / .04);
}
[data-theme="light"] .hero-bg-vignette { display: none; }
[data-theme="light"] .hero-bg-overlay { 
  /* Remove the right-side fade in light mode */
  background: linear-gradient(180deg, transparent 0%, transparent 75%, var(--bg) 100%); 
}
[data-theme="light"] .hero-sub { color: var(--text-3); text-shadow: none; }
[data-theme="light"] .hero-sub-em { color: var(--text); }
[data-theme="light"] .meta-num { color: var(--text); }
[data-theme="light"] .meta-num .meta-pct { color: var(--text-3); }
[data-theme="light"] .meta-label { color: var(--text-3); }

.hero-slider-ui { position: absolute; right: clamp(24px, 4vw, 56px); bottom: 24px; z-index: 2; display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.hsu-tag { display: inline-flex; align-items: center; gap: 12px; padding: 10px 16px; background: rgba(14,16,22,.55); border: 1px solid var(--border-2); border-radius: 999px; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); font-size: 13px; color: var(--text); }
.hsu-dot { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 8px var(--glow), 0 0 0 3px hsl(var(--accent-h) var(--accent-s) 60% / .15); animation: tick 2.4s ease-in-out infinite; }
.hsu-count { color: var(--text-4); font-size: 11px; letter-spacing: 0.06em; padding-left: 12px; border-left: 1px solid var(--hairline); }
.hsu-controls { display: inline-flex; align-items: center; gap: 10px; padding: 8px; background: rgba(14,16,22,.55); border: 1px solid var(--border-2); border-radius: 999px; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.hsu-btn { width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; background: transparent; border: none; color: var(--text-2); border-radius: 999px; cursor: pointer; transition: background .2s, color .2s; }
.hsu-btn:hover { background: rgb(var(--tint-rgb) / .06); color: var(--text); }
.hsu-dots { display: inline-flex; gap: 6px; padding: 0 6px; }
.hsu-dot-btn { position: relative; width: 36px; height: 3px; padding: 12px 0; border: none; background: transparent; cursor: pointer; }
.hsu-dot-btn::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 3px; transform: translateY(-50%); background: rgb(var(--tint-rgb) / .18); border-radius: 999px; }
.hsu-dot-fill { position: absolute; left: 0; top: 50%; height: 3px; transform: translateY(-50%); width: 0%; background: linear-gradient(90deg, var(--accent-soft), var(--accent)); box-shadow: 0 0 8px var(--glow); border-radius: 999px; transition: width .35s ease; }
.hsu-dot-btn.is-active .hsu-dot-fill { animation: hsu-progress 6.5s linear forwards; width: 0%; }
@keyframes hsu-progress { from { width: 0%; } to { width: 100%; } }

[data-theme="light"] .hsu-tag, [data-theme="light"] .hsu-controls { background: rgb(255 255 255 / .75); border-color: rgb(15 20 32 / .08); color: var(--text); box-shadow: 0 1px 2px rgb(15 20 32 / .04), 0 8px 24px -8px rgb(15 20 32 / .12); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
[data-theme="light"] .hsu-btn { color: var(--text-3); }
[data-theme="light"] .hsu-btn:hover { background: rgb(15 20 32 / .04); color: var(--text); }
[data-theme="light"] .hsu-count { color: var(--text-4); border-left-color: var(--hairline); }
[data-theme="light"] .hsu-dot-btn::before { background: rgb(15 20 32 / .12); }

/* Trust / Capabilities */
.trust { padding: clamp(80px, 9vw, 128px) 0 36px; }
.trust-head { display: flex; flex-direction: column; gap: 18px; align-items: center; text-align: center; max-width: 720px; margin: 0 auto 56px; }
.trust-head h2 { font-size: clamp(40px, 4.6vw, 60px); line-height: 1.04; letter-spacing: -0.035em; }
.trust-head p { font-size: 17px; line-height: 1.55; color: var(--text-3); max-width: 580px; }
.trust-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tcard {
  position: relative; display: flex; flex-direction: column; padding: 28px 28px 0; border-radius: 24px; border: 1px solid var(--border);
  background: radial-gradient(120% 80% at 50% 0%, hsl(var(--accent-h) var(--accent-s) 60% / .05), transparent 60%), linear-gradient(180deg, rgb(var(--tint-rgb) / .03), rgb(var(--tint-rgb) / .005));
  overflow: hidden; transition: transform .35s ease, border-color .35s ease; isolation: isolate;
}
.tcard:hover { transform: translateY(-3px); border-color: var(--border-2); }
.tcard::after {
  content: ""; position: absolute; inset: 0; background: radial-gradient(60% 50% at 50% 100%, hsl(var(--accent-h) var(--accent-s) 60% / .08), transparent 70%);
  pointer-events: none; opacity: 0; transition: opacity .35s ease;
}
.tcard:hover::after { opacity: 1; }
.tcard-top { display: flex; flex-direction: column; gap: 16px; padding-bottom: 24px; }
.tcard-icon {
  width: 44px; height: 44px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; color: #fff;
  background: linear-gradient(180deg, hsl(var(--accent-h) var(--accent-s) 60% / .25), hsl(var(--accent-h) var(--accent-s) 60% / .1));
  border: 1px solid hsl(var(--accent-h) var(--accent-s) 60% / .35);
  box-shadow: 0 0 0 1px hsl(var(--accent-h) var(--accent-s) 60% / .12) inset, 0 8px 24px hsl(var(--accent-h) var(--accent-s) 50% / .15), 0 0 0 6px hsl(var(--accent-h) var(--accent-s) 60% / .04);
}
.tcard-title { font-size: 22px; font-weight: 600; letter-spacing: -0.025em; line-height: 1.2; color: var(--text); }
.tcard-copy { font-size: 14.5px; line-height: 1.6; color: var(--text-3); }
.tcard-list { list-style: none; padding: 0; margin: 4px 0 0; display: flex; flex-direction: column; gap: 10px; }
.tcard-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; line-height: 1.5; color: var(--text-2); }
.tcard-list li > span:last-child { flex: 1; min-width: 0; }
.tcard-bullet { flex-shrink: 0; margin-top: 2px; width: 16px; height: 16px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; color: var(--accent-soft); background: hsl(var(--accent-h) var(--accent-s) 60% / .15); border: 1px solid hsl(var(--accent-h) var(--accent-s) 60% / .3); }
.tcard-visual { margin: 8px -28px 0; padding: 24px 28px 28px; background: linear-gradient(180deg, transparent, hsl(var(--accent-h) 60% 12% / .35) 60%, hsl(var(--accent-h) 70% 8% / .55)); border-top: 1px solid var(--hairline); min-height: 200px; display: flex; align-items: flex-end; justify-content: center; position: relative; }
[data-theme="light"] .tcard { background: radial-gradient(120% 80% at 50% 0%, hsl(var(--accent-h) var(--accent-s) 60% / .04), transparent 60%), linear-gradient(180deg, #ffffff, #fafbfd); border-color: rgb(12 18 32 / .08); box-shadow: var(--shadow-2); }
[data-theme="light"] .tcard:hover { box-shadow: var(--shadow-3); border-color: rgb(12 18 32 / .14); }
[data-theme="light"] .tcard::after { background: radial-gradient(60% 50% at 50% 100%, hsl(var(--accent-h) var(--accent-s) 55% / .08), transparent 70%); }
[data-theme="light"] .tcard-icon { background: linear-gradient(180deg, hsl(var(--accent-h) var(--accent-s) 60%), hsl(var(--accent-h) var(--accent-s) 48%)); border-color: hsl(var(--accent-h) var(--accent-s) 50% / .45); box-shadow: inset 0 1px 0 rgb(255 255 255 / .35), 0 4px 12px hsl(var(--accent-h) var(--accent-s) 50% / .35), 0 0 0 6px hsl(var(--accent-h) var(--accent-s) 60% / .08); }
[data-theme="light"] .tcard-bullet { background: hsl(var(--accent-h) var(--accent-s) 60% / .12); border-color: hsl(var(--accent-h) var(--accent-s) 55% / .25); color: hsl(var(--accent-h) var(--accent-s) 48%); }
[data-theme="light"] .tcard-visual { background: linear-gradient(180deg, transparent, hsl(220 30% 96%) 60%, hsl(220 35% 94%)); border-top-color: rgb(12 18 32 / .06); }

/* Domain Search */
.domains { padding: var(--section-y) 0; }
.ds-head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; max-width: 640px; margin: 0 auto 40px; }
.ds-head h2 { font-size: clamp(36px, 4.2vw, 56px); line-height: 1.04; letter-spacing: -0.035em; }
.ds-head p { font-size: 17px; color: var(--text-3); line-height: 1.55; }
.ds-bar {
  max-width: 720px; margin: 0 auto; display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 0;
  padding: 8px 8px 8px 16px; border-radius: 999px; background: rgba(20, 23, 30, .72); border: 1px solid var(--border-2);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); transition: box-shadow .25s ease, border-color .25s ease;
}
.ds-bar.is-focused { border-color: hsl(var(--accent-h) var(--accent-s) 65% / .5); box-shadow: 0 0 0 4px hsl(var(--accent-h) var(--accent-s) 60% / .12), 0 20px 60px rgba(0,0,0,.5); }
.ds-bar .ds-icon { color: var(--text-3); display: flex; align-items: center; justify-content: center; }
.ds-bar input { background: transparent; border: none; outline: none; color: var(--text); font-size: 17px; font-family: inherit; padding: 14px 8px; width: 100%; letter-spacing: -0.01em; }
.ds-bar input::placeholder { color: var(--text-4); }
.ds-bar .ds-cta { padding: 11px 18px; }
.ds-results {
  max-width: 820px; margin: 24px auto 0; background: linear-gradient(180deg, rgb(var(--tint-rgb) / .025), rgb(var(--tint-rgb) / .005));
  border: 1px solid var(--border); border-radius: 20px; overflow: hidden; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.ds-row { display: grid; grid-template-columns: 1fr auto auto auto; align-items: center; gap: 24px; padding: 18px 22px; border-top: 1px solid var(--hairline); transition: background .2s ease; }
.ds-row:first-child { border-top: 0; }
.ds-row:hover { background: rgb(var(--tint-rgb) / .025); }
.ds-row.feat { background: linear-gradient(90deg, hsl(var(--accent-h) var(--accent-s) 60% / .08), transparent 60%); }
.ds-name { display: flex; align-items: baseline; gap: 2px; }
.ds-q { color: var(--text); font-size: 19px; font-weight: 500; letter-spacing: -0.02em; }
.ds-tld { color: var(--accent-soft); font-size: 19px; font-weight: 500; letter-spacing: -0.02em; text-shadow: 0 0 18px var(--glow); }
.ds-badge { margin-left: 12px; padding: 3px 8px; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-soft); background: hsl(var(--accent-h) var(--accent-s) 60% / .12); border: 1px solid hsl(var(--accent-h) var(--accent-s) 60% / .3); border-radius: 999px; }
.ds-status { font-size: 13px; color: var(--text-2); display: inline-flex; align-items: center; gap: 8px; min-width: 100px; }
.dot-ok { width: 6px; height: 6px; border-radius: 999px; background: #2dd47a; box-shadow: 0 0 8px #2dd47a; }
.dot-bad { width: 6px; height: 6px; border-radius: 999px; background: #6b7385; }
.ds-price { display: flex; align-items: baseline; gap: 4px; min-width: 80px; justify-content: flex-end; font-variant-numeric: tabular-nums; }
.ds-price-num { font-size: 17px; font-weight: 500; color: var(--text); letter-spacing: -0.02em; }
.ds-price-sub { font-size: 12px; color: var(--text-3); }
.ds-add { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 999px; font-size: 13px; font-weight: 500; background: rgb(var(--tint-rgb) / .04); color: var(--text); border: 1px solid var(--border-2); cursor: pointer; transition: background .2s, border-color .2s, color .2s; }
.ds-add:hover { background: rgb(var(--tint-rgb) / .08); border-color: rgb(var(--tint-rgb) / .18); }
.ds-row.feat .ds-add { background: linear-gradient(180deg, var(--accent-soft), var(--accent)); color: #fff; border-color: hsl(var(--accent-h) var(--accent-s) 70% / .5); box-shadow: 0 6px 20px hsl(var(--accent-h) var(--accent-s) 50% / .25); }
.ds-add.is-disabled { color: var(--text-4); cursor: not-allowed; }

[data-theme="light"] .ds-bar { background: #ffffff; border-color: rgb(12 18 32 / .1); box-shadow: var(--shadow-2); }
[data-theme="light"] .ds-bar.is-focused { border-color: hsl(var(--accent-h) var(--accent-s) 55% / .5); box-shadow: 0 0 0 4px hsl(var(--accent-h) var(--accent-s) 60% / .12), var(--shadow-3); }
[data-theme="light"] .ds-bar input { color: var(--text); }
[data-theme="light"] .ds-bar input::placeholder { color: var(--text-4); }
[data-theme="light"] .ds-results { background: #ffffff; border-color: rgb(12 18 32 / .08); box-shadow: var(--shadow-3); }
[data-theme="light"] .ds-row:hover { background: rgb(12 18 32 / .02); }
[data-theme="light"] .ds-row.feat { background: linear-gradient(90deg, hsl(var(--accent-h) var(--accent-s) 60% / .06), transparent 60%); }
[data-theme="light"] .ds-tld { color: hsl(var(--accent-h) var(--accent-s) 45%); text-shadow: none; }
[data-theme="light"] .ds-add { background: var(--surface-2); border-color: rgb(12 18 32 / .1); color: var(--text); }
[data-theme="light"] .ds-add:hover { background: #eef2f8; border-color: rgb(12 18 32 / .18); }

/* Pricing */
.pricing { padding: var(--section-y) 0; position: relative; }
.billing-toggle {
  position: relative; display: inline-flex; justify-content: center; align-items: center;
  padding: 4px; background: rgba(20, 23, 30, .6); border: 1px solid var(--border-2); border-radius: 999px;
  margin: 0 auto 48px; width: fit-content; isolation: isolate;
}
.billing-toggle .slider {
  position: absolute; top: 4px; left: 4px; width: calc(50% - 4px); height: calc(100% - 8px);
  background: linear-gradient(180deg, rgb(var(--tint-rgb) / .08), rgb(var(--tint-rgb) / .03));
  border: 1px solid var(--border-2); border-radius: 999px; transition: transform .35s cubic-bezier(.4,.0,.2,1);
  z-index: -1; box-shadow: 0 4px 14px rgba(0,0,0,.2) inset, 0 0 18px var(--glow-soft);
}
.billing-toggle button {
  padding: 10px 28px; background: transparent; border: none; color: var(--text-3); font-size: 14px; font-weight: 500;
  cursor: pointer; border-radius: 999px; transition: color .25s ease; display: inline-flex; align-items: center; gap: 8px; width: 50%; justify-content: center;
}
.billing-toggle button.is-on { color: var(--text); }
.billing-toggle .discount { padding: 2px 6px; border-radius: 999px; background: hsl(var(--accent-h) var(--accent-s) 60% / .15); color: var(--accent-soft); border: 1px solid hsl(var(--accent-h) var(--accent-s) 60% / .3); font-size: 11px; }
.billing-toggle-wrap { display: flex; justify-content: center; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan {
  position: relative; padding: 32px 30px; border-radius: 24px; border: 1px solid var(--border);
  background: linear-gradient(180deg, rgb(var(--tint-rgb) / .025), rgb(var(--tint-rgb) / .003));
  display: flex; flex-direction: column; transition: transform .3s ease, border-color .3s ease;
}
.plan:hover { transform: translateY(-2px); border-color: var(--border-2); }
.plan-featured {
  background: radial-gradient(120% 80% at 50% 0%, hsl(var(--accent-h) var(--accent-s) 60% / .14), transparent 60%), linear-gradient(180deg, rgba(20,24,32,.65), rgba(14,16,22,.65));
  border: 1px solid hsl(var(--accent-h) var(--accent-s) 60% / .35); backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 0 0 1px hsl(var(--accent-h) var(--accent-s) 60% / .15), 0 1px 0 hsl(var(--accent-h) var(--accent-s) 80% / .35) inset, 0 30px 80px rgba(0,0,0,.4), 0 0 80px hsl(var(--accent-h) var(--accent-s) 50% / .15);
  padding-top: 56px;
}
.plan-ribbon {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%); padding: 5px 12px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #fff;
  background: linear-gradient(180deg, var(--accent-soft), var(--accent)); border: 1px solid hsl(var(--accent-h) var(--accent-s) 70% / .5);
  border-radius: 999px; box-shadow: 0 6px 20px hsl(var(--accent-h) var(--accent-s) 50% / .4); white-space: nowrap; z-index: 2;
}
.plan-head { margin-bottom: 24px; }
.plan-name { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; }
.plan-tag { font-size: 14px; color: var(--text-3); line-height: 1.5; }
.plan-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 6px; }
.plan-currency { font-size: 22px; color: var(--text-2); font-weight: 500; }
.plan-num { font-size: 56px; font-weight: 600; letter-spacing: -0.05em; color: var(--text); line-height: 1; }
.plan-per { font-size: 16px; color: var(--text-3); font-weight: 500; margin-left: 4px; }
.plan-sub { font-size: 12px; color: var(--text-4); letter-spacing: 0.02em; margin-bottom: 24px; }
.plan-cta { width: 100%; justify-content: center; padding: 12px 18px; margin-bottom: 24px; }
.plan-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; border-top: 1px solid var(--hairline); padding-top: 24px; }
.plan-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.45; color: var(--text-2); }
.plan-list li > span { flex: 1; min-width: 0; }
.plan-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--accent-soft); filter: drop-shadow(0 0 4px var(--glow-soft)); }

[data-theme="light"] .plan { background: linear-gradient(180deg, #ffffff, #fafbfd); border-color: rgb(12 18 32 / .08); box-shadow: var(--shadow-2); }
[data-theme="light"] .plan:hover { box-shadow: var(--shadow-3); border-color: rgb(12 18 32 / .14); }
[data-theme="light"] .plan-featured {
  background: radial-gradient(140% 80% at 50% 0%, hsl(var(--accent-h) var(--accent-s) 55% / .1), transparent 60%), linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border-color: hsl(var(--accent-h) var(--accent-s) 55% / .4);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 1), 0 0 0 1px hsl(var(--accent-h) var(--accent-s) 55% / .1), 0 24px 60px rgb(12 18 32 / .12), 0 0 80px hsl(var(--accent-h) var(--accent-s) 55% / .15);
}
[data-theme="light"] .billing-toggle { background: #ffffff; border-color: rgb(12 18 32 / .1); box-shadow: var(--shadow-1); }
[data-theme="light"] .billing-toggle .slider { background: linear-gradient(180deg, #ffffff, #f1f4fa); border-color: rgb(12 18 32 / .1); box-shadow: 0 1px 2px rgb(12 18 32 / .08), 0 0 18px hsl(var(--accent-h) var(--accent-s) 60% / .12); }

/* Bento Features */
.bento { padding: var(--section-y) 0; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 280px 280px 280px;
  grid-template-areas:
    "nvme nvme nvme cdn cdn cdn"
    "nvme nvme nvme deploy deploy sec"
    "support support backup backup sec sec";
  gap: 16px;
}
.bento-card {
  position: relative; padding: 24px;
  background: linear-gradient(180deg, rgb(var(--tint-rgb) / .03), rgb(var(--tint-rgb) / .005));
  border: 1px solid var(--border); border-radius: 22px; overflow: hidden;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .35s cubic-bezier(.2,.6,.2,1), border-color .35s ease, background .35s ease;
  isolation: isolate;
}
.bento-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 50% 0%, hsl(var(--accent-h) var(--accent-s) 60% / .06), transparent 70%);
  pointer-events: none; opacity: 0; transition: opacity .35s ease;
}
.bento-card:hover { border-color: var(--border-2); transform: translateY(-3px); }
.bento-card:hover::before { opacity: 1; }
.b-nvme { grid-column: 1 / 4; grid-row: 1 / 3; }
.b-cdn { grid-column: 4 / 7; grid-row: 1 / 2; }
.b-sec { grid-column: 6 / 7; grid-row: 2 / 4; }
.b-deploy { grid-column: 4 / 6; grid-row: 2 / 3; }
.b-support { grid-column: 1 / 3; grid-row: 3 / 4; }
.b-backup { grid-column: 3 / 6; grid-row: 3 / 4; }

.b-head { display: flex; flex-direction: column; gap: 6px; max-width: 460px; }
.b-tag { display: inline-flex; align-items: center; gap: 6px; color: var(--accent-soft); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.b-head h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.025em; line-height: 1.2; color: var(--text); }
.b-head p { font-size: 14px; line-height: 1.55; color: var(--text-3); }
.b-head .hl { color: var(--text); font-weight: 500; }
.b-vis { flex: 1; display: flex; align-items: flex-end; min-height: 0; position: relative; }

[data-theme="light"] .bento-card { background: radial-gradient(120% 80% at 50% 0%, hsl(var(--accent-h) var(--accent-s) 60% / .04), transparent 60%), linear-gradient(180deg, #ffffff, #fafbfd); border-color: rgb(12 18 32 / .08); box-shadow: var(--shadow-2); }
[data-theme="light"] .bento-card:hover { box-shadow: var(--shadow-3); border-color: rgb(12 18 32 / .14); }
[data-theme="light"] .b-head h3 { color: var(--text); }
[data-theme="light"] .b-tag { color: hsl(var(--accent-h) var(--accent-s) 45%); }
[data-theme="light"] .b-head .hl { color: var(--text); font-weight: 600; }

.nvme-stack { display: flex; flex-direction: column; gap: 8px; width: 100%; max-width: 380px; }
.nvme-bar { display: grid; grid-template-columns: 60px 1fr 70px; align-items: center; gap: 10px; font-family: "JetBrains Mono", monospace; font-size: 11px; }
.nvme-bar .bar-label { color: var(--text-3); text-transform: uppercase; letter-spacing: 0.05em; order: 1; }
.nvme-bar .bar-val { color: var(--text-2); text-align: right; font-variant-numeric: tabular-nums; order: 3; }
.nvme-bar .bar-fill {
  height: 6px; background: linear-gradient(90deg, hsl(var(--accent-h) var(--accent-s) 60% / .3), var(--accent-soft));
  border-radius: 4px; box-shadow: 0 0 12px var(--glow-soft); order: 2; position: relative;
  animation: bar-grow 1.2s cubic-bezier(.2,.6,.2,1) backwards; animation-delay: calc(var(--i) * 0.1s);
}
[data-theme="light"] .nvme-bar .bar-label { color: var(--text-3); }
[data-theme="light"] .nvme-bar .bar-val { color: var(--text); }
[data-theme="light"] .nvme-bar .bar-fill { background: linear-gradient(90deg, hsl(var(--accent-h) var(--accent-s) 80% / .35), hsl(var(--accent-h) var(--accent-s) 50%)); box-shadow: 0 0 12px hsl(var(--accent-h) var(--accent-s) 60% / .25); }

.agents { display: flex; align-items: center; }
.agent {
  width: 44px; height: 44px; border-radius: 999px; background: linear-gradient(135deg, hsl(220 30% 35%), hsl(220 25% 22%));
  border: 2px solid var(--bg-1); color: var(--text); font-size: 13px; font-weight: 600; display: flex; align-items: center; justify-content: center;
  margin-left: -10px; letter-spacing: 0.02em;
}
.agent:first-child { margin-left: 0; }
.agent:nth-child(2) { background: linear-gradient(135deg, hsl(280 25% 40%), hsl(280 22% 24%)); }
.agent:nth-child(3) { background: linear-gradient(135deg, hsl(160 28% 32%), hsl(160 24% 20%)); }
.agent:nth-child(4) { background: linear-gradient(135deg, hsl(30 30% 36%), hsl(30 25% 22%)); }
.agent-more { background: rgb(var(--tint-rgb) / .05) !important; color: var(--text-3) !important; font-size: 11px !important; }
.agent-note { display: flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--text-3); font-size: 12px; }
.agent-dot { width: 6px; height: 6px; border-radius: 999px; background: #2dd47a; box-shadow: 0 0 8px #2dd47a; animation: tick 2s infinite; }
[data-theme="light"] .agent { border-color: var(--surface); }
[data-theme="light"] .agent-note { color: var(--text-3); }

.restore-ui {
  width: 100%; background: rgba(0,0,0,.3); border: 1px solid var(--hairline); border-radius: 10px;
  padding: 12px; font-family: "JetBrains Mono", monospace; font-size: 12px; display: flex; flex-direction: column; gap: 8px;
}
.restore-row { display: flex; align-items: center; gap: 8px; color: var(--text); }
.restore-row.sub { color: var(--text-4); padding-left: 14px; }
.restore-dot { width: 6px; height: 6px; border-radius: 999px; background: var(--accent-soft); box-shadow: 0 0 8px var(--glow); }
.restore-tag { margin-left: auto; padding: 2px 6px; font-size: 10px; background: hsl(var(--accent-h) var(--accent-s) 60% / .15); color: var(--accent-soft); border-radius: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
[data-theme="light"] .restore-ui { background: #0a0f1c; border-color: rgb(12 18 32 / .08); box-shadow: inset 0 0 0 1px rgb(255 255 255 / .04); }
[data-theme="light"] .restore-row { color: #e7eaf2; }
[data-theme="light"] .restore-row.sub { color: rgb(255 255 255 / .35); }

.term {
  width: 100%; background: rgba(0,0,0,.4); border: 1px solid var(--hairline); border-radius: 10px; overflow: hidden; font-family: "JetBrains Mono", monospace; font-size: 12px;
}
.term-head { display: flex; align-items: center; gap: 6px; padding: 8px 10px; border-bottom: 1px solid var(--hairline); background: rgb(var(--tint-rgb) / .02); }
.term-dot { width: 8px; height: 8px; border-radius: 999px; opacity: .7; }
.term-title { margin-left: 10px; font-size: 10px; color: var(--text-4); letter-spacing: 0.06em; }
.term-body { padding: 10px 12px; line-height: 1.85; color: var(--text-2); }
.t-pre { color: var(--accent-soft); margin-right: 6px; }
.t-dim { color: var(--text-4); margin-left: 4px; }
.t-ok { color: #2dd47a; margin-right: 6px; }
.t-pulse { color: var(--accent-soft); margin-left: 4px; animation: tick 1.5s infinite; }
[data-theme="light"] .term { background: #0a0f1c; border-color: rgb(12 18 32 / .08); box-shadow: inset 0 0 0 1px rgb(255 255 255 / .04); }
[data-theme="light"] .term-head { background: rgb(255 255 255 / .03); border-bottom-color: rgb(255 255 255 / .06); }
[data-theme="light"] .term-body { color: #c7ccd6; }
[data-theme="light"] .term-title { color: rgb(255 255 255 / .4); }
[data-theme="light"] .t-pre { color: var(--accent-soft); }
[data-theme="light"] .t-dim { color: rgb(255 255 255 / .35); }
[data-theme="light"] .t-ok { color: #2dd47a; }

/* Performance */
.performance { padding: var(--section-y) 0; }
.perf-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 64px; align-items: center; }
.perf-copy h2 { font-size: clamp(40px, 4.6vw, 60px); line-height: 1.04; margin: 16px 0 24px; }
.perf-copy p { font-size: 17px; line-height: 1.6; color: var(--text-3); margin-bottom: 32px; max-width: 480px; }
.perf-copy .hl { color: var(--text); }
.perf-cta { display: flex; align-items: center; gap: 24px; }

.perf-chart {
  background: radial-gradient(120% 80% at 50% 0%, hsl(var(--accent-h) var(--accent-s) 60% / .06), transparent 60%), linear-gradient(180deg, rgb(var(--tint-rgb) / .025), rgb(var(--tint-rgb) / .005));
  border: 1px solid var(--border-2); border-radius: 24px; padding: 28px; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.chart-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 24px; }
.chart-label { font-size: 16px; font-weight: 500; color: var(--text); }
.chart-sub { font-size: 12px; color: var(--text-4); margin-top: 2px; }
.chart-legend { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-3); font-family: "JetBrains Mono", monospace; }
.leg { width: 14px; height: 4px; border-radius: 2px; }
.leg-us { background: var(--accent-soft); box-shadow: 0 0 8px var(--glow); }

.bars { display: flex; flex-direction: column; gap: 14px; padding-bottom: 24px; border-bottom: 1px solid var(--hairline); }
.bar-row { display: grid; grid-template-columns: 160px 1fr 70px; align-items: center; gap: 16px; }
.bar-name { font-size: 13px; color: var(--text-3); font-family: "JetBrains Mono", monospace; letter-spacing: -0.01em; }
.bar-row.is-us .bar-name { color: var(--text); font-weight: 500; }
.bar-track { height: 14px; background: rgb(var(--tint-rgb) / .025); border-radius: 4px; overflow: hidden; position: relative; }
.bar-fill-perf { height: 100%; border-radius: 4px; animation: bar-grow-perf 1.4s cubic-bezier(.2,.6,.2,1) backwards; }
.bar-val { font-family: "JetBrains Mono", monospace; font-size: 12px; color: var(--text-2); text-align: right; font-variant-numeric: tabular-nums; }
.bar-val span { color: var(--text-4); }
.bar-row.is-us .bar-val { color: var(--accent-soft); }

.perf-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-top: 24px; }
.ps-num { font-size: 32px; font-weight: 600; letter-spacing: -0.04em; color: var(--text); line-height: 1; font-variant-numeric: tabular-nums; }
.ps-num span { font-size: 18px; color: var(--text-3); font-weight: 500; margin-left: 2px; }
.ps-label { font-size: 12px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 8px; }

[data-theme="light"] .perf-chart { background: radial-gradient(120% 80% at 50% 0%, hsl(var(--accent-h) var(--accent-s) 55% / .07), transparent 60%), linear-gradient(180deg, #ffffff, #fafbfd); border-color: rgb(12 18 32 / .08); box-shadow: var(--shadow-3); }
[data-theme="light"] .bar-track { background: rgb(12 18 32 / .045); }
[data-theme="light"] .bar-row:not(.is-us) .bar-fill-perf { background: linear-gradient(90deg, rgb(12 18 32 / .12), rgb(12 18 32 / .28)) !important; }
[data-theme="light"] .bar-name { color: var(--text-3); }
[data-theme="light"] .bar-row.is-us .bar-name { color: var(--text); }
[data-theme="light"] .bar-val { color: var(--text-2); }
[data-theme="light"] .bar-row.is-us .bar-val { color: hsl(var(--accent-h) var(--accent-s) 45%); }
[data-theme="light"] .ps-num span { color: var(--text-3); }

/* Testimonials */
.testimonials { padding: var(--section-y) 0; }
.t-head { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end; margin-bottom: 56px; }
.t-head-left { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.t-head-left h2 { font-size: clamp(40px, 4.6vw, 60px); line-height: 1.04; letter-spacing: -0.035em; }
.t-summary { display: flex; flex-direction: column; gap: 16px; align-items: flex-end; }
.t-rating { display: flex; align-items: center; gap: 8px; }
.t-rating-num { font-size: 18px; font-weight: 600; color: var(--text); margin-left: 4px; font-variant-numeric: tabular-nums; }
.t-rating-sub { font-size: 12px; color: var(--text-3); }

.t-pager {
  display: inline-flex; align-items: center; gap: 12px; padding: 6px; border: 1px solid var(--border-2); border-radius: 999px;
  background: linear-gradient(180deg, rgb(var(--tint-rgb) / .02), rgb(var(--tint-rgb) / .005));
}
.t-pbtn {
  width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: none; border-radius: 999px; color: var(--text-2); cursor: pointer; transition: background .2s, color .2s;
}
.t-pbtn:hover { background: rgb(var(--tint-rgb) / .05); color: var(--text); }
.t-page-dots { display: inline-flex; align-items: center; gap: 6px; padding: 0 4px; }
.t-page-dot {
  width: 6px; height: 6px; padding: 0; border-radius: 999px; background: rgb(var(--tint-rgb) / .18); border: none;
  cursor: pointer; transition: width .25s ease, background .25s ease, box-shadow .25s ease;
}
.t-page-dot.is-on { width: 22px; background: var(--accent-soft); box-shadow: 0 0 8px var(--glow); }

.t-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr 1fr; gap: 18px; align-items: stretch; transition: opacity 0.3s ease; }
.t-card {
  position: relative; padding: 28px; border-radius: 22px; border: 1px solid var(--border);
  background: linear-gradient(180deg, rgb(var(--tint-rgb) / .03), rgb(var(--tint-rgb) / .005));
  display: flex; flex-direction: column; gap: 16px; transition: transform .35s ease, border-color .35s ease; overflow: hidden; isolation: isolate;
}
.t-card:hover { transform: translateY(-3px); border-color: var(--border-2); }

.t-feature {
  background: radial-gradient(120% 80% at 0% 0%, hsl(var(--accent-h) var(--accent-s) 60% / .14), transparent 60%), linear-gradient(180deg, rgba(20,24,32,.65), rgba(14,16,22,.65));
  border: 1px solid hsl(var(--accent-h) var(--accent-s) 60% / .35); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); gap: 24px; padding: 32px;
}
.t-quote-mark { opacity: .9; }
.t-feature-body { font-size: 22px; line-height: 1.4; color: var(--text); font-weight: 500; letter-spacing: -0.015em; flex: 1; text-wrap: pretty; }
.t-feature-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 24px; border-top: 1px solid var(--hairline); }
.t-feature-glow { position: absolute; bottom: -120px; right: -80px; width: 280px; height: 280px; background: radial-gradient(50% 50%, var(--glow) 0%, transparent 70%); filter: blur(20px); pointer-events: none; z-index: -1; }
.t-metric { padding: 10px 14px; border-radius: 14px; background: hsl(var(--accent-h) var(--accent-s) 60% / .1); border: 1px solid hsl(var(--accent-h) var(--accent-s) 60% / .3); text-align: right; }
.t-metric-val { font-size: 22px; font-weight: 600; color: var(--accent-soft); letter-spacing: -0.03em; font-variant-numeric: tabular-nums; text-shadow: 0 0 12px var(--glow); }
.t-metric-lbl { font-size: 10px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

.t-stars { display: flex; align-items: center; gap: 4px; }
.t-card-title { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.25; color: var(--text); }
.t-card-body { font-size: 14px; line-height: 1.6; color: var(--text-3); flex: 1; }
.t-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--hairline); }
.t-avatar {
  width: 36px; height: 36px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em; color: #fff; flex-shrink: 0;
  background: linear-gradient(135deg, hsl(var(--tint, 220) 35% 38%), hsl(var(--tint, 220) 30% 20%));
  border: 1px solid hsl(var(--tint, 220) 30% 50% / .35); box-shadow: 0 4px 14px hsl(var(--tint, 220) 30% 10% / .4);
}
.t-avatar-lg { width: 44px; height: 44px; font-size: 14px; }
.t-author-meta { display: flex; flex-direction: column; min-width: 0; }
.t-author-name { font-size: 13px; font-weight: 500; color: var(--text); letter-spacing: -0.005em; }
.t-author-role { font-size: 12px; color: var(--text-3); }

[data-theme="light"] .t-card { background: linear-gradient(180deg, #ffffff, #fafbfd); border-color: rgb(12 18 32 / .08); box-shadow: var(--shadow-2); }
[data-theme="light"] .t-card:hover { box-shadow: var(--shadow-3); border-color: rgb(12 18 32 / .14); }
[data-theme="light"] .t-feature { background: radial-gradient(120% 80% at 0% 0%, hsl(var(--accent-h) var(--accent-s) 55% / .08), transparent 60%), linear-gradient(180deg, #ffffff, #fbfcfe); border-color: hsl(var(--accent-h) var(--accent-s) 55% / .3); box-shadow: inset 0 1px 0 rgb(255 255 255 / 1), 0 0 0 1px hsl(var(--accent-h) var(--accent-s) 55% / .08), var(--shadow-lift); }
[data-theme="light"] .t-feature-glow { opacity: .5; }
[data-theme="light"] .t-quote-mark { opacity: .85; }
[data-theme="light"] .t-metric { background: hsl(var(--accent-h) var(--accent-s) 60% / .08); border-color: hsl(var(--accent-h) var(--accent-s) 55% / .3); }
[data-theme="light"] .t-metric-val { color: hsl(var(--accent-h) var(--accent-s) 42%); text-shadow: none; }
[data-theme="light"] .t-rating-num { color: var(--text); }
[data-theme="light"] .t-pager { background: #ffffff; border-color: rgb(12 18 32 / .08); box-shadow: var(--shadow-1); }
[data-theme="light"] .t-pbtn { color: var(--text-3); }
[data-theme="light"] .t-pbtn:hover { background: rgb(12 18 32 / .04); color: var(--text); }
[data-theme="light"] .t-page-dot { background: rgb(12 18 32 / .15); }

/* FAQ */
.faq { padding: var(--section-y) 0; }
.faq-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 80px; align-items: start; }
.faq-left { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; position: sticky; top: 96px; }
.faq-left h2 { font-size: clamp(38px, 4.2vw, 54px); line-height: 1.04; letter-spacing: -0.035em; }
.faq-left p { font-size: 16px; line-height: 1.6; color: var(--text-3); max-width: 380px; }
.faq-contact { display: flex; align-items: center; gap: 20px; margin-top: 12px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--border); border-radius: 16px;
  background: linear-gradient(180deg, rgb(var(--tint-rgb) / .025), rgb(var(--tint-rgb) / .005));
  overflow: hidden; transition: border-color .25s ease, background .25s ease;
}
.faq-item:hover { border-color: var(--border-2); }
.faq-item.is-open {
  border-color: hsl(var(--accent-h) var(--accent-s) 60% / .35);
  background: radial-gradient(120% 80% at 0% 0%, hsl(var(--accent-h) var(--accent-s) 60% / .06), transparent 60%), linear-gradient(180deg, rgb(var(--tint-rgb) / .035), rgb(var(--tint-rgb) / .005));
}
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 24px;
  background: transparent; border: none; color: var(--text); font-family: inherit; font-size: 17px; font-weight: 500; letter-spacing: -0.015em; text-align: left; cursor: pointer; transition: color .2s ease;
}
.faq-q:hover { color: var(--text); }
.faq-q-text { line-height: 1.4; }
.faq-toggle {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-3); background: rgb(var(--tint-rgb) / .04); border: 1px solid var(--border-2);
  transition: transform .35s cubic-bezier(.2,.6,.2,1), background .25s ease, color .25s ease, border-color .25s ease;
}
.faq-item.is-open .faq-toggle {
  transform: rotate(45deg); background: hsl(var(--accent-h) var(--accent-s) 60% / .2); color: var(--accent-soft);
  border-color: hsl(var(--accent-h) var(--accent-s) 60% / .35); box-shadow: 0 0 16px var(--glow-soft);
}
.faq-a-wrap { overflow: hidden; max-height: 0; transition: max-height .45s cubic-bezier(.2,.6,.2,1); }
.faq-a { padding: 0 24px 22px; }
.faq-a p { font-size: 15px; line-height: 1.65; color: var(--text-3); text-wrap: pretty; max-width: 60ch; }

[data-theme="light"] .faq-item { background: #ffffff; border-color: rgb(12 18 32 / .08); box-shadow: var(--shadow-1); }
[data-theme="light"] .faq-item:hover { border-color: rgb(12 18 32 / .14); }
[data-theme="light"] .faq-item.is-open { background: radial-gradient(120% 80% at 0% 0%, hsl(var(--accent-h) var(--accent-s) 55% / .04), transparent 60%), #ffffff; border-color: hsl(var(--accent-h) var(--accent-s) 55% / .35); box-shadow: 0 0 0 3px hsl(var(--accent-h) var(--accent-s) 60% / .08), var(--shadow-2); }
[data-theme="light"] .faq-toggle { background: var(--surface-2); border-color: rgb(12 18 32 / .1); color: var(--text-3); }
[data-theme="light"] .faq-item.is-open .faq-toggle { background: hsl(var(--accent-h) var(--accent-s) 60% / .12); color: hsl(var(--accent-h) var(--accent-s) 45%); border-color: hsl(var(--accent-h) var(--accent-s) 55% / .35); box-shadow: 0 0 14px hsl(var(--accent-h) var(--accent-s) 60% / .25); }

/* Final CTA */
.final-cta { padding: 32px 0 var(--section-y); }
.fc-card {
  position: relative; border-radius: 32px; padding: 80px 56px; overflow: hidden; border: 1px solid var(--border-2);
  background: radial-gradient(40% 80% at 50% 100%, hsl(var(--accent-h) var(--accent-s) 60% / .14), transparent 70%), linear-gradient(180deg, rgba(20,24,32,.6), rgba(10,12,16,.8));
  text-align: center; isolation: isolate;
}
.fc-card::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(to right, rgb(var(--tint-rgb) / .03) 1px, transparent 1px), linear-gradient(to bottom, rgb(var(--tint-rgb) / .03) 1px, transparent 1px);
  background-size: 48px 48px; mask-image: radial-gradient(80% 60% at 50% 50%, #000 30%, transparent 80%); pointer-events: none;
}
.fc-glow {
  position: absolute; bottom: -200px; left: 50%; transform: translateX(-50%); width: 600px; height: 400px;
  background: radial-gradient(50% 50%, var(--glow) 0%, transparent 70%); filter: blur(40px); pointer-events: none;
}
.fc-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.fc-card h2 { font-size: clamp(40px, 5vw, 64px); line-height: 1.05; margin-bottom: 20px; }
.fc-card p { font-size: 17px; line-height: 1.55; color: var(--text-3); margin-bottom: 36px; }
.fc-actions { display: flex; justify-content: center; gap: 16px; }

[data-theme="light"] .fc-card { background: radial-gradient(40% 80% at 50% 100%, hsl(var(--accent-h) var(--accent-s) 55% / .12), transparent 70%), linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%); border-color: rgb(12 18 32 / .08); box-shadow: var(--shadow-lift); }
[data-theme="light"] .fc-card::before { background-image: linear-gradient(to right, rgb(12 18 32 / .04) 1px, transparent 1px), linear-gradient(to bottom, rgb(12 18 32 / .04) 1px, transparent 1px); }
[data-theme="light"] .fc-glow { opacity: .35; }

/* Footer */
.footer { padding: 80px 0 32px; border-top: 1px solid var(--hairline); margin-top: 32px; position: relative; }
.footer::before {
  content: ""; position: absolute; top: -1px; left: 50%; transform: translateX(-50%); width: 320px; height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-soft), transparent); box-shadow: 0 0 24px var(--glow);
}
.footer-top { display: grid; grid-template-columns: 1.3fr 2fr; gap: 80px; padding-bottom: 64px; }
.footer-brand p { font-size: 14px; line-height: 1.6; color: var(--text-3); max-width: 320px; margin: 20px 0 32px; }
.news { max-width: 360px; }
.news-label { font-size: 12px; color: var(--text-2); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.news-form {
  display: flex; align-items: center; background: rgb(var(--tint-rgb) / .04); border: 1px solid var(--border-2);
  border-radius: 999px; padding: 4px 4px 4px 16px; gap: 8px;
}
.news-form input { background: transparent; border: none; outline: none; color: var(--text); font-family: inherit; font-size: 13px; padding: 8px 0; flex: 1; width: 100%; }
.news-form input::placeholder { color: var(--text-4); }
.news-form button { padding: 8px 14px; border-radius: 999px; background: #fff; color: #07080b; border: none; font-family: inherit; font-size: 13px; font-weight: 500; cursor: pointer; }
.news-sub { font-size: 11px; color: var(--text-4); margin-top: 8px; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.col-title { font-size: 12px; color: var(--text-2); margin-bottom: 16px; font-weight: 600; letter-spacing: 0.04em; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-3); font-size: 13px; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--hairline); font-size: 12px; color: var(--text-4); }
.fb-left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.fb-left a { color: var(--text-3); }
.fb-left a:hover { color: var(--text); }
.sep { color: var(--text-4); }
.status { display: inline-flex; align-items: center; gap: 6px; }
.status-dot { width: 6px; height: 6px; border-radius: 999px; background: #2dd47a; box-shadow: 0 0 8px #2dd47a; }
.fb-right { display: flex; align-items: center; gap: 12px; }
.social { width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--border-2); display: flex; align-items: center; justify-content: center; color: var(--text-3); transition: color .2s, border-color .2s, background .2s; }
.social:hover { color: var(--text); background: rgb(var(--tint-rgb) / .04); border-color: rgb(var(--tint-rgb) / .18); }

[data-theme="light"] .footer { border-top-color: rgb(12 18 32 / .08); }
[data-theme="light"] .footer::before { box-shadow: 0 0 24px var(--glow); }
[data-theme="light"] .news-form { background: #ffffff; border-color: rgb(12 18 32 / .1); box-shadow: var(--shadow-1); }
[data-theme="light"] .news-form input { color: var(--text); }
[data-theme="light"] .news-form input::placeholder { color: var(--text-4); }
[data-theme="light"] .news-form button { background: #0a0f1c; color: #ffffff; box-shadow: 0 1px 2px rgb(12 18 32 / .15); }
[data-theme="light"] .social { background: #ffffff; border-color: rgb(12 18 32 / .1); box-shadow: var(--shadow-1); }
[data-theme="light"] .social:hover { background: var(--surface-2); border-color: rgb(12 18 32 / .14); }

/* --------------------------------------------------------------------------
   6. Keyframe Animations
   -------------------------------------------------------------------------- */
@keyframes dash { to { stroke-dashoffset: -1000; } }
@keyframes flow { 0% { offset-distance: 0%; opacity: 0; } 8% { opacity: 1; } 92% { opacity: 1; } 100% { offset-distance: 100%; opacity: 0; } }
@keyframes pulse-ring { 0% { transform: scale(.6); opacity: .9; } 100% { transform: scale(2.2); opacity: 0; } }
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes orbit-rotate { to { transform: rotate(-360deg); } }
@keyframes shimmer { to { background-position: 200% 0; } }
@keyframes tick { 0%,100% { opacity:.3 } 50% { opacity: 1 } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes bar-grow { from { width: 0 !important; } }
@keyframes bar-grow-perf { from { width: 0 !important; } }
@keyframes hsu-progress { from { width: 0%; } to { width: 100%; } }
@keyframes hm-rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes hm-float-1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes hm-float-2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ==========================================================================
   7. Cyber Scene Animations & Styles
   ========================================================================== */
.hero-cyber-scene {
    /* Deep Brand Palette */
    --g-1: #076DF2; /* Brightest Neon Blue */
    --g-2: #0455BF; /* Vibrant Mid Blue */
    --g-3: #021F59; /* Deep Fading Blue */
    
    --bg-1: #010D26; /* Almost Black Blue */
    --bg-2: #011640; /* Very Deep Blue */
    --bg-3: #00153E; /* Dark Blue */
    
    --h-1: #076DF2; /* Core Highlight */
    
    /* Plunged into darkness: tight text highlight, pure black abyss on the right */
    background: radial-gradient(circle at 15% 50%, var(--bg-1) 0%, #000208 30%, #000000 70%);
    position: absolute; inset: 0; overflow: hidden;
}
[data-theme="light"] .hero-cyber-scene {
    background: radial-gradient(circle at 15% 50%, #f8fafc 0%, #f1f5f9 15%, #ffffff 35%, #ffffff 100%);
}

.cyber-particles { position: absolute; inset: 0; pointer-events: none; }
[data-theme="light"] .cyber-particle { background: var(--g-2); box-shadow: 0 0 6px var(--g-2); }
.cyber-particle {
    position: absolute; width: 3px; height: 3px;
    background: var(--h-1); border-radius: 50%;
    box-shadow: 0 0 6px var(--h-1); opacity: 0;
    animation: particle-float linear infinite;
}
@keyframes particle-float {
    0% { transform: translateY(100px) scale(0); opacity: 0; }
    20% { opacity: 0.6; }
    80% { opacity: 0.6; }
    100% { transform: translateY(-100px) scale(1.5); opacity: 0; }
}

.cyber-map-wrapper {
    position: absolute; width: 100vw; height: 100vh;
    top: 0; left: 0; opacity: 1;
    transform: perspective(1200px) rotateX(45deg) translate(-4vw, -50px);
    pointer-events: none; transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
}
#cyber-map-container { position: absolute; inset: 0; width: 100%; height: 100%; }
/* Full color inactive map outline (opacity removed for full color check) */
#cyber-map-container svg { width: 100%; height: 100%; fill: transparent; stroke: rgba(4, 85, 191, 1); stroke-width: 1.2; transition: fill 0.8s ease, stroke 0.8s ease, filter 0.8s ease; }
[data-theme="light"] #cyber-map-container svg { stroke: rgba(4, 85, 191, 0.25); }
#cyber-map-container svg path.map-glow { 
    fill: transparent; 
    stroke: var(--active-glow, var(--g-1)); 
    stroke-width: 2; 
    filter: drop-shadow(0 0 4px var(--active-glow, var(--g-1))) drop-shadow(0 0 12px var(--active-glow, var(--g-2))); 
}

.cyber-network-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.anim-line {
    stroke: var(--g-1);
    stroke-width: 2.5;
    stroke-dasharray: 12 24;
    animation: dash-flow 20s linear infinite;
    filter: drop-shadow(0 0 4px var(--g-1)) drop-shadow(0 0 10px var(--g-2));
}
@keyframes dash-flow { to { stroke-dashoffset: -2000; } }
.node { fill: var(--g-1); filter: drop-shadow(0 0 4px var(--g-1)) drop-shadow(0 0 12px var(--g-2)); }
.node-pulse { animation: cyber-ring 3s ease-out infinite; }
@keyframes cyber-ring {
    0% { r: 10; opacity: 1; stroke-width: 3; stroke: var(--g-1); filter: drop-shadow(0 0 4px var(--g-1)); }
    100% { r: 50; opacity: 0; stroke-width: 1; stroke: var(--g-3); filter: drop-shadow(0 0 0 transparent); }
}
