:root {
  --bg: #070707;
  --panel: #121212;
  --line: rgba(255,255,255,.08);
  --line-2: rgba(255,255,255,.14);
  --cream: #f3eee6;
  --cream-2: #c9c2b6;
  --mute: #8f8a80;
  --lime: #d8ff46;
  --lime-ink: #11180a;
  --glow: rgba(216,255,70,.2);
  --max: 1200px;
  --nav: 74px;
  --ease: cubic-bezier(.22,1,.36,1);
}
html[data-theme="light"] {
  --bg: #f3eee6;
  --panel: #fff;
  --line: rgba(17,17,17,.1);
  --line-2: rgba(17,17,17,.18);
  --cream: #161616;
  --cream-2: #3f3b36;
  --mute: #6b6660;
  --glow: rgba(120,150,20,.18);
}
html[data-theme="light"] body::before { opacity: .04; background-image: radial-gradient(rgba(0,0,0,.45) 0.6px, transparent 0.6px); }
html[data-theme="light"] .site-header { background: rgba(243,238,230,.88); }
html[data-theme="light"] .card { background: #fff; }
html[data-theme="light"] input, html[data-theme="light"] select, html[data-theme="light"] textarea { background: #fff; color: #161616; }
html[data-theme="light"] .panel { background: rgba(243,238,230,.98); }
html[data-theme="light"] .logo-tile { background: #111; }
html[data-theme="light"] .hero::before { background: radial-gradient(circle, rgba(216,255,70,.28), transparent 62%); }
.theme-toggle {
  height: 42px; padding: 0 14px; border-radius: 999px;
  border: 1px solid var(--line-2); background: transparent; color: var(--cream);
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase; cursor: pointer;
}
.theme-toggle:hover { border-color: var(--lime); color: var(--lime); }
.logo-tile { cursor: default; }
.crux-mark-bot {
  display: grid; place-items: center; width: 100%; height: 100%;
  background: #111; color: var(--lime);
}
.crux-mark-bot svg { width: 70%; height: 70%; display: block; }
.crux-chat-toggle { overflow: hidden; }
.crux-row.bot .crux-mark-bot {
  width: 28px; height: 28px; border-radius: 8px; font-size: 12px; flex: 0 0 auto;
}
.crux-chat-panel header .crux-mark-bot {
  width: 36px; height: 36px; border-radius: 10px; font-size: 14px; flex: 0 0 auto;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: "Sora", system-ui, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: .035;
  background-image: radial-gradient(rgba(255,255,255,.9) 0.6px, transparent 0.6px);
  background-size: 3px 3px;
  animation: grain 8s steps(4) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  25% { transform: translate(-1px,1px); }
  50% { transform: translate(1px,-1px); }
  75% { transform: translate(-1px,-1px); }
}
.site-header, main, .footer, .dock, #crux-chat, .panel { position: relative; z-index: 2; }
.site-header { z-index: 50; }
#crux-chat { z-index: 60; }
.dock { z-index: 40; }
.cursor-dot {
  position: fixed; width: 10px; height: 10px; border-radius: 50%;
  background: var(--lime); pointer-events: none; z-index: 80;
  mix-blend-mode: screen; opacity: .55; transform: translate(-50%,-50%);
  transition: width .2s, height .2s, opacity .2s;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
.wrap { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.mono { font-family: "IBM Plex Mono", ui-monospace, monospace; letter-spacing: .14em; text-transform: uppercase; font-size: 11px; }
.site-header { position: sticky; top: 0; z-index: 50; height: var(--nav); display: flex; align-items: center; background: rgba(7,7,7,.82); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
.header-inner { width: min(1280px, calc(100% - 36px)); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 0; font-weight: 700; letter-spacing: 0; }
.mark-x { width: 40px; height: 40px; flex: 0 0 auto; margin: 0 0 0 -3px; }
.mark-x path { fill: var(--lime); }
.mark-x rect { fill: var(--bg); }
.brand .word { font-size: 22px; letter-spacing: .02em; color: var(--cream); font-weight: 700; line-height: 1; }
.brand .ai { color: var(--lime); font-size: 20px; letter-spacing: .06em; font-weight: 700; line-height: 1; margin-left: 8px; }
.mark {
  height: 36px; padding: 0 12px; width: auto; border-radius: 10px;
  background: var(--lime); color: var(--lime-ink);
  display: grid; place-items: center;
  font-weight: 800; font-size: 13px; letter-spacing: .12em;
  box-shadow: 0 0 28px var(--glow);
  overflow: hidden;
  animation: markGlow 3.6s ease-in-out infinite;
  position: relative;
}
.mark::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: shine 4.8s ease-in-out infinite;
}
@keyframes shine {
  0%, 55% { transform: translateX(-120%); }
  75% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}
.mark-text {
  display: inline-block;
  animation: markShift .9s var(--ease) both, markPulse 3.6s ease-in-out infinite;
}
@keyframes markGlow {
  0%,100% { box-shadow: 0 0 18px var(--glow); }
  50% { box-shadow: 0 0 34px rgba(216,255,70,.45); }
}
@keyframes markShift { from { letter-spacing: .28em; opacity: 0; } to { letter-spacing: .12em; opacity: 1; } }
@keyframes markPulse {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-1px); }
}
.nav-links { display: flex; gap: 22px; color: var(--cream-2); font-size: 14px; }
.nav-links a { position: relative; padding-bottom: 4px; transition: color .25s var(--ease); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--lime); transition: width .28s var(--ease);
}
.nav-links a:hover, .nav-links a.is-active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.is-active::after { width: 100%; }
.burger { display: none; width: 42px; height: 42px; border-radius: 999px; border: 1px solid var(--line-2); background: transparent; color: var(--cream); }
.btn { display: inline-flex; align-items: center; justify-content: center; height: 46px; padding: 0 20px; border-radius: 999px; font-size: 14px; font-weight: 600; border: 1px solid transparent; transition: .25s var(--ease); }
.btn:hover { transform: translateY(-3px); }
.btn-lime { background: var(--lime); color: var(--lime-ink); box-shadow: 0 10px 30px var(--glow); }
.btn-lime:hover { box-shadow: 0 14px 36px rgba(216,255,70,.42); }
.btn-ghost { border-color: var(--line-2); background: transparent; }
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }
.hero { position: relative; padding: 84px 0 28px; overflow: hidden; }
.hero::before { content: ""; position: absolute; left: 8%; top: -10%; width: 62%; height: 540px; background: radial-gradient(circle, rgba(216,255,70,.18), transparent 62%); pointer-events: none; animation: glow 9s ease-in-out infinite, drift 18s ease-in-out infinite; }
.hero::after {
  content: ""; position: absolute; left: -10%; top: 0; width: 18%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(216,255,70,.07), transparent);
  pointer-events: none; animation: scan 14s linear infinite;
}
@keyframes glow { 0%,100% { opacity: .6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.08); } }
@keyframes drift { 0%,100% { translate: 0 0; } 50% { translate: 6% 4%; } }
@keyframes scan { 0% { transform: translateX(0); opacity: 0; } 8% { opacity: 1; } 22% { transform: translateX(700%); opacity: 0; } 100% { transform: translateX(700%); opacity: 0; } }
.kicker { display: flex; align-items: center; gap: 10px; color: var(--mute); margin-bottom: 26px; }
.live { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); animation: ping 2s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(216,255,70,.5); } 70% { box-shadow: 0 0 0 9px transparent; } }
.hero h1 { font-size: clamp(2.7rem, 6.6vw, 5.5rem); line-height: .94; letter-spacing: -.045em; font-weight: 600; max-width: 13ch; }
.hero h1 em { font-style: normal; color: var(--lime); }
.hero-copy { margin-top: 26px; max-width: 42rem; color: var(--cream-2); font-size: 1.06rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.nodes { margin-top: 26px; color: var(--mute); }
.markets { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.markets span { border: 1px solid var(--line-2); border-radius: 999px; padding: 6px 12px; color: var(--cream-2); font-size: 12px; animation: chipPulse 6.4s ease-in-out infinite; }
.markets span:nth-child(2) { animation-delay: 1.6s; }
.markets span:nth-child(3) { animation-delay: 3.2s; }
.markets span:nth-child(4) { animation-delay: 4.8s; }
@keyframes chipPulse {
  0%, 78%, 100% { border-color: var(--line-2); color: var(--cream-2); box-shadow: none; }
  88% { border-color: var(--lime); color: var(--lime); box-shadow: 0 0 16px var(--glow); }
}
.meta { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 56px; }
.meta article { padding: 22px 20px 22px 0; border-right: 1px solid var(--line); }
.meta article:last-child { border-right: 0; }
.meta h3 { color: var(--lime); margin-bottom: 8px; }
.meta p { color: var(--cream-2); font-size: .92rem; }
.stats .wrap { display: grid; grid-template-columns: repeat(4,1fr); }
.stat { padding: 42px 16px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.stat strong { display: block; font-size: clamp(2rem, 3.6vw, 3.1rem); letter-spacing: -.04em; }
.stat span { color: var(--mute); font-size: .9rem; }
.block { padding: 96px 0; }
.k { color: var(--lime); margin-bottom: 14px; }
.h { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -.035em; line-height: 1.04; font-weight: 600; max-width: 16ch; }
.lead { margin-top: 16px; color: var(--cream-2); max-width: 40rem; }
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 40px; align-items: start; }
.head-row { display: flex; justify-content: space-between; gap: 24px; align-items: end; flex-wrap: wrap; }
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.card { background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015)); border: 1px solid var(--line); border-radius: 22px; padding: 26px; transition: .35s var(--ease); }
.card:hover { transform: translateY(-4px); border-color: rgba(216,255,70,.28); box-shadow: 0 24px 50px rgba(0,0,0,.28); }
.num { color: var(--lime); margin-bottom: 12px; }
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { color: var(--cream-2); }
.person { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; }
.ava { width: 88px; height: 88px; border-radius: 50%; background: #1a1a1a; border: 1px solid rgba(216,255,70,.35); overflow: hidden; flex: 0 0 auto; }
.ava img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(0); }
.role { color: var(--lime); font-size: .86rem; margin: 4px 0 10px; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 8px; }
.chip { height: 38px; padding: 0 14px; border-radius: 999px; border: 1px solid var(--line-2); background: transparent; color: var(--cream-2); cursor: pointer; transition: .25s var(--ease); }
.chip:hover { border-color: var(--lime); color: var(--cream); }
.chip.on { border-color: var(--lime); color: var(--lime); }
.case { display: grid; grid-template-columns: 180px 1fr; gap: 24px; padding: 28px 0; border-top: 1px solid var(--line); }
.case h3 { font-size: 1.15rem; margin-bottom: 12px; }
.row { display: grid; grid-template-columns: 110px 1fr; gap: 12px; margin-top: 8px; }
.row dt { color: var(--lime); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-family: "IBM Plex Mono", monospace; padding-top: 3px; }
.row dd { color: var(--cream-2); }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.tags span { border: 1px solid var(--line-2); border-radius: 999px; padding: 4px 10px; font-size: 12px; color: var(--mute); }
form { display: grid; gap: 14px; }
label { display: grid; gap: 6px; color: var(--mute); font-size: 13px; }
input, select, textarea { background: #0c0c0c; border: 1px solid var(--line-2); border-radius: 12px; padding: 12px 14px; outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--lime); }
textarea { min-height: 120px; }
.r2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.footer { border-top: 1px solid var(--line); padding: 42px 0 24px; color: var(--mute); }
.footer a { position: relative; }
.footer a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--lime); transition: width .28s var(--ease);
}
.footer a:hover { color: var(--lime); }
.footer a:hover::after { width: 100%; }
.foot { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.fine { margin-top: 22px; font-size: 12px; color: #666; }
.dock { position: fixed; right: 20px; bottom: 20px; z-index: 40; }
.panel { display: none; position: fixed; inset: var(--nav) 0 0 0; background: rgba(7,7,7,.96); padding: 24px; z-index: 45; }
.panel.open { display: grid; gap: 16px; align-content: start; }
.panel a { font-size: 1.2rem; padding: 8px 0; border-bottom: 1px solid var(--line); }
.reveal { opacity: 0; transform: translateY(22px); animation: up .85s var(--ease) forwards; }
.d1 { animation-delay: .08s; } .d2 { animation-delay: .16s; } .d3 { animation-delay: .24s; }
@keyframes up { to { opacity: 1; transform: none; } }
[data-reveal] { opacity: 0; transform: translateY(22px); transition: .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
.page-hero { padding: 78px 0 20px; }
.page-hero h1 { font-size: clamp(2.3rem, 5.4vw, 4.4rem); letter-spacing: -.04em; line-height: .98; max-width: 16ch; }
@media (max-width: 980px) {
  .nav-links { display: none; }
  .burger { display: grid; place-items: center; }
  .meta, .stats .wrap, .g2, .g3, .g4, .split, .r2, .case { grid-template-columns: 1fr; }
  .meta article, .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero h1 { max-width: none; }
  .block { padding: 68px 0; }
}

#crux-chat { position: fixed; left: 14px; bottom: 14px; z-index: 60; color: #f3eee6; }
#crux-chat.crux-chat-hidden { display: none; }
.crux-chat-toggle {
  width: 62px; height: 62px; padding: 0; border: 2px solid var(--lime); border-radius: 20px;
  background: #111; overflow: hidden; cursor: pointer;
  box-shadow: 0 0 0 6px rgba(216,255,70,.16), 0 10px 28px var(--glow);
  position: relative;
}
.crux-chat-toggle img { width: 100%; height: 100%; object-fit: cover; display: block; }
.crux-chat-fallback {
  display: none; width: 100%; height: 100%; align-items: center; justify-content: center;
  background: var(--lime); color: #111; font-weight: 800; font-size: 16px;
}
.crux-chat-toggle.noimg .crux-chat-fallback { display: flex; }
.crux-chat-toggle { animation: botIdle 3.2s ease-in-out infinite; }
.crux-chat-toggle.on { animation: none; transform: scale(1.04); }
@keyframes botIdle {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}
.crux-chat-panel {
  position: absolute; left: 0; bottom: 70px;
  width: min(320px, calc(100vw - 24px));
  background: linear-gradient(180deg, rgba(216,255,70,.10), rgba(18,18,18,.62) 28%, rgba(12,12,12,.58));
  border: 1px solid rgba(216,255,70,.38);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.45), 0 0 0 1px rgba(216,255,70,.08);
  overflow: hidden;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  transform-origin: bottom left;
  animation: chatIn .28s var(--ease);
}
@keyframes chatIn {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to { opacity: 1; transform: none; }
}
.crux-chat-panel header {
  display: grid; grid-template-columns: 36px 1fr auto; gap: 8px; align-items: center;
  padding: 8px 10px; border-bottom: 1px solid rgba(216,255,70,.18);
  background: rgba(12,12,12,.55);
}
.crux-chat-panel header img { width: 36px; height: 36px; border-radius: 10px; object-fit: cover; }
.crux-chat-panel header small { display: block; color: var(--mute); font-size: 10px; }
.crux-chat-tools button {
  width: 26px; height: 26px; border-radius: 7px; border: 1px solid var(--line-2);
  background: transparent; color: var(--cream); cursor: pointer;
}
.crux-chat-log { height: 220px; overflow: auto; padding: 10px; display: grid; gap: 8px; }
.crux-row { display: flex; gap: 6px; align-items: flex-end; }
.crux-row.you { justify-content: flex-end; }
.crux-row img { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; }
.crux-row p { margin: 0; max-width: 80%; padding: 7px 9px; border-radius: 12px; font-size: 12.5px; line-height: 1.4; }
.crux-row.bot p { background: rgba(28,28,28,.92); color: #f3f1e8; }
.crux-row.you p { background: rgba(216,255,70,.22); color: #f7f4ea; }
.crux-chat-ask { display: grid; grid-template-columns: 1fr auto; gap: 6px; padding: 8px; border-top: 1px solid rgba(216,255,70,.16); background: rgba(10,10,10,.45); }
.crux-chat-ask input {
  background: rgba(8,8,8,.7); border: 1px solid rgba(216,255,70,.22); border-radius: 999px;
  padding: 8px 12px; color: var(--cream);
}
.crux-chat-ask button {
  border: 0; border-radius: 999px; background: var(--lime); color: var(--lime-ink);
  padding: 0 12px; font-weight: 700; cursor: pointer;
}
@media (max-width: 640px) {
  #crux-chat { left: 10px; bottom: 10px; }
  .crux-chat-log { height: 180px; }
}


.faq { margin-top: 18px; display: grid; gap: 10px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.02);
  padding: 0 18px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease), background .25s var(--ease);
}
.faq details:hover,
.faq details:focus-within {
  border-color: var(--lime);
  box-shadow: 0 0 0 1px rgba(216,255,70,.28), 0 0 22px var(--glow);
  transform: translateY(-2px);
  background: rgba(216,255,70,.04);
}
.faq details[open] {
  border-color: rgba(216,255,70,.55);
  box-shadow: 0 0 0 1px rgba(216,255,70,.18), 0 12px 28px rgba(0,0,0,.25);
}
.faq summary {
  cursor: pointer; list-style: none; padding: 16px 0;
  font-size: 1.05rem; font-weight: 600; color: var(--cream);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; float: right; color: var(--lime); font-weight: 500;
  transition: transform .25s var(--ease);
}
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--cream-2); padding: 0 0 18px; max-width: 46rem; }


