/* =========================================================
   Web-IT.Expert — Parsing. Data / terminal premium UI
   ========================================================= */
:root {
  --bg: #06080D;
  --bg-2: #0A0D15;
  --surface: rgba(255,255,255,.04);
  --surface-2: rgba(255,255,255,.07);
  --stroke: rgba(255,255,255,.09);
  --stroke-2: rgba(255,255,255,.16);

  --text: #EAF0F7;
  --soft: #AFB8C8;
  --muted: #79829A;

  --cyan: #22D3EE;
  --blue: #3B82F6;
  --violet: #8B5CF6;
  --green: #34D399;

  --grad: linear-gradient(120deg, #22D3EE 0%, #3B82F6 52%, #8B5CF6 100%);
  --glow: rgba(34,211,238,.5);
  --glow-v: rgba(139,92,246,.45);

  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --ease: cubic-bezier(.22,1,.36,1);
  --shadow: 0 30px 80px -34px rgba(0,0,0,.8);

  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --disp: 'Space Grotesk', var(--sans);
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans); background: var(--bg); color: var(--text);
  line-height: 1.6; font-size: 16px; overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }
::selection { background: rgba(34,211,238,.32); color: #fff; }
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.container.narrow { max-width: 820px; }

/* ---------- Background ---------- */
.bg { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.bg__canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .55; }
.bg__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 0%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 0%, #000 30%, transparent 78%);
}
.bg__glow { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .42; mix-blend-mode: screen; animation: float 20s ease-in-out infinite; }
.bg__glow--1 { width: 55vw; height: 55vw; top: -18vw; left: -10vw; background: radial-gradient(circle, rgba(34,211,238,.6), transparent 62%); }
.bg__glow--2 { width: 52vw; height: 52vw; top: 30vh; right: -16vw; background: radial-gradient(circle, rgba(139,92,246,.55), transparent 62%); animation-delay: -8s; }
@keyframes float { 0%,100% { transform: translate(0,0) scale(1);} 50% { transform: translate(3vw,-3vh) scale(1.08);} }
.bg__noise { position: absolute; inset: 0; opacity: .03; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* ---------- Scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 100; }
.scroll-progress span { display: block; height: 100%; width: 0; background: var(--grad); box-shadow: 0 0 12px var(--glow); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 13px 22px; border: 1px solid transparent; border-radius: 999px; font-weight: 600; font-size: .95rem; letter-spacing: -.01em; white-space: nowrap; position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, border-color .3s; }
.btn svg { transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary { color: #061018; background: linear-gradient(120deg, #22D3EE, #38BDF8 55%, #3B82F6); box-shadow: 0 10px 30px -8px var(--glow), inset 0 1px 0 rgba(255,255,255,.4); font-weight: 700; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -10px var(--glow); }
@property --beam { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
.btn--primary::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; pointer-events: none; background: conic-gradient(from var(--beam), transparent 0 72deg, rgba(255,255,255,.95) 90deg, transparent 108deg 360deg); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; animation: beam 3.4s linear infinite; opacity: .8; }
@keyframes beam { to { --beam: 360deg; } }
.btn--ghost { color: var(--text); background: var(--surface-2); border-color: var(--stroke-2); backdrop-filter: blur(10px); }
.btn--ghost:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.1); }
.btn--block { width: 100%; }

/* ---------- Bits ---------- */
.pill { display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px 7px 12px; border-radius: 999px; font-size: .82rem; font-weight: 500; color: var(--soft); background: var(--surface); border: 1px solid var(--stroke); backdrop-filter: blur(10px); font-family: var(--mono); }
.pill__pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: blink 1.6s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.eyebrow { display: inline-block; font-family: var(--mono); font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 14px; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.glass { position: relative; background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); border: 1px solid var(--stroke); border-radius: var(--radius); backdrop-filter: blur(14px); box-shadow: var(--shadow); }
.glass::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(140deg, rgba(255,255,255,.2), transparent 42%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }

/* ---------- Header ---------- */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 90; border-bottom: 1px solid transparent; transition: background .4s var(--ease), border-color .4s, backdrop-filter .4s; }
.header.scrolled { background: rgba(7,9,15,.72); backdrop-filter: blur(18px) saturate(140%); border-bottom-color: var(--stroke); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 64px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; gap: 9px; min-width: 0; white-space: nowrap; font-family: var(--disp); font-weight: 700; font-size: 1rem; letter-spacing: 0; }
.brand__mark { width: 32px; height: 32px; flex: none; filter: drop-shadow(0 4px 12px rgba(34,211,238,.4)); }
.brand__name { display: inline-flex; align-items: baseline; gap: 4px; line-height: 1; white-space: nowrap; }
.brand__dot { color: var(--green); }
.brand__sub { color: var(--muted); font-family: var(--mono); font-weight: 500; font-size: .82rem; }
.nav { display: flex; align-items: center; justify-content: flex-end; gap: 2px; min-width: 0; }
.nav__link { padding: 8px 9px; border-radius: 9px; font-size: .86rem; font-weight: 600; white-space: nowrap; color: var(--soft); transition: color .25s, background .25s; }
.nav__link:hover { color: var(--text); background: var(--surface); }
.nav__cta { margin-left: 4px; padding: 9px 14px; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--stroke); border-radius: 12px; background: var(--surface); flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.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); }

