:root {
  --bg: #070a0f;
  --bg-2: #0b0f17;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.075);
  --line: rgba(255, 255, 255, 0.10);
  --line-soft: rgba(255, 255, 255, 0.055);
  --text: #f4f6f8;
  --muted: #9aa4b1;
  --purple: #7c6cff;
  --cyan: #14f1d9;
  --lime: #c3ff54;
  --radius: 26px;
  --max: 1240px;
  --ease: cubic-bezier(.2,.75,.25,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  background:
    radial-gradient(circle at 14% -10%, rgba(124,108,255,.16), transparent 30%),
    radial-gradient(circle at 94% 10%, rgba(20,241,217,.09), transparent 24%),
    var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--lime); color: #10140a; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

#ambient-canvas {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  opacity: .55;
  pointer-events: none;
}
.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .045;
  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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
/*.cursor-glow {
  position: fixed;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -2;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(124,108,255,.12), rgba(20,241,217,.04) 35%, transparent 68%);
  opacity: 0;
  transition: opacity .4s ease;
}
body:hover .cursor-glow { opacity: 1; }*/

.section-shell { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.glass {
  background: linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.028));
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 30px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.gradient-text {
  color: transparent;
  background: linear-gradient(110deg, var(--text) 5%, var(--cyan) 42%, var(--lime) 84%);
  -webkit-background-clip: text;
  background-clip: text;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #b7c0ca;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow > span:not(.status-dot) { color: var(--lime); }
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(195,255,84,.08), 0 0 18px rgba(195,255,84,.5);
}
.micro-label { color: #7e8998; font-size: 10px; font-weight: 800; letter-spacing: .16em; }

.site-header {
  position: fixed;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  z-index: 50;
  width: min(calc(100% - 30px), 1320px);
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 14px 0 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  background: rgba(7,10,15,.6);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.site-header.scrolled { background: rgba(7,10,15,.3); border-color: rgba(255,255,255,.13); }
.brand { display: inline-flex; align-items: center; width: fit-content; }
.brand-logo { display: block; width: auto; height: 32px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 34px; }
.desktop-nav a { position: relative; font-size: 13px; color: #aeb7c1; transition: color .25s ease; }
.desktop-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--lime); transition: right .35s var(--ease); }
.desktop-nav a:hover { color: white; }
.desktop-nav a:hover::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 12px; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: #667281;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}
.lang-switch button {
  border: 0;
  padding: 2px 1px;
  background: transparent;
  color: #667281;
  cursor: pointer;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  transition: color .22s ease, text-shadow .22s ease;
}
.lang-switch button:hover { color: #d8dee5; }
.lang-switch button[aria-pressed="true"] { color: var(--lime); text-shadow: 0 0 14px rgba(195,255,84,.22); }
.lang-switch > span { color: rgba(255,255,255,.16); }
.mobile-lang-switch { display: none; }
.menu-toggle { display: none; }
.mobile-menu { display: none; }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.01em;
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s ease;
}
.btn::before { content: ''; position: absolute; inset: 0; z-index: -1; transform: translateX(-102%); transition: transform .45s var(--ease); background: linear-gradient(100deg, transparent, rgba(255,255,255,.24), transparent); }
.btn:hover::before { transform: translateX(102%); }
.btn i { width: 25px; height: 25px; border-radius: 50%; display: grid; place-items: center; font-style: normal; transition: transform .35s var(--ease); }
.btn:hover i { transform: rotate(45deg); }
.btn-primary { color: #0a1007; background: linear-gradient(120deg, var(--lime), #9cfbc1 68%, var(--cyan)); box-shadow: 0 10px 34px rgba(195,255,84,.14), inset 0 1px 0 rgba(255,255,255,.5); }
.btn-primary i { background: rgba(4,10,4,.12); }
.btn-primary:hover { box-shadow: 0 16px 46px rgba(195,255,84,.21); }
.btn-secondary { color: white; background: rgba(255,255,255,.055); border: 1px solid var(--line); }
.btn-secondary i { background: rgba(255,255,255,.08); }
.btn-small { padding: 10px 12px 10px 17px; }
.btn-large { padding: 16px 18px 16px 24px; font-size: 14px; }
.btn-xl { padding: 20px 22px 20px 30px; font-size: 15px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: #c7cdd4; font-size: 13px; font-weight: 650; }
.text-link span { transition: transform .3s var(--ease); }
.text-link:hover span { transform: translateY(4px); }

.hero {
  min-height: 100vh;
  padding-top: 148px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: minmax(0, .91fr) minmax(520px, 1.09fr);
  align-items: center;
  gap: 54px;
}
.hero-copy { position: relative; z-index: 2; padding-bottom: 6px; }
.hero-title { margin: 24px 0 25px; font-size: clamp(54px, 6.3vw, 94px); line-height: .93; letter-spacing: -.067em; font-weight: 760; }
.hero-lead { max-width: 610px; margin: 0; color: #9fa9b5; font-size: clamp(17px, 1.55vw, 20px); line-height: 1.66; letter-spacing: -.02em; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.hero-proof { display: flex; align-items: stretch; gap: 24px; margin-top: 52px; }
.proof-item { display: flex; flex-direction: column; gap: 5px; max-width: 175px; }
.proof-item strong { font-size: 15px; }
.proof-item span { color: #727e8c; font-size: 11px; line-height: 1.5; }
.proof-line { width: 1px; background: var(--line); }

.hero-visual { position: relative; min-height: 600px; display: grid; place-items: center; perspective: 1300px; }
.core-card { position: relative; z-index: 2; width: min(100%, 630px); min-height: 485px; border-radius: 30px; padding: 24px; transform-style: preserve-3d; }
.core-card::before { content: ''; position: absolute; inset: -1px; border-radius: inherit; z-index: -1; opacity: .55; background: linear-gradient(135deg, rgba(124,108,255,.3), transparent 24%, transparent 68%, rgba(20,241,217,.28)); }
.core-topline { display: flex; justify-content: space-between; color: #718091; font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.live-pill { display: inline-flex; align-items: center; gap: 6px; padding: 5px 8px; border: 1px solid rgba(195,255,84,.16); border-radius: 999px; color: var(--lime); background: rgba(195,255,84,.05); }
.live-pill i { width: 5px; height: 5px; border-radius: 50%; background: var(--lime); animation: pulse 1.4s infinite; }
.core-status { display: flex; align-items: center; justify-content: space-between; margin-top: 29px; }
.core-status > div:first-child { display: grid; gap: 5px; }
.core-status strong { font-size: 24px; letter-spacing: -.035em; }
.radial-stat { width: 74px; height: 74px; display: grid; place-content: center; border-radius: 50%; background: conic-gradient(var(--cyan) 0 87%, rgba(255,255,255,.08) 87% 100%); position: relative; }
.radial-stat::before { content: ''; position: absolute; inset: 6px; border-radius: 50%; background: #10151d; }
.radial-stat span, .radial-stat small { position: relative; z-index: 1; }
.radial-stat span { font-size: 21px; font-weight: 800; }
.radial-stat small { font-size: 9px; color: var(--muted); margin-left: 1px; }
.flow-graph { position: relative; height: 165px; margin-top: 20px; overflow: hidden; border-radius: 17px; background: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px); background-size: 28px 28px; border: 1px solid var(--line-soft); }
.flow-graph svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.flow-path { fill: none; stroke-width: 2.3; vector-effect: non-scaling-stroke; }
.flow-path.ghost { stroke: rgba(255,255,255,.08); }
.flow-path.active { stroke: url(#lineGradient); stroke-dasharray: 9 7; filter: drop-shadow(0 0 7px rgba(20,241,217,.4)); animation: dash 8s linear infinite; }
.graph-label { position: absolute; padding: 5px 8px; background: rgba(9,13,18,.9); border: 1px solid var(--line); border-radius: 6px; color: #8190a0; font-size: 8px; font-weight: 800; }
.graph-label-a { left: 6%; bottom: 10%; }
.graph-label-b { left: 49%; top: 49%; }
.graph-label-c { right: 6%; top: 20%; color: var(--lime); }
.task-stream { margin-top: 13px; display: grid; gap: 8px; }
.task-row { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 12px; padding: 10px 12px; border: 1px solid var(--line-soft); border-radius: 12px; background: rgba(255,255,255,.018); }
.task-row.active-row { border-color: rgba(20,241,217,.16); background: rgba(20,241,217,.035); }
.task-icon { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 8px; background: rgba(255,255,255,.055); color: #91a0ad; font-size: 9px; font-weight: 800; }
.active-row .task-icon { color: var(--cyan); background: rgba(20,241,217,.08); }
.task-row > span:nth-child(2) { display: grid; gap: 2px; }
.task-row b { font-size: 10px; }
.task-row small { color: #697583; font-size: 9px; }
.task-row em { font-style: normal; color: #84909e; font-size: 9px; }
.floating-chip { position: absolute; z-index: 4; border-radius: 17px; padding: 13px 15px; display: flex; align-items: center; gap: 10px; animation: float 5.5s ease-in-out infinite; }
.floating-chip small { display: block; color: #75818e; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.floating-chip strong { font-size: 17px; }
.floating-chip b { color: #8b96a3; font-size: 9px; font-weight: 600; margin-left: 2px; }
.chip-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: var(--lime); background: rgba(195,255,84,.07); }
.chip-a { left: -22px; top: 185px; }
.chip-b { right: -27px; bottom: 215px; animation-delay: -2s; }
.pulse-ring { width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(20,241,217,.25); position: relative; }
.pulse-ring::before { content: ''; position: absolute; inset: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 16px var(--cyan); }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.045); border-radius: 50%; transform: rotate(-14deg); }
.orbit::before { content: ''; position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 15px var(--cyan); animation: orbit 8s linear infinite; }
.orbit-a { width: 730px; height: 430px; }
.orbit-b { width: 620px; height: 620px; opacity: .55; transform: rotate(53deg); }
.orbit-b::before { background: var(--purple); box-shadow: 0 0 15px var(--purple); animation-duration: 11s; animation-direction: reverse; }

.marquee-wrap { padding: 10px 0 80px; overflow: hidden; }
.marquee { transform: rotate(-2deg) scale(1.02); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.018); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 30px; padding: 15px 0; animation: marquee 27s linear infinite; }
.marquee span { font-size: 10px; letter-spacing: .18em; color: #8a95a2; font-weight: 800; }
.marquee i { color: var(--lime); font-size: 9px; font-style: normal; }

.services { padding: 110px 0 140px; }
.section-heading { display: grid; grid-template-columns: 1fr 1fr; column-gap: 60px; align-items: end; margin-bottom: 60px; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: 25px; }
.section-heading h2, .system-copy h2, .about-copy h2, .cta h2 { margin: 0; font-size: clamp(42px, 5.3vw, 72px); line-height: .99; letter-spacing: -.06em; font-weight: 710; }
.section-heading p { margin: 0 0 5px auto; max-width: 455px; color: #8f9aa7; font-size: 16px; line-height: 1.7; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { position: relative; min-height: 475px; padding: 24px; border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: border-color .35s ease, background .35s ease; transform-style: preserve-3d; }
.service-card:hover { border-color: rgba(255,255,255,.17); background: linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.035)); }
.service-card.featured { background: radial-gradient(circle at 85% 0%, rgba(20,241,217,.12), transparent 32%), linear-gradient(135deg, rgba(124,108,255,.11), rgba(255,255,255,.035)); }
.featured-label { position: absolute; right: 21px; top: 20px; padding: 5px 8px; border-radius: 999px; color: var(--lime); border: 1px solid rgba(195,255,84,.18); font-size: 8px; font-weight: 900; letter-spacing: .15em; }
.service-number { color: #5f6c79; font-size: 10px; font-weight: 800; }
.service-symbol { width: 54px; height: 54px; display: grid; place-items: center; margin: 36px 0 28px; border-radius: 15px; color: var(--cyan); background: rgba(20,241,217,.055); border: 1px solid rgba(20,241,217,.11); font-size: 24px; }
.featured .service-symbol { color: var(--lime); background: rgba(195,255,84,.055); border-color: rgba(195,255,84,.11); }
.service-card h3 { margin: 0; font-size: 29px; line-height: 1.05; letter-spacing: -.045em; }
.service-card p { margin: 18px 0 22px; color: #8d98a4; font-size: 13px; line-height: 1.65; }
.service-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.service-tags span { padding: 5px 8px; border: 1px solid var(--line); border-radius: 999px; color: #778491; font-size: 8px; letter-spacing: .07em; text-transform: uppercase; }
.card-line { height: 1px; background: var(--line-soft); margin: auto 0 18px; }
.service-link { display: flex; justify-content: space-between; color: #cfd5db; font-size: 11px; font-weight: 700; }
.service-link i { font-style: normal; color: var(--lime); }

.system-section { padding: 135px 0; position: relative; background: linear-gradient(180deg, rgba(255,255,255,.016), rgba(124,108,255,.032), rgba(255,255,255,.01)); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.system-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 95px; align-items: start; }
.system-copy { position: sticky; top: 140px; }
.system-copy h2 { margin-top: 25px; }
.system-copy p { max-width: 500px; color: #8f99a5; line-height: 1.72; margin: 28px 0 32px; }
.process-stack { display: grid; gap: 10px; }
.process-step { display: grid; grid-template-columns: 65px 1fr 44px; gap: 20px; min-height: 175px; padding: 26px; border-radius: 22px; border: 1px solid var(--line-soft); background: rgba(255,255,255,.018); transition: background .4s ease, border-color .4s ease, transform .4s var(--ease); }
.process-step:hover, .process-step.active { transform: translateX(-10px); border-color: rgba(20,241,217,.15); background: rgba(20,241,217,.026); }
.step-index { color: #606c79; font-size: 13px; font-weight: 800; }
.process-step h3 { margin: 8px 0 8px; font-size: 22px; letter-spacing: -.035em; }
.process-step p { margin: 0; color: #7c8794; font-size: 13px; line-height: 1.6; }
.step-signal { display: grid; place-items: center; }
.step-signal span { width: 10px; height: 10px; border-radius: 50%; background: #38404a; box-shadow: 0 0 0 8px rgba(255,255,255,.02); transition: all .4s ease; }
.process-step:hover .step-signal span, .process-step.active .step-signal span { background: var(--lime); box-shadow: 0 0 0 8px rgba(195,255,84,.04), 0 0 20px rgba(195,255,84,.4); }

.use-cases { padding: 135px 0; }
.usecase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.usecase-card { min-height: 295px; position: relative; padding: 27px; border: 1px solid var(--line-soft); border-radius: 22px; overflow: hidden; background: rgba(255,255,255,.017); transition: border-color .35s ease, transform .35s var(--ease); }
.usecase-card::before { content: ''; position: absolute; width: 220px; height: 220px; border-radius: 50%; right: -130px; top: -130px; background: radial-gradient(circle, rgba(124,108,255,.18), transparent 68%); transition: transform .6s var(--ease); }
.usecase-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.13); }
.usecase-card:hover::before { transform: scale(1.35); }
.usecase-top { display: flex; justify-content: space-between; color: #63707d; font-size: 9px; letter-spacing: .14em; font-weight: 800; }
.usecase-top span:last-child { color: var(--lime); font-size: 15px; }
.usecase-card h3 { margin: 43px 0 14px; font-size: 30px; letter-spacing: -.045em; }
.usecase-card p { max-width: 480px; margin: 0; color: #86919e; line-height: 1.65; font-size: 13px; }
.mini-flow { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-top: 35px; }
.mini-flow span { padding: 6px 9px; border: 1px solid var(--line); background: rgba(255,255,255,.02); border-radius: 7px; font-size: 8px; color: #96a1ad; }
.mini-flow i { color: #48535f; font-style: normal; font-size: 10px; }

.about { padding: 15px 0 135px; }
.about-panel { min-height: 560px; border-radius: 32px; padding: 72px; display: grid; grid-template-columns: 1fr .83fr; gap: 75px; align-items: center; position: relative; overflow: hidden; }
.about-panel::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(124,108,255,.10), transparent 33%), radial-gradient(circle at 15% 100%, rgba(20,241,217,.05), transparent 28%); pointer-events: none; }
.about-copy { position: relative; z-index: 1; }
.about-copy h2 { font-size: clamp(40px, 4.5vw, 65px); margin-top: 24px; }
.about-copy > p { color: #8d98a4; line-height: 1.72; max-width: 580px; }
.founder-line { display: flex; align-items: center; gap: 13px; margin-top: 30px; }
.avatar { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: linear-gradient(135deg, rgba(124,108,255,.24), rgba(20,241,217,.16)); border: 1px solid var(--line); font-size: 10px; font-weight: 850; color: var(--cyan); }
.founder-line div { display: grid; gap: 2px; }
.founder-line strong { font-size: 12px; }
.founder-line small { color: #6f7b88; font-size: 9px; }
.about-console { position: relative; z-index: 1; min-height: 350px; border-radius: 20px; border: 1px solid var(--line); background: rgba(4,7,10,.62); box-shadow: 0 30px 80px rgba(0,0,0,.25); overflow: hidden; transform: perspective(900px) rotateY(-5deg) rotateX(2deg); }
.console-head { display: flex; justify-content: space-between; padding: 13px 15px; border-bottom: 1px solid var(--line-soft); color: #5c6875; font-size: 9px; }
.console-head div { display: flex; gap: 5px; }
.console-head i { width: 6px; height: 6px; background: #3b434d; border-radius: 50%; }
.console-body { padding: 27px 25px; font-family: "SFMono-Regular", Consolas, monospace; }
.console-body p { display: grid; grid-template-columns: 32px 1fr auto; gap: 10px; margin: 0; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.035); font-size: 11px; }
.console-body b { color: #414c57; font-weight: 500; }
.console-body span { color: #9aa5b2; }
.console-body em { color: var(--lime); font-style: normal; }
.console-body p:nth-child(4) em { color: #ff7f87; }
.console-cursor { color: var(--cyan); margin-top: 17px; animation: blink .8s steps(2) infinite; }

.cta { min-height: 660px; padding: 130px 0 145px; position: relative; display: grid; place-items: center; overflow: hidden; }
.cta::before { content: ''; position: absolute; left: 50%; top: 50%; width: min(96vw, 1100px); height: 430px; transform: translate(-50%, -50%); border-radius: 50%; border: 1px solid rgba(255,255,255,.04); box-shadow: 0 0 100px rgba(124,108,255,.04); }
.cta-inner { position: relative; z-index: 2; text-align: center; }
.eyebrow.centered { justify-content: center; }
.cta h2 { margin: 28px 0 25px; font-size: clamp(48px, 6.5vw, 86px); }
.cta p { max-width: 650px; margin: 0 auto 35px; color: #8e99a6; font-size: 17px; line-height: 1.7; }
.cta small { display: block; margin-top: 17px; color: #586470; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb-one { width: 360px; height: 360px; left: 8%; top: 23%; background: radial-gradient(circle, rgba(124,108,255,.13), transparent 68%); }
.orb-two { width: 320px; height: 320px; right: 7%; bottom: 6%; background: radial-gradient(circle, rgba(20,241,217,.09), transparent 68%); }

.footer { border-top: 1px solid var(--line-soft); padding: 40px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 30px; padding-bottom: 34px; }
.footer-top > p { text-align: center; color: #596572; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { justify-self: end; display: flex; gap: 25px; }
.footer-links a { color: #7f8a96; font-size: 11px; }
.footer-bottom { padding-top: 20px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; gap: 20px; color: #48535f; font-size: 9px; letter-spacing: .05em; text-transform: uppercase; }

.cookie-notice {
  position: fixed;
  z-index: 60;
  left: 18px;
  bottom: 18px;
  width: min(560px, calc(100% - 36px));
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(10, 14, 20, .92);
  box-shadow: 0 20px 65px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .05);
  animation: cookieIn .45s var(--ease) both;
}
.cookie-notice[hidden] { display: none; }
.cookie-notice.is-closing { animation: cookieOut .28s ease both; }
.cookie-copy { display: grid; gap: 6px; }
.cookie-kicker { color: var(--lime); font-size: 9px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.cookie-copy p { margin: 0; color: #8e99a6; font-size: 11px; line-height: 1.55; }
.cookie-actions { display: flex; align-items: center; gap: 13px; white-space: nowrap; }
.cookie-actions a { color: #8e99a6; font-size: 10px; text-decoration: underline; text-decoration-color: rgba(255,255,255,.2); text-underline-offset: 3px; }
.cookie-actions a:hover { color: var(--text); }
.cookie-actions button { padding: 9px 13px; border: 1px solid rgba(195,255,84,.2); border-radius: 999px; background: rgba(195,255,84,.08); color: var(--lime); cursor: pointer; font-size: 10px; font-weight: 750; transition: background .2s ease, border-color .2s ease; }
.cookie-actions button:hover { border-color: rgba(195,255,84,.36); background: rgba(195,255,84,.13); }
.cookie-actions a:focus-visible, .cookie-actions button:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }

.scanner-modal {
  width: min(calc(100% - 32px), 790px);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 28px;
  padding: 0;
  background: radial-gradient(circle at 85% 0%, rgba(20,241,217,.09), transparent 30%), radial-gradient(circle at 0% 90%, rgba(124,108,255,.10), transparent 30%), #0a0e14;
  box-shadow: 0 45px 150px rgba(0,0,0,.6);
  overflow: hidden;
}
.scanner-modal::backdrop { background: rgba(1,3,6,.78); backdrop-filter: blur(10px); }
.scanner-progress { position: absolute; left: 0; top: 0; right: 0; height: 2px; background: rgba(255,255,255,.06); }
.scanner-progress span { display: block; height: 100%; width: 33%; background: linear-gradient(90deg, var(--purple), var(--cyan), var(--lime)); transition: width .5s var(--ease); }
.modal-close { position: absolute; right: 16px; top: 14px; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.04); color: #a3adba; cursor: pointer; font-size: 20px; z-index: 2; }
.scanner-step { display: none; padding: 58px; }
.scanner-step.active { display: block; animation: modalIn .45s var(--ease); }
.scanner-step h2 { max-width: 590px; margin: 18px 0 30px; font-size: clamp(30px, 5vw, 48px); line-height: 1.03; letter-spacing: -.05em; }
.option-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.option-grid button { min-height: 118px; display: flex; align-items: center; gap: 15px; text-align: left; padding: 18px; border-radius: 16px; border: 1px solid var(--line); background: rgba(255,255,255,.025); cursor: pointer; transition: transform .3s var(--ease), border-color .3s ease, background .3s ease; }
.option-grid button:hover { transform: translateY(-3px); border-color: rgba(20,241,217,.22); background: rgba(20,241,217,.04); }
.option-grid button > i { width: 41px; height: 41px; flex: 0 0 41px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 12px; color: var(--cyan); font-style: normal; font-size: 12px; }
.option-grid button > span { display: grid; gap: 5px; }
.option-grid b { font-size: 13px; }
.option-grid small { color: #737f8c; line-height: 1.45; font-size: 9px; }
.result-score { width: 145px; height: 145px; display: flex; align-items: baseline; justify-content: center; place-content: center; border-radius: 50%; margin: 7px 0 25px; background: conic-gradient(var(--lime) 0 82%, rgba(255,255,255,.07) 82%); position: relative; padding-top: 53px; }
.result-score::after { content: ''; position: absolute; inset: 8px; border-radius: 50%; background: #0d1219; }
.result-score span, .result-score small { position: relative; z-index: 1; }
.result-score span { font-size: 40px; font-weight: 800; letter-spacing: -.05em; }
.result-score small { color: #687482; font-size: 11px; margin-left: 2px; }
.scanner-step > p { max-width: 590px; color: #8a96a4; line-height: 1.65; }
.result-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 25px 0 30px; }
.result-list span { padding: 8px 10px; border-radius: 999px; background: rgba(195,255,84,.04); border: 1px solid rgba(195,255,84,.1); color: #9eaa9a; font-size: 9px; }
.result-list i { color: var(--lime); font-style: normal; margin-right: 4px; }
.scanner-restart { margin-left: 16px; padding: 12px 0; border: 0; background: transparent; color: #778391; cursor: pointer; font-size: 10px; text-decoration: underline; text-underline-offset: 4px; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.js .reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes pulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(195,255,84,.3); } 50% { opacity: .6; box-shadow: 0 0 0 6px rgba(195,255,84,0); } }
@keyframes dash { to { stroke-dashoffset: -180; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes orbit { from { left: 8%; top: 30%; } 25% { left: 48%; top: -1%; } 50% { left: 92%; top: 45%; } 75% { left: 50%; top: 95%; } 100% { left: 8%; top: 30%; } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes blink { 50% { opacity: 0; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(16px) scale(.985); } to { opacity: 1; transform: none; } }
@keyframes cookieIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes cookieOut { to { opacity: 0; transform: translateY(8px); } }

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; padding-top: 150px; }
  .hero-copy { max-width: 780px; }
  .hero-visual { min-height: 620px; }
  .core-card { width: min(90%, 650px); }
  .chip-a { left: 6%; } .chip-b { right: 5%; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading p { margin: 24px 0 0; }
  .system-inner { gap: 55px; }
  .about-panel { padding: 50px; gap: 45px; }
}

@media (max-width: 820px) {
  .section-shell { width: min(calc(100% - 30px), var(--max)); }
  .site-header { grid-template-columns: 1fr auto; height: 64px; }
  .desktop-nav, .header-actions { display: none; }
  .menu-toggle { display: grid; place-items: center; width: 42px; height: 42px; justify-self: end; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.035); cursor: pointer; }
  .menu-toggle span { position: absolute; width: 15px; height: 1px; background: white; transition: transform .3s ease; }
  .menu-toggle span:first-child { transform: translateY(-3px); }
  .menu-toggle span:last-child { transform: translateY(3px); }
  .menu-toggle.active span:first-child { transform: rotate(45deg); }
  .menu-toggle.active span:last-child { transform: rotate(-45deg); }
  .mobile-menu { display: flex; position: fixed; z-index: 45; left: 15px; right: 15px; top: 91px; padding: 23px; flex-direction: column; gap: 6px; border: 1px solid var(--line); border-radius: 20px; background: rgba(8,11,16,.95); backdrop-filter: blur(20px); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: .3s var(--ease); }
  .mobile-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-menu a { padding: 13px 7px; color: #adb7c2; border-bottom: 1px solid var(--line-soft); font-size: 14px; }
  .mobile-menu .btn { margin-top: 12px; }
  .mobile-lang-switch { display: inline-flex; align-self: flex-start; margin: 14px 0 2px 6px; }
  .hero { padding-top: 130px; gap: 0; }
  .hero-title { font-size: clamp(52px, 14vw, 78px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-visual { min-height: 590px; transform: scale(.92); margin-inline: -5%; }
  .orbit-a { width: 680px; }
  .section-heading h2, .system-copy h2 { font-size: clamp(42px, 11vw, 64px); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 410px; }
  .system-inner { grid-template-columns: 1fr; }
  .system-copy { position: static; }
  .usecase-grid { grid-template-columns: 1fr; }
  .about-panel { grid-template-columns: 1fr; padding: 38px 25px; }
  .about-console { transform: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top > p { text-align: left; }
  .footer-links { justify-self: start; }
}

@media (max-width: 560px) {
  .section-shell { width: calc(100% - 24px); }
  .brand-logo { height: 28px; }
  .hero { padding-top: 116px; padding-bottom: 55px; }
  .hero-title { margin-top: 21px; font-size: clamp(48px, 16vw, 66px); }
  .hero-proof { margin-top: 38px; gap: 15px; }
  .proof-item { max-width: 145px; }
  .hero-visual { display: none; }
  .core-card { width: 100%; min-height: 470px; }
  .chip-a { left: -6%; } .chip-b { right: -3%; }
  .marquee-wrap { padding-bottom: 35px; }
  .services, .use-cases { padding: 90px 0; }
  .system-section { padding: 90px 0; }
  .section-heading { margin-bottom: 37px; }
  .section-heading p { font-size: 14px; }
  .process-step { grid-template-columns: 42px 1fr; min-height: 190px; padding: 21px; }
  .step-signal { display: none; }
  .process-step:hover, .process-step.active { transform: none; }
  .about { padding-bottom: 90px; }
  .about-panel { border-radius: 24px; }
  .about-copy h2 { font-size: 42px; }
  .console-body { padding: 22px 18px; }
  .console-body p { font-size: 9px; grid-template-columns: 25px 1fr auto; }
  .cta { min-height: 580px; padding: 95px 0; }
  .cta h2 { font-size: 48px; }
  .cta p { font-size: 14px; }
  .btn-xl { width: 100%; font-size: 13px; }
  .footer-bottom { flex-direction: column; }
  .cookie-notice { left: 12px; bottom: 12px; width: calc(100% - 24px); grid-template-columns: 1fr; gap: 14px; padding: 16px; }
  .cookie-actions { justify-content: space-between; }
  .scanner-step { padding: 52px 20px 28px; }
  .option-grid { grid-template-columns: 1fr; }
  .option-grid button { min-height: 95px; }
  .scanner-step h2 { font-size: 34px; }
  .scanner-restart { display: block; margin: 12px 0 0; }
}

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