/* ============================================================
   MILIEU GLOBAL â€” Landing Design System (v2)
   ------------------------------------------------------------
   Visual language: premium AI engineering, enterprise, minimal.
   Motion: animated perspective grids, drifting mesh gradients,
   glass color overlays, marquee, magnetic CTAs. GPU-friendly.
   ============================================================ */

:root {
  --black: #050505;
  --panel: #0a0a0e;
  --panel-2: #0e0e15;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --white: #ffffff;
  --muted: #b8bcc9;
  --muted-2: #848995;
  --gold: #ffd34e;
  --gold-deep: #e8b73c;
  --blue: #4d8dff;
  --sky: #38bdf8;
  --violet: #8b7cf6;
  --green: #2ee6a8;
  --orange: #ff7a45;

  --display: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --body: "Inter", ui-sans-serif, system-ui, sans-serif;

  --grad-gold: linear-gradient(120deg, #ffe08a 0%, #ffd34e 45%, #ffb347 100%);
  --grad-blue: linear-gradient(120deg, #7fb0ff 0%, #4d8dff 50%, #38bdf8 100%);
  --grad-violet: linear-gradient(120deg, #b3a7ff 0%, #8b7cf6 100%);
  --grad-green: linear-gradient(120deg, #7ff0c8 0%, #2ee6a8 100%);

  --r: 18px;
  --r-sm: 12px;
  --container: 1180px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --fast: 0.25s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
address { font-style: normal; }
input, select { font-family: inherit; width: 100%; color: inherit; }
::selection { background: var(--gold); color: var(--black); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout ---------- */
.container { width: min(var(--container), 92%); margin-inline: auto; }
.container-narrow { max-width: 860px; width: 92%; }
.section { padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.section-alt { background: linear-gradient(180deg, rgba(13,13,20,0.55), rgba(5,5,5,0)); }
.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 300;
  background: var(--gold); color: var(--black);
  padding: 10px 18px; border-radius: 10px; font-weight: 700;
  transition: top var(--fast);
}
.skip-link:focus { top: 16px; }

/* ---------- Ambient layers ---------- */
.noise {
  position: fixed; inset: 0; z-index: 200;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed; top: 0; left: 0; z-index: 150;
  width: 520px; height: 520px; border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(77, 141, 255, 0.09), transparent 60%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
  will-change: transform;
}
body.has-glow .cursor-glow { opacity: 1; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.08; font-weight: 800; letter-spacing: -0.025em; }
.h1 { font-size: clamp(2.55rem, 6.4vw, 4.9rem); font-weight: 800; line-height: 1.04; }
.h2 { font-size: clamp(2rem, 4.2vw, 3.25rem); font-weight: 800; }
.h3 { font-size: clamp(1.35rem, 2.6vw, 1.85rem); font-weight: 800; }

.grad-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: shimmer 7s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

.lead-in { color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.18rem); margin-top: 18px; max-width: 640px; }
.center-text { margin-inline: auto; }
.center-head { text-align: center; }
.center-head .lead-in { margin-inline: auto; }
.center-head .head-kicker { justify-content: center; }
.center-head .grad-text { animation-duration: 9s; }

/* ---------- Section heads ---------- */
.head-row { max-width: 780px; margin-bottom: 52px; }
.head-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.head-kicker span:first-child { color: var(--muted-2); }
.head-kicker i { width: 30px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.head-row .lead-in { margin-top: 20px; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  font-family: var(--display); font-weight: 800;
  font-size: 0.98rem;
  padding: 16px 28px;
  border-radius: 14px;
  overflow: hidden;
  transition: transform var(--fast), box-shadow var(--fast), border-color var(--fast), background var(--fast);
  will-change: transform;
  line-height: 1;
  white-space: nowrap;
}
.btn .btn-arrow { display: inline-flex; transition: transform var(--fast); }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn:active { transform: scale(0.97); }

.btn-gold {
  background: var(--grad-gold);
  color: #191300;
  box-shadow: 0 12px 34px rgba(255, 211, 78, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(255, 211, 78, 0.38);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: rgba(255, 211, 78, 0.55); color: var(--gold); transform: translateY(-2px); }

.btn-sm { padding: 12px 20px; font-size: 0.9rem; border-radius: 12px; }
.btn-lg { padding: 19px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-shine {
  position: absolute; inset: 0 auto 0 0; width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: translateX(-150%) skewX(-18deg);
}
.btn:hover .btn-shine { animation: shine 0.9s var(--ease); }
@keyframes shine { to { transform: translateX(320%) skewX(-18deg); } }

/* ---------- Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(5, 5, 5, 0.6);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--fast), background var(--fast);
}
.site-header.scrolled { background: rgba(5, 5, 5, 0.85); border-bottom-color: var(--line); }

.progress {
  position: absolute; top: 0; left: 0; height: 2px;
  width: var(--progress, 0%);
  background: var(--grad-gold);
  box-shadow: 0 0 14px rgba(255, 211, 78, 0.7);
  z-index: 2;
}

.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 78px; }

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); flex: 0 0 auto; line-height: 0; }
.brand-logo {
  height: 40px; width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.4));
}
.brand-mark { display: inline-flex; filter: drop-shadow(0 0 18px rgba(255, 211, 78, 0.25)); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--display); font-weight: 800; font-size: 1.18rem; letter-spacing: 0.14em; }
.brand-sub { font-family: var(--display); font-weight: 700; font-size: 0.6rem; letter-spacing: 0.46em; color: var(--gold); }

.nav-links { display: none; }
.nav-links a { white-space: nowrap; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta { display: none; }
.nav-phone {
  display: none; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 700; font-size: 0.9rem; color: var(--muted);
  white-space: nowrap;
}
.nav-phone-ico {
  width: 30px; height: 30px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 211, 78, 0.4); color: var(--gold);
}
.nav-phone:hover { color: var(--gold); }

.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; padding: 10px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform var(--fast), opacity var(--fast); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links.open {
  display: flex; flex-direction: column;
  position: fixed; top: 78px; left: 0; right: 0;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(18px);
  padding: 20px 5%;
  border-bottom: 1px solid var(--line);
}
.nav-links.open a { padding: 14px 4px; font-family: var(--display); font-weight: 700; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav-links.open a:hover { color: var(--gold); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: calc(78px + clamp(70px, 11vw, 130px)) 0 clamp(40px, 5vw, 72px);
  overflow: hidden;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
}

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

.mesh {
  position: absolute; inset: -40%;
  background:
    radial-gradient(42% 38% at 22% 28%, rgba(77, 141, 255, 0.22), transparent 70%),
    radial-gradient(40% 36% at 78% 22%, rgba(139, 124, 246, 0.2), transparent 70%),
    radial-gradient(36% 34% at 60% 78%, rgba(46, 230, 168, 0.09), transparent 70%);
  filter: blur(40px);
  animation: drift 26s ease-in-out infinite alternate;
}
.mesh-b { background: radial-gradient(50% 44% at 82% 70%, rgba(255, 211, 78, 0.14), transparent 70%); animation-duration: 34s; animation-delay: -8s; }
.mesh-c { background: radial-gradient(40% 36% at 50% 20%, rgba(139, 124, 246, 0.22), transparent 70%), radial-gradient(40% 36% at 30% 70%, rgba(77, 141, 255, 0.18), transparent 70%); filter: blur(44px); animation: drift 30s ease-in-out infinite alternate; }
@keyframes drift {
  0% { transform: translate3d(-2%, -1%, 0) scale(1); }
  100% { transform: translate3d(2%, 2%, 0) scale(1.06); }
}

/* Moving perspective grid floors */
.grid-floor {
  position: absolute;
  left: -50%; right: -50%;
  height: 95%;
  background-image:
    linear-gradient(rgba(77, 141, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 141, 255, 0.11) 1px, transparent 1px);
  background-size: 66px 66px;
  transform: perspective(620px) rotateX(74deg);
  transform-origin: 50% 100%;
  animation: gridFlow 3.2s linear infinite;
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.9), transparent 78%);
  mask-image: linear-gradient(to top, rgba(0,0,0,0.9), transparent 78%);
  will-change: background-position;
}
.floor-1 { bottom: -52%; opacity: 0.9; }
.floor-2 { bottom: -58%; background-size: 110px 110px; animation-duration: 5.4s; animation-direction: reverse; opacity: 0.5; }
.floor-3 { bottom: -30%; background-size: 60px 60px; animation-duration: 4s; opacity: 0.8; }
@keyframes gridFlow { to { background-position: 66px 66px; } }
.floor-2 { animation-name: gridFlow2; }
@keyframes gridFlow2 { to { background-position: -110px -110px; } }
.floor-3 { animation-name: gridFlow3; }
@keyframes gridFlow3 { to { background-position: 60px 60px; } }

.dotfield {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1.5px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 30% 20%, black, transparent 75%);
  mask-image: radial-gradient(ellipse 60% 60% at 30% 20%, black, transparent 75%);
  animation: dotShift 14s linear infinite;
}
@keyframes dotShift { to { background-position: 46px 46px; } }

.beam {
  position: absolute; top: -30%; width: 1px; height: 160%;
  background: linear-gradient(180deg, transparent, rgba(255, 211, 78, 0.4), transparent);
  animation: beam 9s ease-in-out infinite;
  opacity: 0;
}
.beam-a { left: 18%; }
.beam-b { left: 72%; animation-delay: -4.5s; background: linear-gradient(180deg, transparent, rgba(77, 141, 255, 0.35), transparent); }
.beam-c { left: 50%; animation-delay: -2s; background: linear-gradient(180deg, transparent, rgba(255, 211, 78, 0.3), transparent); }
@keyframes beam { 0%, 100% { opacity: 0; transform: translateY(-20%); } 50% { opacity: 1; transform: translateY(20%); } }

.hero-inner {
  position: relative;
  display: grid; gap: 64px; align-items: center;
}
.hero-copy { max-width: 680px; }

.kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--display); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 24px;
}
.kicker-line { width: 34px; height: 2px; background: var(--grad-gold); border-radius: 2px; box-shadow: 0 0 12px rgba(255,211,78,0.6); }

.display { margin-bottom: 8px; }
.hero-support { font-size: clamp(1.05rem, 1.9vw, 1.35rem); color: var(--white); margin-top: 22px; }
.hero-support strong { color: var(--gold); font-weight: 700; }
.hero-sub { margin-top: 14px; color: var(--muted); font-size: 1.05rem; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 38px; }
.hero-trust li {
  font-size: 0.8rem; font-weight: 600; color: var(--muted);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  padding: 9px 16px; border-radius: 999px;
  transition: border-color var(--fast), transform var(--fast);
}
.hero-trust li:hover { border-color: var(--gold); transform: translateY(-2px); color: var(--white); }

/* Hero visual */
.hero-visual { position: relative; max-width: 620px; }
.hv { position: absolute; border-radius: 50%; filter: blur(70px); animation: bob 8s ease-in-out infinite; }
.glow-violet { width: 380px; height: 380px; background: rgba(139, 124, 246, 0.22); top: 4%; right: 6%; }
.glow-gold { width: 300px; height: 300px; background: rgba(255, 211, 78, 0.14); bottom: -4%; left: -8%; animation-delay: -4s; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.window {
  background: linear-gradient(180deg, rgba(20, 20, 30, 0.86), rgba(10, 10, 16, 0.9));
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 18px 20px 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(140%);
  position: relative;
  transform-style: preserve-3d;
}
.window-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.dots { display: flex; gap: 6px; }
.dots i { width: 10px; height: 10px; border-radius: 50%; }
.dots i:nth-child(1) { background: var(--orange); }
.dots i:nth-child(2) { background: var(--gold); }
.dots i:nth-child(3) { background: var(--green); }
.window-title { flex: 1; font-family: var(--display); font-weight: 700; font-size: 0.8rem; color: var(--muted); letter-spacing: 0.02em; }
.live-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.68rem; font-weight: 700; color: var(--green);
  border: 1px solid rgba(46, 230, 168, 0.4); background: rgba(46, 230, 168, 0.08);
  padding: 5px 10px; border-radius: 999px;
}
.live-tag i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 1.6s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(46,230,168,0.6); } 100% { box-shadow: 0 0 0 7px rgba(46,230,168,0); } }

.waveform { display: flex; align-items: center; gap: 3px; height: 48px; margin-bottom: 16px; }
.waveform span {
  flex: 1; border-radius: 4px;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  animation: wave 1.5s var(--ease) infinite;
  transform-origin: bottom;
  will-change: transform;
}
.waveform span:nth-child(3n) { animation-delay: -0.4s; }
.waveform span:nth-child(3n + 1) { animation-delay: -0.8s; }
.waveform span:nth-child(2n) { background: linear-gradient(180deg, var(--sky), var(--blue)); }
.waveform span:nth-child(4n) { background: linear-gradient(180deg, var(--violet), var(--blue)); }
@keyframes wave { 0%, 100% { transform: scaleY(0.18); } 50% { transform: scaleY(1); } }

.window-line { font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; }
.window-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.ok { width: 8px; height: 8px; border-radius: 50%; background: var(--green); display: inline-block; margin-right: 7px; }
.window-meta span { font-size: 0.74rem; color: var(--muted); }

.float-card {
  position: absolute;
  background: rgba(14, 14, 21, 0.82);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 15px 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(140%);
  transform-style: preserve-3d;
}
.float-wa { top: -26px; right: -4px; width: 260px; z-index: 2; }
.float-crm { bottom: -30px; left: -6px; width: 240px; z-index: 2; }
.float-card { animation: floatY 7s ease-in-out infinite; }
.float-wa { animation-delay: -2s; }
.float-crm { animation-delay: -4.5s; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.fc-head { display: flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 700; font-size: 0.8rem; color: var(--white); margin-bottom: 11px; }
.fc-ico {
  width: 28px; height: 28px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--acc); background: color-mix(in srgb, var(--acc) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--acc) 34%, transparent);
}
.fc-body { display: grid; gap: 7px; }
.bubble { font-size: 0.74rem; padding: 7px 10px; border-radius: 10px; background: rgba(255, 255, 255, 0.05); color: var(--muted); max-width: 92%; }
.bubble b { color: var(--white); font-weight: 600; }
.bubble.in { justify-self: start; }
.bubble.out { justify-self: end; background: rgba(46, 230, 168, 0.12); color: #d9fff2; }
.bubble.done { color: var(--green); }
.fc-pipes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.pipe { border-radius: 9px; padding: 9px 6px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line); text-align: left; }
.pipe b { display: block; font-size: 0.66rem; color: var(--muted); }
.pipe em { font-family: var(--display); font-style: normal; font-weight: 800; font-size: 1.05rem; }
.pipe.lv2 { background: rgba(77, 141, 255, 0.13); border-color: rgba(77, 141, 255, 0.4); }
.pipe.lv3 { background: rgba(46, 230, 168, 0.12); border-color: rgba(46, 230, 168, 0.4); }

