/* ================================================================
   FENXI ANALYTICS — DESIGN SYSTEM v3
   Outfit (display) · Plus Jakarta Sans (body) · Space Mono (labels)
   ================================================================ */

/* ── 1. CUSTOM PROPERTIES ──────────────────────────────────────── */
:root {
  --bg:        #08080f;
  --bg-2:      #0b0b16;
  --bg-3:      #0f0f1e;
  --bg-light:  #f0f0f5;

  --text:       #f0f0f5;
  --text-muted: #7a7a90;
  --text-dim:   rgba(240,240,245,0.45);
  --text-dark:  #12121e;
  --text-dark-muted: #4a4a62;

  --accent:      #00e5ff;
  --accent-glow: rgba(0, 229, 255, 0.25);
  --accent-dim:  rgba(0, 229, 255, 0.1);
  --accent-blue: #2563eb;
  --accent-warm: #f59e0b;
  --accent-purple: #8b5cf6;

  --border:      rgba(255,255,255,0.07);
  --border-glow: rgba(0,229,255,0.28);
  --neon-glow:   0 0 12px rgba(0,229,255,0.6), 0 0 28px rgba(0,229,255,0.3);

  --font-display: 'Outfit', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --font-mono:    'Space Mono', monospace;

  --radius: 12px;
  --section-pad: clamp(5rem, 10vw, 9rem);
}

/* ── 2. RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
img, video { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }
body { cursor: default; }

/* ── 3. BODY ─────────────────────────────────────────────────── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  animation: pageFadeIn 0.3s ease both;
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── 4. GRAIN / NOISE ────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.018;
  pointer-events: none;
  z-index: 99990;
}

/* ── 5. LOADER (first visit only) ────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.loader-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: loaderReveal 0.4s ease 0.05s both;
}

.loader-inner img { height: 30px; border-radius: 6px; }

.loader-brand-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

@keyframes loaderReveal {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.loader-bar {
  width: 80px;
  height: 1.5px;
  background: rgba(255,255,255,0.1);
  border-radius: 1px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  animation: loaderFill 0.6s cubic-bezier(0.4,0,0.2,1) 0.15s forwards;
}

@keyframes loaderFill { to { width: 100%; } }

/* ── 6. PAGE FADE ────────────────────────────────────────────── */
.page-fade {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.page-fade.out { opacity: 1; pointer-events: all; }

/* ── 7. NAVIGATION ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 64px;
  background: rgba(8,8,15,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(8,8,15,0.95);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  cursor: pointer;
}

.nav-brand img { height: 28px; border-radius: 6px; }

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}

.nav-links { display: flex; gap: 32px; }

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
  cursor: pointer;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s cubic-bezier(0.16,1,0.3,1);
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-demo { color: var(--accent) !important; }
.nav-demo::after { background: var(--accent) !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.ham-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 1px;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  transform-origin: center;
}

.nav-hamburger.open .ham-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open .ham-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open .ham-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 64px; left: 0;
  width: 100%;
  background: rgba(8,8,15,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 5% 1.5rem;
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  z-index: 999;
}

.mobile-drawer.open { transform: translateY(0); }

.mobile-drawer a {
  display: flex;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 500;
  min-height: 44px;
  transition: color 0.2s;
  cursor: pointer;
}

.mobile-drawer a:hover { color: var(--accent); }

.mobile-drawer a:last-child { border-bottom: none; }

.mobile-drawer .btn-cta {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
  border-bottom: none;
}

/* ── 8. TYPOGRAPHY ───────────────────────────────────────────── */
h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.06;
  color: var(--text);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

p { color: var(--text-muted); line-height: 1.72; }

.label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1.25rem;
}

