:root {
  --bg: #0b0c0e;
  --bg-alt: #0e0f12;
  --panel: #141518;
  --panel-2: #191a1e;
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.14);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.56);
  --faint: rgba(255, 255, 255, 0.38);
  --white: #f4f4f2;
  --live: #35d07f;
  --radius: 14px;
  --wrap: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }

h1, h2, h3, h4 { font-weight: 500; line-height: 1.05; letter-spacing: -0.02em; }

a { color: inherit; text-decoration: none; }

/* GRAIN */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* REVEAL */
[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
[data-reveal].in { opacity: 1; transform: none; }
.no-motion [data-reveal] { opacity: 1; transform: none; transition: none; }

/* ANNOUNCEMENT BAR */
.announce {
  position: relative; z-index: 60;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 10px 44px; font-size: 13.5px; color: var(--muted);
  background: var(--bg-alt); border-bottom: 1px solid var(--line);
}
.announce span { color: var(--text); font-weight: 500; }
.announce a { color: var(--muted); transition: color .15s; }
.announce a:hover { color: var(--text); }
.announce-x { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--faint); font-size: 20px; line-height: 1; cursor: pointer; padding: 4px; transition: color .15s; }
.announce-x:hover { color: var(--text); }
.announce.hide { display: none; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 12, 14, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s;
}
.nav.scrolled { background: rgba(11, 12, 14, 0.9); border-bottom-color: var(--line); }
.nav-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 18px; letter-spacing: -0.02em; }
.brand-mark { width: 36px; height: 36px; display: inline-flex; color: var(--white); }
.brand-mark svg { width: 100%; height: 100%; }
.brand-mark .pulse { stroke-dasharray: 1; stroke-dashoffset: 1; animation: beat 4.4s cubic-bezier(.4,0,.2,1) infinite; }
@keyframes beat {
  0%   { stroke-dashoffset: 1; }
  16%  { stroke-dashoffset: 0; }
  60%  { stroke-dashoffset: 0; }
  76%  { stroke-dashoffset: -1; }
  100% { stroke-dashoffset: -1; }
}
@media (prefers-reduced-motion: reduce) {
  .brand-mark .pulse { stroke-dashoffset: 0; animation: none; }
}
.nav-links { display: flex; gap: 30px; justify-self: center; }
.nav-links a { color: var(--muted); font-size: 14.5px; font-weight: 450; transition: color .15s; }
.nav-links a:hover { color: var(--text); }
.nav .btn { justify-self: end; }

/* BUTTONS */
.btn {
  display: inline-block;
  background: var(--white);
  color: #0b0c0e; font-weight: 550; font-size: 14.5px;
  padding: 11px 20px; border-radius: 9px;
  transition: transform .14s var(--ease), background .14s, opacity .14s;
}
.btn:hover { background: #fff; transform: translateY(-1px); }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 14px 28px; font-size: 15.5px; }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line-2); }
.btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.24); }

/* HERO */
.hero { padding: 72px 0 0; position: relative; z-index: 2; }
.hero-top { display: grid; grid-template-columns: 1.55fr 1fr; gap: 48px; align-items: end; padding-bottom: 56px; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 500;
  letter-spacing: 0.01em; color: var(--muted);
  border: 1px solid var(--line); padding: 6px 13px; border-radius: 100px;
  margin-bottom: 28px; background: rgba(255,255,255,0.02);
}
.hero h1 { font-size: clamp(40px, 6vw, 68px); font-weight: 400; letter-spacing: -0.032em; line-height: 0.98; color: rgba(255,255,255,0.96); }
.dim { color: rgba(255, 255, 255, 0.42); }
.lede { font-size: 16.5px; color: var(--muted); margin-bottom: 26px; max-width: 400px; }
.hero-aside { padding-bottom: 6px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* CHAT PANEL */
.chat {
  background: var(--panel); border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
  max-width: 940px; margin: 0 auto;
}
.chat-bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-bottom: 1px solid var(--line); background: var(--panel-2); }
.dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.14); }
.chat-title { margin-left: 10px; font-size: 13px; color: var(--muted); font-weight: 500; }
.chat-live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--faint); }
.chat-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--live); box-shadow: 0 0 8px rgba(53,208,127,0.7); animation: livepulse 2s infinite; }
@keyframes livepulse { 0%,100% { opacity: .55; } 50% { opacity: 1; } }
.chat-body { padding: 22px 22px 24px; min-height: 340px; display: flex; flex-direction: column; gap: 15px; }