.hero-scroll { margin-top: 52px; }
.scroll-hint { display: inline-flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 600; font-size: 0.82rem; color: var(--muted-2); letter-spacing: 0.14em; text-transform: uppercase; }
.mouse {
  width: 26px; height: 40px; border-radius: 14px;
  border: 2px solid var(--line-strong); position: relative;
}
.mouse i { position: absolute; top: 7px; left: 50%; width: 3px; height: 7px; margin-left: -1.5px; border-radius: 3px; background: var(--gold); animation: wheel 1.8s infinite; }
@keyframes wheel { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(14px); } }

/* ---------- Ticker ---------- */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 211, 78, 0.045);
  padding: 16px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.ticker-track { display: flex; align-items: center; gap: 0; width: max-content; animation: ticker 30s linear infinite; }
.ticker-track span { font-family: var(--display); font-weight: 800; font-size: 0.95rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding: 0 14px; white-space: nowrap; }
.ticker-track i { color: var(--gold); font-style: normal; font-size: 0.8rem; }
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ---------- Stat band ---------- */
.stat-band { padding: clamp(56px, 7vw, 90px) 0; position: relative; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.stat { display: grid; gap: 8px; text-align: center; }
.stat-num { font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem, 6vw, 3.6rem); line-height: 1; letter-spacing: -0.03em; }
.stat-num span { font-size: 0.55em; }
.stat-num.gold { background: linear-gradient(180deg, #ffe9ad, var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-num.blue { background: linear-gradient(180deg, #cfe0ff, var(--blue)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-num.violet { background: linear-gradient(180deg, #e2defe, var(--violet)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-num.green { background: linear-gradient(180deg, #c9fbe9, var(--green)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { color: var(--muted-2); font-size: 0.86rem; font-weight: 500; }

/* ---------- Section halo overlays ---------- */
.section-halo {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.section-halo::before {
  content: ""; position: absolute; width: 70vw; height: 70vw; top: -30vw; left: 50%;
  transform: translateX(-50%); border-radius: 50%; filter: blur(90px); opacity: 0.5;
}
.halo-gold::before { background: radial-gradient(circle, rgba(255, 211, 78, 0.07), transparent 65%); }
.halo-orange::before { background: radial-gradient(circle, rgba(255, 122, 69, 0.06), transparent 65%); }
.halo-blue::before { background: radial-gradient(circle, rgba(77, 141, 255, 0.06), transparent 65%); }
.halo-violet::before { background: radial-gradient(circle, rgba(139, 124, 246, 0.07), transparent 65%); }
.halo-green::before { background: radial-gradient(circle, rgba(46, 230, 168, 0.05), transparent 65%); }
.halo-sky::before { background: radial-gradient(circle, rgba(56, 189, 248, 0.05), transparent 65%); }

/* ---------- Problems (Section 02) ---------- */
.cards-b { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.cards-b.cards-mini { grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); }

.p-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 24px;
  overflow: hidden;
  transition: transform var(--fast), border-color var(--fast), background var(--fast), box-shadow var(--fast);
}
.p-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, var(--acc), transparent 70%);
  opacity: 0.6;
}
.p-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--acc) 45%, transparent);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}
.p-card .card-ico {
  width: 46px; height: 46px; border-radius: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--acc);
  background: color-mix(in srgb, var(--acc) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--acc) 30%, transparent);
  margin-bottom: 20px;
  transition: transform var(--fast);
}
.p-card:hover .card-ico { transform: scale(1.12) rotate(-4deg); }
.p-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.p-card p { color: var(--muted); font-size: 0.94rem; }
.p-card .n-tag { position: absolute; top: 20px; right: 20px; font-family: var(--display); font-weight: 800; font-size: 0.75rem; letter-spacing: 0.12em; color: var(--muted-2); }