.grad-text {
  background: linear-gradient(110deg, #f0f0f5 0%, #00e5ff 45%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── 9. LAYOUT ───────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section { padding: var(--section-pad) 0; position: relative; }
.text-center { text-align: center; }

/* ── 10. BUTTONS ─────────────────────────────────────────────── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #000000;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 13px 30px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
  box-shadow: 0 0 0 0 transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.btn-cta:hover { box-shadow: 0 8px 25px rgba(0,229,255,0.4); }
.btn-cta:hover::before { left: 150%; }
.btn-cta:active { transform: scale(0.97) !important; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 12px 28px;
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: var(--border-glow);
  box-shadow: 0 8px 25px rgba(0,229,255,0.4);
}

.btn-ghost:active { transform: scale(0.97) !important; }

/* Magnetic CTA (large) */
.btn-magnetic {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #000000;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 18px 52px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
  will-change: transform;
  cursor: pointer;
  animation: btnPulse 3s ease-in-out infinite;
}

.btn-magnetic::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}

.btn-magnetic:hover::before { left: 150%; }
.btn-magnetic:hover {
  box-shadow: 0 8px 25px rgba(0,229,255,0.4), 0 20px 60px rgba(0,229,255,0.25);
}
.btn-magnetic:active { transform: scale(0.97) !important; }

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,229,255,0); }
  50% { box-shadow: 0 0 0 12px rgba(0,229,255,0.12); }
}

/* ── 11. GRADIENT ORBS ───────────────────────────────────────── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
  pointer-events: none;
}

@keyframes orbDrift1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(80px,-60px) scale(1.12); }
  66% { transform: translate(-40px,80px) scale(0.93); }
}
@keyframes orbDrift2 {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(-70px,50px) scale(1.08); }
  66% { transform: translate(50px,-70px) scale(0.95); }
}
@keyframes orbDrift3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(60px,-50px) scale(1.1); }
}
@keyframes orbDrift4 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-50px,60px) scale(1.05); }
}

/* ── 12. HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  overflow: visible;
  padding-top: calc(64px + 2rem);
  padding-bottom: 5rem;
}

.hero-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }

.hero .orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,229,255,0.18) 0%, transparent 70%);
  top: -200px; left: -150px;
  animation: orbDrift1 20s ease-in-out infinite;
}
.hero .orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.14) 0%, transparent 70%);
  top: 10%; right: -150px;
  animation: orbDrift2 25s ease-in-out infinite;
}
.hero .orb-3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 70%);
  bottom: -100px; left: 35%;
  animation: orbDrift3 18s ease-in-out infinite;
}
.hero .orb-4 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(0,229,255,0.07) 0%, transparent 70%);
  bottom: 15%; right: 15%;
  animation: orbDrift4 22s ease-in-out infinite;
}

/* Giant background texture letter */
.hero-bg-text {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(220px, 35vw, 520px);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.045);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  padding: 0;
  width: 100%;
  will-change: transform, opacity;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: block;
  padding-left: 5vw;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.92;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
  overflow: visible;
  width: 100%;
}

.hero-word {
  display: block;
  white-space: nowrap;
  will-change: transform, opacity;
  overflow: visible;
  line-height: 0.93;
  padding: 0 5vw;
}

.hero-word.accent-word { color: var(--accent); }

.hero-sub-wrap {
  padding: 2rem 5vw 0;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  flex-wrap: nowrap;
}

.hero-stat {
  font-family: var(--font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  text-transform: uppercase;
  position: relative;
  padding-left: 18px;
}

.hero-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(0,229,255,0.8);
}

/* Scroll indicator — chevron only */
.scroll-ind {
  position: absolute;
  bottom: 2rem;
  left: 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  background: none;
  border: none;
  padding: 8px;
  color: var(--accent);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.scroll-ind:hover { opacity: 1; }

.scroll-ind svg {
  animation: chevronBounce 1.8s ease-in-out infinite;
}

@keyframes chevronBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

/* Section-specific cursor accent colors */
.hero a:hover,
.hero button:hover,
.hero .btn-cta:hover { cursor: pointer; }

/* ── 13. MARQUEE TICKER ──────────────────────────────────────── */
.marquee-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 18s linear infinite;
  will-change: transform;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  font-weight: 400;
}

.marquee-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ── 14. PROBLEM SECTION (pinned word reveal) ────────────────── */
.section-problem {
  position: relative;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* Ambient problem glow */
.section-problem::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  filter: blur(60px);
}

.problem-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 8%;
  max-width: 1100px;
}

.problem-sentence {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.8vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 2rem;
}

.problem-word {
  display: inline;
  opacity: 0;
  margin-right: 0.3em;
  transition: none;
}

.we-fix-that {
  margin-top: 3rem;
  opacity: 0;
  pointer-events: none;
}