.msg { display: flex; gap: 12px; opacity: 0; transform: translateY(9px); transition: opacity .45s var(--ease), transform .45s var(--ease); }
.msg.show { opacity: 1; transform: none; }
.av { flex-shrink: 0; width: 32px; height: 32px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 12px; }
.av-you { background: rgba(255,255,255,0.10); color: var(--text); }
.av-cad { background: var(--white); color: #0b0c0e; }
.bubble { font-size: 14px; color: var(--text); line-height: 1.5; }
.who { display: block; font-size: 12.5px; color: var(--faint); margin-bottom: 3px; }
.who em { font-style: normal; margin-left: 5px; }
.who .bot { background: rgba(255,255,255,0.09); color: var(--muted); font-size: 9.5px; font-weight: 600; letter-spacing: 0.05em; padding: 1px 5px; border-radius: 4px; vertical-align: middle; }
.pill { display: inline-block; font-size: 11px; letter-spacing: 0.02em; color: var(--muted); background: rgba(255,255,255,0.05); border: 1px solid var(--line); border-radius: 5px; padding: 1px 7px; margin-right: 7px; }
.reaction { display: inline-block; margin-top: 7px; background: rgba(255,255,255,0.06); border: 1px solid var(--line-2); border-radius: 20px; padding: 2px 9px; font-size: 12px; color: var(--text); }

.typing { display: none; gap: 12px; align-items: center; }
.typing.show { display: flex; }
.typing .dots { display: flex; gap: 4px; background: var(--panel-2); padding: 12px 14px; border-radius: 10px; }
.typing .dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--faint); animation: bounce 1.3s infinite; }
.typing .dots i:nth-child(2) { animation-delay: .18s; } .typing .dots i:nth-child(3) { animation-delay: .36s; }
@keyframes bounce { 0%, 60%, 100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-5px); opacity: 1; } }

/* TICKER */
.ticker { margin-top: 64px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-alt); overflow: hidden; position: relative; }
.ticker::before, .ticker::after { content: ""; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none; }
.ticker::before { left: 0; background: linear-gradient(90deg, var(--bg-alt), transparent); }
.ticker::after { right: 0; background: linear-gradient(270deg, var(--bg-alt), transparent); }
.ticker-track { display: flex; align-items: center; gap: 26px; white-space: nowrap; padding: 15px 0; width: max-content; animation: marquee 40s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span { font-size: 13.5px; color: var(--muted); letter-spacing: 0.01em; }
.ticker-track .sep { color: var(--faint); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* STRIP */
.strip { border-bottom: 1px solid var(--line); background: var(--bg); padding: 48px 0; position: relative; z-index: 2; }
.strip-label { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--faint); margin-bottom: 24px; }
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.strip-grid div { display: flex; flex-direction: column; padding-left: 16px; border-left: 1px solid var(--line-2); }
.strip-grid strong { font-size: 16px; font-weight: 550; margin-bottom: 4px; }
.strip-grid span { color: var(--muted); font-size: 14.5px; }

/* SECTIONS */
.section { padding: 104px 0; position: relative; z-index: 2; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 640px; margin-bottom: 56px; }
.kicker { font-size: 13px; font-weight: 500; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 18px; }
.section h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 400; letter-spacing: -0.028em; line-height: 1.04; margin-bottom: 18px; }
.section-sub { font-size: 17px; color: var(--muted); }

/* CARDS */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; position: relative; overflow: hidden; transition: border-color .2s, background .2s, transform .2s var(--ease); }
.card:hover { border-color: var(--line-2); background: var(--panel-2); transform: translateY(-2px); }
.card-icon { width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.04); border: 1px solid var(--line); color: rgba(255,255,255,0.82); margin-bottom: 20px; }
.card-icon svg { width: 21px; height: 21px; }
.card-num { position: absolute; top: 28px; right: 28px; font-size: 13px; color: var(--faint); }
.card h3 { font-size: 20px; font-weight: 550; margin-bottom: 9px; letter-spacing: -0.02em; }
.card p { color: var(--muted); font-size: 15px; }
.card-flag { border-color: var(--line-2); }
.flag-tag { display: inline-block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); background: rgba(255,255,255,0.05); border: 1px solid var(--line); border-radius: 6px; padding: 3px 9px; margin-bottom: 14px; }

/* WIDE FEATURE CARD (dashboards) */
.card-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; }
.card-wide-text { position: relative; }
.card-wide-text .card-num { position: static; margin: 12px 0 10px; }
.card-wide h3 { font-size: 22px; }
.card-wide p { font-size: 15px; max-width: 400px; }

/* dashboard mock */
.dash-mock { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.dash-bar { display: flex; align-items: center; gap: 7px; margin-bottom: 14px; }
.dash-d { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.14); }
.dash-t { margin-left: 8px; font-size: 12px; color: var(--muted); font-weight: 500; }
.dash-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 12px; }
.dash-tile { background: var(--panel); border: 1px solid var(--line); border-radius: 9px; padding: 11px 11px 9px; }
.dash-tile span { display: block; font-size: 10.5px; color: var(--faint); margin-bottom: 8px; letter-spacing: 0.01em; }
.dash-tile svg { width: 100%; height: 22px; display: block; }
.dash-tile polyline { fill: none; stroke: var(--live); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.dash-chart { display: flex; align-items: flex-end; gap: 7px; height: 60px; padding: 12px; background: var(--panel); border: 1px solid var(--line); border-radius: 9px; }
.dash-chart i { flex: 1; background: rgba(255,255,255,0.16); border-radius: 3px 3px 0 0; }
.dash-chart i:nth-child(1){height:38%} .dash-chart i:nth-child(2){height:56%} .dash-chart i:nth-child(3){height:44%} .dash-chart i:nth-child(4){height:70%} .dash-chart i:nth-child(5){height:52%} .dash-chart i:nth-child(6){height:82%} .dash-chart i:nth-child(7){height:64%} .dash-chart i:nth-child(8){height:92%}
.dash-chart i:last-child { background: var(--live); opacity: 0.85; }

/* CASE STUDY */
.case { display: grid; grid-template-columns: 340px 1fr; gap: 28px; align-items: start; }
.case-side { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; position: sticky; top: 92px; }
.case-name { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 5px; }
.case-meta { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 18px; }
.case-meta::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--live); box-shadow: 0 0 6px rgba(53,208,127,0.7); }
.case-blurb { color: var(--muted); font-size: 15px; margin-bottom: 22px; }
.case-stats { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.case-stats li { color: var(--muted); font-size: 14.5px; padding-left: 18px; position: relative; }
.case-stats li strong { color: var(--text); font-weight: 550; }
.case-stats li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 1px; background: var(--faint); }
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.agent-card { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 22px; transition: border-color .2s, background .2s, transform .2s var(--ease); }
.agent-card:hover { border-color: var(--line-2); background: var(--panel-2); transform: translateY(-2px); }
.agent-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.04); border: 1px solid var(--line); color: rgba(255,255,255,0.78); margin-bottom: 14px; }
.agent-icon svg { width: 20px; height: 20px; }
.agent-card h4 { font-size: 16px; font-weight: 550; margin-bottom: 5px; letter-spacing: -0.01em; }
.agent-card p { color: var(--muted); font-size: 14px; }