.bridge { max-width: 560px; margin: 46px auto 0; text-align: center; }
.bridge p { font-family: var(--display); font-weight: 700; color: var(--white); font-size: clamp(1.2rem, 2.4vw, 1.6rem); line-height: 1.4; }
.bridge-divider { display: flex; align-items: center; gap: 14px; margin: 20px 0; }
.bridge-divider i { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong), transparent); }
.bridge-divider b { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255, 211, 78, 0.5); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 1.1rem; box-shadow: 0 0 24px rgba(255, 211, 78, 0.25); }

/* ---------- Solutions (Section 03) ---------- */
.service-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); }
.service-grid.version-label { max-width: 1200px; }

.s-card {
  position: relative;
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 20px;
  transition: transform var(--fast), border-color var(--fast), box-shadow var(--fast), background var(--fast);
}
.s-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--acc) 40%, transparent);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.s-ico {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--acc);
  background: color-mix(in srgb, var(--acc) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--acc) 30%, transparent);
  transition: transform var(--fast);
}
.s-card:hover .s-ico { transform: scale(1.1); }
.s-txt h3 { font-size: 1.02rem; margin-bottom: 4px; }
.s-txt p { color: var(--muted); font-size: 0.87rem; line-height: 1.45; }

/* ---------- Banner ---------- */
.banner {
  position: relative;
  margin-top: 56px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: linear-gradient(120deg, rgba(20, 20, 30, 0.92), rgba(10, 10, 16, 0.96));
  box-shadow: var(--shadow);
  display: grid; gap: 22px;
  padding: clamp(28px, 4.5vw, 46px);
}
.banner::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(36% 50% at 12% 40%, rgba(77, 141, 255, 0.14), transparent 70%),
    radial-gradient(30% 50% at 92% 70%, rgba(255, 211, 78, 0.1), transparent 70%);
  pointer-events: none;
}
.banner > * { position: relative; z-index: 1; }
.banner-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 15px;
  background: var(--grad-gold); color: #191300;
  box-shadow: 0 10px 26px rgba(255, 211, 78, 0.35);
  margin-bottom: 4px;
}
.banner-badge.big { width: 68px; height: 68px; border-radius: 20px; }
.banner-copy h3 { font-size: clamp(1.6rem, 3vw, 2.35rem); font-weight: 800; max-width: 760px; }
.banner-copy p { color: var(--muted); margin-top: 14px; max-width: 640px; font-size: 1rem; }

/* ---------- Ribbon band ---------- */
.ribbon {
  margin-top: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
  border-radius: 20px;
  padding: 26px 30px;
  border: 1px solid color-mix(in srgb, var(--acc) 32%, transparent);
  background:
    linear-gradient(100deg, color-mix(in srgb, var(--acc) 12%, transparent), transparent 55%),
    rgba(255, 255, 255, 0.02);
  transition: border-color var(--fast), transform var(--fast);
}
.ribbon:hover { border-color: color-mix(in srgb, var(--acc) 60%, transparent); transform: translateY(-3px); }
.ribbon p { font-family: var(--display); font-weight: 800; font-size: clamp(1.1rem, 2vw, 1.5rem); color: var(--white); }
.ribbon.center-ribbon { justify-content: center; text-align: center; }
.ribbon.center-ribbon p { width: 100%; }

