/* =========================================================
   ENUIALABS — Design System
   Brand: cyan → deep blue gradient on deep navy dark
   (bluish evolution of the 2Q product design language)
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01';
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ---------- Tokens ---------- */
:root {
  /* Surfaces */
  --bg: #060A14;
  --bg-2: #0A1122;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  /* Brand */
  --brand-cyan: #38E1FF;
  --brand-blue: #4F9DFF;
  --brand-deep: #2563EB;
  --brand-teal: #2DD4BF;
  --brand-amber: #FFB347;
  --brand-violet: #7C6CFF;

  /* Brand gradient */
  --grad: linear-gradient(135deg, #38E1FF 0%, #2563EB 100%);
  --grad-soft: linear-gradient(135deg, rgba(56, 225, 255, 0.14) 0%, rgba(37, 99, 235, 0.10) 100%);
  --grad-text: linear-gradient(135deg, #7CEBFF 0%, #4F9DFF 60%, #93B8FF 100%);

  /* Text */
  --text: #FFFFFF;
  --text-muted: #9BA6C0;
  --text-subtle: #67718D;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 8px 40px rgba(56, 225, 255, 0.22);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Layout */
  --maxw: 1180px;
  --maxw-narrow: 880px;
  --pad-x: clamp(18px, 4vw, 32px);
  --section-y: clamp(64px, 10vw, 128px);
  --nav-h: 68px;
}

/* ---------- Layout helpers ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.container-narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.section { padding: var(--section-y) 0; position: relative; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--brand-cyan); margin-bottom: 14px;
  padding: 6px 14px; border-radius: 999px; background: rgba(56,225,255,0.08);
  border: 1px solid rgba(56,225,255,0.18);
}
.text-center { text-align: center; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; color: var(--text); }
h1 { font-size: clamp(38px, 6.4vw, 68px); font-weight: 900; letter-spacing: -0.035em; line-height: 1.02; }
h2 { font-size: clamp(30px, 4.5vw, 48px); letter-spacing: -0.025em; }
h3 { font-size: clamp(20px, 2.5vw, 26px); letter-spacing: -0.015em; }
h4 { font-size: 17px; font-weight: 700; }
p { color: var(--text-muted); font-size: 16px; line-height: 1.65; }
.lede { font-size: clamp(17px, 1.7vw, 19px); color: var(--text-muted); max-width: 560px; }
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border: none; border-radius: 12px; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all 0.2s ease; text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--grad); color: #04121b; box-shadow: var(--shadow-glow); position: relative; overflow: hidden; }
.btn-primary::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.28), transparent 60%); opacity: 0; transition: opacity 0.2s; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 48px rgba(56, 225, 255, 0.32); }
.btn-primary:hover::before { opacity: 1; }
.btn-outline { background: rgba(255,255,255,0.04); color: var(--text); border: 1px solid var(--border-strong); backdrop-filter: blur(10px); }
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); transform: translateY(-1px); }
.btn-lg { padding: 17px 32px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* ---------- Navbar ---------- */
.navbar { position: sticky; top: 0; z-index: 100; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  background: rgba(6, 10, 20, 0.72); border-bottom: 1px solid var(--border); transition: background 0.2s; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 12px; }
.nav-brand { display: flex; align-items: center; gap: 11px; font-weight: 900; font-size: 19px; letter-spacing: -0.02em; }
.nav-brand-logo { width: 52px; height: 40px; position: relative; flex: 0 0 auto; }
.nav-brand-logo enuia-logo { position: absolute; inset: 0; width: 100%; height: 100%; min-height: 0 !important; }
.nav-brand-logo .logo-fallback { position: absolute; inset: 4px; }
.nav-brand-logo.live .logo-fallback { opacity: 0; }
.nav-brand-text { color: #fff; }
.nav-brand-text .accent { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { padding: 9px 14px; border-radius: 10px; font-size: 14.5px; font-weight: 500; color: var(--text-muted); transition: color .15s, background .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.lang-switch { display: flex; border: 1px solid var(--border); border-radius: 999px; overflow: hidden; font-size: 12.5px; font-weight: 600; }
.lang-switch a { padding: 6px 12px; color: var(--text-subtle); }
.lang-switch a.active { color: #04121b; background: var(--grad); }
.nav-toggle { display: none; width: 42px; height: 42px; background: transparent; border: 1px solid var(--border); border-radius: 10px; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 50%; width: 18px; height: 2px; background: #fff; border-radius: 2px; transform: translateX(-50%); }
.nav-toggle span { top: 50%; margin-top: -1px; }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }

@media (max-width: 680px) {
  .nav-right .btn { display: none; }
  .nav-brand-text { font-size: 17px; }
}
@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-links { position: fixed; top: var(--nav-h); left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: rgba(6,10,20,0.97); border-bottom: 1px solid var(--border); padding: 12px var(--pad-x) 20px;
    display: none; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 14px; font-size: 16px; }
}

/* ---------- Glass card ---------- */
.glass-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.glass-card:hover { border-color: var(--border-strong); background: var(--surface-2); }

/* ---------- Hero + carousel ---------- */
.hero { position: relative; overflow: hidden; padding-top: 0; }
.hero-bg { position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px 480px at 18% -10%, rgba(37, 99, 235, 0.22), transparent 62%),
    radial-gradient(820px 460px at 85% 8%, rgba(56, 225, 255, 0.13), transparent 60%),
    radial-gradient(700px 500px at 55% 115%, rgba(124, 108, 255, 0.10), transparent 65%);
}
.hero-grid { position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 40%, transparent 78%);
          mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 40%, transparent 78%);
}
.particle { position: absolute; border-radius: 50%; filter: blur(0.5px); pointer-events: none; }
@keyframes p0 { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-18px) } }
@keyframes p1 { 0%,100% { transform: translateY(0) } 50% { transform: translateY(14px) } }
@keyframes p2 { 0%,100% { transform: translate(0,0) } 50% { transform: translate(10px,-12px) } }
@keyframes p3 { 0%,100% { transform: translate(0,0) } 50% { transform: translate(-12px,10px) } }