/* ---------- Sections ---------- */
.section { padding: clamp(34px, 4.4vw, 64px) 0; position: relative; }
.section + .section { padding-top: clamp(24px, 3.2vw, 44px); }
.section--tight { padding: clamp(18px, 2.8vw, 34px) 0; }
.head { max-width: 720px; margin: 0 auto clamp(22px, 3vw, 34px); text-align: center; }
.title { font-family: var(--disp); font-weight: 700; font-size: clamp(1.85rem, 4.2vw, 2.9rem); line-height: 1.1; letter-spacing: -.03em; }
.lead { margin-top: 12px; color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.1rem); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(94px, 9vw, 112px); padding-bottom: clamp(12px, 2.4vw, 24px); }
.hero__inner { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(24px, 3.2vw, 44px); align-items: center; }
.hero__title { font-family: var(--disp); font-weight: 700; font-size: clamp(2.3rem, 5.4vw, 4rem); line-height: 1.04; letter-spacing: -.035em; margin: 20px 0 0; }
.hero__title .grad { background-size: 220% auto; animation: sheen 7s ease-in-out infinite; }
@keyframes sheen { 0%,100% { background-position: 0% center; } 50% { background-position: 100% center; } }
.hero__sub { margin-top: 16px; max-width: 540px; color: var(--soft); font-size: clamp(1rem, 1.6vw, 1.15rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 24px; }
.hero__stats { display: grid; grid-template-columns: repeat(4, auto); gap: 22px; margin-top: 30px; }
.stat__n { display: block; font-family: var(--disp); font-weight: 700; font-size: clamp(1.4rem, 2.6vw, 1.9rem); letter-spacing: -.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__l { font-size: .76rem; color: var(--muted); }

/* ---------- Extraction scene ---------- */
.scene { position: relative; display: grid; gap: 16px; perspective: 1400px; }
.browser { overflow: hidden; transform: rotateY(-6deg) rotateX(3deg); transform-style: preserve-3d; }
.browser__bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--stroke); background: rgba(255,255,255,.025); }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #2b3344; }
.dot:nth-child(1){ background:#ff5f57;} .dot:nth-child(2){ background:#febc2e;} .dot:nth-child(3){ background:#28c840;}
.browser__url { display: inline-flex; align-items: center; gap: 6px; margin-left: 8px; font-family: var(--mono); font-size: .78rem; color: var(--muted); background: rgba(0,0,0,.3); padding: 5px 12px; border-radius: 8px; border: 1px solid var(--stroke); flex: 1; }
.browser__live { font-family: var(--mono); font-size: .72rem; color: var(--green); }
.browser__page { position: relative; padding: 22px; display: grid; gap: 14px; overflow: hidden; }
.el { position: relative; border-radius: 10px; padding: 10px 12px; transition: box-shadow .35s var(--ease), background .35s var(--ease); }
.el .tag { position: absolute; top: -9px; right: 10px; font-family: var(--mono); font-style: normal; font-size: .62rem; padding: 2px 8px; border-radius: 999px; background: var(--cyan); color: #04141a; font-weight: 600; opacity: 0; transform: translateY(4px); transition: opacity .3s, transform .3s; }
.el.scan { box-shadow: inset 0 0 0 1.5px var(--cyan); background: rgba(34,211,238,.12); }
.el.scan .tag { opacity: 1; transform: none; }
.el.done { box-shadow: inset 0 0 0 1.5px rgba(52,211,153,.7); background: rgba(52,211,153,.08); }
.el.done .tag { opacity: 1; transform: none; background: var(--green); }
.el--image { display: flex; align-items: center; gap: 12px; }
.el--image .ph { width: 56px; height: 56px; border-radius: 10px; background: linear-gradient(135deg, rgba(34,211,238,.3), rgba(139,92,246,.3)); flex: none; }
.el--image::after { content: "1024×1024 · jpg"; font-family: var(--mono); font-size: .78rem; color: var(--muted); }
.el--title { font-family: var(--disp); font-weight: 600; font-size: 1.15rem; }
.el--meta { display: flex; gap: 12px; padding: 0; }
.el--price { font-family: var(--disp); font-weight: 700; font-size: 1.2rem; color: var(--cyan); }
.el--rating { color: #fbbf24; font-weight: 600; }
.el--stock { font-family: var(--mono); font-size: .85rem; color: var(--green); }
.scanline { position: absolute; left: 0; right: 0; top: 0; height: 64px; pointer-events: none; background: linear-gradient(180deg, transparent, rgba(34,211,238,.18) 60%, rgba(34,211,238,.5)); border-bottom: 1.5px solid var(--cyan); box-shadow: 0 0 26px 2px var(--glow); opacity: 0; }
.scanline.run { animation: sweep 4.6s var(--ease) infinite; }
@keyframes sweep { 0% { transform: translateY(-70px); opacity: 0; } 8% { opacity: 1; } 60% { transform: translateY(330px); opacity: 1; } 70%,100% { transform: translateY(330px); opacity: 0; } }

.result { overflow: hidden; transform: rotateY(-6deg) rotateX(3deg); transform-style: preserve-3d; }
.result__bar { display: flex; align-items: center; justify-content: space-between; padding: 11px 16px; border-bottom: 1px solid var(--stroke); font-family: var(--mono); font-size: .8rem; color: var(--soft); background: rgba(255,255,255,.025); }
.braces { color: var(--cyan); }
.result__rows b { color: var(--green); }
.json { padding: 16px 18px; font-family: var(--mono); font-size: .82rem; line-height: 1.85; overflow-x: auto; }
.json code { color: var(--soft); }
.jl { display: block; opacity: .12; transform: translateX(8px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.jl--on, .jl.show { opacity: 1; transform: none; }
.js { color: #7ee787; } .jn { color: #79c0ff; } .jb { color: #ffa657; }

/* ---------- Marquee ---------- */
.marquee { margin-top: clamp(24px, 3.6vw, 40px); overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); border-block: 1px solid var(--stroke); }
.marquee__t { display: inline-flex; align-items: center; gap: 22px; padding-block: 14px; white-space: nowrap; animation: scroll 34s linear infinite; font-family: var(--disp); font-weight: 600; }
.marquee__t span { color: var(--soft); } .marquee__t b { color: var(--cyan); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Grids / cards ---------- */
.grid { display: grid; gap: 16px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.card { padding: 28px; transition: transform .25s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease); transform-style: preserve-3d; }
.card h3 { font-family: var(--disp); font-size: 1.15rem; letter-spacing: -.02em; margin: 16px 0 8px; }
.card p { color: var(--muted); font-size: .94rem; }
.card--mini { padding: 22px; }
.card--mini h3 { font-size: 1.02rem; margin: 14px 0 6px; }
.card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 0; opacity: 0; transition: opacity .4s var(--ease); background: radial-gradient(300px circle at var(--mx,50%) var(--my,50%), rgba(34,211,238,.14), transparent 45%); }
.card:hover::after { opacity: 1; }
.card:hover { border-color: var(--stroke-2); box-shadow: 0 30px 70px -30px rgba(34,211,238,.4); }
.card > * { position: relative; z-index: 1; }

/* ---------- Icon tiles ---------- */
.ic { width: 54px; height: 54px; border-radius: 15px; flex: none; position: relative; background: linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.015)); border: 1px solid var(--stroke-2); box-shadow: inset 0 1px 0 rgba(255,255,255,.12); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.ic--lg { width: 66px; height: 66px; }
.ic::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(circle at 50% 40%, var(--glow), transparent 66%); opacity: .4; transition: opacity .4s; }
.card:hover .ic { transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 30px -16px var(--glow); }
.card:hover .ic::before { opacity: .85; }
.ic::after { content: ""; position: absolute; inset: 0; z-index: 1; background: var(--grad); filter: drop-shadow(0 1px 5px var(--glow)); -webkit-mask-position: center; mask-position: center; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-size: 26px; mask-size: 26px; }
.ic--lg::after { -webkit-mask-size: 32px; mask-size: 32px; }
[data-i="cart"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.7 13.4a2 2 0 0 0 2 1.6h9.7a2 2 0 0 0 2-1.6L23 6H6'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.7 13.4a2 2 0 0 0 2 1.6h9.7a2 2 0 0 0 2-1.6L23 6H6'/%3E%3C/svg%3E"); }
[data-i="home"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 11l9-8 9 8'/%3E%3Cpath d='M5 10v10h14V10'/%3E%3Cpath d='M9 21v-6h6v6'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 11l9-8 9 8'/%3E%3Cpath d='M5 10v10h14V10'/%3E%3Cpath d='M9 21v-6h6v6'/%3E%3C/svg%3E"); }
[data-i="search"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.5' y2='16.5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.5' y2='16.5'/%3E%3C/svg%3E"); }
[data-i="chat"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-9 8.5 8.5 8.5 0 0 1-3.8-.9L3 20l1.9-5.2A8.38 8.38 0 0 1 4 11.5 8.5 8.5 0 0 1 12.5 3 8.38 8.38 0 0 1 21 11.5z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-9 8.5 8.5 8.5 0 0 1-3.8-.9L3 20l1.9-5.2A8.38 8.38 0 0 1 4 11.5 8.5 8.5 0 0 1 12.5 3 8.38 8.38 0 0 1 21 11.5z'/%3E%3C/svg%3E"); }
[data-i="book"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z'/%3E%3C/svg%3E"); }
[data-i="plane"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M21 16v-2l-8-5V3.5a1.5 1.5 0 0 0-3 0V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M21 16v-2l-8-5V3.5a1.5 1.5 0 0 0-3 0V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5z'/%3E%3C/svg%3E"); }
[data-i="target"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Ccircle cx='12' cy='12' r='5'/%3E%3Ccircle cx='12' cy='12' r='1.5' fill='%23000'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Ccircle cx='12' cy='12' r='5'/%3E%3Ccircle cx='12' cy='12' r='1.5' fill='%23000'/%3E%3C/svg%3E"); }
[data-i="spider"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 9V4M12 15v5M9 12H3M15 12h6M7 7l-3-3M17 7l3-3M7 17l-3 3M17 17l3 3'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 9V4M12 15v5M9 12H3M15 12h6M7 7l-3-3M17 7l3-3M7 17l-3 3M17 17l3 3'/%3E%3C/svg%3E"); }
[data-i="extract"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 3v4a1 1 0 0 0 1 1h4'/%3E%3Cpath d='M5 12V5a2 2 0 0 1 2-2h7l5 5v4'/%3E%3Cpath d='M2 18h10'/%3E%3Cpath d='M9 15l3 3-3 3'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 3v4a1 1 0 0 0 1 1h4'/%3E%3Cpath d='M5 12V5a2 2 0 0 1 2-2h7l5 5v4'/%3E%3Cpath d='M2 18h10'/%3E%3Cpath d='M9 15l3 3-3 3'/%3E%3C/svg%3E"); }
[data-i="clean"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 6h18M7 6V4a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2M19 6l-1 14a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2L5 6'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 6h18M7 6V4a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2M19 6l-1 14a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2L5 6'/%3E%3C/svg%3E"); }
[data-i="deliver"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E"); }
[data-i="js"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='16 18 22 12 16 6'/%3E%3Cpolyline points='8 6 2 12 8 18'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='16 18 22 12 16 6'/%3E%3Cpolyline points='8 6 2 12 8 18'/%3E%3C/svg%3E"); }
[data-i="shield"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E"); }
[data-i="scale"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 17l6-6 4 4 8-8'/%3E%3Cpath d='M17 7h4v4'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 17l6-6 4 4 8-8'/%3E%3Cpath d='M17 7h4v4'/%3E%3C/svg%3E"); }
[data-i="clock"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpolyline points='12 7 12 12 16 14'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpolyline points='12 7 12 12 16 14'/%3E%3C/svg%3E"); }
[data-i="bell"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 8a6 6 0 0 0-12 0c0 7-3 9-3 9h18s-3-2-3-9'/%3E%3Cpath d='M13.7 21a2 2 0 0 1-3.4 0'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 8a6 6 0 0 0-12 0c0 7-3 9-3 9h18s-3-2-3-9'/%3E%3Cpath d='M13.7 21a2 2 0 0 1-3.4 0'/%3E%3C/svg%3E"); }
[data-i="price"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 12V7a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h6'/%3E%3Cpath d='M16 3v4M8 3v4M4 11h16'/%3E%3Cpath d='M18 21v-6M15 18h6'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 12V7a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h6'/%3E%3Cpath d='M16 3v4M8 3v4M4 11h16'/%3E%3Cpath d='M18 21v-6M15 18h6'/%3E%3C/svg%3E"); }
[data-i="leads"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E"); }
[data-i="chart"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='20' x2='18' y2='10'/%3E%3Cline x1='12' y1='20' x2='12' y2='4'/%3E%3Cline x1='6' y1='20' x2='6' y2='14'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='20' x2='18' y2='10'/%3E%3Cline x1='12' y1='20' x2='12' y2='4'/%3E%3Cline x1='6' y1='20' x2='6' y2='14'/%3E%3C/svg%3E"); }
[data-i="brain"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M12 2l1.8 5L19 8.8l-5 1.8L12.2 16 10.4 11 5 9.2l5.2-1.8L12 2z'/%3E%3Cpath d='M18.5 13l.95 2.55L22 16.5l-2.55.95L18.5 20l-.95-2.55L15 16.5l2.55-.95L18.5 13z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M12 2l1.8 5L19 8.8l-5 1.8L12.2 16 10.4 11 5 9.2l5.2-1.8L12 2z'/%3E%3Cpath d='M18.5 13l.95 2.55L22 16.5l-2.55.95L18.5 20l-.95-2.55L15 16.5l2.55-.95L18.5 13z'/%3E%3C/svg%3E"); }
[data-i="eye"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E"); }

/* ---------- Pipeline ---------- */
.pipeline { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 10px; }
.pipe { padding: 24px 20px; text-align: center; }
.pipe .ic { margin: 0 auto 14px; }
.pipe__n { display: block; font-family: var(--mono); font-size: .78rem; color: var(--cyan); margin-bottom: 8px; }
.pipe h3 { font-family: var(--disp); font-size: 1.05rem; margin-bottom: 6px; }
.pipe p { color: var(--muted); font-size: .85rem; }
.pipe__arrow { width: 100%; height: 2px; min-width: 18px; position: relative; background: linear-gradient(90deg, rgba(34,211,238,.5), rgba(139,92,246,.4)); border-radius: 2px; overflow: hidden; }
.pipe__arrow::after { content: ""; position: absolute; top: 50%; left: 0; width: 8px; height: 8px; margin-top: -4px; border-radius: 50%; background: #fff; box-shadow: 0 0 10px var(--cyan); animation: flow 2.2s linear infinite; }
@keyframes flow { from { left: -8px; opacity: 0; } 15%,85% { opacity: 1; } to { left: 100%; opacity: 0; } }

/* ---------- Formats ---------- */
.formats { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.fmt { font-family: var(--mono); font-size: .92rem; color: var(--soft); padding: 12px 20px; border-radius: 12px; background: var(--surface); border: 1px solid var(--stroke); transition: transform .3s var(--ease), border-color .3s, color .3s, box-shadow .3s; }
.fmt:hover { transform: translateY(-3px); color: var(--text); border-color: var(--stroke-2); box-shadow: 0 14px 30px -16px var(--glow); }

/* ---------- Compliance band ---------- */
.band { display: flex; align-items: center; gap: 24px; padding: 30px 34px; overflow: hidden; }
.band__glow { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 70% at 12% 30%, rgba(52,211,153,.16), transparent 60%); pointer-events: none; }
.band h3 { font-family: var(--disp); font-size: 1.3rem; margin-bottom: 6px; position: relative; }
.band p { color: var(--muted); max-width: 70ch; position: relative; }
.band .ic { position: relative; }

/* ---------- Pricing ---------- */
.price { display: flex; flex-direction: column; }
.price h3 { font-family: var(--disp); font-size: 1.2rem; margin: 0 0 6px; }
.price__v { font-family: var(--disp); font-weight: 700; font-size: 1.9rem; letter-spacing: -.02em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price__v span { font-size: 1rem; color: var(--muted); -webkit-text-fill-color: var(--muted); }
.price__d { color: var(--muted); font-size: .85rem; margin-top: 2px; }
.price--hot { border-color: rgba(34,211,238,.4); box-shadow: 0 30px 70px -34px rgba(34,211,238,.5); }
.price__badge { position: absolute; top: 16px; right: 16px; font-family: var(--mono); font-size: .66rem; text-transform: uppercase; letter-spacing: .08em; padding: 4px 10px; border-radius: 999px; background: var(--grad); color: #04141a; font-weight: 700; }
.ticks { display: grid; gap: 10px; margin: 20px 0 24px; }
.ticks li { position: relative; padding-left: 28px; color: var(--soft); font-size: .92rem; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--grad); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat; }
.ticks--lg li { font-size: 1rem; margin-bottom: 2px; }
.price .btn { margin-top: auto; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq__i { border: 1px solid var(--stroke); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; transition: border-color .3s, background .3s; }
.faq__i[open] { border-color: var(--stroke-2); background: var(--surface-2); }
.faq__i summary { list-style: none; cursor: pointer; padding: 19px 22px; font-family: var(--disp); font-weight: 600; font-size: 1.04rem; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq__i summary::-webkit-details-marker { display: none; }
.faq__i summary::after { content: ""; width: 22px; height: 22px; flex: none; border-radius: 50%; border: 1px solid var(--stroke-2); background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23AFB8C8' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='12' y1='6' x2='12' y2='18'/%3E%3Cline x1='6' y1='12' x2='18' y2='12'/%3E%3C/svg%3E") center/13px no-repeat; transition: transform .3s var(--ease); }
.faq__i[open] summary::after { transform: rotate(135deg); }
.faq__b { padding: 0 22px 19px; color: var(--muted); }

/* ---------- CTA / form ---------- */
.cta { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 56px); padding: clamp(32px, 4vw, 52px); align-items: center; overflow: hidden; }
.cta__glow { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 12% 25%, rgba(34,211,238,.2), transparent 60%), radial-gradient(ellipse 50% 60% at 90% 85%, rgba(139,92,246,.18), transparent 60%); pointer-events: none; }
.cta__left { position: relative; }
.cta .title, .cta .lead { text-align: left; }
.form { position: relative; display: grid; gap: 15px; }
.field { display: grid; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field label { font-size: .8rem; font-weight: 500; color: var(--soft); }
.field input, .field select { width: 100%; padding: 13px 15px; border-radius: 12px; background: rgba(0,0,0,.28); border: 1px solid var(--stroke); color: var(--text); font-family: inherit; font-size: .95rem; transition: border-color .25s, box-shadow .25s, background .25s; }
.field input::placeholder { color: #5a6276; }
.field input:focus, .field select:focus { outline: none; border-color: rgba(34,211,238,.6); box-shadow: 0 0 0 3px rgba(34,211,238,.18); background: rgba(0,0,0,.4); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2379829A' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 40px; }
.field select option { background: #11141c; }
.field input.invalid { border-color: #f87171; box-shadow: 0 0 0 3px rgba(248,113,113,.15); }
.form__note { font-size: .78rem; color: var(--muted); text-align: center; }
.form__ok { margin-top: 2px; padding: 13px 16px; border-radius: 12px; background: rgba(52,211,153,.12); border: 1px solid rgba(52,211,153,.35); color: #6ee7b7; font-size: .9rem; text-align: center; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--stroke); padding-top: 38px; margin-top: 18px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 28px; padding-bottom: 32px; }
.footer__brand p { color: var(--muted); margin-top: 14px; max-width: 300px; font-size: .92rem; }
.footer__col h4 { font-family: var(--disp); font-size: .95rem; margin-bottom: 14px; }
.footer__col a { display: block; color: var(--muted); padding: 6px 0; font-size: .92rem; transition: color .25s; }
.footer__col a:hover { color: var(--text); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding: 22px; border-top: 1px solid var(--stroke); color: var(--muted); font-size: .84rem; font-family: var(--mono); }

/* ---------- Reveal + interactive ---------- */
[data-reveal] { opacity: 0; filter: blur(10px); transition: opacity .9s var(--ease), filter .9s var(--ease); will-change: opacity, filter; }
[data-reveal].in { opacity: 1; filter: blur(0); }
.grid [data-reveal], .pipeline [data-reveal] { transition-delay: calc(var(--i, 0) * 65ms); }

.cursor-glow { position: fixed; left: 0; top: 0; width: 440px; height: 440px; margin: -220px 0 0 -220px; border-radius: 50%; pointer-events: none; z-index: -1; background: radial-gradient(circle, var(--glow), transparent 60%); opacity: 0; mix-blend-mode: screen; filter: blur(34px); transition: opacity .5s var(--ease); }
.cursor-glow.on { opacity: .5; }
[data-parallax] { transform: translate3d(0, var(--py, 0px), 0); will-change: transform; }

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .hero__inner { grid-template-columns: 1fr; }
  .scene { max-width: 560px; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .pipeline { grid-template-columns: repeat(3, 1fr); }
  .pipe__arrow { display: none; }
}
@media (max-width: 1180px) {
  .container { padding-inline: 18px; }
  .nav__link--optional { display: none; }
  .nav__link { padding-inline: 8px; }
}
@media (max-width: 980px) {
  .nav { position: fixed; inset: 64px 0 auto; flex-direction: column; align-items: stretch; gap: 6px; padding: 18px 22px 26px; background: rgba(7,9,15,.95); backdrop-filter: blur(18px); border-bottom: 1px solid var(--stroke); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform .35s var(--ease), opacity .35s; }
  .nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__link, .nav__link--optional { display: block; padding: 13px 14px; }
  .nav__cta { margin-left: 0; text-align: center; }
  .nav-toggle { display: flex; }
}
@media (max-width: 760px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 22px 18px; }
  .cta { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer__brand { grid-column: span 2; }
  .browser, .result { transform: none; }
}
@media (max-width: 520px) {
  .grid--3, .grid--4, .pipeline { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .field-row { grid-template-columns: 1fr; }
  .band { flex-direction: column; text-align: center; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
}

/* =========================================================
   Theme toggle + light theme
   ========================================================= */
.header__right { display: flex; align-items: center; justify-content: flex-end; flex: 1 1 auto; gap: 10px; min-width: 0; }
.theme-toggle { width: 38px; height: 38px; border-radius: 11px; flex: none; border: 1px solid var(--stroke); background: var(--surface); color: var(--soft); display: grid; place-items: center; transition: color .25s, border-color .25s, background .25s, transform .25s var(--ease); }
.theme-toggle:hover { color: var(--text); border-color: var(--stroke-2); transform: translateY(-1px); }
.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle .ic-moon { display: none; }
[data-theme="light"] .theme-toggle .ic-sun { display: none; }
[data-theme="light"] .theme-toggle .ic-moon { display: block; }

[data-theme="light"] {
  --bg: #F4F7FB; --bg-2: #FFFFFF;
  --surface: rgba(13,21,46,.04); --surface-2: rgba(13,21,46,.06);
  --stroke: rgba(13,21,46,.1); --stroke-2: rgba(13,21,46,.17);
  --text: #0B1020; --soft: #394259; --muted: #626a82;
  --glow: rgba(34,211,238,.3); --glow-v: rgba(139,92,246,.28);
  --shadow: 0 30px 60px -30px rgba(20,30,80,.18);
}
/* surfaces that assumed dark */
[data-theme="light"] body { color: var(--text); }
[data-theme="light"] .glass { background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.62)); }
[data-theme="light"] .glass::before { background: linear-gradient(140deg, rgba(255,255,255,.95), transparent 42%); }
/* keep the "device" windows dark (premium code-on-light look) */
[data-theme="light"] .browser, [data-theme="light"] .result { background: linear-gradient(180deg, rgba(16,21,33,.97), rgba(11,15,25,.97)); border-color: rgba(255,255,255,.08); box-shadow: 0 40px 80px -36px rgba(20,30,80,.4); }
[data-theme="light"] .browser::before, [data-theme="light"] .result::before { background: linear-gradient(140deg, rgba(255,255,255,.16), transparent 42%); }
[data-theme="light"] .header.scrolled { background: rgba(255,255,255,.78); }
[data-theme="light"] .bg__grid { background-image: linear-gradient(rgba(13,21,46,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(13,21,46,.05) 1px, transparent 1px); }
[data-theme="light"] .bg__glow { mix-blend-mode: normal; opacity: .22; }
[data-theme="light"] .bg__canvas { opacity: .4; }
[data-theme="light"] .bg__noise { opacity: .02; }
[data-theme="light"] .ic { background: linear-gradient(160deg, rgba(13,21,46,.06), rgba(13,21,46,.02)); box-shadow: inset 0 1px 0 rgba(255,255,255,.7); }
[data-theme="light"] .ic::before { opacity: .3; }
[data-theme="light"] .card::after { background: radial-gradient(300px circle at var(--mx,50%) var(--my,50%), rgba(13,21,46,.06), transparent 45%); }
[data-theme="light"] .btn--ghost:hover { background: rgba(13,21,46,.05); border-color: rgba(13,21,46,.2); }
[data-theme="light"] .field input, [data-theme="light"] .field select { background: #fff; border-color: rgba(13,21,46,.14); }
[data-theme="light"] .field input::placeholder { color: #9aa1b4; }
[data-theme="light"] .field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23626a82' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; }
[data-theme="light"] .field select option { background: #fff; }
[data-theme="light"] .faq__i summary::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23394259' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='12' y1='6' x2='12' y2='18'/%3E%3Cline x1='6' y1='12' x2='18' y2='12'/%3E%3C/svg%3E"); }
@media (max-width: 980px) { [data-theme="light"] .nav { background: rgba(255,255,255,.96); } }

/* =========================================================
   Popular cases — filter + cards
   ========================================================= */
.filters { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin-bottom: 22px; }
.filter { padding: 9px 16px; border-radius: 999px; border: 1px solid var(--stroke); background: var(--surface); color: var(--soft); font-weight: 600; font-size: .86rem; transition: color .25s, border-color .25s, background .25s, transform .2s var(--ease); }
.filter:hover { color: var(--text); border-color: var(--stroke-2); transform: translateY(-1px); }
.filter.is-active { color: #fff; background: var(--grad); border-color: transparent; box-shadow: 0 10px 26px -10px var(--glow); }
.kase { display: flex; flex-direction: column; }
.kase.is-hidden { display: none; }
.kase.fade-in { animation: fadeUp .5s var(--ease) backwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.kase__tag { align-self: flex-start; font-family: var(--mono); font-size: .68rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--cyan); background: rgba(34,211,238,.1); border: 1px solid rgba(34,211,238,.28); padding: 4px 10px; border-radius: 999px; margin-top: 14px; }
[data-theme="light"] .kase__tag { color: #0e7490; background: rgba(34,211,238,.12); }
.kase__more { margin-top: 14px; font-family: var(--mono); font-size: .8rem; font-weight: 600; color: var(--cyan); display: inline-flex; align-items: center; gap: 5px; transition: gap .2s var(--ease); }
.kase__more:hover { gap: 9px; }
.section-actions { display: flex; justify-content: center; margin-top: 22px; }
.case-catalog { align-items: stretch; }
.case-card { min-height: 238px; }
.case-card__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.case-card__top .kase__tag { margin-top: 0; }
.case-number { font-family: var(--mono); font-size: .78rem; font-weight: 700; color: var(--soft); padding: 5px 9px; border-radius: 999px; border: 1px solid var(--stroke); background: var(--surface-2); }
.case-card h3 { margin-top: 0; }
.case-card .kase__more { margin-top: auto; padding-top: 16px; }
.city-catalog { align-items: stretch; }
.city-card { min-height: 172px; }
.city-card h3 { margin-top: 14px; }
.city-card p { margin-bottom: 14px; }
.city-card .kase__more { margin-top: auto; }
.geo-card { min-height: 202px; }
.geo-card p { overflow-wrap: anywhere; }

/* Landing pages (SEO) */
.back-link { display: inline-flex; align-items: center; gap: 7px; font-size: .9rem; font-weight: 500; color: var(--muted); margin-bottom: 18px; transition: color .2s; }
.back-link:hover { color: var(--text); }
.spec { display: grid; gap: 10px; }
.spec__row { display: flex; align-items: center; gap: 11px; font-size: .92rem; color: var(--soft); }
.spec__row i { width: 20px; height: 20px; flex: none; border-radius: 50%; background: var(--grad); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat; }
.section.section--deep { padding-top: clamp(30px, 4vw, 54px); }
.seo-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(280px, .85fr); gap: 16px; align-items: stretch; }
.seo-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.seo-panel { padding: clamp(22px, 3vw, 32px); overflow: hidden; }
.seo-panel h3 { font-family: var(--disp); font-size: clamp(1.08rem, 1.7vw, 1.35rem); line-height: 1.18; letter-spacing: -.02em; margin-bottom: 14px; }
.seo-panel .panel-title { font-family: var(--disp); font-size: clamp(1.35rem, 2.4vw, 2rem); line-height: 1.08; margin-bottom: 16px; }
.seo-panel p { color: var(--muted); font-size: .95rem; }
.seo-panel__label { display: inline-flex; margin-bottom: 12px; font-family: var(--mono); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--cyan); }
.table-wrap { width: 100%; overflow-x: auto; border: 1px solid var(--stroke); border-radius: 14px; background: rgba(0,0,0,.16); }
.data-table { width: 100%; min-width: 680px; border-collapse: collapse; font-size: .9rem; }
.data-table th, .data-table td { padding: 13px 15px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--stroke); }
.data-table th { font-family: var(--mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--soft); background: rgba(255,255,255,.035); }
.data-table tr:last-child td { border-bottom: 0; }
.data-table td:first-child { color: var(--text); font-weight: 700; }
.data-table td:nth-child(2) { color: var(--soft); }
.data-table code { display: inline-block; max-width: 220px; overflow-wrap: anywhere; color: var(--green); font-family: var(--mono); font-size: .8rem; }
.metric-list { display: grid; gap: 10px; }
.metric-list div { padding: 14px 16px; border: 1px solid var(--stroke); border-radius: 14px; background: rgba(255,255,255,.035); }
.metric-list span { display: block; color: var(--muted); font-family: var(--mono); font-size: .72rem; margin-bottom: 4px; }
.metric-list b { display: block; color: var(--text); font-size: .96rem; line-height: 1.35; }
.mini-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.mini-tags span { display: inline-flex; align-items: center; min-height: 34px; padding: 7px 12px; border-radius: 999px; border: 1px solid rgba(34,211,238,.24); background: rgba(34,211,238,.09); color: var(--soft); font-size: .86rem; }
.note-list { display: grid; gap: 10px; }
.note-list li { position: relative; padding-left: 22px; color: var(--soft); font-size: .92rem; }
.note-list li::before { content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px rgba(52,211,153,.7); }
[data-theme="light"] .table-wrap { background: rgba(255,255,255,.5); }
[data-theme="light"] .data-table th { background: rgba(13,21,46,.045); }
[data-theme="light"] .metric-list div { background: rgba(13,21,46,.035); }
.related { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.related a { font-family: var(--mono); font-size: .86rem; color: var(--soft); padding: 9px 16px; border-radius: 999px; background: var(--surface); border: 1px solid var(--stroke); transition: color .25s, border-color .25s, transform .2s var(--ease); }
.related a:hover { color: var(--text); border-color: var(--stroke-2); transform: translateY(-2px); }
.related--vertical { display: grid; justify-content: stretch; }
.related--vertical a { border-radius: 12px; }
.related--compact { margin-top: 18px; }
.guide-hero { padding-bottom: 0; }
.guide-head { max-width: 920px; padding: clamp(24px, 4vw, 42px); }
.guide-head .hero__title { max-width: 820px; }
.guide-head .hero__sub { max-width: 760px; }
.article-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 18px; align-items: start; }
.article-body { padding: clamp(24px, 3.4vw, 42px); }
.article-body h2 { font-family: var(--disp); font-size: clamp(1.35rem, 2.3vw, 2rem); line-height: 1.16; letter-spacing: -.025em; margin: 26px 0 10px; }
.article-body h2:first-child { margin-top: 0; }
.article-body p { color: var(--soft); font-size: clamp(1rem, 1.35vw, 1.08rem); line-height: 1.8; }
.article-body ul { display: grid; gap: 11px; margin-top: 14px; }
.article-body li { position: relative; padding-left: 26px; color: var(--soft); }
.article-body li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 12px var(--glow); }
.article-side { display: grid; gap: 16px; position: sticky; top: 88px; }
.region-card { align-self: center; }
.region-card .metric-list div { min-height: 72px; }

@media (max-width: 1040px) {
  .seo-layout { grid-template-columns: 1fr; }
  .seo-trio { grid-template-columns: repeat(2, 1fr); }
  .article-wrap { grid-template-columns: 1fr; }
  .article-side { position: static; grid-template-columns: repeat(2, 1fr); }
  .region-card { max-width: 620px; }
}
@media (max-width: 640px) {
  .seo-trio { grid-template-columns: 1fr; }
  .data-table { min-width: 620px; }
  .seo-panel { padding: 22px; }
  .article-side { grid-template-columns: 1fr; }
  .guide-head { padding: 24px; }
  .article-body { padding: 24px; }
}