/* ---------- Use cases: AI Voice (04) ---------- */
.ai-voice-grid { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; }
.use-list { display: grid; gap: 12px; }
.use-item { display: flex; gap: 14px; align-items: flex-start; }
.use-item .u-ico {
  flex: 0 0 auto; width: 36px; height: 36px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(139, 124, 246, 0.4); color: var(--violet);
  background: rgba(139, 124, 246, 0.1);
  font-family: var(--display); font-weight: 800; font-size: 0.9rem;
}
.use-item h3 { font-size: 1.05rem; margin-bottom: 2px; }
.use-item p { color: var(--muted); font-size: 0.92rem; }
.note {
  display: flex; align-items: center; gap: 10px;
  margin-top: 20px; font-size: 0.84rem; color: var(--muted-2);
}

.call-stage { position: relative; padding: 14px; display: flex; justify-content: center; }
.call-orb {
  width: clamp(240px, 40vw, 320px); aspect-ratio: 1; border-radius: 50%;
  position: relative;
  background:
    radial-gradient(circle at 30% 28%, rgba(139, 124, 246, 0.35), transparent 44%),
    radial-gradient(circle, rgba(139, 124, 246, 0.12), transparent 66%);
  display: grid; place-items: center;
}
.call-orb::before {
  content: ""; position: absolute; inset: -16%;
  border-radius: 50%;
  border: 1px solid rgba(139, 124, 246, 0.25);
  animation: ring 5s linear infinite;
}
.call-orb::after {
  content: ""; position: absolute; inset: -32%;
  border-radius: 50%;
  border: 1px dashed rgba(139, 124, 246, 0.16);
  animation: ring 8s linear infinite reverse;
}
@keyframes ring { to { transform: rotate(360deg); } }
.call {
  width: 76%; aspect-ratio: 1; border-radius: 50%;
  background: linear-gradient(160deg, rgba(30, 30, 44, 0.95), rgba(12, 12, 18, 0.98));
  border: 1px solid rgba(139, 124, 246, 0.4);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.call-ava {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--grad-violet);
  margin-bottom: 8px;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 800; font-size: 1.4rem; color: #fff;
  box-shadow: 0 0 30px rgba(139, 124, 246, 0.55);
}
.pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(139, 124, 246, 0.4);
  animation: pulsering 2.4s infinite;
}
.pulse.l2 { animation-delay: 0.6s; }
@keyframes pulsering { 0% { transform: scale(0.6); opacity: 1; } 100% { transform: scale(1.9); opacity: 0; } }
.call-name { font-family: var(--display); font-weight: 800; font-size: 1.15rem; }
.call-on { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); }
.call-badges { position: absolute; display: grid; gap: 8px; top: 50%; transform: translateY(-50%); }
.call-badges.left { left: 2px; }
.call-badges.right { right: 2px; }
.call-badges.right .c-badge { justify-self: end; }
.c-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--display); font-weight: 700; font-size: 0.74rem;
  background: rgba(14, 14, 21, 0.85);
  border: 1px solid var(--line-strong);
  border-radius: 999px; padding: 8px 13px;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  animation: floatY 6s ease-in-out infinite;
}
.c-badge:nth-child(2) { animation-delay: -2s; }
.c-badge svg { color: var(--violet); }

.chat-bubbles { position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); display: grid; gap: 7px; width: 82%; }
.cl {
  font-size: 0.8rem; padding: 9px 14px; border-radius: 12px;
  max-width: 92%; justify-self: center;
  animation: chatIn 0.5s var(--ease) both;
  animation-delay: var(--d, 0s);
  border: 1px solid var(--line-strong);
  background: rgba(20, 20, 28, 0.9);
  backdrop-filter: blur(8px);
  color: #e7e6ef;
}
.cl b { color: var(--violet); }
@keyframes chatIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------- Use case: CRM (05) ---------- */
.crm-grid { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: start; }
.feature-list { display: grid; gap: 12px; }
.f-item { display: flex; gap: 13px; align-items: flex-start; }
.f-ok {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(46, 230, 168, 0.12); color: var(--green);
  border: 1px solid rgba(46, 230, 168, 0.35);
  font-size: 0.75rem; font-weight: 800;
  margin-top: 2px;
}
.f-item h3 { font-size: 1.05rem; margin-bottom: 2px; }
.f-item p { color: var(--muted); font-size: 0.92rem; }

.board {
  background: linear-gradient(180deg, rgba(16, 16, 24, 0.9), rgba(9, 9, 14, 0.95));
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid; gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}
.board-col { display: grid; gap: 10px; align-content: start; }
.col-h {
  font-family: var(--display); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2);
  display: flex; align-items: center; justify-content: space-between;
  padding: 2px 4px;
}
.col-h i { width: 8px; height: 8px; border-radius: 50%; }
.col-h .green-dot { background: var(--green); box-shadow: 0 0 10px rgba(46,230,168,0.8); }
.col-h .gold-dot { background: var(--gold); box-shadow: 0 0 10px rgba(255,211,78,0.8); }
.col-h .blue-dot { background: var(--blue); box-shadow: 0 0 10px rgba(77,141,255,0.8); }
.b-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px;
  font-size: 0.82rem; color: var(--muted);
  animation: floatY 6s ease-in-out infinite;
}
.b-card:nth-child(2) { animation-delay: -1.2s; }
.b-card:nth-child(3) { animation-delay: -2.6s; }
.b-card b { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 3px; font-family: var(--display); }
.b-card.hot { border-left: 3px solid var(--orange); }
.b-card.won { border-left: 3px solid var(--green); color: var(--green); }
.b-card.won b { color: var(--green); }