.carousel { position: relative; }
.carousel-track { position: relative; min-height: clamp(540px, 72vh, 700px); }
.slide { position: absolute; inset: 0; display: flex; align-items: center;
  opacity: 0; visibility: hidden; transform: translateX(28px);
  transition: opacity .6s ease, transform .6s ease, visibility 0s linear .6s; }
.slide.active { opacity: 1; visibility: visible; transform: translateX(0); transition-delay: 0s; z-index: 2; }
.slide-inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(24px, 5vw, 64px); align-items: center; width: 100%; padding: 48px 0 72px; }
.slide-copy { max-width: 580px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  color: var(--brand-cyan); background: rgba(56,225,255,0.08); border: 1px solid rgba(56,225,255,0.20);
  padding: 7px 15px; border-radius: 999px; margin-bottom: 22px; }
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-cyan); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { box-shadow: 0 0 0 0 rgba(56,225,255,0.5) } 50% { box-shadow: 0 0 0 6px rgba(56,225,255,0) } }
.slide-copy h1 { margin-bottom: 18px; }
.slide-copy .lede { margin-bottom: 28px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 30px; }
.hero-meta-item { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-muted); }
.hero-meta-item svg { width: 17px; height: 17px; color: var(--brand-cyan); flex: 0 0 auto; }

.slide-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 320px; }
.slide-visual .big-logo { width: 100%; max-width: 520px; aspect-ratio: 4/3; }
.slide-visual .big-logo enuia-logo { width: 100%; height: 100%; }