.we-fix-text {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 13vw, 12rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--text);
}

.we-fix-text .fix-accent { color: var(--accent-warm); }

/* Problem section interactive elements: amber accent */
.section-problem a:hover,
.section-problem button:hover { cursor: pointer; color: var(--accent-warm); }

/* ── 15. NEGATIVE SPACE / GROW SECTION ──────────────────────── */
.section-grow {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

.grow-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 5%;
}

.grow-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.grow-text {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: transparent;
  background: linear-gradient(110deg, rgba(240,240,245,0.15) 0%, rgba(0,229,255,0.4) 50%, rgba(240,240,245,0.15) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  will-change: font-size;
  line-height: 1;
  font-size: 8vw;
}

/* ── 16. DASHBOARD SHOWCASE ──────────────────────────────────── */
.section-showcase {
  position: relative;
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.showcase-bg-glow {
  position: absolute;
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,229,255,0.06) 0%, transparent 70%);
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  filter: blur(40px);
}

.showcase-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  padding: 0 5%;
}

.showcase-label {
  position: absolute;
  bottom: calc(100% + 1.5rem);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  opacity: 0;
  width: 100%;
}

.browser-wrap { perspective: 1600px; }

.dashboard-scrub-wrap { will-change: transform, opacity; }
.dashboard-mouse-wrap { will-change: transform; }

.browser-frame {
  background: #13131f;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07),
    0 60px 120px rgba(0,0,0,0.7),
    0 0 80px rgba(0,229,255,0.06);
  position: relative;
}

.browser-chrome {
  background: #1c1c30;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 7px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-shrink: 0;
}

.chrome-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.chrome-dot-r { background: #ff5f57; }
.chrome-dot-y { background: #febc2e; }
.chrome-dot-g { background: #28c840; }

.chrome-url {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  height: 24px;
  margin: 0 10px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 6px;
}

.chrome-lock {
  width: 10px; height: 10px;
  color: rgba(255,255,255,0.25);
}

.chrome-url-text {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.28);
  user-select: none;
}

.browser-body {
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.browser-body img { width: 100%; display: block; }

/* Highlight overlays */
.highlight-overlay {
  position: absolute;
  border: 1.5px solid var(--accent);
  border-radius: 6px;
  background: rgba(0,229,255,0.05);
  box-shadow: 0 0 20px rgba(0,229,255,0.2), inset 0 0 12px rgba(0,229,255,0.04);
  opacity: 0;
  pointer-events: none;
}

.hl-kpi   { top: 4%; left: 2%; width: 50%; height: 18%; }
.hl-chart { top: 25%; left: 2%; width: 64%; height: 46%; }
.hl-ai    { top: 4%; right: 2%; width: 32%; height: 70%; }

.highlight-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 8px;
  border: 1px solid var(--accent);
  animation: hlPulse 1.8s ease-in-out infinite;
}

@keyframes hlPulse {
  0%,100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 0.18; transform: scale(1.025); }
}

/* Scanning line */
.scan-line {
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 2.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,229,255,0.2) 20%, rgba(0,229,255,0.9) 50%, rgba(0,229,255,0.2) 80%, transparent 100%);
  box-shadow: 0 0 12px rgba(0,229,255,0.8), 0 0 25px rgba(0,229,255,0.4);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  will-change: top;
}

/* KPI glow rings */
.kpi-rings-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
}

.kpi-ring-node {
  position: absolute;
  transform: translate(-50%, -50%);
}

.kpi-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
}

.kpi-ring-1 { width: 40px; height: 40px; animation: ringExpand 2.2s ease-out infinite; }
.kpi-ring-2 { width: 70px; height: 70px; animation: ringExpand 2.2s ease-out 0.5s infinite; }
.kpi-ring-3 { width: 100px; height: 100px; animation: ringExpand 2.2s ease-out 1s infinite; }

@keyframes ringExpand {
  0% { transform: translate(-50%,-50%) scale(0.4); opacity: 0.9; }
  100% { transform: translate(-50%,-50%) scale(1); opacity: 0; }
}

/* Showcase section: electric blue accent on interactive elements */
.section-showcase a:hover,
.section-showcase button:hover { cursor: pointer; color: var(--accent-blue); }