/* ---------- Use case: Automation (06) ---------- */
.flow { display: grid; gap: 44px; position: relative; max-width: 480px; margin-inline: auto; }
.flow::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 29px; width: 2px;
  background: linear-gradient(180deg, var(--green), var(--blue), transparent);
  opacity: 0.55;
}
.f-node { display: flex; gap: 18px; align-items: flex-start; position: relative; }
.f-node .line-dot-wrap { position: absolute; left: 29px; top: 64px; bottom: -40px; width: 2px; overflow: visible; }
.dot-travel {
  position: absolute; left: -3.5px; top: 0;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--grad-gold);
  box-shadow: 0 0 12px rgba(255, 211, 78, 0.9);
  animation: travel 6s linear infinite;
}
.f-node:nth-child(2) .dot-travel { animation-delay: -1.2s; }
.f-node:nth-child(3) .dot-travel { animation-delay: -2.4s; }
.f-node:nth-child(4) .dot-travel { animation-delay: -3.6s; }
@keyframes travel { 0% { top: 0; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { top: 100%; opacity: 0; } }
.n-ico {
  flex: 0 0 auto; width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(160deg, rgba(20, 20, 30, 0.95), rgba(9, 9, 14, 0.98));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  display: grid; place-items: center;
  color: var(--acc);
  position: relative; z-index: 1;
}
.f-node h3 { font-size: 1.15rem; margin: 6px 0 4px; }
.f-node p { color: var(--muted); font-size: 0.92rem; }
.flow.flow-wide { grid-template-columns: 1fr; max-width: 100%; }

/* ---------- Use case: Apps (07) ---------- */
.apps-grid { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; }
.app-cats { display: grid; gap: 12px; }
.a-cat {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid var(--line);
  border-radius: 14px; padding: 17px 18px;
  transition: border-color var(--fast), transform var(--fast), background var(--fast);
}
.a-cat:hover { border-color: rgba(56, 189, 248, 0.5); background: rgba(255, 255, 255, 0.045); transform: translateX(6px); }
.a-cat .a-num { font-family: var(--display); font-weight: 800; font-size: 0.78rem; color: var(--sky); letter-spacing: 0.1em; }
.a-cat h3 { font-size: 1.05rem; margin-bottom: 2px; }
.a-cat p { color: var(--muted); font-size: 0.9rem; }

.phone-wrap { position: relative; display: grid; place-items: center; padding: 12px 0; }
.phone-halo {
  position: absolute; width: 72%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18), rgba(77, 141, 255, 0.06), transparent 70%);
  filter: blur(20px);
}
.phone {
  width: min(280px, 74vw);
  background: linear-gradient(170deg, #14141c, #0a0a10);
  border: 1px solid var(--line-strong);
  border-radius: 34px;
  padding: 16px 12px 22px;
  box-shadow: var(--shadow);
  position: relative;
  transform-style: preserve-3d;
}
.phone-notch { width: 96px; height: 18px; border-radius: 12px; background: #000; margin: 0 auto 14px; }
.p-screen {
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.25);
  background: linear-gradient(160deg, rgba(13, 13, 20, 0.9), rgba(7, 7, 11, 0.95));
  padding: 14px;
  display: grid; gap: 10px;
}
.p-top { display: flex; justify-content: space-between; align-items: center; }
.p-top b { font-family: var(--display); font-size: 0.85rem; letter-spacing: 0.02em; }
.p-live { font-size: 0.66rem; color: var(--green); font-weight: 700; display: flex; align-items: center; gap: 5px; }
.p-live i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 1.6s infinite; }
.p-tile { background: rgba(255, 255, 255, 0.045); border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; display: flex; align-items: center; gap: 10px; }
.p-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--sky); box-shadow: 0 0 10px rgba(56,189,248,0.8); flex: 0 0 auto; }
.p-tile b { display: block; font-size: 0.92rem; font-family: var(--display); }
.p-tile span { font-size: 0.72rem; color: var(--muted); }
.p-tile .ok-green { background: var(--green); box-shadow: 0 0 10px rgba(46,230,168,0.8); }
.p-chart { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; align-items: end; height: 54px; padding-top: 8px; }
.p-chart i {
  background: linear-gradient(180deg, var(--sky), var(--blue));
  border-radius: 4px 4px 0 0;
  animation: grow 1.6s var(--ease) infinite alternate;
  transform-origin: bottom;
}
.p-chart i:nth-child(1) { height: 34%; } .p-chart i:nth-child(2) { height: 55%; animation-delay: -0.2s; }
.p-chart i:nth-child(3) { height: 48%; animation-delay: -0.4s; } .p-chart i:nth-child(4) { height: 75%; animation-delay: -0.6s; }
.p-chart i:nth-child(5) { height: 62%; animation-delay: -0.8s; } .p-chart i:nth-child(6) { height: 88%; animation-delay: -1s; }
.p-chart i:nth-child(7) { height: 100%; animation-delay: -1.2s; }
@keyframes grow { from { transform: scaleY(0.55); } to { transform: scaleY(1); } }
.p-rows { display: grid; gap: 7px; }
.p-row { display: flex; justify-content: space-between; font-size: 0.74rem; color: var(--muted); }
.p-row b { color: var(--sky); }

.journey { margin-top: 30px; display: grid; gap: 12px; }
.j-step { display: flex; gap: 13px; align-items: flex-start; }
.j-n { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 9px; background: rgba(56, 189, 248, 0.12); color: var(--sky); border: 1px solid rgba(56, 189, 248, 0.35); display: inline-flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 800; font-size: 0.82rem; }
.j-step p { color: var(--muted); font-size: 0.94rem; padding-top: 4px; }
.j-step b { color: var(--white); }

/* ---------- Industries (08) ---------- */
.tabs { display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); margin-bottom: 34px; }
.itab {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-family: var(--display); font-weight: 700; font-size: 0.92rem;
  color: var(--muted);
  text-align: left;
  transition: color var(--fast), border-color var(--fast), background var(--fast), transform var(--fast);
}
.itab:hover { border-color: var(--line-strong); color: var(--white); transform: translateY(-2px); }
.itab[aria-selected="true"] {
  color: var(--white);
  border-color: var(--gold);
  background: linear-gradient(120deg, rgba(255, 211, 78, 0.14), rgba(255, 211, 78, 0.03));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.itab svg { flex: 0 0 auto; opacity: 0.8; }
.itab[aria-selected="true"] svg { color: var(--gold); opacity: 1; }

.panel {
  background: linear-gradient(180deg, rgba(16, 16, 24, 0.85), rgba(9, 9, 14, 0.92));
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  padding: clamp(22px, 3.5vw, 34px);
  box-shadow: var(--shadow);
  animation: panelIn 0.4s var(--ease) both;
}
@keyframes panelIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.panel-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.panel-ico {
  width: 48px; height: 48px; border-radius: 13px; color: var(--gold);
  background: rgba(255, 211, 78, 0.12); border: 1px solid rgba(255, 211, 78, 0.35);
  display: inline-flex; align-items: center; justify-content: center;
}
.panel h3 { font-size: 1.3rem; }
.panel > p { color: var(--muted); margin-bottom: 18px; max-width: 680px; font-size: 0.95rem; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 17px;
  font-size: 0.86rem; font-weight: 500; color: var(--muted);
  transition: border-color var(--fast), color var(--fast), transform var(--fast);
  animation: chipIn 0.45s var(--ease) both;
}
.chip:nth-child(2n) { animation-delay: 0.06s; }
.chip:nth-child(3n) { animation-delay: 0.12s; }
.chip:nth-child(4n) { animation-delay: 0.18s; }
@keyframes chipIn { from { opacity: 0; transform: translateY(8px) scale(0.96); } to { opacity: 1; transform: none; } }
.chip:hover { border-color: var(--gold); color: var(--white); transform: translateY(-2px); }

/* ---------- Process (09) ---------- */
.steps { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.step { position: relative; }
.step-num {
  font-family: var(--display); font-weight: 800; font-size: 3.4rem; line-height: 1;
  background: linear-gradient(180deg, rgba(255, 211, 78, 0.34), transparent);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 12px;
}
.step-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  transition: transform var(--fast), border-color var(--fast);
}
.step-card:hover { transform: translateY(-5px); border-color: rgba(255, 211, 78, 0.45); }
.step-card h3 { font-size: 1.08rem; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.step-card h3 .s-ic { color: var(--gold); flex: 0 0 auto; }
.step-card p { color: var(--muted); font-size: 0.9rem; }

/* ---------- Why Milieu (10) ---------- */
.why-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.w-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 24px;
  overflow: hidden;
  transition: transform var(--fast), border-color var(--fast), box-shadow var(--fast);
}
.w-card::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--acc), transparent);
  opacity: 0;
  transition: opacity var(--fast);
}
.w-card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--acc) 45%, transparent); box-shadow: 0 20px 44px rgba(0, 0, 0, 0.4); }
.w-card:hover::after { opacity: 1; }
.w-num { font-family: var(--display); font-weight: 800; font-size: 0.8rem; color: var(--acc); letter-spacing: 0.1em; }
.w-card h3 { font-size: 1.15rem; margin: 12px 0 8px; }
.w-card p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Form (11) ---------- */
.section-form { background: linear-gradient(180deg, rgba(13, 13, 20, 0.4), rgba(5, 5, 5, 0)); }
.form-grid { display: grid; gap: 48px; grid-template-columns: 1fr; }
.form-copy .head-row { text-align: left; }
.pledges { display: grid; gap: 12px; margin-top: 8px; }
.pledges li { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 0.96rem; }
.pledges .f-ok { margin: 0; }
.alt-cts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.form-card {
  background: linear-gradient(180deg, rgba(18, 18, 27, 0.9), rgba(9, 9, 14, 0.96));
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.form-card.hidden { display: none; }
.form-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--violet));
  opacity: 0.8;
}
.field { margin-bottom: 16px; }
.field-row { display: grid; gap: 14px; grid-template-columns: 1fr; }
.field label { display: block; font-family: var(--display); font-weight: 700; font-size: 0.84rem; color: var(--white); margin-bottom: 8px; letter-spacing: 0.01em; }
.field .opt { color: var(--muted-2); font-weight: 500; font-size: 0.78rem; }
.field input, .field select {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.95rem;
  color: var(--white);
  appearance: none;
  transition: border-color var(--fast), background var(--fast), box-shadow var(--fast);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16' fill='none' stroke='%23ffd34e' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M3 6l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  cursor: pointer;
}
.field select option { background: #0e0e15; color: var(--white); }
.field input::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus {
  outline: none; border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(255, 211, 78, 0.15);
}
.field input.err { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255, 122, 69, 0.15); }
.field .f-err { display: none; color: var(--orange); font-size: 0.78rem; margin-top: 6px; font-weight: 600; }
.field.err .f-err { display: block; }

