@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@500;600;700&display=swap');

:root {
  --bg: #080a0f;
  --bg-soft: #0d1017;
  --panel: #11151d;
  --panel-2: #141924;
  --text: #f3f5f7;
  --muted: #9ca5b4;
  --line: rgba(255,255,255,.09);
  --accent: #8cffb7;
  --accent-strong: #b5ffd0;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 65% -10%, rgba(89, 255, 153, .08), transparent 35%);
  z-index: -1;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.noise {
  position: fixed; inset: 0; opacity: .025; pointer-events: none; z-index: 20;
  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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.site-header {
  width: min(calc(100% - 48px), var(--max));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}
.brand { display:flex; align-items:center; gap:11px; font: 600 19px "Manrope", sans-serif; letter-spacing: -.03em; }
.brand-mark {
  width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.25); border-radius: 9px;
  display:grid; place-items:center; color:var(--accent); font-size:14px;
  background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.02));
  position:relative; isolation:isolate; overflow:hidden;
}
.brand-mark::before {
  content:""; position:absolute; width:42px; height:42px; border-radius:50%;
  background:radial-gradient(circle, rgba(140,255,183,.26), rgba(140,255,183,.07) 42%, transparent 72%);
  filter:blur(2px); transform:translate(-8px, 9px); z-index:-2;
}
.brand-mark::after {
  content:""; position:absolute; width:34px; height:34px;
  border:1px solid rgba(140,255,183,.14); border-radius:50%;
  transform:translate(11px, -10px); z-index:-1;
}
.nav-links { display:flex; align-items:center; gap:34px; font-size:14px; color:#c0c6cf; }
.nav-links a:hover { color:#fff; }
.nav-cta { border:1px solid var(--line); padding:10px 16px; border-radius:999px; background:rgba(255,255,255,.04); }
.menu-button { display:none; background:none; border:0; padding:8px; }
.menu-button span:not(.sr-only) { display:block; width:24px; height:1px; background:#fff; margin:6px 0; }

.section { width:min(calc(100% - 48px), var(--max)); margin:0 auto; padding:120px 0; }
.hero { min-height: 760px; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; position:relative; padding-top:90px; }
.hero-glow {
  width:560px; height:360px; position:absolute; top:130px; left:50%; transform:translateX(-50%);
  background:radial-gradient(ellipse, rgba(115,255,168,.14), transparent 70%); filter:blur(20px); pointer-events:none;
}
.eyebrow, .kicker { text-transform:uppercase; font-size:12px; letter-spacing:.16em; font-weight:600; color:#aeb6c3; }
.eyebrow { display:flex; align-items:center; gap:10px; margin-bottom:26px; }
.eyebrow span { width:7px; height:7px; border-radius:50%; background:var(--accent); box-shadow:0 0 20px var(--accent); }
h1,h2,h3 { font-family:"Manrope",sans-serif; margin:0; letter-spacing:-.045em; }
h1 { max-width:900px; font-size:clamp(62px, 8.4vw, 112px); line-height:.94; font-weight:600; }
h1 span { color:var(--accent); }
.hero-copy { max-width:650px; margin:30px auto 0; color:var(--muted); font-size:19px; line-height:1.65; }
.hero-actions { display:flex; gap:12px; margin-top:38px; }
.button { display:inline-flex; align-items:center; justify-content:center; gap:12px; min-height:52px; padding:0 22px; border-radius:11px; border:1px solid transparent; font-weight:600; cursor:pointer; transition:.2s ease; }
.button:hover { transform:translateY(-2px); }
.primary { color:#07120b; background:var(--accent); box-shadow:0 10px 36px rgba(88,255,149,.13); }
.primary:hover { background:var(--accent-strong); }
.secondary { border-color:var(--line); color:#d4d9e0; background:rgba(255,255,255,.025); }
.hero-proof { display:grid; grid-template-columns:repeat(3,1fr); margin-top:90px; width:min(700px,100%); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.hero-proof div { padding:22px 18px; display:flex; flex-direction:column; gap:5px; }
.hero-proof div+div { border-left:1px solid var(--line); }
.hero-proof strong { font:600 17px "Manrope"; }
.hero-proof span { color:var(--muted); font-size:13px; }

.ticker-wrap { overflow:hidden; border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:#0b0e14; }
.ticker { width:max-content; display:flex; align-items:center; gap:32px; padding:19px 0; animation:ticker 26s linear infinite; color:#828b99; text-transform:uppercase; font-size:12px; letter-spacing:.13em; }
.ticker i { width:4px; height:4px; border-radius:50%; background:var(--accent); }
@keyframes ticker { to { transform:translateX(-50%); } }

.section-heading { display:grid; grid-template-columns:1.1fr .7fr; gap:70px; align-items:end; margin-bottom:60px; }
.kicker { color:var(--accent); margin:0 0 16px; }
.section-heading h2, .industries-copy h2, .contact-panel h2 { font-size:clamp(42px,6vw,72px); line-height:1.04; font-weight:600; }
.section-heading>p, .industries-copy>p, .contact-panel>div>p { color:var(--muted); font-size:17px; line-height:1.7; margin:0; }

.services-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.service-card { min-height:330px; border:1px solid var(--line); border-radius:18px; padding:30px; background:linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.015)); position:relative; overflow:hidden; }
.service-card.featured { background:radial-gradient(circle at 85% 90%, rgba(99,255,158,.11), transparent 38%), var(--panel); }
.service-icon { color:#7e8794; font-size:12px; letter-spacing:.12em; margin-bottom:64px; }
.service-card h3 { font-size:28px; font-weight:600; }
.service-card p { max-width:500px; color:var(--muted); line-height:1.65; margin:13px 0 0; }
.voice-visual { position:absolute; right:32px; bottom:34px; display:flex; align-items:center; gap:5px; height:62px; }
.voice-visual span { display:block; width:4px; border-radius:5px; background:var(--accent); animation:pulse 1.25s ease-in-out infinite; }
.voice-visual span:nth-child(1),.voice-visual span:nth-child(7){height:16px}.voice-visual span:nth-child(2),.voice-visual span:nth-child(6){height:28px}.voice-visual span:nth-child(3),.voice-visual span:nth-child(5){height:42px}.voice-visual span:nth-child(4){height:58px}
@keyframes pulse { 50%{transform:scaleY(.35); opacity:.55} }
.mini-status { position:absolute; bottom:30px; left:30px; border:1px solid var(--line); border-radius:10px; padding:11px 14px; color:#c9d0d8; font-size:13px; background:rgba(0,0,0,.18); }
.mini-status span { display:inline-block; width:7px; height:7px; border-radius:50%; background:var(--accent); margin-right:8px; }
.mini-tags { position:absolute; left:30px; bottom:30px; display:flex; gap:8px; }
.mini-tags span { padding:8px 11px; border-radius:999px; border:1px solid var(--line); color:#c5cbd3; font-size:12px; }
.workflow-line { position:absolute; left:30px; right:30px; bottom:45px; display:flex; align-items:center; justify-content:space-between; }
.workflow-line::before { content:""; position:absolute; left:3%; right:3%; height:1px; background:linear-gradient(90deg,var(--accent),rgba(255,255,255,.1)); }
.workflow-line b { width:13px; height:13px; border-radius:50%; border:2px solid var(--panel); background:var(--accent); position:relative; box-shadow:0 0 0 1px var(--line); }

.how-section { border-top:1px solid var(--line); }
.steps-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.step-card {
  min-height:300px; padding:30px; border:1px solid var(--line); border-radius:18px;
  background:linear-gradient(145deg, rgba(255,255,255,.03), rgba(255,255,255,.012));
}
.step-card span { color:var(--accent); font-size:12px; letter-spacing:.12em; }
.step-card h3 { margin-top:78px; font-size:26px; font-weight:600; }
.step-card p { color:var(--muted); line-height:1.65; margin:14px 0 0; }

.outcomes-section { border-top:1px solid var(--line); }
.outcomes-grid { display:grid; grid-template-columns:repeat(2,1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); }
.outcomes-grid article { min-height:260px; padding:32px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); }
.outcome-number { font-size:12px; color:var(--accent); letter-spacing:.12em; }
.outcomes-grid h3 { font-size:26px; margin-top:70px; }
.outcomes-grid p { color:var(--muted); line-height:1.65; max-width:430px; }

.industries-section { display:grid; grid-template-columns:.8fr 1.2fr; gap:100px; align-items:start; border-top:1px solid var(--line); }
.industries-copy { position:sticky; top:50px; }
.industries-copy>p:last-child { margin-top:24px; }
.industry-list { border-top:1px solid var(--line); }
.industry-list div { display:flex; align-items:center; gap:30px; padding:27px 0; border-bottom:1px solid var(--line); font:500 clamp(24px,3.5vw,44px) "Manrope"; letter-spacing:-.035em; transition:.2s; }
.industry-list div:hover { padding-left:12px; color:var(--accent); }
.industry-list span { font:500 11px "DM Sans"; color:#68717f; letter-spacing:.12em; }

.contact-section { padding-top:80px; }
.contact-panel { border:1px solid var(--line); border-radius:24px; padding:60px; background:radial-gradient(circle at 5% 10%,rgba(105,255,162,.09),transparent 38%),var(--panel); display:grid; grid-template-columns:.9fr 1.1fr; gap:80px; }
.contact-panel>div>p:last-child { margin-top:24px; }
.demo-form { display:flex; flex-direction:column; gap:18px; }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
label { display:flex; flex-direction:column; gap:8px; color:#c7cdd5; font-size:13px; }
input,select,textarea { width:100%; color:#fff; background:#0b0e14; border:1px solid var(--line); border-radius:10px; padding:14px 15px; outline:none; }
input:focus,select:focus,textarea:focus { border-color:rgba(140,255,183,.55); box-shadow:0 0 0 3px rgba(140,255,183,.07); }
textarea { resize:vertical; }
.consent { flex-direction:row; align-items:flex-start; color:#8f98a6; line-height:1.45; }
.consent input { width:auto; margin-top:3px; accent-color:var(--accent); }
.submit-button { width:100%; border:0; }
.form-status { min-height:20px; margin:0; font-size:13px; color:var(--accent); }

.site-footer { width:min(calc(100% - 48px),var(--max)); margin:0 auto; padding:40px 0 28px; border-top:1px solid var(--line); display:grid; grid-template-columns:1fr 1fr; gap:40px; }
.site-footer>div:first-child p { color:var(--muted); max-width:330px; line-height:1.6; }
.footer-email { display:inline-block; margin-top:2px; color:#c7cdd5; font-size:14px; }
.footer-email:hover { color:var(--accent); }
.footer-links { display:flex; justify-content:flex-end; gap:100px; }
.footer-links div { display:flex; flex-direction:column; gap:12px; font-size:14px; color:var(--muted); }
.footer-links strong { color:#fff; margin-bottom:4px; }
.footer-links a:hover { color:var(--accent); }
.footer-bottom { grid-column:1/-1; display:flex; justify-content:space-between; padding-top:24px; border-top:1px solid var(--line); color:#68717f; font-size:12px; }

.legal-page main { width:min(calc(100% - 48px),820px); margin:0 auto; padding:90px 0 120px; }
.legal-page h1 { font-size:clamp(48px,7vw,72px); }
.legal-page .updated { color:var(--muted); margin:18px 0 55px; }
.legal-page h2 { font-size:26px; margin:42px 0 12px; }
.legal-page p,.legal-page li { color:#aab2be; line-height:1.75; }
.legal-page ul { padding-left:20px; }
.legal-back { color:var(--accent); display:inline-block; margin-top:48px; }

@media (max-width: 820px) {
  .site-header { width:min(calc(100% - 32px),var(--max)); }
  .menu-button { display:block; }
  .nav-links { position:absolute; top:68px; left:0; right:0; display:none; flex-direction:column; align-items:stretch; gap:0; padding:12px; background:#0d1017; border:1px solid var(--line); border-radius:12px; }
  .nav-links.open { display:flex; }
  .nav-links a { padding:14px; }
  .section { width:min(calc(100% - 32px),var(--max)); padding:90px 0; }
  .hero { min-height:690px; padding-top:60px; }
  .hero-actions { flex-direction:column; width:100%; max-width:340px; }
  .hero-proof { margin-top:60px; }
  .section-heading,.industries-section,.contact-panel { grid-template-columns:1fr; gap:40px; }
  .services-grid,.outcomes-grid,.steps-grid { grid-template-columns:1fr; }
  .industries-copy { position:static; }
  .contact-panel { padding:32px 22px; }
  .field-row { grid-template-columns:1fr; }
  .site-footer { grid-template-columns:1fr; width:min(calc(100% - 32px),var(--max)); }
  .footer-links { justify-content:flex-start; }
}
@media (max-width: 520px) {
  .eyebrow { font-size:10px; }
  .hero-proof { grid-template-columns:1fr; }
  .hero-proof div+div { border-left:0; border-top:1px solid var(--line); }
  .service-card { min-height:310px; padding:24px; }
  .outcomes-grid article { padding:25px; }
  .footer-links { gap:55px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  .ticker,.voice-visual span { animation:none; }
  .button,.industry-list div { transition:none; }
}