/* ── 17. HORIZONTAL FEATURES ─────────────────────────────────── */
.section-horizontal {
  position: relative;
  background: var(--bg-2);
  overflow: hidden;
}

.horizontal-outer { overflow: hidden; }

.horizontal-track {
  display: flex;
  will-change: transform;
}

.feature-block {
  width: 100vw;
  min-width: 480px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8% 10%;
  flex-shrink: 0;
  position: relative;
}

/* Alternating layout within each block */
.feature-block:nth-child(odd) { align-items: flex-start; text-align: left; }
.feature-block:nth-child(even) { align-items: flex-end; text-align: right; }

.feature-block::before {
  content: attr(data-num);
  position: absolute;
  top: 10%;
  right: 8%;
  font-family: var(--font-display);
  font-size: 18vw;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.feature-icon {
  width: 72px; height: 72px;
  color: var(--accent);
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.feature-block:nth-child(2) .feature-icon { color: var(--accent-blue); }
.feature-block:nth-child(3) .feature-icon { color: var(--accent-warm); }
.feature-block:nth-child(4) .feature-icon { color: var(--accent-purple); }

.feature-num {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.feature-block h2 {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  margin-bottom: 1.25rem;
  max-width: 520px;
}

.feature-block:nth-child(2) h2 .grad-text,
.feature-block:nth-child(2) h2 { color: var(--text); }

.feature-block p {
  font-size: 1.1rem;
  max-width: 440px;
  line-height: 1.75;
}

/* Feature section: purple accent */
.section-horizontal a:hover,
.section-horizontal button:hover { cursor: pointer; color: var(--accent-purple); }

/* ── 18. STATEMENT SECTION ───────────────────────────────────── */
.section-statement {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.statement-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.statement-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,15,0.82);
  z-index: 1;
}

.statement-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 5%;
}

.statement-text {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 10.5rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.95;
  background: linear-gradient(90deg, #f0f0f5 0%, #00e5ff 42%, #f0f0f5 85%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 5s linear infinite;
}

@keyframes shimmerText {
  to { background-position: -220% center; }
}

/* ── 19. ABSTRACT DATA VISUALIZATION ────────────────────────── */
.section-dataviz {
  background: var(--bg-3);
  padding: var(--section-pad) 0;
  overflow: hidden;
  position: relative;
}

.section-dataviz::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,229,255,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.dataviz-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.dataviz-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
}

.dataviz-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Bar chart visual */
.bars-visual {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 220px;
  position: relative;
  padding-bottom: 28px;
}

.bars-visual::after {
  content: '';
  position: absolute;
  bottom: 28px; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.viz-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  position: relative;
  animation: barGrow 2s cubic-bezier(0.34,1.56,0.64,1) both;
  transform-origin: bottom;
  cursor: default;
}

.viz-bar::after {
  content: '';
  position: absolute;
  top: -3px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes barGrow {
  from { transform: scaleY(0); opacity: 0; }
  to   { transform: scaleY(1); opacity: 1; }
}

@keyframes dotPulse {
  0%,100% { transform: translateX(-50%) scale(1); opacity: 1; }
  50% { transform: translateX(-50%) scale(1.6); opacity: 0.6; }
}

.viz-bar-1 { height: 65%; background: linear-gradient(180deg, rgba(0,229,255,0.9), rgba(0,229,255,0.3)); color: var(--accent); animation-delay: 0.1s; }
.viz-bar-2 { height: 88%; background: linear-gradient(180deg, rgba(0,229,255,1), rgba(0,229,255,0.4)); color: var(--accent); animation-delay: 0.2s; }
.viz-bar-3 { height: 45%; background: linear-gradient(180deg, rgba(59,130,246,0.9), rgba(59,130,246,0.3)); color: var(--accent-blue); animation-delay: 0.3s; }
.viz-bar-4 { height: 72%; background: linear-gradient(180deg, rgba(139,92,246,0.9), rgba(139,92,246,0.3)); color: var(--accent-purple); animation-delay: 0.15s; }
.viz-bar-5 { height: 54%; background: linear-gradient(180deg, rgba(245,158,11,0.9), rgba(245,158,11,0.3)); color: var(--accent-warm); animation-delay: 0.25s; }
.viz-bar-6 { height: 92%; background: linear-gradient(180deg, rgba(0,229,255,1), rgba(0,229,255,0.45)); color: var(--accent); animation-delay: 0.05s; }
.viz-bar-7 { height: 40%; background: linear-gradient(180deg, rgba(59,130,246,0.7), rgba(59,130,246,0.2)); color: var(--accent-blue); animation-delay: 0.35s; }

.bars-x-labels {
  display: flex;
  gap: 12px;
  position: absolute;
  bottom: 0; left: 0; right: 0;
}

.bars-x-label {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--text-muted);
  opacity: 0.5;
}

/* Network / node visual */
.network-visual {
  position: relative;
  height: 260px;
}

.network-visual svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Circuit trace SVG */
.circuit-svg-wrap {
  width: 100%;
  overflow: hidden;
  height: 120px;
  margin-top: 4rem;
  opacity: 0.6;
}

/* ── 20. TIMELINE (background color scroll) ──────────────────── */
.section-timeline {
  background: var(--bg);
  padding: var(--section-pad) 0;
  position: relative;
  transition: background-color 0.1s linear;
}

.timeline-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.timeline-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.timeline-big-h {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1.05;
}

.timeline-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
}