.form-note { text-align: center; color: var(--muted-2); font-size: 0.78rem; margin-top: 14px; }

.form-success { text-align: center; padding: 30px 10px 16px; }
.form-success h3 { font-family: var(--display); font-size: 1.5rem; margin: 18px 0 8px; }
.form-success p { color: var(--muted); max-width: 420px; margin-inline: auto; }

/* ---------- Presence (12) ---------- */
.map {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: radial-gradient(40% 46% at 60% 40%, rgba(77, 141, 255, 0.1), transparent 70%);
  min-height: 320px;
  overflow: hidden;
  margin-bottom: 28px;
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1.6px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 55% 45%, black, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 70% at 55% 45%, black, transparent 80%);
  animation: dotShift 18s linear infinite;
}
.map-beacon {
  position: absolute; width: 90px; height: 90px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 230, 168, 0.25), transparent 70%);
  top: 42%; left: 57%; transform: translate(-50%, -50%);
  animation: beaconBreathe 3s ease-in-out infinite;
}
@keyframes beaconBreathe { 0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.9); } 50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); } }
.map-pin { position: absolute; display: flex; flex-direction: column; align-items: center; gap: 6px; font-family: var(--display); font-weight: 700; font-size: 0.76rem; color: var(--muted); }
.map-pin i { width: 12px; height: 12px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(255, 211, 78, 0.18), 0 0 18px rgba(255, 211, 78, 0.7); animation: pinPulse 2.4s infinite; }
@keyframes pinPulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(255,211,78,0.2), 0 0 16px rgba(255,211,78,0.6); } 50% { box-shadow: 0 0 0 9px rgba(255,211,78,0.05), 0 0 20px rgba(255,211,78,0.8); } }
.pin-1 { top: 40%; left: 56%; }
.pin-2 { top: 66%; left: 72%; }
.pin-3 { top: 20%; left: 82%; }
.pin-4 { top: 34%; left: 40%; }
.pin-5 { top: 74%; left: 55%; }
.pin-6 { top: 58%; left: 34%; }

.city-cloud { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 44px; }
.city-cloud span {
  font-family: var(--display); font-weight: 600; font-size: 0.9rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.03);
}
.city-cloud .cloud-plus { color: var(--gold); border-color: rgba(255, 211, 78, 0.4); }

.contact-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); margin-bottom: 30px; }
.c-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 22px;
  text-align: center;
  display: grid; gap: 10px; justify-items: center;
  transition: transform var(--fast), border-color var(--fast), background var(--fast);
  color: var(--white);
}
.c-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--acc) 55%, transparent); background: rgba(255, 255, 255, 0.05); }
.c-ico {
  width: 48px; height: 48px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--acc);
  background: color-mix(in srgb, var(--acc) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--acc) 35%, transparent);
}
.c-card h3 { font-size: 1.05rem; }
.c-card p { color: var(--muted); font-size: 0.88rem; }

.office {
  display: grid; gap: 18px; grid-template-columns: auto 1fr;
  align-items: center;
  background: linear-gradient(120deg, rgba(20, 20, 30, 0.85), rgba(10, 10, 16, 0.92));
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 24px;
}
.office-ico {
  grid-row: span 2;
  width: 56px; height: 56px; border-radius: 15px;
  background: var(--grad-gold);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(255, 211, 78, 0.3);
}
.office address { color: var(--muted); font-size: 0.92rem; margin-top: 6px; max-width: 520px; }
.office .btn { grid-column: 1 / -1; justify-self: stretch; }

/* ---------- FAQ (13) ---------- */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color var(--fast);
}
.faq-item.open { border-color: rgba(255, 211, 78, 0.45); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-align: left; padding: 19px 22px;
  font-family: var(--display); font-weight: 700; font-size: 1rem; color: var(--white);
}
.faq-q:hover { color: var(--gold); }
.faq-x { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 8px; position: relative; background: rgba(255, 211, 78, 0.1); border: 1px solid rgba(255, 211, 78, 0.35); transition: transform var(--fast), background var(--fast); }
.faq-x i { position: absolute; background: var(--gold); border-radius: 2px; }
.faq-x i:first-child { left: 7px; right: 7px; top: 50%; height: 2px; transform: translateY(-50%); }
.faq-x i:last-child { top: 7px; bottom: 7px; left: 50%; width: 2px; transform: translateX(-50%); }
.faq-item.open .faq-x { transform: rotate(45deg); background: var(--gold); }
.faq-item.open .faq-x i { background: #191300; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding: 0 22px 20px; color: var(--muted); font-size: 0.94rem; max-width: 720px; }

/* ---------- Final CTA (14) ---------- */
.final-cta { position: relative; overflow: hidden; padding: clamp(90px, 12vw, 160px) 0; border-top: 1px solid var(--line); }
.fcta-stage { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.final-cta-inner { position: relative; text-align: center; max-width: 780px; }
.final-cta-inner .h2 { font-size: clamp(2.2rem, 5.4vw, 3.9rem); }
.final-cta-inner .lead-in { margin-inline: auto; }
.final-cta-inner .hero-ctas { justify-content: center; }

/* ---------- Footer (15) ---------- */
.footer { position: relative; background: #060608; border-top: 1px solid var(--line); padding: 80px 0 28px; overflow: hidden; }
.footer-word {
  position: absolute; left: 50%; bottom: -3vw; transform: translateX(-50%);
  font-family: var(--display); font-weight: 800;
  font-size: clamp(4rem, 18vw, 15rem);
  line-height: 1; letter-spacing: -0.02em;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  pointer-events: none; user-select: none; white-space: nowrap;
}
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; position: relative; }
.f-brand .brand { margin-bottom: 18px; }
.f-tag { font-family: var(--display); font-weight: 700; color: var(--white); font-size: 1.02rem; margin-bottom: 10px; }
.f-copy { color: var(--muted-2); font-size: 0.9rem; max-width: 340px; margin-bottom: 20px; }
.f-social { display: flex; gap: 10px; }
.f-social a {
  width: 40px; height: 40px; border-radius: 11px;
  border: 1px solid var(--line-strong);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: color var(--fast), border-color var(--fast), transform var(--fast), background var(--fast);
}
.f-social a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-3px); background: rgba(255, 211, 78, 0.08); }
.f-col h4 { font-family: var(--display); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 18px; }
.f-col ul { display: grid; gap: 11px; }
.f-col ul a, .f-cont p a { color: var(--muted); font-size: 0.92rem; transition: color var(--fast); }
.f-col ul a:hover, .f-cont p a:hover { color: var(--white); }
.f-cont { display: grid; gap: 12px; align-content: start; }
.f-cont address { color: var(--muted-2); font-size: 0.88rem; line-height: 1.6; }
.f-cont .btn { margin-top: 6px; justify-self: start; }
.f-bottom {
  position: relative;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  margin-top: 60px; padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted-2); font-size: 0.82rem;
}