.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.logo-tile {
  min-height: 120px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #0a0a0a;
  display: grid;
  place-items: center;
  padding: 22px 18px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.logo-tile img {
  max-width: 78%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.logo-tile:hover, .logo-tile:focus-within {
  border-color: var(--lime);
  box-shadow: 0 0 0 1px rgba(216,255,70,.35), 0 0 24px var(--glow);
  transform: translateY(-3px);
}
@media (max-width: 980px) {
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal, [data-reveal], .faq details { opacity: 1; transform: none; }
  .cursor-dot { display: none !important; }
  .k::before, .orb, .site-header::after, .hero h1::after, .page-hero h1::after, .h::after { animation: none !important; }
}


/* OPTION 2 locked — Cream page, black type, lime as line + button only */
html[data-theme="light"] {
  --bg: #f3eee6;
  --panel: #ffffff;
  --line: rgba(17,17,17,.10);
  --line-2: rgba(17,17,17,.18);
  --cream: #161616;
  --cream-2: #3f3b36;
  --mute: #6b6660;
  --lime: #161616;
  --lime-ink: #11180a;
  --glow: rgba(0,0,0,.08);
  --fluoro: #d8ff46;
}
html[data-theme="light"] .k,
html[data-theme="light"] .num,
html[data-theme="light"] .role,
html[data-theme="light"] .hero h1 em,
html[data-theme="light"] .meta h3,
html[data-theme="light"] .row dt,
html[data-theme="light"] .brand .ai { color: #161616; }
html[data-theme="light"] .btn-lime,
html[data-theme="light"] .crux-chat-ask button {
  background: #d8ff46; color: #11180a;
}
html[data-theme="light"] .mark-x path { fill: #d8ff46; }
html[data-theme="light"] .mark-x rect { fill: #161616; }
html[data-theme="light"] .live { background: #d8ff46; }
html[data-theme="light"] .card { border-color: rgba(17,17,17,.12); }
html[data-theme="light"] .card:hover { border-color: #d8ff46; box-shadow: 0 18px 40px rgba(0,0,0,.08); }
html[data-theme="light"] .btn-ghost:hover { border-color: #d8ff46; color: #161616; }
html[data-theme="light"] .nav-links a::after { background: #d8ff46; }
html[data-theme="light"] input:focus, html[data-theme="light"] select:focus, html[data-theme="light"] textarea:focus { border-color: #d8ff46; }
html[data-theme="light"] .hero::before { background: radial-gradient(circle, rgba(216,255,70,.22), transparent 62%); }
html[data-theme="light"] .faq details:hover { border-color: #d8ff46; }
html[data-theme="light"] .crux-chat-toggle {
  border-color: #d8ff46;
  background: #111;
  box-shadow: 0 0 0 6px rgba(216,255,70,.22), 0 10px 24px rgba(0,0,0,.12);
}
html[data-theme="light"] .crux-headset {
  color: #d8ff46;
  background: #111;
}
html[data-theme="light"] .orb {
  background: #d8ff46;
  color: #11180a;
  box-shadow: 0 0 18px rgba(216,255,70,.35);
}
html[data-theme="light"] .crux-chat-panel {
  color: #f3eee6;
  background: linear-gradient(180deg, rgba(216,255,70,.12), rgba(18,18,18,.92) 28%, rgba(12,12,12,.94));
}
html[data-theme="light"] .crux-chat-panel header small { color: #8f8a80; }
html[data-theme="light"] .crux-chat-tools button { color: #f3eee6; }


.markets span:nth-child(5) { animation-delay: 5.2s; }
.markets span:nth-child(6) { animation-delay: 6.4s; }
.markets.offices { margin-top: 8px; }
.markets.offices span { font-size: 11px; color: var(--mute); }
.method { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.orb {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--lime); color: var(--lime-ink);
  display: grid; place-items: center;
  font-weight: 700; font-size: 1.15rem; letter-spacing: 0;
  font-family: "Sora", system-ui, sans-serif;
  margin-bottom: 16px;
  box-shadow: 0 0 24px var(--glow);
}
.offer-points {
  list-style: none; margin-top: 22px; display: grid; gap: 12px;
  max-width: 36rem;
}
.offer-points li {
  position: relative;
  padding-left: 18px;
  color: var(--cream-2);
}
.offer-points li::before {
  content: "";
  position: absolute; left: 0; top: .55em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime);
}
@media (max-width: 980px) {
  .method { grid-template-columns: 1fr; }
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  width: 0;
  background: var(--lime);
  opacity: .55;
  animation: headerLine 1.35s var(--ease) .12s forwards;
}
@keyframes headerLine { to { width: 100%; } }

.nav-links a.is-active {
  color: var(--cream);
}
.nav-links a.is-active::before {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  top: -5px;
  bottom: -7px;
  border-radius: 9px;
  background: rgba(216,255,70,.06);
  z-index: -1;
}

.page-hero { position: relative; overflow: hidden; }
.page-hero::before {
  content: "";
  position: absolute;
  left: 10%;
  top: -28%;
  width: 52%;
  height: 280px;
  background: radial-gradient(circle, rgba(216,255,70,.11), transparent 64%);
  pointer-events: none;
  animation: glow 12s ease-in-out infinite, drift 22s ease-in-out infinite;
}
.page-hero::after {
  content: "";
  position: absolute;
  left: -10%;
  top: 0;
  width: 16%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(216,255,70,.045), transparent);
  pointer-events: none;
  animation: scan 18s linear infinite;
}

.k {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.k::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(216,255,70,.45);
  animation: ping 2.6s infinite;
  flex: 0 0 auto;
}

.hero h1::after,
.page-hero h1::after,
.h::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  margin-top: 16px;
  background: var(--lime);
  opacity: .62;
}
.hero h1::after,
.page-hero h1::after {
  animation: ruleDraw .85s var(--ease) .42s forwards;
}
.h.in::after,
[data-reveal].in.h::after {
  animation: ruleDraw .85s var(--ease) forwards;
}
@keyframes ruleDraw {
  from { width: 0; }
  to { width: min(7.2rem, 38%); }
}

.orb {
  animation: orbBreath 5.8s ease-in-out infinite;
}
.method .card:nth-child(2) .orb { animation-delay: 1.45s; }
.method .card:nth-child(3) .orb { animation-delay: 2.9s; }
.method .card:nth-child(4) .orb { animation-delay: 4.35s; }
@keyframes orbBreath {
  0%, 100% { transform: scale(1); box-shadow: 0 0 16px var(--glow); }
  50% { transform: scale(1.045); box-shadow: 0 0 28px rgba(216,255,70,.4); }
}

.offer-points li::before { animation: ping 3.4s ease-in-out infinite; }
.offer-points li:nth-child(2)::before { animation-delay: .9s; }
.offer-points li:nth-child(3)::before { animation-delay: 1.8s; }

.btn-ghost {
  position: relative;
  overflow: hidden;
}
.btn-ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(216,255,70,.16), transparent);
  transform: translateX(-130%);
  pointer-events: none;
}
.btn-ghost:hover::before {
  animation: ghostWipe .7s var(--ease);
}
@keyframes ghostWipe {
  from { transform: translateX(-130%); }
  to { transform: translateX(130%); }
}

.chip { position: relative; overflow: hidden; }
.chip.on {
  box-shadow: 0 0 0 1px rgba(216,255,70,.22);
}
.chip.on::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(216,255,70,.22), transparent);
  animation: chipSweep .55s var(--ease);
  pointer-events: none;
}
@keyframes chipSweep {
  from { transform: translateX(-110%); }
  to { transform: translateX(110%); }
}

.logo-tile.is-awake {
  border-color: var(--lime);
  box-shadow: 0 0 0 1px rgba(216,255,70,.3), 0 0 20px var(--glow);
}
.logo-tile img {
  transition: opacity .4s var(--ease), filter .4s var(--ease);
}
.logo-tile.is-awake img {
  filter: drop-shadow(0 0 8px rgba(216,255,70,.18));
}

.case {
  transition: opacity .32s var(--ease), transform .32s var(--ease);
}
.case.is-out {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.case.is-hidden { display: none; }

.ava {
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}
.person:hover .ava,
.person:focus-within .ava {
  transform: translateY(-2px);
  box-shadow: 0 0 0 2px rgba(216,255,70,.38), 0 0 16px var(--glow);
}

.stat strong {
  transition: color .35s var(--ease);
}
.stats .wrap .stat:hover strong { color: var(--lime); }

input, select, textarea {
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
input:focus, select:focus, textarea:focus {
  box-shadow: 0 0 0 3px rgba(216,255,70,.12);
}

.faq details {
  opacity: 0;
  transform: translateY(14px);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .45s var(--ease), background .25s var(--ease), opacity .45s var(--ease);
}
.faq details.in {
  opacity: 1;
  transform: none;
}

.panel a {
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}
.panel a:hover,
.panel a.is-active {
  color: var(--lime);
  padding-left: 8px;
}

html[data-theme="light"] .page-hero::before {
  background: radial-gradient(circle, rgba(216,255,70,.2), transparent 64%);
}
html[data-theme="light"] .nav-links a.is-active::before {
  background: rgba(0,0,0,.05);
}
html[data-theme="light"] .k::before,
html[data-theme="light"] .hero h1::after,
html[data-theme="light"] .page-hero h1::after,
html[data-theme="light"] .h::after,
html[data-theme="light"] .site-header::after {
  background: #161616;
}

.crux-assist {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: inherit;
}
.crux-chat-toggle { padding: 0; background: #111; }
.crux-chat-toggle img.crux-assist { width: 100%; height: 100%; border-radius: 18px; }
.crux-chat-panel header img.crux-assist {
  width: 36px; height: 36px; border-radius: 10px; object-fit: cover;
}
.crux-row.bot img.crux-assist {
  width: 22px; height: 22px; border-radius: 50%; object-fit: cover; flex: 0 0 auto;
}

.crux-headset {
  display: grid; place-items: center;
  width: 100%; height: 100%;
  color: #d8ff46;
  background: #111;
}
.crux-headset svg { width: 58%; height: 58%; display: block; }
.crux-chat-toggle .crux-headset { border-radius: 18px; }
.crux-chat-panel header .crux-headset {
  width: 36px; height: 36px; border-radius: 10px; flex: 0 0 auto;
}
.crux-chat-panel header .crux-headset svg { width: 60%; height: 60%; }
.crux-row.bot .crux-headset {
  width: 22px; height: 22px; border-radius: 50%; flex: 0 0 auto; background: #111;
}
.crux-row.bot .crux-headset svg { width: 62%; height: 62%; }

.dock { display: none !important; }
