/* =============================================================
   KD Systems — Design System v2
   Palette: #3590F3 / #62BFED / #2A2B2A  ·  Accents: violet + cyan
   Font: Poppins  ·  Tighter rhythm, livelier surfaces
   ============================================================= */

:root {
  /* Brand */
  --primary: #3590F3;
  --primary-dark: #0177E3;
  --primary-deep: #0a5bbf;
  --secondary: #62BFED;
  --accent: #0085FF;
  --violet: #7b61ff;
  --cyan: #22c9e0;
  --lilac: #C2BBF0;
  --lilac-soft: #F1E3F3;

  /* Ink / neutrals */
  --ink: #0e1729;
  --ink-2: #2A2B2A;
  --muted: #414d63;
  --muted-2: #6b7686;
  --line: #e8edf4;
  --line-2: #eef2f8;

  /* Surfaces */
  --bg: #ffffff;
  --bg-soft: #f5f9ff;
  --bg-blue: #E7F6FF;
  --navy: #0a1020;
  --navy-2: #0f1830;

  /* Effects */
  --grad-hero: linear-gradient(120deg, #0177E3 0%, #3590F3 40%, #62BFED 75%, #7b61ff 110%);
  --grad-brand: linear-gradient(135deg, #0177E3 0%, #3590F3 50%, #62BFED 100%);
  --grad-vivid: linear-gradient(115deg, #4f7cff 0%, #3590F3 45%, #22c9e0 100%);
  --grad-text: linear-gradient(95deg, #075ec9 0%, #2f86f0 50%, #1550c4 100%);
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .06), 0 1px 3px rgba(16, 24, 40, .08);
  --shadow: 0 10px 30px -8px rgba(16, 24, 40, .12);
  --shadow-lg: 0 30px 70px -22px rgba(24, 74, 143, .34);
  --shadow-blue: 0 14px 32px -10px rgba(53, 144, 243, .55);

  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);

  /* Rhythm — tightened */
  --sec-y: 76px;
  --sec-y-sm: 46px;
}

/* ---------- Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
::selection { background: rgba(53, 144, 243, .18); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: var(--sec-y) 0; position: relative; }
.section-sm { padding: var(--sec-y-sm) 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .76rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  color: var(--primary-dark);
  background: linear-gradient(180deg, #fff, var(--bg-blue));
  border: 1px solid rgba(53, 144, 243, .22);
  padding: 6px 15px; border-radius: 999px; margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(53,144,243,.08);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px rgba(53,144,243,.16); }
.section-head { max-width: 720px; margin: 0 auto 42px; }
.section-head.center { text-align: center; }

h1, h2, h3, h4 { line-height: 1.12; font-weight: 700; color: var(--ink); letter-spacing: -.025em; }
h1 { font-size: clamp(2.3rem, 5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.7rem); font-weight: 700; }
h3 { font-size: 1.28rem; }
.lead { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--muted); }
.text-grad {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  font-weight: 800;
}
@keyframes shine { to { background-position: 200% center; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: .96rem; line-height: 1;
  padding: 14px 26px; border-radius: 12px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap; cursor: pointer; position: relative; overflow: hidden;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-vivid); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%); transform: translateX(-120%); transition: transform .7s var(--ease); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -10px rgba(53,144,243,.65); }
.btn-primary:hover::after { transform: translateX(120%); }
.btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--primary); color: var(--primary-dark); box-shadow: 0 10px 24px -10px rgba(53,144,243,.4); }
.btn-light { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn-light:hover { background: rgba(255,255,255,.24); transform: translateY(-3px); }
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-block { width: 100%; }
.arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow, .link-arrow:hover .arrow { transform: translateX(4px); }
.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--primary-dark); }
.link-arrow .arrow { width: 16px; height: 16px; }

/* ================= HEADER ================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s, background .3s;
}
.site-header.scrolled { box-shadow: 0 6px 22px rgba(16,24,40,.08); border-color: var(--line-2); background: rgba(255,255,255,.9); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.24rem; letter-spacing: -.02em; color: var(--ink); }
.brand img { height: 36px; width: auto; }
.brand .tm { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { padding: 9px 15px; border-radius: 10px; font-weight: 500; color: var(--muted); transition: color .2s, background .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: var(--bg-soft); }
.nav-links a.active { color: var(--primary-dark); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; }
.nav-toggle span { position: relative; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ================= HERO ================= */
.hero { position: relative; padding: 32px 0 48px; overflow: hidden; isolation: isolate; }
.hero-copy > .eyebrow { margin-bottom: 12px; }
.hero-bg { position: absolute; inset: 0; z-index: -2; background:
    radial-gradient(48% 46% at 84% 6%, rgba(98,191,237,.28), transparent 62%),
    radial-gradient(42% 46% at 6% 16%, rgba(123,97,255,.20), transparent 62%),
    radial-gradient(60% 50% at 50% 120%, rgba(34,201,224,.16), transparent 60%),
    linear-gradient(180deg, #fbfdff 0%, #eef5ff 100%);
}
.hero-bg::after { /* subtle grid */
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(53,144,243,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(53,144,243,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(80% 70% at 50% 30%, #000 40%, transparent 100%);
  mask-image: radial-gradient(80% 70% at 50% 30%, #000 40%, transparent 100%);
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(64px); opacity: .55; z-index: -1; animation: drift 14s ease-in-out infinite; }
.hero-blob.b1 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(53,144,243,.55), transparent 70%); top: -110px; right: -70px; }
.hero-blob.b2 { width: 320px; height: 320px; background: radial-gradient(circle, rgba(123,97,255,.45), transparent 70%); bottom: -130px; left: -50px; animation-delay: -7s; }
@keyframes drift { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-18px, 20px); } }
.hero-grid { display: grid; grid-template-columns: 1fr 1.02fr; gap: 48px; align-items: center; }
.hero h1 { margin-bottom: 12px; font-size: clamp(2.05rem, 4.3vw, 3.25rem); }
.rotator { display: inline-grid; }
.rotator > span {
  grid-area: 1 / 1; opacity: 0; transform: translateY(14px); transition: opacity .5s, transform .5s;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  white-space: nowrap; font-weight: 800;
}
.rotator > span.is-active { opacity: 1; transform: translateY(0); }
.hero-sub { font-size: clamp(1.02rem, 1.5vw, 1.16rem); color: var(--muted); max-width: 520px; margin-bottom: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.hero-trust { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; color: var(--muted); font-size: .88rem; font-weight: 500; }
.hero-trust .dot { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 17px; height: 17px; color: var(--primary); }

/* Hero visual wrapper */
.hero-visual { position: relative; }

/* ---- Legacy hero-card (still used on about.html) ---- */
.hero-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); padding: 24px; position: relative; overflow: hidden; }
.hero-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--grad-vivid); }
.hero-card-top { display: flex; align-items: center; justify-content: space-between; margin: 6px 0 20px; }
.hero-card-top .dots { display: flex; gap: 6px; }
.hero-card-top .dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.hero-card-top .dots i:nth-child(1){ background:#ff5f57;} .hero-card-top .dots i:nth-child(2){ background:#febc2e;} .hero-card-top .dots i:nth-child(3){ background:#28c840;}
.hero-card-top .tag { font-size: .72rem; font-weight: 600; color: var(--primary-dark); background: var(--bg-blue); padding: 5px 12px; border-radius: 999px; }
.hero-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.hero-stat { background: var(--bg-soft); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 13px; text-align: center; }
.hero-stat b { display: block; font-size: 1.4rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; }
.hero-stat span { font-size: .72rem; color: var(--muted); font-weight: 500; }

/* ================= HERO CONSOLE (new realistic dashboard) ================= */
.console {
  position: relative; border-radius: 20px; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg); overflow: hidden;
  transform: perspective(2200px) rotateY(-3deg); transform-origin: center;
  transition: transform .5s var(--ease);
}
.hero-visual:hover .console { transform: perspective(2200px) rotateY(0deg); }
.console-bar { display: flex; align-items: center; justify-content: space-between; padding: 11px 15px; background: linear-gradient(180deg,#fbfdff,#f4f8fe); border-bottom: 1px solid var(--line-2); }
.console-bar .left { display: flex; align-items: center; gap: 11px; }
.console-bar .dots { display: flex; gap: 6px; }
.console-bar .dots i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.console-bar .dots i:nth-child(1){ background:#ff5f57;} .console-bar .dots i:nth-child(2){ background:#febc2e;} .console-bar .dots i:nth-child(3){ background:#28c840;}
.console-bar .url { font-size: .72rem; font-weight: 500; color: var(--muted-2); background: #fff; border: 1px solid var(--line); padding: 4px 12px; border-radius: 7px; display: flex; align-items: center; gap: 6px; }
.console-bar .url svg { width: 11px; height: 11px; color: #28c840; }
.console-bar .right { display: flex; gap: 6px; }
.console-bar .right i { width: 8px; height: 8px; border-radius: 2px; background: var(--line); display: block; }

.console-body { display: grid; grid-template-columns: 52px 1fr; min-height: 340px; }
.console-nav { background: linear-gradient(180deg,#0e1a34,#0a1225); display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 14px 0; }
.console-nav .logo { width: 30px; height: 30px; border-radius: 9px; background: var(--grad-vivid); display: grid; place-items: center; color: #fff; margin-bottom: 8px; font-weight: 800; font-size: .82rem; }
.console-nav a { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; color: #7f8db0; transition: .2s; }
.console-nav a svg { width: 17px; height: 17px; }
.console-nav a.on, .console-nav a:hover { background: rgba(53,144,243,.18); color: #cfe3ff; }
.console-nav .sp { flex: 1; }
.console-nav .av { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg,#7b61ff,#22c9e0); }

.console-main { padding: 16px 16px 18px; background:
    radial-gradient(60% 40% at 100% 0%, rgba(53,144,243,.05), transparent 60%); }
.console-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.console-head h4 { font-size: 1rem; letter-spacing: -.02em; }
.console-head .sub { font-size: .68rem; color: var(--muted-2); font-weight: 500; }
.console-live { display: inline-flex; align-items: center; gap: 6px; font-size: .66rem; font-weight: 600; color: #12864a; background: #e9faf0; border: 1px solid #c3ecd3; padding: 4px 10px; border-radius: 999px; }
.console-live .pulse { width: 7px; height: 7px; border-radius: 50%; background: #16a34a; box-shadow: 0 0 0 0 rgba(22,163,74,.5); animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(22,163,74,.5);} 70% { box-shadow: 0 0 0 7px rgba(22,163,74,0);} 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0);} }

.console-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-bottom: 12px; }
.kpi { background: #fff; border: 1px solid var(--line-2); border-radius: 12px; padding: 10px 11px; }
.kpi .k-label { font-size: .62rem; color: var(--muted-2); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.kpi .k-val { font-size: 1.18rem; font-weight: 800; letter-spacing: -.03em; color: var(--ink); margin: 2px 0 3px; }
.kpi .k-delta { display: inline-flex; align-items: center; gap: 3px; font-size: .64rem; font-weight: 700; padding: 2px 6px; border-radius: 6px; }
.kpi .k-delta.up { color: #12864a; background: #e9faf0; }
.kpi .k-delta.down { color: #c0392b; background: #fdecea; }
.kpi .k-delta svg { width: 10px; height: 10px; }

.console-chart { background: #fff; border: 1px solid var(--line-2); border-radius: 12px; padding: 12px 12px 6px; margin-bottom: 12px; }
.console-chart .c-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.console-chart .c-top b { font-size: .78rem; }
.console-chart .c-legend { display: flex; gap: 10px; }
.console-chart .c-legend span { font-size: .62rem; color: var(--muted); display: inline-flex; align-items: center; gap: 4px; }
.console-chart .c-legend i { width: 8px; height: 8px; border-radius: 3px; display: block; }
.console-chart svg { width: 100%; height: 92px; display: block; }
.c-line { fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 600; stroke-dashoffset: 600; animation: draw 2.2s var(--ease) forwards .3s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.c-area { opacity: 0; animation: fadein 1.2s ease forwards 1.4s; }
@keyframes fadein { to { opacity: 1; } }
.c-dot { opacity: 0; animation: fadein .5s ease forwards 2.1s; }

.console-feed { display: grid; gap: 7px; }
.feed-row { display: flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line-2); border-radius: 10px; padding: 8px 10px; }
.feed-row .fic { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; color: #fff; flex: none; }
.feed-row .ft { flex: 1; min-width: 0; }
.feed-row .ft b { font-size: .72rem; font-weight: 600; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.feed-row .ft span { font-size: .62rem; color: var(--muted-2); }
.feed-row .badge { font-size: .58rem; font-weight: 700; padding: 3px 8px; border-radius: 999px; flex: none; }
.badge.ok { color: #12864a; background: #e9faf0; }
.badge.run { color: #0177E3; background: #e7f2ff; }

/* Floating cards over console */
.hero-float {
  position: absolute; background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
  padding: 10px 14px; display: flex; align-items: center; gap: 11px; font-weight: 600; font-size: .82rem; z-index: 3;
  animation: floaty 5s ease-in-out infinite;
}
.hero-float .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: #fff; flex: none; }
.hero-float .ic svg { width: 18px; height: 18px; }
.hero-float small { display: block; font-weight: 500; color: var(--muted); font-size: .7rem; }
.hero-float.f1 { top: 30px; left: -30px; }
.hero-float.f2 { bottom: 34px; right: -24px; animation-delay: -2.4s; }
@keyframes floaty { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-11px);} }

/* ================= TRUST STRIP ================= */
.marquee-wrap { padding: 26px 0; border-block: 1px solid var(--line-2); background: #fff; overflow: hidden; }
.marquee-label { text-align: center; font-size: .74rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; }
.marquee-track-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee { display: flex; gap: 56px; align-items: center; width: max-content; animation: scrollX 28s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee span { font-weight: 700; font-size: 1.2rem; color: #b7c2d0; letter-spacing: -.01em; transition: color .25s; white-space: nowrap; }
.marquee span:hover { color: var(--primary); }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ================= CARD GRID ================= */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: var(--grad-vivid);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .3s; pointer-events: none; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card:hover::before { opacity: 1; }
.card-icon { width: 66px; height: 66px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 18px; background: linear-gradient(160deg, var(--bg-blue), #fff); border: 1px solid var(--line-2); box-shadow: inset 0 1px 0 #fff; }
.card-icon img { width: 40px; height: 40px; }
.card h3 { margin-bottom: 9px; }
.card p { color: var(--muted); font-size: .96rem; }
.card .card-tag { position: absolute; top: 18px; right: 18px; font-size: .66rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--primary-dark); background: var(--bg-blue); padding: 5px 11px; border-radius: 999px; }
.card-list { margin-top: 16px; display: grid; gap: 9px; }
.card-list li { display: flex; gap: 9px; align-items: flex-start; font-size: .92rem; color: var(--muted); }
.card-list li svg { width: 17px; height: 17px; color: var(--primary); flex: none; margin-top: 3px; }

/* ================= VISION / SPLIT ================= */
.vision { background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%); }
.vision-inner {
  background: var(--navy);
  background-image: radial-gradient(70% 120% at 100% 0%, rgba(53,144,243,.4), transparent 55%), radial-gradient(60% 100% at 0% 100%, rgba(123,97,255,.28), transparent 55%);
  border-radius: var(--radius-xl); padding: clamp(34px, 5vw, 60px); color: #fff; text-align: center; position: relative; overflow: hidden;
}
.vision-inner h2 { color: #fff; margin-bottom: 16px; }
.vision-inner p { color: rgba(255,255,255,.94); font-size: clamp(1.05rem, 1.8vw, 1.4rem); max-width: 780px; margin: 0 auto; font-weight: 400; }
.vision-inner .eyebrow { background: rgba(255,255,255,.1); color: #cfe3ff; border-color: rgba(255,255,255,.2); }
.vision-inner .eyebrow::before { background: var(--secondary); }

/* ================= NEW LAUNCHES ================= */
.launch-row { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.launch-row + .launch-row { margin-top: 56px; }
.launch-row.reverse .launch-media { order: 2; }
.launch-media {
  position: relative; border-radius: var(--radius-xl); padding: clamp(20px, 3vw, 34px); display: grid; place-items: center;
  background: radial-gradient(120% 120% at 100% 0%, rgba(53,144,243,.14), transparent 55%), linear-gradient(160deg, var(--bg-blue), #fff);
  border: 1px solid var(--line-2); overflow: hidden; min-height: 300px;
}
.launch-media.tint-lilac { background: radial-gradient(120% 120% at 0% 0%, rgba(123,97,255,.16), transparent 55%), linear-gradient(160deg, #efeaff, #fff); }
.launch-media::after { content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(53,144,243,.18), transparent 70%); filter: blur(12px); top: -40px; right: -40px; }
.launch-media > img { width: min(56%, 240px); position: relative; z-index: 1; filter: drop-shadow(0 22px 30px rgba(24,74,143,.22)); }
.launch-body .kicker { font-size: .76rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--primary); margin-bottom: 11px; display: block; }
.launch-body h3 { font-size: clamp(1.45rem, 2.5vw, 1.95rem); margin-bottom: 13px; }
.launch-body p { color: var(--muted); font-size: 1.02rem; margin-bottom: 18px; }
.launch-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.launch-tags span { font-size: .8rem; font-weight: 500; color: var(--muted); background: #fff; border: 1px solid var(--line); padding: 6px 13px; border-radius: 999px; }

/* ================= SECURITY ================= */
.security { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.security::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 20% 0%, rgba(53,144,243,.25), transparent 55%), radial-gradient(50% 70% at 100% 100%, rgba(123,97,255,.2), transparent 55%); }
.security .container { position: relative; }
.security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.security h2 { color: #fff; }
.security .lead { color: rgba(255,255,255,.88); }
.security-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.sec-badge { display: flex; align-items: center; gap: 9px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); padding: 11px 16px; border-radius: 12px; font-weight: 600; font-size: .9rem; }
.sec-badge svg { width: 21px; height: 21px; color: var(--secondary); }
.security-media { border-radius: var(--radius-xl); overflow: hidden; background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.1); padding: 18px; }

/* ================= STATS ================= */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 18px 14px; border-radius: var(--radius-lg); background: linear-gradient(180deg,#fff,var(--bg-soft)); border: 1px solid var(--line-2); transition: transform .3s var(--ease), box-shadow .3s; }
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stat b { display: block; font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 800; line-height: 1; letter-spacing: -.03em; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat span { color: var(--muted); font-weight: 500; margin-top: 7px; display: block; font-size: .92rem; }

/* ================= TESTIMONIALS ================= */
.testi { background: linear-gradient(180deg, var(--bg-soft), #fff); overflow: hidden; }
.testi-track-wrap { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.testi-track { display: flex; gap: 20px; width: max-content; animation: scrollX 46s linear infinite; }
.testi-track:hover { animation-play-state: paused; }
.testi-card { width: 360px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); transition: box-shadow .3s, transform .3s; }
.testi-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.testi-stars { display: flex; gap: 2px; margin-bottom: 12px; color: #f5a623; font-size: 1.05rem; letter-spacing: 1px; }
.testi-card p { color: var(--ink-2); font-size: 1rem; line-height: 1.55; margin-bottom: 18px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-person img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--bg-blue); }
.testi-person b { display: block; font-size: .95rem; }
.testi-person span { font-size: .82rem; color: var(--muted); }
.testi-rate { margin-left: auto; font-weight: 700; color: var(--primary-dark); font-size: .92rem; display: flex; align-items: center; gap: 4px; }
.testi-rate svg { width: 14px; height: 14px; color: #f5a623; }

/* ================= CTA BAND ================= */
.cta-band { padding: 34px 0 var(--sec-y); }
.cta-inner {
  background: var(--grad-vivid); border-radius: var(--radius-xl); padding: clamp(36px, 5vw, 60px);
  text-align: center; color: #fff; position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-inner::before, .cta-inner::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.14); }
.cta-inner::before { width: 280px; height: 280px; top: -110px; right: -50px; }
.cta-inner::after { width: 200px; height: 200px; bottom: -100px; left: -30px; }
.cta-inner > * { position: relative; }
.cta-inner h2 { color: #fff; margin-bottom: 14px; }
.cta-inner p { color: rgba(255,255,255,.92); font-size: 1.1rem; max-width: 560px; margin: 0 auto 24px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-inner .btn-primary { background: #fff; color: var(--primary-dark); box-shadow: 0 14px 30px rgba(0,0,0,.18); }
.cta-inner .btn-primary:hover { box-shadow: 0 22px 44px rgba(0,0,0,.26); }

/* ================= CONTACT ================= */
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 44px; align-items: start; }
.contact-info .info-item { display: flex; gap: 15px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line-2); }
.contact-info .info-item:last-child { border-bottom: none; }
.info-item .ic { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--bg-blue); color: var(--primary-dark); flex: none; }
.info-item .ic svg { width: 21px; height: 21px; }
.info-item b { display: block; font-size: .98rem; }
.info-item span, .info-item a { color: var(--muted); font-size: .94rem; }
.info-item a:hover { color: var(--primary-dark); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3.5vw, 36px); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: .86rem; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.field label .req { color: var(--primary); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 11px;
  background: var(--bg-soft); color: var(--ink); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(53,144,243,.12); }
.field textarea { resize: vertical; min-height: 104px; }
.check { display: flex; align-items: flex-start; gap: 10px; font-size: .86rem; color: var(--muted); margin: 4px 0 18px; }
.check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--primary); flex: none; }
.check a { color: var(--primary-dark); font-weight: 600; }
.form-note { margin-top: 12px; font-size: .82rem; color: var(--muted); text-align: center; }
.form-success { display: none; text-align: center; padding: 18px; border-radius: 12px; background: #eafaf0; border: 1px solid #bfe8cf; color: #14804a; font-weight: 600; margin-bottom: 15px; }
.form-success.show { display: block; }

/* ================= PAGE HERO (inner pages) ================= */
.page-hero { position: relative; padding: 62px 0 52px; overflow: hidden; isolation: isolate; text-align: center; }
.page-hero-bg { position: absolute; inset: 0; z-index: -1; background:
    radial-gradient(55% 60% at 50% 0%, rgba(53,144,243,.18), transparent 60%),
    radial-gradient(40% 50% at 90% 20%, rgba(123,97,255,.14), transparent 60%),
    linear-gradient(180deg, #fbfdff, #eef5ff); }
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { max-width: 640px; margin: 0 auto; }
.breadcrumb { display: inline-flex; gap: 8px; align-items: center; font-size: .84rem; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--primary-dark); }
.breadcrumb .sep { color: var(--muted-2); }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { position: relative; padding: 26px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); transition: transform .3s var(--ease), box-shadow .3s; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step .num { width: 44px; height: 44px; border-radius: 13px; background: var(--grad-vivid); color: #fff; font-weight: 700; display: grid; place-items: center; margin-bottom: 14px; font-size: 1.05rem; box-shadow: var(--shadow-blue); }
.step h3 { font-size: 1.08rem; margin-bottom: 7px; }
.step p { color: var(--muted); font-size: .91rem; }

/* Value cards */
.value-card { display: flex; gap: 15px; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(53,144,243,.3); }
.value-card .vic { width: 50px; height: 50px; border-radius: 14px; background: linear-gradient(160deg,var(--bg-blue),#fff); border: 1px solid var(--line-2); color: var(--primary-dark); display: grid; place-items: center; flex: none; }
.value-card .vic svg { width: 25px; height: 25px; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 5px; }
.value-card p { color: var(--muted); font-size: .93rem; }

/* FAQ */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 15px; margin-bottom: 12px; overflow: hidden; background: #fff; transition: border-color .25s, box-shadow .25s; }
.faq-item.open { border-color: rgba(53,144,243,.35); box-shadow: var(--shadow); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 22px; font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.faq-q .chev { width: 22px; height: 22px; flex: none; transition: transform .3s; color: var(--primary); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 22px 20px; color: var(--muted); }

/* ================= FOOTER ================= */
.site-footer { background: var(--navy); color: #cbd5e1; padding: 64px 0 0; position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(53,144,243,.5), transparent); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 36px; padding-bottom: 44px; }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand .brand img { filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { color: #94a3b8; font-size: .93rem; max-width: 300px; margin-bottom: 18px; }
.footer-social { display: flex; gap: 9px; }
.footer-social a { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: #cbd5e1; transition: .25s; }
.footer-social a:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 { color: #fff; font-size: .92rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: #94a3b8; font-size: .93rem; transition: color .2s, padding .2s; }
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; color: #94a3b8; font-size: .92rem; margin-bottom: 11px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--secondary); flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; font-size: .86rem; color: #94a3b8; }
.footer-bottom .fnav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a:hover { color: #fff; }

/* ================= REVEAL ANIMATION ================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; } .reveal.d2 { transition-delay: .14s; } .reveal.d3 { transition-delay: .21s; } .reveal.d4 { transition-delay: .28s; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .console { transform: none; }
  .c-line { stroke-dashoffset: 0; } .c-area, .c-dot { opacity: 1; }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .hero-grid { gap: 34px; }
  .console { transform: none; }
}
@media (max-width: 940px) {
  :root { --sec-y: 60px; --sec-y-sm: 40px; }
  .hero { padding: 44px 0 52px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { text-align: center; max-width: 640px; margin: 0 auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }
  .security-grid, .contact-grid, .launch-row, .launch-row.reverse .launch-media { grid-template-columns: 1fr; }
  .launch-row.reverse .launch-media { order: 0; }
  .launch-row { gap: 28px; }
  .grid-4, .stats-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 780px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: 70px 0 auto 0; background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); padding: 16px 22px 22px; display: none; flex-direction: column; gap: 4px; z-index: 99;
  }
  body.nav-open .nav-menu { display: flex; }
  .nav-menu a { padding: 13px 14px; border-radius: 12px; font-weight: 500; color: var(--ink); }
  .nav-menu a:hover, .nav-menu a.active { background: var(--bg-soft); color: var(--primary-dark); }
  .nav-menu .btn { margin-top: 8px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  :root { --sec-y: 48px; --sec-y-sm: 34px; }
  .hero { padding: 34px 0 44px; }
  .container { padding-inline: 16px; }
  .grid-4, .stats-grid, .steps, .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .btn { width: 100%; }
  .hero-actions, .cta-actions { width: 100%; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .console-nav { display: none; }
  .console-body { grid-template-columns: 1fr; min-height: 0; }
  .hero-float.f1 { left: 6px; top: 14px; }
  .hero-float.f2 { right: 6px; bottom: 18px; }
  .testi-card { width: 300px; }
  .section-head { margin-bottom: 30px; }
}
@media (max-width: 380px) {
  .hero-float { display: none; }
  .console-kpis { grid-template-columns: 1fr 1fr; }
  .console-kpis .kpi:last-child { display: none; }
}

/* =============================================================
   v3 — Aurora, dividers, app-window mockups, micro-interactions
   ============================================================= */

/* ---- Scroll progress bar ---- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200; background: var(--grad-vivid); box-shadow: 0 0 12px rgba(53,144,243,.6); transition: width .1s linear; }

/* ---- Aurora hero layer ---- */
.hero-aurora { position: absolute; inset: -20% -10% auto -10%; height: 130%; z-index: -1; pointer-events: none;
  background:
    radial-gradient(38% 45% at 22% 32%, rgba(123,97,255,.34), transparent 62%),
    radial-gradient(34% 42% at 78% 28%, rgba(34,201,224,.32), transparent 62%),
    radial-gradient(40% 46% at 55% 66%, rgba(53,144,243,.30), transparent 62%);
  filter: blur(46px) saturate(120%); opacity: .8; animation: aurora 18s ease-in-out infinite alternate;
}
@keyframes aurora {
  0%   { transform: translate3d(-3%, 0, 0) scale(1); }
  50%  { transform: translate3d(4%, 2%, 0) scale(1.08); }
  100% { transform: translate3d(-2%, -2%, 0) scale(1.02); }
}
/* cursor-follow glow inside hero */
.hero-glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; z-index: -1; pointer-events: none;
  background: radial-gradient(circle, rgba(53,144,243,.18), transparent 65%); left: 0; top: 0; transform: translate(-50%,-50%);
  opacity: 0; transition: opacity .4s; mix-blend-mode: multiply; }
.hero:hover .hero-glow { opacity: 1; }

/* ---- Section wave dividers ---- */
.divider { position: relative; line-height: 0; }
.divider svg { display: block; width: 100%; height: clamp(40px, 6vw, 80px); }
.divider--flip svg { transform: rotate(180deg); }

/* ---- Card refinements ---- */
.card-icon { transition: transform .35s var(--ease); }
.card:hover .card-icon { transform: translateY(-3px) rotate(-4deg) scale(1.05); }

/* ---- Tilt (cards + console + appwin) ---- */
.tilt { transform-style: preserve-3d; transition: transform .3s var(--ease); will-change: transform; }
@media (hover: none) { .tilt { transform: none !important; } }

/* =========== APP-WINDOW PRODUCT MOCKUPS =========== */
.appwin {
  width: 100%; max-width: 452px; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; box-shadow: var(--shadow-lg); overflow: hidden; position: relative; z-index: 1;
}
.launch-row .appwin { transform: perspective(1500px) rotateY(6deg); transition: transform .5s var(--ease); }
.launch-row.reverse .appwin { transform: perspective(1500px) rotateY(-6deg); }
.launch-media:hover .appwin { transform: perspective(1500px) rotateY(0deg); }
.aw-bar { display: flex; align-items: center; gap: 9px; padding: 9px 12px; background: linear-gradient(180deg,#fbfdff,#f3f7fd); border-bottom: 1px solid var(--line-2); }
.aw-bar .dots { display: flex; gap: 5px; }
.aw-bar .dots i { width: 9px; height: 9px; border-radius: 50%; display: block; }
.aw-bar .dots i:nth-child(1){ background:#ff5f57;} .aw-bar .dots i:nth-child(2){ background:#febc2e;} .aw-bar .dots i:nth-child(3){ background:#28c840;}
.aw-title { display: flex; align-items: center; gap: 7px; font-size: .74rem; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.aw-title img { width: 20px; height: 20px; border-radius: 6px; }
.aw-live { margin-left: auto; font-size: .58rem; font-weight: 700; color: #12864a; background: #e9faf0; border: 1px solid #c3ecd3; padding: 3px 8px; border-radius: 999px; display: inline-flex; align-items: center; gap: 5px; }
.aw-live .pulse { width: 6px; height: 6px; border-radius: 50%; background: #16a34a; box-shadow: 0 0 0 0 rgba(22,163,74,.5); animation: pulse 1.8s infinite; }
.aw-body { padding: 13px; display: grid; gap: 10px; }

/* generic list rows */
.aw-list { display: grid; gap: 7px; }
.aw-item { display: flex; align-items: center; gap: 9px; border: 1px solid var(--line-2); border-radius: 10px; padding: 8px 10px; background: #fff; }
.aw-item .av { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; color: #fff; font-size: .6rem; font-weight: 800; flex: none; }
.aw-item .t { flex: 1; min-width: 0; }
.aw-item .t b { font-size: .72rem; font-weight: 600; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.aw-item .t span { font-size: .6rem; color: var(--muted-2); }
.aw-badge { font-size: .55rem; font-weight: 700; padding: 3px 8px; border-radius: 999px; flex: none; letter-spacing: .02em; }
.aw-badge.ok { color: #12864a; background: #e9faf0; }
.aw-badge.run { color: #0177E3; background: #e7f2ff; }
.aw-badge.wait { color: #8a6d00; background: #fff6db; }
.aw-badge.map { color: #6d40e6; background: #f0eaff; }
.aw-dot { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.aw-dot.g { background: #16a34a; box-shadow: 0 0 0 3px rgba(22,163,74,.15); }
.aw-dot.a { background: #f5a623; box-shadow: 0 0 0 3px rgba(245,166,35,.15); }

/* header strip with action */
.aw-strip { display: flex; align-items: center; justify-content: space-between; }
.aw-strip .h { font-size: .72rem; font-weight: 700; }
.aw-strip .sub { font-size: .58rem; color: var(--muted-2); font-weight: 500; }
.aw-btn { font-size: .6rem; font-weight: 700; color: #fff; background: var(--grad-vivid); padding: 5px 11px; border-radius: 8px; display: inline-flex; align-items: center; gap: 5px; box-shadow: 0 6px 14px -6px rgba(53,144,243,.6); }
.aw-btn svg { width: 11px; height: 11px; }

/* sync split panels */
.sync-grid { display: grid; grid-template-columns: 1fr 34px 1fr; gap: 8px; align-items: center; }
.sync-panel { border: 1px solid var(--line-2); border-radius: 11px; padding: 9px; background: linear-gradient(180deg,#fff,#fbfdff); }
.sync-panel .ph { font-size: .58rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; display: flex; align-items: center; gap: 5px; }
.sync-panel .ph i { width: 6px; height: 6px; border-radius: 2px; display: block; }
.sync-line { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.sync-line:last-child { margin-bottom: 0; }
.sync-line .bar { height: 6px; border-radius: 3px; background: var(--line); flex: 1; }
.sync-line .bar.b1 { width: 70%; background: linear-gradient(90deg,#3590F3,#62BFED); flex: none; }
.sync-line .bar.b2 { width: 90%; background: var(--line-2); flex: none; }
.sync-line .chk { width: 15px; height: 15px; border-radius: 50%; background: #e9faf0; color: #16a34a; display: grid; place-items: center; flex: none; }
.sync-line .chk svg { width: 9px; height: 9px; }
.sync-mid { display: grid; gap: 3px; justify-items: center; color: var(--primary); }
.sync-mid svg { width: 20px; height: 20px; }
.aw-progress { border: 1px solid var(--line-2); border-radius: 10px; padding: 9px 10px; }
.aw-progress .pl { display: flex; justify-content: space-between; font-size: .6rem; font-weight: 600; color: var(--muted); margin-bottom: 6px; }
.aw-progress .pl b { color: var(--ink); }
.aw-progress .track { height: 7px; border-radius: 5px; background: var(--line); overflow: hidden; }
.aw-progress .fill { height: 100%; border-radius: 5px; background: var(--grad-vivid); width: 0; animation: fillbar 2.4s var(--ease) forwards .3s; }
@keyframes fillbar { to { width: var(--pw, 88%); } }

/* mini metric + bars (labforge / partnerflow footer) */
.aw-bars { display: flex; align-items: flex-end; gap: 6px; height: 46px; padding: 8px 10px; border: 1px solid var(--line-2); border-radius: 10px; }
.aw-bars i { flex: 1; border-radius: 4px 4px 2px 2px; background: linear-gradient(180deg,#62BFED,#3590F3); opacity: .9; animation: growBar 1.1s var(--ease) both; }
@keyframes growBar { from { height: 0 !important; } }

@media (prefers-reduced-motion: reduce) {
  .hero-aurora { animation: none; }
  .aw-progress .fill { width: var(--pw, 88%); animation: none; }
  .launch-row .appwin, .launch-row.reverse .appwin { transform: none; }
}
@media (max-width: 560px) {
  .launch-row .appwin, .launch-row.reverse .appwin { transform: none; }
  .divider svg { height: 34px; }
}

/* =============================================================
   v4 — Richer interactive hero console
   ============================================================= */
.console-head { flex-wrap: wrap; gap: 8px; }
.seg { display: inline-flex; background: #eef3fa; border: 1px solid var(--line-2); border-radius: 10px; padding: 3px; gap: 2px; }
.seg-btn { font-size: .66rem; font-weight: 600; color: var(--muted); padding: 5px 10px; border-radius: 7px; transition: background .2s, color .2s, box-shadow .2s; white-space: nowrap; }
.seg-btn:hover { color: var(--primary-dark); }
.seg-btn.on { background: #fff; color: var(--primary-dark); box-shadow: 0 1px 3px rgba(16,24,40,.14); }

/* KPI + sparkline */
.console-kpis .kpi { display: flex; flex-direction: column; }
.k-foot { display: flex; align-items: center; justify-content: space-between; gap: 6px; margin-top: 5px; }
.spark { width: 48px; height: 18px; flex: none; overflow: visible; }
.spark polyline { fill: none; stroke: #3590F3; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.spark.c2 polyline { stroke: #22c9e0; }
.spark.c3 polyline { stroke: #16a34a; }

/* panels grid */
.console-panels { display: grid; grid-template-columns: 1.55fr 1fr; gap: 10px; margin-bottom: 10px; }
.panel { background: #fff; border: 1px solid var(--line-2); border-radius: 12px; padding: 11px 12px; }
.p-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.p-head b { font-size: .74rem; }
.p-sub { font-size: .6rem; color: var(--muted-2); font-weight: 600; }

/* bar chart */
.chart2 { display: flex; gap: 7px; }
.y-axis { display: flex; flex-direction: column; justify-content: space-between; font-size: .54rem; color: var(--muted-2); font-weight: 700; height: 92px; padding-bottom: 16px; text-align: right; }
.plot { position: relative; flex: 1; height: 92px; }
.plot .grid { position: absolute; left: 0; right: 0; height: 1px; background: var(--line-2); }
.plot .grid:nth-child(1){ top: 0; } .plot .grid:nth-child(2){ top: 33.3%; } .plot .grid:nth-child(3){ top: 66.6%; }
.bars { position: absolute; inset: 0 0 16px 0; display: flex; align-items: flex-end; gap: 6px; }
.bars i { position: relative; flex: 1; height: 0; border-radius: 4px 4px 2px 2px; background: linear-gradient(180deg,#a8d0fb,#4a9ff5); transition: height .7s var(--ease), filter .2s; }
.bars i.hot { background: linear-gradient(180deg,#5aa8ff,#0177E3); box-shadow: 0 6px 14px -5px rgba(1,119,227,.6); }
.bars i:hover { filter: brightness(1.06); }
.bars i em { position: absolute; bottom: -15px; left: -2px; right: -2px; text-align: center; font-size: .5rem; color: var(--muted-2); font-weight: 600; font-style: normal; }
.bars i .tip { position: absolute; top: -21px; left: 50%; transform: translateX(-50%); background: var(--ink); color: #fff; font-size: .55rem; font-weight: 700; padding: 3px 7px; border-radius: 6px; white-space: nowrap; opacity: 0; animation: fadein .5s ease forwards 1.5s; z-index: 2; }
.bars i .tip::after { content: ""; position: absolute; bottom: -3px; left: 50%; transform: translateX(-50%) rotate(45deg); width: 6px; height: 6px; background: var(--ink); }

/* donut */
.panel-donut { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.donut { position: relative; width: 92px; height: 92px; }
.donut svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: #eaf0f8; stroke-width: 4; }
.ring-fg { fill: none; stroke: url(#donutGrad); stroke-width: 4; stroke-linecap: round; stroke-dasharray: 98 100; stroke-dashoffset: 98; transition: stroke-dashoffset 1.4s var(--ease); }
.donut-c { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; line-height: 1; }
.donut-c b { font-size: 1.2rem; font-weight: 800; letter-spacing: -.03em; }
.donut-c span { font-size: .5rem; color: var(--muted-2); font-weight: 600; margin-top: 2px; }
.donut-legend { display: flex; gap: 12px; margin-top: 9px; }
.donut-legend li { display: flex; align-items: center; gap: 5px; font-size: .58rem; color: var(--muted); font-weight: 500; }
.donut-legend i { width: 8px; height: 8px; border-radius: 3px; }
.donut-legend i.a { background: linear-gradient(135deg,#0177E3,#22c9e0); }
.donut-legend i.b { background: #e6edf6; }

/* table */
.panel-table { padding: 4px 12px 8px; }
.tbl-head, .tbl-row { display: grid; grid-template-columns: 1.3fr 1fr auto; align-items: center; gap: 8px; }
.tbl-head { font-size: .55rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted-2); padding: 7px 2px; border-bottom: 1px solid var(--line-2); }
.tbl-row { padding: 7px 2px; border-bottom: 1px solid var(--line-2); font-size: .7rem; }
.tbl-row:last-child { border-bottom: none; }
.tbl-row .svc { display: flex; align-items: center; gap: 7px; font-weight: 600; }
.tbl-row .svc i { width: 8px; height: 8px; border-radius: 3px; flex: none; }
.svc i.d1 { background: var(--grad-brand); }
.svc i.d2 { background: linear-gradient(135deg,#3590F3,#7b61ff); }
.svc i.d3 { background: linear-gradient(135deg,#22c9e0,#3590F3); }
.tbl-row .reg { color: var(--muted); font-size: .64rem; }
.ta-r { text-align: right; justify-self: end; }
.badge.wait { color: #8a6d00; background: #fff6db; }

@media (prefers-reduced-motion: reduce) {
  .ring-fg { stroke-dashoffset: 2; transition: none; }
  .bars i .tip { opacity: 1; animation: none; }
}
@media (max-width: 620px) {
  .console-panels { grid-template-columns: 1fr; }
  .panel-donut { flex-direction: row; gap: 16px; justify-content: flex-start; }
  .panel-donut .p-head { display: none; }
}

/* =============================================================
   v5 — Vibrant KPI tiles + bolder gauge
   ============================================================= */
.console-kpis { grid-template-columns: repeat(3, 1fr); gap: 9px; }
.kpi { position: relative; overflow: hidden; padding: 9px 10px 22px; border: 1px solid var(--line-2); border-radius: 12px; background: #fff; transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.kpi > *:not(.spark):not(.kpi-ic) { position: relative; z-index: 2; }
.kpi:hover { transform: translateY(-3px); box-shadow: 0 12px 24px -12px rgba(16,24,40,.28); }
.kpi-ic { position: absolute; top: 8px; right: 8px; width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center; color: #fff; box-shadow: 0 4px 9px -3px rgba(16,24,40,.4); z-index: 2; }
.kpi-ic svg { width: 12px; height: 12px; }
.kpi .k-label { display: block; font-size: .58rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.kpi .k-val { font-size: 1.24rem; font-weight: 800; letter-spacing: -.03em; color: var(--ink); margin: 2px 0 5px; line-height: 1.05; }
.kpi .k-delta { display: inline-flex; align-items: center; gap: 3px; font-size: .62rem; font-weight: 700; padding: 2px 8px; border-radius: 999px; }
.kpi .k-delta.up { color: #0a8a44; background: #e2f8ec; }
.kpi .k-delta svg { width: 11px; height: 11px; }
.kpi .spark { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 30px; z-index: 1; }
.kpi .spark .sp-line { fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.kpi-b { background: linear-gradient(165deg, #eaf3ff 0%, #fff 62%); border-color: #d9e9fb; }
.kpi-b .kpi-ic { background: linear-gradient(135deg, #0177E3, #4aa8f5); }
.kpi-v { background: linear-gradient(165deg, #f1edff 0%, #fff 62%); border-color: #e5ddfb; }
.kpi-v .kpi-ic { background: linear-gradient(135deg, #7b61ff, #a58bff); }
.kpi-g { background: linear-gradient(165deg, #e6f8ee 0%, #fff 62%); border-color: #cdeedb; }
.kpi-g .kpi-ic { background: linear-gradient(135deg, #0ea152, #4bd08a); }

/* bolder, glowing gauge */
.donut { width: 106px; height: 106px; filter: drop-shadow(0 7px 16px rgba(1,119,227,.32)); }
.ring-bg { stroke: #e9eff7; stroke-width: 5; }
.ring-fg { stroke-width: 5; }
.donut-c b { font-size: 1.55rem; font-weight: 800; letter-spacing: -.02em; }
.donut-c b i { font-size: .82rem; font-style: normal; font-weight: 700; color: var(--muted-2); margin-left: 1px; }
.panel-donut .p-sub { font-size: .58rem; color: var(--muted-2); font-weight: 600; }
.panel-donut .p-head { width: 100%; }

/* =============================================================
   v6 — clean KPI footer sparkline + open arc gauge
   ============================================================= */
.kpi { padding: 10px 11px 11px; }
.kpi .k-val { margin: 2px 0 0; }
.kpi .k-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 8px; }
.kpi .spark { position: static; width: 54px; height: 22px; flex: none; }
.kpi .spark .sp-line { stroke-width: 2; }

/* Arc gauge (270°, opening at the bottom) */
.donut { width: 112px; height: 112px; filter: drop-shadow(0 8px 16px rgba(1,119,227,.28)); }
.donut svg { transform: none; }
.donut .ring-bg { fill: none; stroke: #e4ebf4; stroke-width: 4.5; stroke-linecap: round; }
.donut .ring-fg { fill: none; stroke: url(#donutGrad); stroke-width: 4.5; stroke-linecap: round; stroke-dasharray: 100; stroke-dashoffset: 100; transition: stroke-dashoffset 1.5s var(--ease); }
.donut-c { padding-bottom: 10px; }
.donut-c b { font-size: 1.6rem; }

/* =============================================================
   v7 — Professional polish: breakdown panel, calmer tiles, spacing
   ============================================================= */
:root { --sec-y: 66px; --sec-y-sm: 42px; }
.section-head { margin-bottom: 36px; }

/* calmer, more professional KPI tiles */
.kpi-b { background: linear-gradient(180deg, #f4f8fe, #fff 70%); border-color: #e4ecf6; }
.kpi-v { background: linear-gradient(180deg, #f8f6ff, #fff 70%); border-color: #eae4f8; }
.kpi-g { background: linear-gradient(180deg, #f3fcf7, #fff 70%); border-color: #daeee3; }

/* Automation-by-product breakdown (replaces the donut) */
.panel-breakdown { display: flex; flex-direction: column; }
.p-badge { font-size: .58rem; font-weight: 700; color: var(--primary-dark); background: var(--bg-blue); border: 1px solid rgba(53,144,243,.18); padding: 3px 9px; border-radius: 999px; }
.bd-list { display: grid; gap: 13px; margin-top: 6px; }
.bd-list li { display: grid; grid-template-columns: 74px 1fr 28px; align-items: center; gap: 9px; }
.bd-name { font-size: .64rem; font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bd-name i { width: 8px; height: 8px; border-radius: 3px; flex: none; }
.bd-name i.d1 { background: var(--grad-brand); }
.bd-name i.d2 { background: linear-gradient(135deg, #3590F3, #7b61ff); }
.bd-name i.d3 { background: linear-gradient(135deg, #22c9e0, #3590F3); }
.bd-name i.d4 { background: linear-gradient(135deg, #7b61ff, #a58bff); }
.bd-bar { height: 7px; background: #eef2f8; border-radius: 5px; overflow: hidden; }
.bd-bar > i { display: block; height: 100%; width: 0; border-radius: 5px; background: var(--grad-vivid); transition: width 1.2s var(--ease); }
.bd-val { font-size: .64rem; font-weight: 700; color: var(--ink); text-align: right; }
@media (prefers-reduced-motion: reduce) { .bd-bar > i { transition: none; } }