/* ---------- Floats ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(145deg, #2ee6a8, #19b380);
  color: #03211a;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px rgba(46, 230, 168, 0.35);
  transition: transform var(--fast), box-shadow var(--fast);
}
.wa-float:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 18px 44px rgba(46, 230, 168, 0.5); }
.wa-float::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(46, 230, 168, 0.5);
  animation: pulsering 2.2s infinite;
}

.mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: grid; grid-template-columns: 64px 1fr; gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--line-strong);
  transform: translateY(0);
  transition: transform 0.4s var(--ease);
}
.mobile-cta-bar.hidden { transform: translateY(110%); }
.mcta {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 13px; font-family: var(--display); font-weight: 800;
}
.mcta-call {
  border: 1px solid var(--line-strong); color: var(--gold); background: rgba(255, 211, 78, 0.08);
}
.mcta-main {
  background: var(--grad-gold); color: #191300;
  font-size: 1rem; letter-spacing: 0.01em;
  box-shadow: 0 8px 24px rgba(255, 211, 78, 0.3);
  padding: 15px 8px;
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.4s; }

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .field-row { grid-template-columns: 1fr 1fr; }
  .form-grid { gap: 40px; }
  .app-cats { grid-template-columns: 1fr 1fr; }
  .board { grid-template-columns: repeat(3, 1fr); }
  .phone-wrap { transform: translateX(0); }
}
@media (min-width: 900px) {
  .brand-logo { height: 46px; }
  .nav-links {
    display: flex; align-items: center; justify-content: center;
    gap: clamp(14px, 1.8vw, 24px);
    margin-left: auto;
  }
  .nav-links a { font-family: var(--display); font-weight: 700; font-size: 0.9rem; color: var(--muted); transition: color var(--fast); }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .hero-inner { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 40px; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .ai-voice-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .crm-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .form-grid { grid-template-columns: 1.02fr 0.98fr; gap: 56px; }
  .apps-grid { grid-template-columns: 1fr 1fr; gap: 52px; }
  .footer-grid { grid-template-columns: 1.5fr 0.7fr 0.7fr 1.2fr; gap: 36px; }
  .tabs { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
  .wa-float { bottom: 26px; right: 26px; }
  .office { grid-template-columns: auto 1fr auto; }
  .office .btn { grid-column: auto; justify-self: auto; }
}
@media (min-width: 1180px) {
  .window { padding: 22px 26px 28px; }
  .hero-visual .float-wa { right: -22px; }
  .hero-visual .float-crm { left: -26px; }
}
@media (min-width: 1320px) {
  .nav-phone { display: inline-flex; }
  .nav-links { justify-content: flex-start; margin-right: auto; }
  .nav-links:last-child { margin-right: 0; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .reveal { opacity: 1; transform: none; }
  .waveform span, .p-chart i, .grid-floor, .dotfield, .beam, .mesh, .mesh-b, .mesh-c, .ticker-track { animation: none !important; }
  .float-card, .b-card, .c-badge, .map-pin i, .call-orb::before, .call-orb::after, .pulse { animation: none !important; }
  .hero-trust li:hover, .btn:hover, .itab:hover, .s-card:hover, .p-card:hover, .a-cat:hover { transform: none !important; }
  .cursor-glow { display: none; }
}
/* ============================================================
   OVERRIDES / ALIGNMENT FIXES (matches actual index.html markup)
   ============================================================ */
html { scroll-padding-top: 86px; }

/* ---------- AI Voice call card ---------- */
.call-stage {
  position: relative;
  background: linear-gradient(180deg, rgba(18, 18, 27, 0.9), rgba(9, 9, 14, 0.96));
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.call-stage::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--blue), transparent);
  opacity: 0.85;
}
.call {
  width: auto; aspect-ratio: auto;
  background: none; border: none; box-shadow: none;
  display: block; padding: 0; margin: 0;
}
.call-top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.call-ava {
  width: 52px; height: 52px; margin: 0;
  background: var(--grad-violet);
  color: #fff;
  box-shadow: 0 0 24px rgba(139, 124, 246, 0.5);
}
.call-name { font-size: 1.05rem; }
.call-state { font-size: 0.74rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.call-state .pulse {
  position: relative; inset: auto; width: 8px; height: 8px;
  border: none; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(46, 230, 168, 0.6);
  animation: pulsering 1.8s infinite;
}
.call-time { margin-left: auto; font-family: var(--display); font-weight: 700; font-size: 0.9rem; color: var(--muted-2); }
.waveform-lg { height: 42px; margin-bottom: 4px; }
.call-chat { display: grid; gap: 8px; margin-top: 18px; }
.cl.out { justify-self: end; background: rgba(139, 124, 246, 0.14); border-color: rgba(139, 124, 246, 0.35); }
.cl.in { justify-self: start; background: rgba(255, 255, 255, 0.05); }
.call-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.c-badge {
  position: static; animation: none; transform: none;
  color: var(--muted); background: rgba(255, 255, 255, 0.045);
  white-space: normal;
}
.c-badge i { font-style: normal; font-weight: 800; color: var(--violet); }

/* ---------- Use-case list (plain <li> markup) ---------- */
.use-list li {
  display: flex; align-items: center; gap: 12px;
  color: var(--muted); font-weight: 600; font-size: 0.95rem;
}
.use-list li::before {
  content: "\2713";
  width: 26px; height: 26px; border-radius: 8px; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(139, 124, 246, 0.12); color: var(--violet);
  border: 1px solid rgba(139, 124, 246, 0.35);
  font-size: 0.8rem; font-weight: 800;
}

/* ---------- CRM feature items + board counts ---------- */
.f-item > span:last-child { color: var(--muted); font-size: 0.95rem; line-height: 1.5; }
.f-item:hover > span:last-child { color: var(--white); }
.col-h em { font-style: normal; font-family: var(--display); font-weight: 800; font-size: 0.9rem; color: var(--white); }

/* ---------- Automation flow connectors ---------- */
.flow::before { display: none; }
.flow { gap: 6px; }
.flow .line {
  position: relative; width: 2px; height: 44px;
  justify-self: start; margin-left: 29px;
  background: linear-gradient(180deg, var(--line-strong), transparent);
  overflow: visible;
}
.flow .line .dot-travel {
  position: absolute; left: -3.5px; top: 0;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--grad-gold);
  box-shadow: 0 0 12px rgba(255, 211, 78, 0.9);
  animation: travel 2.2s linear infinite;
}
@keyframes travel { 0% { top: 0; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { top: calc(100% - 9px); opacity: 0; } }
.f-node p { align-self: center; font-family: var(--display); font-weight: 800; color: var(--white); font-size: 1.02rem; line-height: 1.3; }

/* ---------- App category chips ---------- */
.a-cat {
  color: var(--white);
  font-family: var(--display); font-weight: 700; font-size: 1.05rem;
}
.a-cat i {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--acc);
  background: color-mix(in srgb, var(--acc) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--acc) 30%, transparent);
}

