:root {
  --bg: #06100e;
  --bg-soft: #0a1714;
  --panel: rgba(12, 29, 25, 0.74);
  --panel-strong: #0d1d1a;
  --line: rgba(157, 255, 218, 0.14);
  --line-strong: rgba(157, 255, 218, 0.27);
  --text: #f5fbf8;
  --muted: #97aaa3;
  --green: #78f7c5;
  --green-2: #b0ffe1;
  --deep-green: #163d32;
  --shadow: 0 40px 90px rgba(0, 0, 0, 0.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 6%, rgba(55, 217, 156, 0.08), transparent 26%),
    radial-gradient(circle at 12% 70%, rgba(28, 111, 88, 0.10), transparent 30%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; }

.ambient { position: fixed; z-index: -3; border-radius: 999px; filter: blur(110px); pointer-events: none; }
.ambient-one { width: 360px; height: 360px; right: -120px; top: 90px; background: rgba(67, 255, 185, 0.07); }
.ambient-two { width: 420px; height: 420px; left: -210px; top: 52%; background: rgba(42, 170, 130, 0.08); }
.noise {
  position: fixed; inset: 0; z-index: -2; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.section-shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section-space { padding: 132px 0; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  width: min(1240px, calc(100% - 32px));
  margin: 18px auto 0;
  min-height: 68px;
  padding: 10px 12px 10px 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid rgba(151, 255, 213, 0.12);
  border-radius: 18px;
  background: rgba(6, 16, 14, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 750; letter-spacing: -.035em; font-size: 20px; width: max-content; }
.brand-mark { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; background: rgba(120, 247, 197, .08); border: 1px solid rgba(120,247,197,.16); }
.brand-mark svg { width: 24px; fill: none; stroke: var(--green); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.brand-mark circle { fill: var(--green); stroke: none; }
.dot { color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 32px; color: var(--muted); font-size: 14px; }
.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: var(--text); }
.site-header > .button { justify-self: end; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 22px; border-radius: 13px;
  font-weight: 720; font-size: 14px; letter-spacing: -.01em;
  border: 1px solid transparent; transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button-small { min-height: 44px; padding: 0 17px; }
.button-primary { color: #062018; background: linear-gradient(135deg, var(--green-2), var(--green)); box-shadow: 0 16px 38px rgba(82, 237, 178, .18); }
.button-primary:hover { box-shadow: 0 20px 46px rgba(82, 237, 178, .28); }
.button-outline { color: var(--green-2); border-color: rgba(120,247,197,.30); background: rgba(120,247,197,.04); }
.button-outline:hover { background: rgba(120,247,197,.09); }
.button-ghost { color: var(--text); border-color: rgba(255,255,255,.11); background: rgba(255,255,255,.025); }
.button-ghost:hover { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.05); }
.button-wide { width: 100%; }

.hero { min-height: 790px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 72px; padding-top: 72px; padding-bottom: 80px; }
.eyebrow { color: var(--green); font-size: 12px; font-weight: 780; letter-spacing: .16em; text-transform: uppercase; display: flex; align-items: center; gap: 9px; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(120,247,197,.08), 0 0 18px rgba(120,247,197,.7); }
.hero h1 { margin: 25px 0 24px; font-size: clamp(64px, 7vw, 102px); line-height: .92; letter-spacing: -.072em; font-weight: 760; }
.hero h1 span { color: var(--green); }
.hero-text { max-width: 650px; margin: 0; color: #adbbb6; font-size: clamp(18px, 2vw, 22px); line-height: 1.65; letter-spacing: -.015em; }
.hero-text strong { color: var(--text); font-weight: 650; }
.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 12px; }
.signal-row { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 36px; color: #7f958d; font-size: 12px; font-weight: 650; letter-spacing: .05em; text-transform: uppercase; }
.signal-row i { width: 3px; height: 3px; border-radius: 50%; background: var(--green); opacity: .65; }

.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.visual-orbit { position: absolute; border: 1px solid rgba(120,247,197,.10); border-radius: 50%; }
.orbit-one { width: 560px; height: 560px; animation: spin 28s linear infinite; }
.orbit-two { width: 420px; height: 420px; border-style: dashed; animation: spin-reverse 22s linear infinite; }
.orbit-one::before, .orbit-two::before { content:""; position:absolute; width:7px; height:7px; border-radius:50%; background: var(--green); box-shadow: 0 0 16px var(--green); }
.orbit-one::before { top: 58px; right: 78px; }
.orbit-two::before { left: 4px; top: 48%; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-reverse { to { transform: rotate(-360deg); } }

.bot-card {
  position: relative; z-index: 2; width: min(480px, 92%);
  border: 1px solid rgba(150,255,215,.18); border-radius: 25px; overflow: visible;
  background: linear-gradient(160deg, rgba(16,39,33,.96), rgba(7,18,16,.98));
  box-shadow: 0 60px 110px rgba(0,0,0,.55), inset 0 1px rgba(255,255,255,.03);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}
.bot-card::after { content:""; position:absolute; inset:0; border-radius:25px; pointer-events:none; background: linear-gradient(135deg, rgba(255,255,255,.04), transparent 32%); }
.bot-card-top { height: 50px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 17px; border-bottom: 1px solid var(--line); }
.window-controls { display: flex; gap: 6px; }
.window-controls span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.13); }
.secure-pill { display:flex; align-items:center; gap:6px; color:#7f958d; font-size:10px; background:rgba(0,0,0,.16); border:1px solid rgba(255,255,255,.05); padding:6px 10px; border-radius:999px; }
.secure-pill span { width:5px; height:5px; background:var(--green); border-radius:50%; }
.mini-icon { justify-self:end; background:none; border:0; color:#768c84; letter-spacing:2px; }
.bot-card-body { padding: 24px; }
.agent-header { display:grid; grid-template-columns:auto 1fr auto; gap:12px; align-items:center; }
.agent-avatar { width:48px; height:48px; display:grid; place-items:center; border-radius:14px; background:rgba(120,247,197,.08); border:1px solid rgba(120,247,197,.16); }
.agent-avatar svg { width:32px; fill:none; stroke:var(--green); stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.agent-avatar circle { fill:var(--green); stroke:none; }
.agent-title { font-size:14px; font-weight:750; }
.agent-subtitle { margin-top:3px; color:#71867f; font-size:10px; display:flex; align-items:center; gap:6px; }
.agent-subtitle span { width:5px; height:5px; border-radius:50%; background:var(--green); box-shadow:0 0 10px var(--green); }
.agent-progress { color:var(--green); font-size:12px; font-weight:750; }
.task-panel { margin:22px 0 14px; padding:17px; border-radius:15px; border:1px solid var(--line); background:rgba(120,247,197,.03); }
.task-label { color:var(--green); font-size:8px; letter-spacing:.17em; font-weight:800; }
.task-title { margin-top:7px; font-size:15px; font-weight:700; }
.task-meta { margin-top:3px; color:#6f827c; font-size:10px; }
.steps { display:grid; gap:8px; }
.step { display:grid; grid-template-columns:28px 1fr auto; gap:10px; align-items:center; padding:11px 12px; border:1px solid rgba(255,255,255,.045); border-radius:12px; background:rgba(255,255,255,.018); }
.step-icon { width:24px; height:24px; display:grid; place-items:center; border-radius:8px; font-size:10px; background:rgba(255,255,255,.04); color:#6f827c; }
.step.complete .step-icon { color:var(--green); background:rgba(120,247,197,.08); }
.step.active { border-color:rgba(120,247,197,.20); background:rgba(120,247,197,.035); }
.step strong { display:block; font-size:11px; }
.step small { display:block; margin-top:1px; color:#697d76; font-size:9px; }
.step time { color:#62756f; font-size:9px; }
.step.active time { color:var(--green); }
.pulse-ring { position:relative; background:rgba(120,247,197,.08); }
.pulse-ring::before { content:""; width:7px; height:7px; border-radius:50%; background:var(--green); box-shadow:0 0 12px var(--green); }
.pulse-ring::after { content:""; position:absolute; inset:5px; border:1px solid var(--green); border-radius:50%; animation:pulse 1.6s ease-out infinite; }
@keyframes pulse { 0% { transform:scale(.45); opacity:1; } 100% { transform:scale(1.35); opacity:0; } }
.cursor-trail { position:absolute; right:76px; bottom:54px; filter:drop-shadow(0 10px 16px rgba(0,0,0,.45)); animation:cursorMove 5s ease-in-out infinite; }
.cursor-trail svg { width:30px; fill:var(--green); stroke:#05221a; stroke-width:1; }
@keyframes cursorMove { 0%,100% { transform:translate(0,0) rotate(-3deg); } 50% { transform:translate(22px,-38px) rotate(2deg); } }
.float-card { position:absolute; z-index:3; display:flex; align-items:center; gap:10px; padding:12px 14px; border:1px solid rgba(120,247,197,.15); border-radius:14px; background:rgba(8,23,19,.86); backdrop-filter:blur(14px); box-shadow:0 18px 38px rgba(0,0,0,.35); }
.float-card-one { top:44px; right:-8px; animation:float 5s ease-in-out infinite; }
.float-card-two { bottom:38px; left:-16px; animation:float 5s ease-in-out infinite 1.1s; }
.float-icon { width:30px; height:30px; display:grid; place-items:center; color:var(--green); border-radius:10px; background:rgba(120,247,197,.08); }
.float-card strong, .float-card small { display:block; }
.float-card strong { font-size:12px; }
.float-card small { color:#71877f; font-size:8px; margin-top:2px; }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-9px); } }

.logo-strip { min-height: 82px; display:flex; justify-content:center; align-items:center; gap:22px; color:#5f756d; border-top:1px solid var(--line); border-bottom:1px solid var(--line); font-size:11px; font-weight:780; letter-spacing:.2em; }
.logo-strip .separator { color:var(--green); opacity:.35; }

.section-heading { max-width: 730px; }
.section-heading h2, .value-copy h2 { margin:20px 0 20px; font-size:clamp(44px, 5vw, 68px); line-height:1.02; letter-spacing:-.055em; }
.section-heading p { max-width:650px; margin:0; color:var(--muted); font-size:18px; line-height:1.7; }
.direction-grid { margin-top:64px; display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.direction-card { position:relative; min-height:390px; display:flex; flex-direction:column; padding:28px; border:1px solid var(--line); border-radius:22px; background:linear-gradient(160deg, rgba(13,31,27,.78), rgba(8,19,17,.72)); overflow:hidden; transition:transform .25s ease, border-color .25s ease, background .25s ease; }
.direction-card::after { content:""; position:absolute; width:220px; height:220px; border-radius:50%; right:-110px; bottom:-110px; border:1px solid rgba(120,247,197,.07); box-shadow:0 0 0 35px rgba(120,247,197,.018), 0 0 0 70px rgba(120,247,197,.012); }
.direction-card:hover { transform:translateY(-7px); border-color:rgba(120,247,197,.28); background:linear-gradient(160deg, rgba(15,37,31,.9), rgba(8,19,17,.8)); }
.direction-card.featured { border-color:rgba(120,247,197,.32); box-shadow:inset 0 0 70px rgba(120,247,197,.035); }
.featured-label { position:absolute; top:18px; right:18px; color:#09241b; background:var(--green); border-radius:999px; padding:5px 9px; font-size:7px; font-weight:850; letter-spacing:.12em; }
.card-number { color:#536861; font-size:10px; font-weight:750; letter-spacing:.16em; }
.card-icon { margin-top:54px; width:58px; height:58px; display:grid; place-items:center; border-radius:17px; background:rgba(120,247,197,.07); border:1px solid rgba(120,247,197,.13); }
.card-icon svg { width:31px; fill:none; stroke:var(--green); stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.direction-card h3 { margin:26px 0 10px; font-size:24px; letter-spacing:-.035em; }
.direction-card p { margin:0; color:#8ea29a; font-size:14px; line-height:1.7; }
.card-tag { margin-top:auto; padding-top:28px; color:var(--green); font-size:10px; text-transform:uppercase; letter-spacing:.14em; font-weight:750; }

.value-section { padding:130px 0; background:linear-gradient(180deg, rgba(10,25,21,.7), rgba(7,17,15,.45)); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.value-layout { display:grid; grid-template-columns:1.02fr .98fr; gap:88px; align-items:center; }
.value-demo { position:relative; min-height:570px; border:1px solid rgba(120,247,197,.18); border-radius:26px; background:linear-gradient(145deg,#0d211c,#07110f); box-shadow:var(--shadow); overflow:hidden; transform:perspective(1200px) rotateY(4deg); }
.value-demo::before { content:""; position:absolute; width:360px; height:360px; border-radius:50%; left:-160px; bottom:-150px; background:rgba(120,247,197,.09); filter:blur(70px); }
.demo-topline { height:66px; padding:0 22px; display:flex; align-items:center; justify-content:space-between; border-bottom:1px solid var(--line); font-size:10px; }
.demo-logo { display:flex; align-items:center; gap:8px; font-weight:800; }
.demo-logo i { width:19px; height:19px; border:1px solid var(--green); border-radius:6px; position:relative; }
.demo-logo i::before, .demo-logo i::after { content:""; position:absolute; top:7px; width:3px; height:3px; border-radius:50%; background:var(--green); }
.demo-logo i::before { left:4px; } .demo-logo i::after { right:4px; }
.demo-nav { display:flex; gap:20px; color:#6f837c; }
.demo-topline button { border:0; border-radius:8px; color:#092019; background:var(--green); padding:8px 11px; font-size:8px; font-weight:750; }
.demo-hero { padding:58px 40px 34px; max-width:470px; }
.demo-kicker { color:var(--green); font-size:8px; font-weight:850; letter-spacing:.2em; }
.demo-hero h3 { margin:16px 0 15px; font-size:52px; line-height:.98; letter-spacing:-.06em; }
.demo-hero p { max-width:360px; color:#8fa39b; font-size:13px; line-height:1.7; }
.demo-buttons { display:flex; gap:9px; margin-top:24px; }
.demo-buttons span { padding:10px 14px; border-radius:9px; border:1px solid rgba(255,255,255,.09); font-size:9px; font-weight:700; }
.demo-buttons span:first-child { color:#092019; background:var(--green); border-color:var(--green); }
.demo-console { position:absolute; right:28px; bottom:24px; width:68%; padding:18px; border:1px solid rgba(120,247,197,.14); border-radius:15px; background:rgba(4,12,10,.86); box-shadow:0 22px 45px rgba(0,0,0,.35); }
.console-line { display:grid; grid-template-columns:24px 1fr; gap:8px; padding:7px 0; color:#6e837b; font-size:9px; }
.console-line span { color:#42564f; }
.console-line code { font-family:"SFMono-Regular",Consolas,monospace; color:#9eb0aa; }
.console-line b { color:var(--green); font-weight:500; }
.active-line { border-left:2px solid var(--green); padding-left:10px; margin-left:-10px; background:linear-gradient(90deg,rgba(120,247,197,.05),transparent); }
.console-result { margin-top:8px; padding:10px 12px; border-radius:9px; color:var(--green); background:rgba(120,247,197,.05); font-size:9px; }
.value-copy h2 { font-size:clamp(42px,4.6vw,62px); }
.value-list { margin-top:42px; display:grid; gap:8px; }
.value-item { display:grid; grid-template-columns:42px 1fr; gap:18px; padding:22px 0; border-top:1px solid var(--line); }
.value-item:last-child { border-bottom:1px solid var(--line); }
.value-item > span { color:var(--green); font-size:10px; font-weight:780; }
.value-item h3 { margin:0 0 8px; font-size:17px; letter-spacing:-.025em; }
.value-item p { margin:0; color:#8ca099; font-size:13px; line-height:1.75; }

.ownership-panel { display:grid; grid-template-columns:1.25fr .75fr; gap:60px; align-items:center; padding:58px; border:1px solid rgba(120,247,197,.20); border-radius:28px; background:linear-gradient(135deg, rgba(16,39,33,.9), rgba(8,21,18,.78)); box-shadow:inset 0 1px rgba(255,255,255,.035), var(--shadow); overflow:hidden; position:relative; }
.ownership-panel::after { content:""; position:absolute; width:460px; height:460px; border-radius:50%; right:-210px; top:-260px; border:1px solid rgba(120,247,197,.10); box-shadow:0 0 0 60px rgba(120,247,197,.022), 0 0 0 120px rgba(120,247,197,.014); }
.ownership-copy { position:relative; z-index:1; }
.ownership-copy h2 { margin:19px 0 18px; font-size:clamp(54px,7vw,92px); line-height:.95; letter-spacing:-.07em; }
.ownership-copy h2 span { color:var(--green); }
.ownership-copy > p { max-width:650px; margin:0; color:#9eb0aa; font-size:17px; line-height:1.7; }
.ownership-points { margin-top:28px; display:flex; flex-wrap:wrap; gap:10px 22px; color:#bac9c4; font-size:12px; }
.ownership-points span { display:flex; align-items:center; gap:7px; }
.ownership-points i { width:18px; height:18px; display:grid; place-items:center; border-radius:50%; color:#062018; background:var(--green); font-style:normal; font-size:10px; font-weight:850; }
.ownership-action { position:relative; z-index:1; padding:28px; border:1px solid rgba(255,255,255,.08); border-radius:20px; background:rgba(3,11,9,.34); }
.availability { display:flex; align-items:center; justify-content:center; gap:8px; margin-bottom:15px; color:#aabbb5; font-size:11px; }
.availability span { width:7px; height:7px; border-radius:50%; background:var(--green); box-shadow:0 0 13px var(--green); }
.ownership-action p { margin:14px 0 0; color:#6f837c; font-size:9px; line-height:1.6; text-align:center; }
.disclosure { margin-top:18px; padding:20px 22px; border:1px solid rgba(255,255,255,.065); border-radius:15px; color:#758a82; background:rgba(255,255,255,.018); font-size:11px; line-height:1.7; }
.disclosure strong { color:#afbeb9; }

.site-footer { min-height:108px; display:grid; grid-template-columns:1fr auto 1fr; align-items:center; border-top:1px solid var(--line); color:#687d75; font-size:11px; }
.site-footer p { justify-self:center; margin:0; }
.site-footer > a:last-child { justify-self:end; color:#9db0a9; }
.footer-brand { font-size:16px; }
.footer-brand .brand-mark { width:28px; height:28px; }
.footer-brand .brand-mark svg { width:20px; }

.reveal { opacity:0; transform:translateY(24px); transition:opacity .75s ease, transform .75s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity:1; transform:translateY(0); }
.delay-1 { transition-delay:.12s; }
.delay-2 { transition-delay:.22s; }

@media (max-width: 1000px) {
  .hero, .value-layout { grid-template-columns:1fr; }
  .hero { padding-top:105px; gap:25px; }
  .hero-copy { max-width:760px; }
  .hero-visual { margin-top:35px; }
  .direction-grid { grid-template-columns:1fr; }
  .direction-card { min-height:330px; }
  .card-icon { margin-top:42px; }
  .value-layout { gap:70px; }
  .value-demo { max-width:680px; width:100%; margin-inline:auto; transform:none; }
  .ownership-panel { grid-template-columns:1fr; }
  .ownership-action { max-width:420px; }
}

@media (max-width: 760px) {
  .section-shell { width:min(100% - 28px,1180px); }
  .site-header { width:calc(100% - 20px); margin-top:10px; grid-template-columns:1fr auto; min-height:60px; }
  .nav-links { display:none; }
  .site-header .button-small { font-size:0; width:44px; padding:0; }
  .site-header .button-small::after { content:"↗"; font-size:16px; }
  .hero { min-height:auto; padding-top:72px; padding-bottom:80px; }
  .hero h1 { font-size:clamp(55px,16vw,78px); }
  .hero-text { font-size:17px; }
  .hero-actions { flex-direction:column; }
  .hero-actions .button { width:100%; }
  .signal-row { gap:9px; font-size:9px; }
  .hero-visual { min-height:480px; }
  .bot-card { width:94%; transform:none; }
  .orbit-one { width:440px; height:440px; }
  .orbit-two { width:340px; height:340px; }
  .float-card-one { right:-2px; top:10px; }
  .float-card-two { left:-2px; bottom:20px; }
  .logo-strip { overflow:hidden; gap:14px; font-size:8px; white-space:nowrap; }
  .section-space, .value-section { padding:92px 0; }
  .section-heading h2, .value-copy h2 { font-size:43px; }
  .direction-grid { margin-top:40px; }
  .value-demo { min-height:530px; }
  .demo-nav { display:none; }
  .demo-hero { padding:50px 25px; }
  .demo-hero h3 { font-size:44px; }
  .demo-console { left:20px; right:20px; width:auto; }
  .ownership-panel { padding:36px 24px; gap:38px; }
  .ownership-copy h2 { font-size:55px; }
  .ownership-points { display:grid; }
  .ownership-action { padding:20px; }
  .site-footer { grid-template-columns:1fr auto; gap:20px; min-height:120px; }
  .site-footer p { display:none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
}