/* facts slide */
.facts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; width: 100%; max-width: 520px; }
.fact-tile { padding: 22px 20px; text-align: left; }
.fact-tile .fact-value { font-size: clamp(28px, 3vw, 38px); font-weight: 900; letter-spacing: -0.03em;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.fact-tile .fact-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* carousel controls */
.carousel-controls { position: absolute; left: 0; right: 0; bottom: 18px; display: flex; align-items: center; justify-content: center; gap: 18px; z-index: 5; }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot { width: 26px; height: 5px; border-radius: 999px; background: rgba(255,255,255,0.14); border: none; padding: 0; transition: background .2s; position: relative; overflow: hidden; }
.carousel-dot.active { background: rgba(255,255,255,0.22); }
.carousel-dot.active::after { content: ''; position: absolute; inset: 0; background: var(--grad); transform-origin: left;
  animation: dot-progress var(--slide-ms, 7000ms) linear forwards; }
.carousel.paused .carousel-dot.active::after { animation-play-state: paused; }
@keyframes dot-progress { from { transform: scaleX(0) } to { transform: scaleX(1) } }
.carousel-arrow { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--text-muted); display: inline-flex; align-items: center; justify-content: center; transition: all .15s; }
.carousel-arrow:hover { color: #fff; border-color: var(--border-strong); background: rgba(255,255,255,0.09); }
.carousel-arrow svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .carousel-track { min-height: 640px; }
  .slide { align-items: flex-start; }
  .slide-inner { grid-template-columns: 1fr; gap: 26px; padding: 28px 0 84px; }
  .slide-visual { min-height: 0; order: 2; }
  .slide-visual .big-logo { max-width: 380px; }
  .facts-grid { max-width: none; }
}

/* ---------- Stats strip ---------- */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 26px 22px; }
.stat { text-align: center; padding: 6px 8px; }
.stat-value { font-size: clamp(26px, 3vw, 36px); font-weight: 900; letter-spacing: -0.03em;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
@media (max-width: 720px) { .stats-strip { grid-template-columns: repeat(2, 1fr); row-gap: 18px; } }

/* ---------- Product showcase ---------- */
.product-block { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: center; padding: clamp(28px, 4vw, 56px); }
.product-block + .product-block { margin-top: 40px; }
.product-block.flip .product-copy { order: 2; }
.product-block.flip .product-screen { order: 1; }
@media (max-width: 900px) {
  .product-block { grid-template-columns: 1fr; }
  .product-block.flip .product-copy { order: 1; }
  .product-block.flip .product-screen { order: 2; }
}
.product-kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; margin-bottom: 16px; padding: 6px 14px; border-radius: 999px; }
.product-kicker.skip { color: #FF7AB8; background: rgba(255,45,142,0.09); border: 1px solid rgba(255,45,142,0.22); }
.product-kicker.smart { color: var(--brand-cyan); background: rgba(56,225,255,0.08); border: 1px solid rgba(56,225,255,0.2); }
.product-copy h3 { font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 14px; }
.product-copy > p { margin-bottom: 18px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 24px; }
.tag { font-size: 12.5px; font-weight: 600; color: var(--text-muted); background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); padding: 5px 12px; border-radius: 999px; }
.product-stats { display: flex; gap: 26px; flex-wrap: wrap; margin-bottom: 26px; }
.pstat .v { font-size: 24px; font-weight: 900; letter-spacing: -0.02em; color: #fff; }
.pstat .l { font-size: 12px; color: var(--text-subtle); }
.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 15px; color: var(--brand-cyan); transition: gap .15s; }
.link-arrow:hover { gap: 11px; }

/* ---------- Animated screens: phone ---------- */
.product-screen { display: flex; justify-content: center; }
.phone-frame { width: min(290px, 78vw); aspect-ratio: 9/18.6; border-radius: 40px; position: relative;
  background: #0B1223; border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 24px 80px rgba(0,0,0,0.55), inset 0 0 0 7px #05080f, 0 0 90px rgba(255, 45, 142, 0.10);
  overflow: hidden; padding: 14px; }