/* TABS */
.tabs { border: 1px solid var(--line); border-radius: 18px; background: var(--panel); overflow: hidden; }
.tab-bar { display: flex; border-bottom: 1px solid var(--line); background: var(--panel-2); }
.tab {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: none; border: none; cursor: pointer; color: var(--muted);
  font-family: inherit; font-size: 14.5px; font-weight: 500; letter-spacing: -0.01em;
  padding: 17px 18px; transition: color .18s, background .18s; position: relative;
}
.tab:hover { color: var(--text); }
.tab.is-active { color: var(--text); background: var(--panel); }
.tab.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: var(--white); }
.tab + .tab { border-left: 1px solid var(--line); }
.tab-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.2); transition: background .18s, box-shadow .18s; }
.tab.is-active .tab-dot { background: var(--live); box-shadow: 0 0 8px rgba(53,208,127,0.7); }

.tab-panel { display: none; padding: 40px; }
.tab-panel.is-active { display: block; animation: fadepanel .5s var(--ease); }
@keyframes fadepanel { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.no-motion .tab-panel.is-active { animation: none; }

.case2-head { max-width: 640px; margin-bottom: 8px; }
.case2-name { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 10px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.conf { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); background: rgba(255,255,255,0.05); border: 1px solid var(--line); border-radius: 6px; padding: 3px 9px; }
.case2-blurb { color: var(--muted); font-size: 15.5px; }

/* INTEGRATION DIAGRAM */
.diagram { position: relative; width: 100%; max-width: 860px; margin: 30px auto 0; aspect-ratio: 1000 / 640; }
.diagram-lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; z-index: 1; }
.wire {
  stroke: rgba(255,255,255,0.16); stroke-width: 1.4; fill: none;
  stroke-dasharray: 5 7; stroke-dashoffset: 0;
  transition: stroke .2s, stroke-width .2s;
}
.diagram.play .wire { animation: flow 1.2s linear infinite; }
.wire.hot { stroke: var(--live); stroke-width: 1.8; }
@keyframes flow { to { stroke-dashoffset: -24; } }

.hub {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 168px; z-index: 3; text-align: center;
  background: var(--white); color: #0b0c0e; border-radius: 16px; padding: 18px 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
.hub-icon { width: 34px; height: 34px; margin: 0 auto 8px; display: flex; align-items: center; justify-content: center; }
.hub-icon svg { width: 24px; height: 24px; }
.hub-name { font-size: 17px; font-weight: 650; letter-spacing: -0.02em; }
.hub-sub { font-size: 11.5px; line-height: 1.35; color: rgba(11,12,14,0.62); margin-top: 4px; }

.node {
  position: absolute; z-index: 2; width: 220px; transform: translate(-50%, -50%);
  display: flex; gap: 11px; align-items: flex-start;
  background: var(--panel-2); border: 1px solid var(--line); border-radius: 12px; padding: 13px 14px;
  opacity: 0; transition: border-color .2s, background .2s, box-shadow .2s, opacity .5s var(--ease), transform .5s var(--ease);
}
.diagram.play .node { opacity: 1; }
.node.lit { border-color: rgba(53,208,127,0.5); background: var(--panel); box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.node-icon { flex-shrink: 0; width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.05); border: 1px solid var(--line); color: rgba(255,255,255,0.82); }
.node-icon svg { width: 18px; height: 18px; }
.node-body strong { display: block; font-size: 13.5px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 2px; }
.node-body span { font-size: 12px; color: var(--muted); line-height: 1.35; }

.node-tl { left: 15%; top: 17.5%; } .node-ml { left: 15%; top: 50%; } .node-bl { left: 15%; top: 82.5%; }
.node-tr { left: 85%; top: 17.5%; } .node-mr { left: 85%; top: 50%; } .node-br { left: 85%; top: 82.5%; }

.diagram-cap { text-align: center; font-size: 13px; color: var(--faint); margin-top: 26px; }

/* HEDGE FUND PIPELINE VIZ */
.fund-viz { position: relative; width: 100%; max-width: 860px; margin: 30px auto 0; aspect-ratio: 1000 / 640; }
.fund-viz .diagram-lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; z-index: 1; }
.fund-viz .wire { stroke: rgba(255,255,255,0.16); stroke-width: 1.4; fill: none; stroke-dasharray: 5 7; }
.fund-viz.play .wire { animation: flow 1.2s linear infinite; }