.timeline-rail {
  position: absolute;
  left: calc(5% + 28px);
  top: 20px; bottom: 20px;
  width: 1.5px;
  background: var(--border);
}

.timeline-rail-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--accent), var(--accent-blue));
  box-shadow: 0 0 12px rgba(0,229,255,0.5);
  will-change: height;
  transition: height 0.05s linear;
}

.timeline-step {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 4.5rem;
  position: relative;
  will-change: transform, opacity;
}

.timeline-step:last-child { margin-bottom: 0; }

.timeline-node {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--bg);
  transition: border-color 0.4s, box-shadow 0.4s, color 0.4s;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.timeline-step.activated .timeline-node {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0,229,255,0.3);
  color: var(--accent);
}

.timeline-body { padding-top: 1rem; flex: 1; }
.timeline-body h3 { margin-bottom: 0.6rem; color: var(--text); }
.timeline-body p { font-size: 1rem; }

/* Timeline content — always readable */
.blur-reveal {
  filter: none;
  opacity: 1;
  transition: opacity 0.5s ease;
}

/* ── 21. TRUST SECTION ────────────────────────────────────────── */
.section-trust {
  background: #0a0f1e;
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

/* Dot grid overlay */
.section-trust::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,229,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* Cyan radial glow from center */
.section-trust::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,229,255,0.04) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.section-trust .trust-inner,
.section-trust .trust-content,
.section-trust .trust-header,
.section-trust .trust-grid {
  position: relative;
  z-index: 1;
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Vertical label */
.vertical-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  align-self: center;
  margin-top: 2rem;
  user-select: none;
}

.trust-content { }

.trust-header { margin-bottom: 3rem; }

.trust-header .label { color: var(--accent); }

.trust-header h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.trust-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,229,255,0.15);
  border-radius: 14px;
  padding: 2rem;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s, border-color 0.25s;
  will-change: transform;
  cursor: default;
  position: relative;
}

.trust-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 15px;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 32px rgba(0,229,255,0.08);
}

.trust-card:hover::before { border-color: rgba(0,229,255,0.35); }

.trust-icon {
  width: 34px; height: 34px;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.trust-card h4 { color: #ffffff; margin-bottom: 0.4rem; }
.trust-card p { color: rgba(255,255,255,0.55); font-size: 0.9375rem; }

/* ── 22. CTA SECTION ─────────────────────────────────────────── */
.section-cta {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0 5%;
}

.cta-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.cta-orb-1 {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,158,11,0.14) 0%, transparent 70%);
  filter: blur(80px);
  top: -200px; right: -200px;
  animation: orbDrift2 22s ease-in-out infinite;
}
.cta-orb-2 {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
  filter: blur(80px);
  bottom: -150px; left: -100px;
  animation: orbDrift1 26s ease-in-out infinite;
}
.cta-orb-3 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,229,255,0.08) 0%, transparent 70%);
  filter: blur(80px);
  top: 40%; left: 30%;
  animation: orbDrift3 19s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.03;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.cta-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.72;
}