.phone-notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 88px; height: 22px; border-radius: 12px; background: #05080f; z-index: 3; }
.phone-ui { position: absolute; inset: 8px; border-radius: 32px; overflow: hidden; display: flex; flex-direction: column;
  background: linear-gradient(180deg, #100A1D 0%, #0B0716 100%); padding: 44px 16px 16px; }
.pui-title { font-size: 15px; font-weight: 800; color: #fff; letter-spacing: -0.01em; }
.pui-sub { font-size: 10.5px; color: #8f87ad; margin-top: 2px; }
.pui-queuecard { margin-top: 14px; border-radius: 16px; padding: 14px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); }
.pui-row { display: flex; align-items: baseline; justify-content: space-between; }
.pui-label { font-size: 10px; letter-spacing: 1.4px; text-transform: uppercase; color: #8f87ad; font-weight: 700; }
.pui-live { font-size: 9.5px; color: #00E5A0; font-weight: 700; display: inline-flex; align-items: center; gap: 4px; }
.pui-live::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #00E5A0; animation: pulse-dot 1.6s infinite; }
.pui-pos { font-size: 46px; font-weight: 900; letter-spacing: -0.04em; line-height: 1.05;
  background: linear-gradient(135deg, #FF4FA3, #FF8A50); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.pui-pos-cap { font-size: 10.5px; color: #8f87ad; }
.pui-bar { height: 6px; border-radius: 99px; background: rgba(255,255,255,0.08); margin-top: 10px; overflow: hidden; }
.pui-bar-fill { height: 100%; width: 20%; border-radius: 99px; background: linear-gradient(90deg, #FF2D8E, #FF6B35); transition: width .9s cubic-bezier(.2,.7,.2,1); }
.pui-tiers { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 7px; margin-top: 14px; }
.pui-tier { border-radius: 12px; padding: 9px 7px; text-align: center; background: rgba(255,255,255,0.045); border: 1px solid rgba(255,255,255,0.08); }
.pui-tier .t { font-size: 9px; letter-spacing: 0.8px; color: #8f87ad; font-weight: 700; text-transform: uppercase; }
.pui-tier .p { font-size: 13px; font-weight: 800; color: #fff; margin-top: 2px; }
.pui-tier.hot { border-color: rgba(255,45,142,0.5); background: rgba(255,45,142,0.10); position: relative; }
.pui-tier.hot .p { color: #FF7AB8; }
.pui-pick { margin-top: 12px; border-radius: 14px; padding: 11px 12px; background: rgba(124,108,255,0.08); border: 1px solid rgba(124,108,255,0.22); }
.pui-pick .t { font-size: 9px; letter-spacing: 1.2px; text-transform: uppercase; color: #a99cff; font-weight: 800; display: flex; align-items: center; gap: 5px; }
.pui-pick .t svg { width: 11px; height: 11px; }
.pui-pick .n { font-size: 12px; font-weight: 700; color: #e6e2ff; margin-top: 4px; }
.pui-pick .d { font-size: 9.5px; color: #8f87ad; margin-top: 1px; }
.pui-qr { margin-top: auto; border-radius: 16px; padding: 12px; display: flex; align-items: center; gap: 12px;
  background: rgba(0,229,160,0.07); border: 1px solid rgba(0,229,160,0.25); }
.pui-qr-code { width: 46px; height: 46px; border-radius: 8px; background:
  conic-gradient(from 0deg, #fff 0 25%, transparent 0 50%, #fff 0 75%, transparent 0) 0 0/50% 50%, #fff;
  background-blend-mode: normal; position: relative; flex: 0 0 auto; animation: qr-pulse 2.4s ease-in-out infinite; }
@keyframes qr-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(0,229,160,0.45) } 50% { box-shadow: 0 0 0 8px rgba(0,229,160,0) } }
.pui-qr-code::after { content: ''; position: absolute; inset: 8px;
  background-image: radial-gradient(#05080f 1.4px, transparent 1.5px); background-size: 6px 6px; border-radius: 4px; }
.pui-qr-txt .a { font-size: 11.5px; font-weight: 800; color: #B9F6D9; }
.pui-qr-txt .b { font-size: 9.5px; color: #74a58d; }

/* ---------- Animated screens: dashboard ---------- */
.laptop-frame { width: min(560px, 92vw); border-radius: 18px; background: #0A101F; border: 1px solid rgba(255,255,255,0.13);
  box-shadow: 0 24px 80px rgba(0,0,0,0.55), 0 0 90px rgba(56, 225, 255, 0.09); overflow: hidden; }
.laptop-bar { display: flex; align-items: center; gap: 6px; padding: 11px 14px; border-bottom: 1px solid rgba(255,255,255,0.07); background: rgba(255,255,255,0.03); }
.laptop-bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.14); }
.laptop-bar i:nth-child(1) { background: #FF5F57; } .laptop-bar i:nth-child(2) { background: #FEBC2E; } .laptop-bar i:nth-child(3) { background: #28C840; }
.laptop-url { margin-left: 10px; font-size: 10.5px; color: var(--text-subtle); background: rgba(255,255,255,0.05); border-radius: 6px; padding: 3px 10px; }
.dash { display: grid; grid-template-columns: 132px 1fr; min-height: 330px; }
.dash-side { border-right: 1px solid rgba(255,255,255,0.07); padding: 14px 10px; background: rgba(255,255,255,0.02); }
.dash-side .brand { font-size: 11px; font-weight: 900; color: #fff; padding: 4px 8px 12px; letter-spacing: 0.4px; }
.dash-side .brand span { color: var(--brand-cyan); }
.dash-item { font-size: 10.5px; color: var(--text-subtle); padding: 7px 9px; border-radius: 8px; margin-bottom: 3px; font-weight: 600; }
.dash-item.on { color: #fff; background: rgba(56,225,255,0.12); border: 1px solid rgba(56,225,255,0.22); }
.dash-main { padding: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-content: start; }
.dash-kpis { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dash-kpi { border-radius: 12px; padding: 11px 12px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
.dash-kpi .l { font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-subtle); font-weight: 700; }
.dash-kpi .v { font-size: 19px; font-weight: 900; color: #fff; letter-spacing: -0.02em; margin-top: 3px; }
.dash-kpi .v em { font-style: normal; font-size: 10px; font-weight: 700; color: #00E5A0; margin-left: 5px; }
.dash-panel { border-radius: 12px; padding: 12px; background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.08); }
.dash-panel .t { font-size: 10px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--text-subtle); margin-bottom: 10px; }
.gauge { position: relative; width: 108px; height: 62px; margin: 2px auto 0; overflow: hidden; }
.gauge svg { width: 108px; height: 108px; }
.gauge .g-val { position: absolute; left: 0; right: 0; bottom: 0; text-align: center; font-size: 17px; font-weight: 900; color: #fff; }
.gauge .g-arc { stroke-dasharray: 163; stroke-dashoffset: 163; transition: stroke-dashoffset 1.2s cubic-bezier(.2,.7,.2,1); }
.gauge-cap { text-align: center; font-size: 9.5px; color: var(--text-subtle); margin-top: 6px; }
.bars { display: flex; align-items: flex-end; gap: 6px; height: 74px; padding-top: 4px; }
.bars b { flex: 1; border-radius: 4px 4px 2px 2px; background: linear-gradient(180deg, #38E1FF, #2563EB); opacity: .9;
  transform-origin: bottom; animation: bar-live 3.2s ease-in-out infinite; min-height: 8px; }
.bars b:nth-child(odd) { animation-duration: 4.1s; }
.bars b:nth-child(3n) { animation-duration: 3.6s; background: linear-gradient(180deg, #7CEBFF, #4F9DFF); }
@keyframes bar-live { 0%,100% { transform: scaleY(0.72) } 50% { transform: scaleY(1) } }
.dash-queue { grid-column: 1 / -1; }
.q-row { display: flex; align-items: center; gap: 9px; padding: 6px 4px; border-bottom: 1px dashed rgba(255,255,255,0.06); animation: q-in .5s ease both; }
.q-row:last-child { border-bottom: 0; }
@keyframes q-in { from { opacity: 0; transform: translateY(5px) } to { opacity: 1; transform: none } }
.q-ava { width: 20px; height: 20px; border-radius: 50%; flex: 0 0 auto;
  background: linear-gradient(135deg, #38E1FF, #2563EB); opacity: .85; }
.q-row:nth-child(2) .q-ava { background: linear-gradient(135deg, #FFB347, #FF8A5C); }
.q-row:nth-child(4) .q-ava { background: linear-gradient(135deg, #7C6CFF, #4F9DFF); }
.q-name { font-size: 10.5px; color: #cfd6e6; font-weight: 600; flex: 1; }
.q-tier { font-size: 8.5px; font-weight: 800; letter-spacing: 0.6px; padding: 2.5px 7px; border-radius: 99px; text-transform: uppercase; }
.q-tier.fast { color: #7CEBFF; background: rgba(56,225,255,0.10); border: 1px solid rgba(56,225,255,0.25); }
.q-tier.vip { color: #FFD9A8; background: rgba(255,179,71,0.10); border: 1px solid rgba(255,179,71,0.3); }
.q-tier.free { color: #9BA6C0; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.q-eta { font-size: 9.5px; color: var(--text-subtle); width: 44px; text-align: right; }

/* ---------- AI stack ---------- */
.ai-stack { display: flex; flex-direction: column; gap: 18px; max-width: 900px; margin: 0 auto; }
.ai-row { display: grid; grid-template-columns: 64px 1fr; gap: 20px; padding: 26px 28px; align-items: start; }
.ai-icon-block { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.ai-row[data-tone="cyan"] .ai-icon-block { background: rgba(56,225,255,0.10); color: var(--brand-cyan); border: 1px solid rgba(56,225,255,0.25); }
.ai-row[data-tone="blue"] .ai-icon-block { background: rgba(79,157,255,0.10); color: var(--brand-blue); border: 1px solid rgba(79,157,255,0.28); }
.ai-row[data-tone="teal"] .ai-icon-block { background: rgba(45,212,191,0.10); color: var(--brand-teal); border: 1px solid rgba(45,212,191,0.28); }
.ai-icon-block svg { width: 26px; height: 26px; }
.ai-row .label { font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--text-subtle); font-weight: 700; margin-bottom: 6px; }
.ai-row h3 { margin-bottom: 8px; }
.ai-row .tag-row { margin: 14px 0 0; }
@media (max-width: 640px) { .ai-row { grid-template-columns: 1fr; } }

/* ---------- Expertise grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { padding: 28px 26px; }
.feature-icon { width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  background: rgba(56,225,255,0.08); border: 1px solid rgba(56,225,255,0.2); color: var(--brand-cyan); margin-bottom: 18px; }
.feature-icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 18px; margin-bottom: 8px; }
.feature p { font-size: 14.5px; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 34px; }
.timeline::before { content: ''; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(180deg, var(--brand-cyan), var(--brand-deep) 55%, transparent); opacity: .5; }
.tl-item { position: relative; padding: 0 0 34px 14px; }
.tl-item::before { content: ''; position: absolute; left: -32px; top: 5px; width: 14px; height: 14px; border-radius: 50%;
  background: var(--bg); border: 3px solid var(--brand-cyan); box-shadow: 0 0 14px rgba(56,225,255,0.5); }
.tl-item.future::before { border-color: var(--text-subtle); box-shadow: none; }
.tl-date { font-size: 12px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--brand-cyan); margin-bottom: 5px; }
.tl-item.future .tl-date { color: var(--text-subtle); }
.tl-item h4 { font-size: 17px; margin-bottom: 5px; }
.tl-item p { font-size: 14.5px; }

/* ---------- CTA ---------- */
.cta-card { position: relative; overflow: hidden; text-align: center; padding: clamp(44px, 7vw, 80px) clamp(24px, 5vw, 60px);
  border-radius: var(--radius-xl); background: var(--grad-soft); border: 1px solid rgba(56,225,255,0.2); }
.cta-card::before { content: ''; position: absolute; inset: -40%;
  background: radial-gradient(closest-side, rgba(56,225,255,0.14), transparent 70%); pointer-events: none; }
.cta-card h2 { margin-bottom: 12px; position: relative; }
.cta-card p { max-width: 520px; margin: 0 auto 30px; position: relative; }
.cta-card .hero-ctas { justify-content: center; position: relative; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 56px 0 32px; background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer-brand-block p { font-size: 14px; margin-top: 14px; max-width: 300px; }
.footer-col h4 { font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-subtle); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14.5px; color: var(--text-muted); transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--border); padding-top: 26px; }
.footer-bottom .copy { font-size: 13px; color: var(--text-subtle); }
.social-row { display: flex; gap: 14px; }
.social-row a { color: var(--text-subtle); transition: color .15s; }
.social-row a:hover { color: #fff; }
.social-row svg { width: 18px; height: 18px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Accessibility ---------- */
.skip-link { position: absolute; left: -9999px; top: 0; background: #fff; color: #000; padding: 10px 16px; border-radius: 0 0 10px 0; z-index: 999; }
.skip-link:focus { left: 0; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