.fv-sources, .fv-card, .fv-hub { opacity: 0; transition: opacity .55s var(--ease), transform .55s var(--ease); }
.fund-viz.play .fv-sources, .fund-viz.play .fv-card, .fund-viz.play .fv-hub { opacity: 1; }
.no-motion .fv-sources, .no-motion .fv-card, .no-motion .fv-hub { opacity: 1; }

/* source chips */
.fv-sources { position: absolute; left: 50%; top: 11%; transform: translate(-50%, -50%); z-index: 3; display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.fv-sources span { font-size: 12px; color: var(--muted); background: var(--panel-2); border: 1px solid var(--line); border-radius: 100px; padding: 6px 13px; white-space: nowrap; }

/* artifact cards */
.fv-card { position: absolute; top: 39%; transform: translate(-50%, -50%); z-index: 2; width: 288px; background: var(--panel-2); border: 1px solid var(--line); border-radius: 13px; padding: 16px 17px; }
.fv-report { left: 29%; } .fv-model { left: 71%; }
.fund-viz.play .fv-report { animation: fvpulse 7s var(--ease) infinite; }
.fund-viz.play .fv-model { animation: fvpulse 7s var(--ease) infinite; animation-delay: 3.5s; }
@keyframes fvpulse {
  0%, 38% { border-color: rgba(53,208,127,0.55); box-shadow: 0 10px 34px rgba(0,0,0,0.45); }
  52%, 100% { border-color: var(--line); box-shadow: none; }
}

.fv-head { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--text); letter-spacing: -0.01em; margin-bottom: 13px; }
.fv-hdot { width: 6px; height: 6px; border-radius: 50%; background: var(--live); box-shadow: 0 0 7px rgba(53,208,127,0.7); }
.fv-tag { margin-left: auto; font-size: 9.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); background: rgba(255,255,255,0.05); border: 1px solid var(--line); border-radius: 5px; padding: 2px 7px; }
.fv-title { font-size: 16px; font-weight: 650; letter-spacing: -0.02em; margin-bottom: 3px; }
.fv-byline { font-size: 11px; color: var(--faint); margin-bottom: 12px; }

.fv-spark { width: 100%; height: 34px; display: block; margin-bottom: 13px; }
.fv-spark polyline { fill: none; stroke: rgba(255,255,255,0.5); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 400; stroke-dashoffset: 400; }
.fund-viz.play .fv-spark polyline { animation: draw 1.8s var(--ease) forwards; }
.no-motion .fv-spark polyline { stroke-dashoffset: 0; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.fv-lines { display: flex; flex-direction: column; gap: 8px; margin-bottom: 13px; }
.fv-lines i { position: relative; overflow: hidden; height: 7px; border-radius: 4px; background: rgba(255,255,255,0.09); }
.fund-viz.play .fv-lines i::after { content: ""; position: absolute; inset: 0; transform: translateX(-100%); background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent); animation: shimmer 2.4s linear infinite; }
.fv-lines i:nth-child(2)::after { animation-delay: .3s; } .fv-lines i:nth-child(3)::after { animation-delay: .6s; } .fv-lines i:nth-child(4)::after { animation-delay: .9s; }
@keyframes shimmer { to { transform: translateX(100%); } }

.fv-status { display: flex; align-items: center; gap: 7px; font-size: 11px; color: var(--muted); }
.fv-caret { width: 7px; height: 13px; background: var(--live); border-radius: 1px; animation: blink 1s steps(2) infinite; }
.no-motion .fv-caret { animation: none; }
@keyframes blink { 50% { opacity: 0; } }