.cta-magnetic-wrap {
  display: inline-block;
  margin-bottom: 3rem;
  padding: 2rem;
  margin: -2rem -2rem 1rem;
}

.cta-meta {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-meta-item {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-meta-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* CTA interactive: white accent */
.section-cta a:hover,
.section-cta button:hover { cursor: pointer; }

/* ── 23. FOOTER ──────────────────────────────────────────────── */
.footer {
  background: #050508;
  border-top: 1px solid var(--border);
  padding: 4rem 8% 3rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-brand-row img { height: 26px; border-radius: 6px; }

.footer-tagline {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 280px;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.footer-email {
  color: var(--accent);
  font-size: 0.9375rem;
  transition: opacity 0.2s;
  cursor: pointer;
}
.footer-email:hover { opacity: 0.7; }

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-col-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.55;
  display: block;
  margin-bottom: 1.25rem;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col-links a {
  color: var(--text-muted);
  font-size: 0.9375rem;
  transition: color 0.2s;
  cursor: pointer;
  display: inline-block;
  position: relative;
}

.footer-col-links a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.25s cubic-bezier(0.16,1,0.3,1);
}

.footer-col-links a:hover { color: var(--text); }
.footer-col-links a:hover::after { width: 100%; }

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  opacity: 0.45;
}

/* ── 24. FORMS ───────────────────────────────────────────────── */
.form-group { margin-bottom: 1.75rem; }

.form-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-input:focus {
  border-color: var(--border-glow);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.07);
}

/* ── 25. SERVICE CARDS (inner pages) ─────────────────────────── */
.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.25s, box-shadow 0.3s;
}

.service-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,229,255,0.08);
}

.card-body { padding: 2rem; }
.card-body h3 { margin-bottom: 0.75rem; color: var(--text); }

/* ── 26. SPLIT LAYOUT (inner pages) ──────────────────────────── */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── 27. NEON GLOW UTILITY ───────────────────────────────────── */
.neon-border {
  border: 1px solid rgba(0,229,255,0.4);
  box-shadow: 0 0 0 0 transparent;
  animation: neonPulse 3s ease-in-out infinite;
}

@keyframes neonPulse {
  0%,100% { box-shadow: 0 0 8px rgba(0,229,255,0.2), inset 0 0 8px rgba(0,229,255,0.05); }
  50% { box-shadow: 0 0 24px rgba(0,229,255,0.5), 0 0 48px rgba(0,229,255,0.15), inset 0 0 16px rgba(0,229,255,0.08); }
}

/* ── 28. MATRIX CANVAS (easter egg) ──────────────────────────── */
#matrix-canvas {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  pointer-events: none;
}

/* ── 29. UTILITIES ────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ── 30. RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .trust-inner { grid-template-columns: 1fr; }
  .vertical-label { display: none; }
  .dataviz-header, .dataviz-body { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer { grid-template-columns: 1fr; gap: 3rem; }
  .timeline-header { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links, .nav > .btn-cta { display: none; }

  .hero-stats { gap: 1.5rem; }
  .hero-bg-text { display: none; }

  .trust-grid, .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .timeline-rail { left: calc(5% + 22px); }
  .timeline-node { width: 46px; height: 46px; font-size: 0.68rem; }
  .timeline-step { gap: 1.25rem; }

  .section-horizontal .horizontal-track {
    flex-direction: column !important;
    transform: none !important;
    width: 100% !important;
  }
  .section-horizontal .feature-block {
    width: 100% !important;
    min-width: unset;
    min-height: auto;
    padding: 4rem 5%;
    align-items: flex-start;
    text-align: left;
  }
  .section-horizontal .feature-block::before { display: none; }

  .browser-chrome { height: 32px; }
  .chrome-dot { width: 9px; height: 9px; }

  .dataviz-body { grid-template-columns: 1fr; }
  .network-visual { height: 180px; }

  .section-grow { min-height: 60vh; }

  .statement-text { font-size: clamp(3rem, 12vw, 7rem); }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 1rem 1.5rem; }
  .cta-meta { gap: 1rem; }
  .btn-magnetic { font-size: 1rem; padding: 16px 36px; }
  .cta-headline { font-size: clamp(2rem, 10vw, 4rem); }
}