/* ---------- Phone mockup ---------- */
.phone { display: grid; gap: 10px; }
.phone-notch { margin-bottom: 8px; }
.phone-title { font-family: var(--display); font-weight: 800; font-size: 1.05rem; text-align: center; margin: 2px 0 6px; }
.phone-name { text-align: center; font-family: var(--display); font-weight: 700; font-size: 0.74rem; color: var(--muted-2); margin-top: 12px; }
.p-tile div { min-width: 0; }
.p-tile div small { display: block; color: var(--muted-2); font-size: 0.72rem; }
.p-dot.p-gold { background: var(--gold); box-shadow: 0 0 10px rgba(255, 211, 78, 0.8); }
.p-dot.p-blue { background: var(--blue); box-shadow: 0 0 10px rgba(77, 141, 255, 0.8); }
.p-dot.p-green { background: var(--green); box-shadow: 0 0 10px rgba(46, 230, 168, 0.8); }

/* ---------- App journey strip ---------- */
.journey {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 8px 6px; margin-top: 44px;
}
.journey span {
  font-family: var(--display); font-weight: 700; font-size: 0.84rem;
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 9px 16px; border-radius: 999px;
  transition: border-color var(--fast), color var(--fast);
  animation: chipIn 0.5s var(--ease) both;
}
.journey span:nth-child(2n) { animation-delay: 0.08s; }
.journey span:nth-child(3n) { animation-delay: 0.16s; }
.journey span:nth-child(4n) { animation-delay: 0.24s; }
.journey span:hover { border-color: var(--gold); color: var(--white); }
.journey b {
  width: 22px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.6), transparent);
}

/* ---------- Problems -> Solutions bridge ---------- */
.bridge { max-width: 720px; margin: 56px auto 0; text-align: center; display: grid; justify-items: center; gap: 20px; }
.bridge-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255, 211, 78, 0.5); color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 0 24px rgba(255, 211, 78, 0.25);
  animation: bob 3s ease-in-out infinite;
}
.bridge h3 { margin-bottom: 6px; }
.bridge p { font-family: var(--body); font-weight: 500; font-size: 1rem; color: var(--muted); max-width: 560px; }

/* ---------- Ambient dots backdrop ---------- */
.dots-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1.6px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 70% 30%, black, transparent 75%);
  mask-image: radial-gradient(ellipse 60% 60% at 70% 30%, black, transparent 75%);
}
.dots-bg-1 { opacity: 0.6; }
.dots-bg-2 { opacity: 0.5; }

/* ---------- Tabs (rendered by JS) ---------- */
.itab svg { color: var(--muted); transition: color var(--fast); }
.itab[aria-selected="true"] svg { color: var(--gold); opacity: 1; }

/* ---------- Floats on mobile (above CTA bar) ---------- */
@media (max-width: 899px) {
  body { padding-bottom: 76px; }
  .wa-float { bottom: 86px; right: 16px; }
}

/* ---------- Waveform bars (ensure visible base) ---------- */
.waveform span { flex: 1 1 0; min-width: 3px; }

@media (min-width: 640px) {
  .use-list { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE HARDENING (all tiers, extends existing breakpoints)
   ============================================================ */

/* Fluid safety nets */
.window, .float-card, .phone, .call-stage, .banner, .ribbon, .form-card,
.panel, .board, .map, .office, .footer-word, .window-meta span { max-width: 100%; }
.p-card p, .s-txt p, .w-card p, .step-card p, .faq-a-inner p, .c-card p,
.b-card span, .bubble, .cl, .window-line, .use-list li, .f-item > span:last-child,
.call-state, .phone-title { overflow-wrap: break-word; }

/* ---------- =479px (small phones) ---------- */
@media (max-width: 479px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn, .final-cta-inner .hero-ctas .btn { width: 100%; }
  .alt-cts { flex-direction: column; }
  .alt-cts .btn { width: 100%; }
  .ribbon .btn, .banner .btn { width: 100%; }
  .ribbon { padding: 22px 18px; gap: 16px; }
  .tabs { grid-template-columns: repeat(2, 1fr); }
  .itab { padding: 12px 13px; font-size: 0.86rem; gap: 8px; border-radius: 10px; }
  .btn { padding: 15px 20px; font-size: 0.94rem; }
  .float-wa { width: 215px; top: -18px; right: 0; }
  .float-crm { width: 185px; bottom: -24px; left: 0; }
  .card-ico, .s-ico, .n-ico, .c-ico, .fc-ico, .a-cat i { transform: none; }
  .head-row { margin-bottom: 38px; }
  .lead-in { margin-top: 14px; }
  .map-pin span { display: none; }
  .map { min-height: 230px; }
  .overlay-safe { display: none; }
}

/* ---------- =639px (phones & small) ---------- */
@media (max-width: 639px) {
  .board {
    grid-template-columns: repeat(3, minmax(172px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-bottom: 14px;
  }
  .board-col { scroll-snap-align: start; }
  .board::-webkit-scrollbar { height: 6px; }
  .board::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 3px; }
  .board::-webkit-scrollbar-track { background: transparent; }
  .call-stage { padding: 20px 17px; }
  .call-top { flex-wrap: wrap; row-gap: 8px; }
  .call-name { font-size: 0.98rem; }
  .use-list { grid-template-columns: 1fr; }
  .ai-voice-grid, .crm-grid, .apps-grid, .form-grid { gap: 28px; }
  .phone { width: min(258px, 78vw); }
  .flow { max-width: 100%; }
  .flow .line { justify-self: start; }
  .stats-grid { gap: 18px; }
  .stat-label { font-size: 0.78rem; }
  .ticker-track span { font-size: 0.8rem; padding: 0 10px; }
  .theme-space { overflow: hidden; }
}

/* ---------- =768px (tablet landscape) ---------- */
@media (min-width: 768px) and (max-width: 899px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .app-cats { grid-template-columns: 1fr 1fr; }
  .hero-visual { max-width: 560px; margin-inline: auto; }
}

/* ---------- 900–1099px (desktop narrow) ---------- */
@media (min-width: 900px) and (max-width: 1099px) {
  .ai-voice-grid, .crm-grid, .apps-grid { gap: 22px; }
  .call-stage { padding: 20px; }
  .crm-grid { gap: 28px; }
  .form-grid { gap: 34px; }
  .stats-grid { gap: 10px; }
  .use-list li { font-size: 0.88rem; }
}

/* ---------- =900px (desktop): top-align tall grid columns ---------- */
@media (min-width: 900px) {
  .ai-voice-grid { align-items: start; }
  .crm-grid { align-items: start; }
  .apps-grid { align-items: start; }
  .banner { grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; }
}

/* ---------- =1180px (wide desktop) ---------- */
@media (min-width: 1180px) {
  .call-stage { padding: 30px; }
  .ai-voice-grid, .crm-grid, .apps-grid { gap: 56px; }
}