/* model rows + bars (redaction values, no fabricated numbers) */
.fv-rows { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.fv-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.fv-row label { font-size: 12.5px; color: var(--muted); }
.fv-row b { width: 52px; height: 10px; border-radius: 4px; background: rgba(255,255,255,0.16); }
.fv-bars { display: flex; align-items: flex-end; gap: 8px; height: 42px; margin-bottom: 14px; }
.fv-bars i { flex: 1; background: rgba(255,255,255,0.14); border-radius: 3px 3px 0 0; }
.fv-bars i:nth-child(1) { height: 45%; } .fv-bars i:nth-child(2) { height: 68%; } .fv-bars i:nth-child(3) { height: 54%; } .fv-bars i:nth-child(4) { height: 82%; } .fv-bars i:nth-child(5) { height: 63%; }
.fund-viz.play .fv-bars i { transform-origin: bottom; animation: growbar .9s var(--ease) both; }
.fund-viz.play .fv-bars i:nth-child(2) { animation-delay: .1s; } .fund-viz.play .fv-bars i:nth-child(3) { animation-delay: .2s; } .fund-viz.play .fv-bars i:nth-child(4) { animation-delay: .3s; } .fund-viz.play .fv-bars i:nth-child(5) { animation-delay: .4s; }
@keyframes growbar { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.fv-out { border-top: 1px solid var(--line); padding-top: 11px; }
.fv-out label { color: var(--text); font-weight: 600; font-size: 13px; }
.fv-out b { background: rgba(53,208,127,0.45); }

/* slack hub reuses .hub base */
.fv-hub { left: 50%; top: 80%; }

.fund-note { margin-top: 22px; padding: 20px 22px; border: 1px solid var(--line); border-left: 2px solid var(--live); border-radius: 12px; background: var(--bg-alt); font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.fund-note-tag { display: block; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text); font-weight: 600; margin-bottom: 8px; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: border-color .2s, background .2s, transform .2s var(--ease); }
.step:hover { border-color: var(--line-2); background: var(--panel-2); transform: translateY(-2px); }
.step-n { width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-weight: 550; font-size: 15px; background: rgba(255,255,255,0.05); color: var(--text); border: 1px solid var(--line); margin-bottom: 20px; }
.step h3 { font-size: 18px; font-weight: 550; margin-bottom: 9px; letter-spacing: -0.02em; }
.step p { color: var(--muted); font-size: 15px; }

/* PACKAGE */
.pkg { display: grid; grid-template-columns: 1.1fr 1fr; gap: 18px; }
.pkg-base { background: var(--panel); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 34px; }
.pkg-label { font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.pkg-base h3 { font-size: 22px; font-weight: 550; margin-bottom: 22px; letter-spacing: -0.02em; }
.pkg-base ul { list-style: none; margin-bottom: 26px; }
.pkg-base li { padding: 11px 0 11px 24px; border-bottom: 1px solid var(--line); position: relative; color: var(--text); font-size: 15px; }
.pkg-base li::before { content: ""; position: absolute; left: 2px; top: 18px; width: 8px; height: 8px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.35); }
.pkg-price { font-size: 16px; color: var(--muted); margin-bottom: 22px; }
.pkg-price strong { color: var(--text); font-weight: 600; font-size: 20px; }
.pkg-addons { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; }
.pkg-addons-sub { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }
.addon-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.addon-list li { color: var(--muted); font-size: 14.5px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.addon-list li:last-child { border-bottom: none; }
.addon-list span { display: block; color: var(--text); font-weight: 550; font-size: 15.5px; margin-bottom: 3px; }

/* CTA */
.cta { padding: 116px 0; text-align: center; position: relative; z-index: 2; }
.cta-inner { max-width: 620px; }
.cta h2 { font-size: clamp(30px, 4.4vw, 48px); font-weight: 400; letter-spacing: -0.03em; margin-bottom: 18px; }
.cta p { font-size: 17.5px; color: var(--muted); margin-bottom: 30px; }
.cta-fine { font-size: 13.5px; color: var(--faint); margin-top: 20px; margin-bottom: 0; }

/* FOOTER */
.footer { border-top: 1px solid var(--line); padding: 40px 0; position: relative; z-index: 2; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer p { color: var(--faint); font-size: 14px; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-top { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  .hero-aside { padding-bottom: 0; }
  .lede { max-width: 560px; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .strip-grid { grid-template-columns: 1fr; gap: 18px; }
  .cards { grid-template-columns: 1fr; }
  .card-wide { grid-template-columns: 1fr; gap: 24px; }
  .case { grid-template-columns: 1fr; }
  .case-side { position: static; }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .pkg { grid-template-columns: 1fr; }

  /* Diagram collapses to a stacked list */
  .tab-panel { padding: 26px 20px; }
  .diagram { aspect-ratio: auto; max-width: 460px; display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
  .diagram-lines { display: none; }
  .hub { position: static; transform: none; width: 100%; order: -1; }
  .node { position: static; transform: none; width: 100%; opacity: 1; }
  .diagram.play .node { opacity: 1; }

  /* Fund viz collapses to a stack */
  .fund-viz { aspect-ratio: auto; max-width: 460px; display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
  .fund-viz .diagram-lines { display: none; }
  .fv-sources, .fv-card, .fv-hub { position: static; transform: none; width: 100%; }
  .fv-sources { order: -2; }
  .fv-hub { order: 2; }
}
@media (max-width: 480px) {
  .case-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .announce a { display: none; }
  .tab { font-size: 13px; padding: 14px 10px; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---- LIVE COCKPIT DEMO ---- */
.cockpit-section { padding-top: 28px; }
.cockpit-shell {
  position: relative; max-width: 1140px; margin: 0 auto;
  border: 1px solid var(--line-2); border-radius: 16px; overflow: hidden;
  background: #0d0d0d;
  box-shadow: 0 44px 130px -44px rgba(0,0,0,0.85), 0 1px 0 rgba(255,255,255,0.04) inset;
}
.cockpit-chrome {
  position: relative; display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: linear-gradient(#17181c, #131418);
  border-bottom: 1px solid var(--line);
}
.cockpit-chrome .cd { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.16); }
.cockpit-chrome .cd:nth-child(1) { background: #ff5f57; }
.cockpit-chrome .cd:nth-child(2) { background: #febc2e; }
.cockpit-chrome .cd:nth-child(3) { background: #28c840; }
.cockpit-url {
  margin: 0 auto; display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted);
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
  padding: 5px 15px; border-radius: 8px;
}
.cockpit-url svg { width: 13px; height: 13px; opacity: 0.55; }
.cockpit-live {
  position: absolute; right: 16px; display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: var(--live);
}
.cockpit-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--live); box-shadow: 0 0 0 4px rgba(53,208,127,0.15); animation: cpLive 2s ease-in-out infinite; }
@keyframes cpLive { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.no-motion .cockpit-live i { animation: none; }

.cockpit-viewport {
  position: relative; width: 100%; min-height: 300px;
  overflow: hidden; background: #0d0d0d;
}
.cockpit-viewport iframe {
  position: absolute; top: 0; left: 0; width: 1280px; height: 820px;
  border: 0; transform-origin: top left; pointer-events: none;
}
.cockpit-open-m { display: none; }

/* tilt the whole cockpit away to the right, fade the receding edge */
.cockpit-tilt { perspective: 2600px; perspective-origin: 60% 50%; max-width: 1180px; margin: 0 auto; }
.cockpit-tilt .cockpit-shell {
  transform: rotateY(-18deg) rotateX(3deg);
  transform-origin: left center;
  -webkit-mask-image: linear-gradient(100deg, #000 52%, rgba(0,0,0,0.35) 82%, transparent 99%);
  mask-image: linear-gradient(100deg, #000 52%, rgba(0,0,0,0.35) 82%, transparent 99%);
  transition: transform .9s var(--ease);
}
@media (max-width: 900px) {
  .cockpit-tilt { perspective: none; }
  .cockpit-tilt .cockpit-shell { transform: none; -webkit-mask-image: none; mask-image: none; }
}

.cockpit-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; max-width: 1140px; margin: 24px auto 0;
}
.cockpit-cap { color: var(--muted); font-size: 15px; max-width: 520px; }
.cockpit-actions { display: flex; gap: 12px; }

@media (max-width: 900px) {
  .cockpit-viewport iframe { pointer-events: none; }
  .cockpit-open-m {
    display: flex; position: absolute; inset: 44px 0 0; align-items: center; justify-content: center;
    background: rgba(11,12,14,0.32);
  }
  .cockpit-open-m span { background: var(--white); color: #0b0c0e; font-weight: 550; font-size: 15px; padding: 12px 22px; border-radius: 9px; }
  .cockpit-foot { justify-content: center; text-align: center; }
  .cockpit-cap { max-width: none; }
}

/* ============ HERO ASK DEMO ============ */
.ask { max-width: 940px; margin: 0 auto; background: var(--panel); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.55); }
.ask-chrome { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: var(--panel-2); border-bottom: 1px solid var(--line); }
.ask-chrome .cd { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.16); }
.ask-chrome .cd:nth-child(1){ background:#ff5f57; } .ask-chrome .cd:nth-child(2){ background:#febc2e; } .ask-chrome .cd:nth-child(3){ background:#28c840; }
.ask-url { margin: 0 auto; display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); background: rgba(255,255,255,0.04); border: 1px solid var(--line); padding: 5px 14px; border-radius: 8px; }
.ask-url svg { width: 12px; height: 12px; opacity: 0.5; }
.ask-live { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; color: var(--live); }
.ask-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--live); box-shadow: 0 0 8px rgba(53,208,127,0.7); animation: livepulse 2s infinite; }

.ask-input { display: flex; align-items: center; gap: 12px; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.ask-spark { width: 18px; height: 18px; color: var(--live); flex-shrink: 0; }
.ask-typed { font-size: 17px; color: var(--text); letter-spacing: -0.01em; white-space: pre; min-height: 20px; }
.ask-caret { width: 2px; height: 20px; background: var(--live); margin-left: 1px; flex-shrink: 0; }
.ask-caret.idle { animation: blink 1s steps(2) infinite; }
.no-motion .ask-caret { animation: none; }
.ask-key { margin-left: auto; font-size: 11px; color: var(--faint); border: 1px solid var(--line-2); border-radius: 6px; padding: 3px 9px; flex-shrink: 0; }

.ask-stage { position: relative; min-height: 312px; padding: 20px 22px; }
.res { position: absolute; inset: 20px 22px auto 22px; opacity: 0; transform: translateY(8px); transition: opacity .4s var(--ease), transform .4s var(--ease); pointer-events: none; }
.res.is-on { opacity: 1; transform: none; pointer-events: auto; }
.res-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 13px; }
.res-title { font-size: 15px; font-weight: 550; color: var(--text); letter-spacing: -0.01em; }
.res-hint { font-size: 12.5px; color: var(--muted); white-space: nowrap; }
.pill-draft { color: var(--live); }
.res-rows { display: flex; flex-direction: column; gap: 8px; }
.res-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 11px 14px; background: var(--bg-alt); border: 1px solid var(--line); border-radius: 10px; }
.res-cell { display: flex; flex-direction: column; gap: 2px; }
.res-cell b { font-size: 14px; font-weight: 550; color: var(--text); }
.res-cell span { font-size: 12.5px; color: var(--muted); }
.tag { font-size: 11px; letter-spacing: 0.02em; color: var(--muted); background: rgba(255,255,255,0.05); border: 1px solid var(--line); border-radius: 20px; padding: 3px 10px; white-space: nowrap; }
.tag-warn { color: #ffcf8a; background: rgba(255,180,90,0.08); border-color: rgba(255,180,90,0.28); }
.res-amt { font-size: 14px; font-weight: 550; color: var(--text); font-variant-numeric: tabular-nums; white-space: nowrap; }
.res-mail { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 10px; padding: 15px 16px; }
.res-mail-meta { font-size: 13px; color: var(--text); margin-bottom: 5px; }
.res-mail-meta span { color: var(--faint); display: inline-block; width: 54px; }
.res-mail p { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin-top: 9px; }
.res-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 14px; }
.res-src { font-size: 12px; color: var(--faint); }
.res-cta { font-size: 12.5px; font-weight: 550; color: var(--text); background: rgba(255,255,255,0.06); border: 1px solid var(--line-2); border-radius: 8px; padding: 6px 12px; }

.ask-note { display: flex; align-items: center; gap: 10px; padding: 13px 22px; border-top: 1px solid var(--line); background: var(--bg-alt); font-size: 13px; color: var(--muted); }
.ask-note span { margin-left: auto; font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--faint); border: 1px solid var(--line); border-radius: 5px; padding: 2px 8px; white-space: nowrap; }

/* ============ CONNECTED SURFACES ============ */
.sys { margin-top: 26px; }
.sys-core { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 11px; max-width: 580px; margin: 0 auto 26px; }
.sys-core-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 550; color: var(--text); background: var(--panel-2); border: 1px solid var(--line-2); border-radius: 100px; padding: 8px 16px; }
.sys-core-badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--live); box-shadow: 0 0 8px rgba(53,208,127,0.7); }
.sys-core p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }

.snips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.snip { background: var(--panel-2); border: 1px solid var(--line); border-radius: 12px; padding: 16px; transition: border-color .2s, background .2s, transform .2s var(--ease); }
.snip:hover { border-color: var(--line-2); transform: translateY(-2px); }
.snip-dash { border-color: rgba(53,208,127,0.28); }
.snip-top { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 550; color: var(--text); margin-bottom: 14px; }
.snip-ico { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.04); border: 1px solid var(--line); color: rgba(255,255,255,0.8); flex-shrink: 0; }
.snip-ico svg { width: 15px; height: 15px; }
.snip-viz { height: 46px; margin-bottom: 14px; display: flex; align-items: flex-end; gap: 6px; }
.snip-label { font-size: 12.5px; color: var(--muted); line-height: 1.4; }

.snip-carousel { align-items: stretch; }
.snip-carousel i { flex: 1; border-radius: 6px; background: rgba(255,255,255,0.06); border: 1px solid var(--line); }
.snip-carousel i:first-child { background: rgba(255,255,255,0.1); }
.snip-lines { flex-direction: column; align-items: stretch; justify-content: center; gap: 8px; }
.snip-lines i { height: 7px; border-radius: 4px; background: rgba(255,255,255,0.1); }
.snip-lines i:nth-child(2){ width: 82%; } .snip-lines i:nth-child(3){ width: 60%; }
.snip-grid3 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; align-items: stretch; }
.snip-grid3 i { border-radius: 5px; background: rgba(255,255,255,0.07); }
.snip-app { justify-content: center; gap: 5px; }
.snip-app span { width: 8px; height: 30px; border-radius: 4px; background: rgba(255,255,255,0.1); }
.snip-app span:nth-child(2){ height: 40px; background: rgba(53,208,127,0.5); }
.snip-bars { gap: 5px; }
.snip-bars i { flex: 1; border-radius: 3px 3px 0 0; background: rgba(255,255,255,0.14); }
.snip-bars i:nth-child(1){height:40%} .snip-bars i:nth-child(2){height:60%} .snip-bars i:nth-child(3){height:48%} .snip-bars i:nth-child(4){height:78%} .snip-bars i:nth-child(5){height:58%} .snip-bars i:nth-child(6){height:90%}
.snip-bars i:last-child { background: var(--live); opacity: 0.8; }
.snip-spark { align-items: stretch; }
.snip-spark svg { width: 100%; height: 100%; }
.snip-spark polyline { fill: none; stroke: var(--live); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.snip-rows { flex-direction: column; align-items: stretch; justify-content: center; gap: 7px; height: auto; }
.snip-rows span { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.snip-rows label { font-size: 11.5px; color: var(--muted); }
.snip-rows b { width: 40px; height: 8px; border-radius: 4px; background: rgba(255,255,255,0.16); }
.snip-out b { background: rgba(53,208,127,0.45); }

@media (max-width: 860px) {
  .snips { grid-template-columns: repeat(2, 1fr); }
  .ask-note span { display: none; }
}
@media (max-width: 520px) {
  .snips { grid-template-columns: 1fr; }
  .ask-typed { font-size: 15px; }
  .ask-key { display: none; }
}

/* ============ SECTION SLIDE-IN ON SCROLL ============ */
.reveal-sec { opacity: 0; transform: translateY(64px); transition: opacity .85s var(--ease), transform .85s var(--ease); will-change: opacity, transform; }
.reveal-sec.in { opacity: 1; transform: none; }
.no-motion .reveal-sec { opacity: 1; transform: none; transition: none; }

/* ============ WHERE IT LIVES (ON-PREM) ============ */
.install { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 34px; align-items: center; }
.install-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 300px; }
.appliance { position: relative; z-index: 2; width: 210px; background: linear-gradient(180deg, var(--panel-2), var(--panel)); border: 1px solid var(--line-2); border-radius: 16px; padding: 16px; box-shadow: 0 30px 70px rgba(0,0,0,0.5); }
.appliance-top { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.appliance-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.appliance-dot.on { background: var(--live); box-shadow: 0 0 10px rgba(53,208,127,0.7); animation: appPulse 2.6s ease-in-out infinite; }
@keyframes appPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.appliance-brand { margin-left: auto; font-size: 12px; letter-spacing: 0.04em; color: var(--muted); }
.appliance-body { background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 16px 14px; }
.appliance-pulse { display: flex; align-items: flex-end; gap: 5px; height: 46px; margin-bottom: 14px; }
.appliance-pulse i { flex: 1; border-radius: 3px 3px 0 0; background: rgba(255,255,255,0.14); animation: appBar 1.8s ease-in-out infinite; }
.appliance-pulse i:nth-child(1){height:40%;animation-delay:0s} .appliance-pulse i:nth-child(2){height:70%;animation-delay:.15s} .appliance-pulse i:nth-child(3){height:52%;animation-delay:.3s} .appliance-pulse i:nth-child(4){height:84%;animation-delay:.45s;background:rgba(53,208,127,0.55)} .appliance-pulse i:nth-child(5){height:60%;animation-delay:.6s} .appliance-pulse i:nth-child(6){height:76%;animation-delay:.75s}
@keyframes appBar { 0%,100% { transform: scaleY(0.85); } 50% { transform: scaleY(1.05); } }
.appliance-vent { display: flex; flex-direction: column; gap: 5px; }
.appliance-vent span { height: 3px; border-radius: 2px; background: rgba(255,255,255,0.08); }
.appliance-foot { margin-top: 14px; text-align: center; font-size: 12px; letter-spacing: 0.03em; color: var(--muted); }
.install-ring { position: absolute; width: 260px; height: 260px; border-radius: 50%; border: 1px solid var(--line-2); opacity: 0.5; }
.install-ring::after { content: ""; position: absolute; inset: -40px; border-radius: 50%; border: 1px solid var(--line); opacity: 0.5; }
.install-points { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.install-point { display: flex; gap: 14px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; transition: border-color .2s, background .2s, transform .2s var(--ease); }
.install-point:hover { border-color: var(--line-2); background: var(--panel-2); transform: translateY(-2px); }
.ip-ico { flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.04); border: 1px solid var(--line); color: rgba(255,255,255,0.82); }
.install-point h3 { font-size: 16.5px; font-weight: 550; margin-bottom: 6px; letter-spacing: -0.01em; }
.install-point p { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ============ WAITLIST ============ */
[hidden] { display: none !important; }
#waitlist { text-align: left; }
.wl { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; max-width: var(--wrap); }
.wl-copy .kicker { margin-bottom: 16px; }
.wl-copy h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 400; letter-spacing: -0.03em; margin-bottom: 16px; line-height: 1.08; }
.wl-copy p { font-size: 16.5px; color: var(--muted); margin-bottom: 24px; line-height: 1.6; }
.wl-assure { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.wl-assure li { position: relative; padding-left: 26px; font-size: 14.5px; color: var(--text); }
.wl-assure li::before { content: ""; position: absolute; left: 0; top: 6px; width: 15px; height: 8px; border-left: 2px solid var(--live); border-bottom: 2px solid var(--live); transform: rotate(-45deg); }
.wl-form { background: var(--panel); border: 1px solid var(--line-2); border-radius: 18px; padding: 28px; display: flex; flex-direction: column; gap: 15px; }
.wl-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.wl-field { display: flex; flex-direction: column; gap: 7px; }
.wl-field label { font-size: 12.5px; letter-spacing: 0.03em; color: var(--muted); }
.wl-field input, .wl-field select { width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 12px 13px; color: var(--text); font-size: 15px; font-family: inherit; transition: border-color .18s, background .18s; }
.wl-field input::placeholder { color: rgba(255,255,255,0.28); }
.wl-field input:focus, .wl-field select:focus { outline: none; border-color: rgba(53,208,127,0.6); background: var(--panel-2); }
.wl-field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 34px; }
.wl-field input:invalid:not(:placeholder-shown) { border-color: rgba(232,120,120,0.55); }
.wl-submit { width: 100%; justify-content: center; margin-top: 6px; }
.wl-fine { font-size: 12.5px; color: var(--faint); text-align: center; margin: 0; }
.wl-fine.err { color: #e88; }
.wl-done { background: var(--panel); border: 1px solid var(--line-2); border-radius: 18px; padding: 44px 28px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.wl-done-mark { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(53,208,127,0.14); border: 1px solid rgba(53,208,127,0.5); color: var(--live); }
.wl-done h3 { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; }
.wl-done p { font-size: 15.5px; color: var(--muted); max-width: 320px; }

@media (max-width: 900px) {
  .install { grid-template-columns: 1fr; gap: 28px; }
  .install-visual { min-height: 240px; }
  .wl { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 560px) {
  .install-points { grid-template-columns: 1fr; }
  .wl-row { grid-template-columns: 1fr; }
}
