/* ============================================================
   AM Safety — design tokens (from aura.build "NeuroSync" DESIGN.md)
   Font note: self-hosting the exact Inter/JetBrains Mono binaries
   wasn't reachable from this build environment tonight — using a
   near-equivalent system font stack instead (no external font CDN
   calls at all, so the GDPR concern about Google Fonts doesn't even
   apply). Swap in real self-hosted woff2 files later if you want a
   pixel-perfect match — the CSS variables below are the only place
   that would need to change.
   ============================================================ */

:root{
  --color-primary: #E8935F;
  --color-cool: #6FA8DC;
  --color-secondary: #FFFFFF;
  --color-accent: #7DD3FC;
  --color-bg: #08080A;
  --color-surface: #17181C;
  --color-surface-2: #1F2126;
  --text-primary: #F5F5F7;
  --text-secondary: #A1A1AA;
  --text-on-surface: #F5F5F7;
  --text-on-surface-dim: #9CA3AF;
  --color-border: rgba(255,255,255,.10);
  --color-border-surface: rgba(255,255,255,.12);

  --font-display: "Inter", -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;

  --sp-base: 8px;
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 48px;
  --sp-6: 64px;
  --sp-section: 80px;

  --radius-card: 8px;
  --radius-control: 8px;
  --radius-pill: 9999px;

  --shadow-card: 0 1px 0 rgba(255,255,255,.04) inset, 0 8px 24px -12px rgba(0,0,0,.5);
  --shadow-surface: 0 1px 0 rgba(255,255,255,.04) inset, 0 20px 50px -24px rgba(0,0,0,.7);
  --shadow-hover: 0 16px 40px -16px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.06);

  --ease: cubic-bezier(.16,.8,.24,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

.top-accent{
  position:fixed; top:0; left:0; right:0; z-index:60;
  height:3px;
  background: var(--color-border);
  overflow:hidden;
}
.top-accent-fill{
  height:100%; width:0%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
  background-size:200% 100%;
  animation: shimmer 7s linear infinite;
  transition: width .12s linear;
}
@keyframes shimmer{ 0%{ background-position:0% 0; } 100%{ background-position:200% 0; } }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

body{
  margin:0;
  background: var(--color-bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; }
button{ font-family:inherit; }

.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

.eyebrow{
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-primary);
  display:inline-flex;
  align-items:center;
  gap: 8px;
}
.eyebrow::before{
  content:"";
  width:6px; height:6px; border-radius:50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(232,147,95,.18);
}
.eyebrow.on-surface{ color: #F3B98C; }

h1,h2,h3{ font-family: var(--font-display); margin:0; letter-spacing:-0.01em; color: var(--text-primary); }
h1{ font-size: clamp(34px, 6vw, 64px); font-weight:500; line-height:1.04; }
h2{ font-size: clamp(26px, 4vw, 40px); font-weight:500; line-height:1.12; }
h3{ font-size: 19px; font-weight:600; line-height:1.3; }
p{ margin:0; color: var(--text-secondary); }

.section{ padding: var(--sp-section) 0; }
.section:nth-of-type(even){ background: #0D0E11; border-top:1px solid rgba(255,255,255,.05); border-bottom:1px solid rgba(255,255,255,.05); }
.section-head{ max-width: 640px; margin-bottom: var(--sp-5); }
.section-head p{ margin-top: var(--sp-2); font-size:18px; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  text-decoration:none;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.btn-primary{ background: var(--color-primary); color:#fff; position:relative; overflow:hidden; }
.btn-primary::before{
  content:""; position:absolute; top:0; left:-60%; width:40%; height:100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  transition: left .5s var(--ease);
}
.btn-primary:hover::before{ left:130%; }
.btn-primary:hover{ transform: translateY(-1px); box-shadow: var(--shadow-hover); }
.btn-ghost{ background: transparent; border-color: var(--color-border); color: var(--text-primary); }
.btn-ghost:hover{ border-color: var(--text-secondary); }
.btn-ghost.on-surface{ border-color: var(--color-border-surface); color: var(--text-on-surface); }
.btn-ghost.on-surface:hover{ border-color: #4B5563; }
.btn-sm{ padding: 9px 18px; font-size: 13px; }

/* ---------- Nav ---------- */
.nav{
  position: sticky; top:3px; z-index: 50;
  background: rgba(8,8,10,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 0 var(--color-border);
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
}
.nav.is-scrolled{
  box-shadow: 0 1px 0 var(--color-border), 0 12px 24px -18px rgba(0,0,0,.6);
  background: rgba(8,8,10,.9);
}
.nav .container{ display:flex; align-items:center; justify-content:space-between; height:72px; }
.brand{ display:flex; align-items:center; gap:10px; text-decoration:none; }
.brand-mark{
  width:34px; height:34px; border-radius: 8px; background: var(--color-surface-2);
  border: 1px solid var(--color-border-surface);
  color:#fff; display:flex; align-items:center; justify-content:center;
  font-family: var(--font-mono); font-weight:700; font-size:13px;
}
.brand-name{ font-weight:600; color: var(--text-primary); font-size:15px; line-height:1.1; }
.brand-sub{ font-family: var(--font-mono); font-size:10px; letter-spacing:.08em; color: var(--text-secondary); text-transform:uppercase; }
.nav-links{ display:flex; align-items:center; gap: var(--sp-4); list-style:none; margin:0; padding:0; }
.nav-links a{ position:relative; text-decoration:none; color: var(--text-secondary); font-size:14px; font-weight:500; transition:color .15s; }
.nav-links a:not(.btn)::after{
  content:""; position:absolute; left:0; right:100%; bottom:-4px; height:1.5px;
  background: var(--color-primary); transition: right .22s var(--ease);
}
.nav-links a:not(.btn):hover::after{ right:0; }
.nav-links a:hover{ color: var(--text-primary); }
.nav-cta{ display:flex; align-items:center; gap:var(--sp-3); }
.nav-toggle{ display:none; background:none; border:none; cursor:pointer; padding:8px; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:""; display:block; width:20px; height:2px; background: var(--text-primary); position:relative; transition:.2s;
}
.nav-toggle span::before{ position:absolute; top:-6px; }
.nav-toggle span::after{ position:absolute; top:6px; }

/* ---------- Hero ---------- */
.hero{ position:relative; padding: 56px 0 var(--sp-section); overflow:hidden; background:#000; }
.hero::before{
  content:"";
  position:absolute; inset:0; z-index:0; pointer-events:none;
  background: radial-gradient(ellipse 70% 60% at 50% -10%, rgba(232,147,95,.16), transparent 60%),
              radial-gradient(ellipse 50% 40% at 85% 20%, rgba(111,168,220,.12), transparent 60%);
}
.hero .container{ position:relative; z-index:2; }
.light-rays{ position:absolute; inset:0; z-index:1; overflow:hidden; pointer-events:none;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 55%, transparent 92%);
  mask-image: linear-gradient(to bottom, black 0%, black 55%, transparent 92%);
}
.light-rays svg{ position:absolute; top:-8%; left:50%; transform:translateX(-50%); width:150%; height:115%; }
.light-rays line{ stroke-linecap:round; mix-blend-mode:screen; }
.light-rays .ray-warm{ stroke:#E8935F; }
.light-rays .ray-cool{ stroke:#6FA8DC; }
.light-rays .ray-white{ stroke:#ffffff; }
.light-rays line{ animation: rayPulse 5s ease-in-out infinite; }
@keyframes rayPulse{
  0%, 100%{ opacity:.18; }
  50%{ opacity:.55; }
}
.hero-grid{ display:grid; grid-template-columns: 1.05fr .95fr; gap: var(--sp-6); align-items:center; }
.hero-copy h1{ margin: var(--sp-2) 0 var(--sp-3); }
.hero-copy > p{ font-size:18px; max-width:46ch; margin-bottom: var(--sp-4); }
.hero-ctas{ display:flex; gap: var(--sp-2); flex-wrap:wrap; }
.hero-meta{ display:flex; gap: var(--sp-4); margin-top: var(--sp-4); font-size:13px; color: var(--text-secondary); }
.hero-meta b{ color: var(--text-primary); }

/* glass bento panel — feature rows over the light-ray background */
.mock{
  position:relative;
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 16px;
  box-shadow: var(--shadow-surface);
  overflow: visible;
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .12s linear;
  transform-style: preserve-3d;
  will-change: transform;
}
.mock-bar{
  display:flex; align-items:center; gap:6px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mock-bar span{ width:9px; height:9px; border-radius:50%; background:rgba(255,255,255,.18); }
.mock-bar .url{
  margin-left:10px; font-family: var(--font-mono); font-size:11px; color: var(--text-on-surface-dim);
  background: rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); border-radius:6px; padding:4px 10px; flex:1;
  display:flex; align-items:center; justify-content:space-between;
}
.mock-live{ color:#4ADE80; display:inline-flex; align-items:center; gap:4px; white-space:nowrap; flex:none; }
.mock-body{ padding: 10px 18px 22px; position:relative; }
.feature-row{
  display:flex; align-items:flex-start; gap:14px;
  padding:14px 4px; border-bottom:1px solid rgba(255,255,255,.06);
  animation: dashIn .6s var(--ease) both;
  transition: background .2s var(--ease);
}
.feature-row:last-child{ border-bottom:none; }
.feature-row:hover{ background: rgba(255,255,255,.03); }
.feature-row:nth-child(1){ animation-delay:.1s; }
.feature-row:nth-child(2){ animation-delay:.26s; }
.feature-row:nth-child(3){ animation-delay:.42s; }
@keyframes dashIn{ from{ opacity:0; transform:translateY(8px); } to{ opacity:1; transform:none; } }
.feature-icon{
  flex:none; width:34px; height:34px; border-radius:9px;
  background: rgba(232,147,95,.14); border:1px solid rgba(232,147,95,.25);
  display:flex; align-items:center; justify-content:center;
  color: var(--color-primary);
}
.feature-icon svg{ width:16px; height:16px; }
.feature-text h4{ margin:0 0 3px; font-size:14.5px; font-weight:600; color:#fff; }
.feature-text p{ margin:0; font-size:12.5px; color: var(--text-on-surface-dim); line-height:1.5; }
.mock-cta{
  display:inline-flex; margin-top:14px; padding:10px 18px; border-radius:var(--radius-pill);
  background: var(--color-primary); font-family:var(--font-mono); font-size:11px; color:#0a0a0a; font-weight:700;
}

/* ---------- Reveal on scroll (with fallback so content is never stuck invisible) ---------- */
.reveal{ opacity:1; transform:none; }
.js-ready .reveal{ opacity:0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js-ready .reveal.is-visible{ opacity:1; transform:none; }
.stagger > *{ transition-delay: calc(var(--i, 0) * 70ms); }

/* ---------- Compare (problem vs solution) ---------- */
.compare{ display:grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
.compare-card{ border-radius: 14px; padding: var(--sp-4); transition: transform .22s var(--ease), box-shadow .22s var(--ease); }
.compare-card:hover{ transform: translateY(-3px); }
.compare-card.bad{ background: rgba(239,68,68,.05); border:1px solid rgba(239,68,68,.16); }
.compare-card.bad:hover{ box-shadow: var(--shadow-hover); }
.compare-card.good{ background: var(--color-surface); color: var(--text-on-surface); box-shadow: var(--shadow-surface); }
.compare-card.good:hover{ box-shadow: 0 1px 0 rgba(255,255,255,.05) inset, 0 28px 60px -24px rgba(0,0,0,.6); }
.compare-card h3{ margin-bottom: var(--sp-3); font-size:17px; }
.compare-card.good h3{ color:#fff; }
.compare-list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap: var(--sp-2); }
.compare-list li{ display:flex; gap:10px; font-size:14.5px; line-height:1.5; }
.compare-card.bad .compare-list li{ color: var(--text-secondary); }
.compare-card.good .compare-list li{ color: var(--text-on-surface-dim); }
.mark{ flex:none; width:18px; height:18px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:11px; margin-top:2px; }
.bad .mark{ background: rgba(239,68,68,.16); color:#F87171; }
.good .mark{ background: rgba(232,147,95,.18); color:#F3B98C; }

/* ---------- Steps ---------- */
.steps{ display:grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-3); }
.step-card{ background: var(--color-surface); border:1px solid var(--color-border-surface); border-radius:14px; padding: var(--sp-4); transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease); }
.step-card:hover{ border-color: rgba(255,255,255,.2); }
.step-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.step-num{ font-family: var(--font-mono); font-size:12px; color: var(--color-primary); font-weight:700; }
.step-card h3{ margin: var(--sp-2) 0 8px; }
.step-card p{ font-size:14.5px; }

/* ---------- About ---------- */
.about-grid{ display:grid; grid-template-columns: 1.2fr .8fr; gap: var(--sp-5); align-items:center; }
.about-card{ background: var(--color-surface); border-radius:14px; padding: var(--sp-4); box-shadow: var(--shadow-surface); }
.stat-row{ display:flex; justify-content:space-between; padding: 12px 0; border-bottom:1px solid var(--color-border-surface); }
.stat-row:last-child{ border-bottom:none; }
.stat-row .label{ font-family: var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.06em; color: var(--text-on-surface-dim); }
.stat-row .value{ font-weight:600; color:#fff; font-size:14px; }

/* ---------- Chat FAQ ---------- */
.chatcard{ background: var(--color-surface); border-radius:16px; overflow:hidden; box-shadow: var(--shadow-surface); }
.chat-head{ display:flex; align-items:center; gap:10px; padding:16px 20px; border-bottom:1px solid var(--color-border-surface); }
.chat-dot{ width:8px; height:8px; border-radius:50%; background:#22c55e; }
.chat-head span{ font-family:var(--font-mono); font-size:12px; color: var(--text-on-surface-dim); }
.chat-body{ display:grid; grid-template-columns: 240px 1fr; min-height:260px; }
.chat-qs{ border-right:1px solid var(--color-border-surface); padding: 14px; display:flex; flex-direction:column; gap:6px; }
.chat-qs button{
  text-align:left; background:transparent; border:1px solid transparent; color: var(--text-on-surface-dim);
  padding:10px 12px; border-radius:8px; font-size:13.5px; cursor:pointer; transition:.15s;
}
.chat-qs button:hover{ background:#20232a; color:#fff; }
.chat-qs button.active{ background: rgba(232,147,95,.16); color:#F3B98C; border-color: rgba(232,147,95,.3); }
.chat-answer{ padding: 20px 22px; }
.bubble{
  background:#22252c; border:1px solid var(--color-border-surface); border-radius:12px;
  padding:16px 18px; color: var(--text-on-surface); font-size:14.5px; line-height:1.6; max-width:44ch;
  opacity:1; transform:translateY(0); transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.bubble.is-changing{ opacity:0; transform:translateY(4px); }
.chat-answer .who{ font-family:var(--font-mono); font-size:11px; color: var(--text-on-surface-dim); margin-bottom:8px; text-transform:uppercase; letter-spacing:.06em; }
.chat-note{ margin-top: var(--sp-2); font-size:12.5px; color: var(--text-secondary); }

/* ---------- Pricing ---------- */
.pricing-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-3); align-items:stretch; }
.price-card{ background: var(--color-surface); border:1px solid var(--color-border-surface); border-radius:16px; padding: var(--sp-4); display:flex; flex-direction:column; transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease); }
.price-card:not(.featured):hover{ transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(255,255,255,.2); }
.price-card.featured{
  background: var(--color-surface); color:#fff;
  border: 1px solid var(--color-primary);
  box-shadow: 0 0 0 1px rgba(232,147,95,.35), 0 24px 48px -18px rgba(232,147,95,.35);
  transform: translateY(-6px);
  animation: featurePulse 3.4s ease-in-out infinite;
}
@keyframes featurePulse{
  0%, 100%{ box-shadow: 0 0 0 1px rgba(232,147,95,.35), 0 24px 48px -18px rgba(232,147,95,.35); }
  50%{ box-shadow: 0 0 0 1px rgba(232,147,95,.55), 0 26px 56px -16px rgba(232,147,95,.5); }
}
.price-card.featured:hover{ transform: translateY(-9px); }
.price-tag{ font-family:var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.08em; color: var(--color-primary); }
.price-card.featured .price-tag{ color:#F3B98C; }
.price-amount{ font-family: var(--font-display); font-size:36px; font-weight:600; margin: 10px 0 4px; }
.price-card p.desc{ font-size:14px; margin-bottom: var(--sp-3); }
.price-card.featured p.desc{ color: var(--text-on-surface-dim); }
.price-list{ list-style:none; margin:0 0 var(--sp-4); padding:0; display:flex; flex-direction:column; gap:9px; flex:1; }
.price-list li{ display:flex; gap:8px; font-size:13.5px; color: var(--text-secondary); }
.price-card.featured .price-list li{ color: var(--text-on-surface-dim); }
.price-list li::before{ content:"✓"; color: var(--color-primary); font-weight:700; }
.price-card.featured .price-list li::before{ color: var(--color-primary); }

/* ---------- ROI calculator ---------- */
.roi-panel{ background: var(--color-surface); border-radius:18px; padding: var(--sp-5); box-shadow: var(--shadow-surface); }
.roi-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); align-items:center; }
.roi-field{ margin-bottom: var(--sp-4); }
.roi-field label{ display:flex; justify-content:space-between; font-size:13.5px; color: var(--text-on-surface-dim); margin-bottom:10px; }
.roi-field output{ font-family:var(--font-mono); color:#fff; font-weight:600; }
input[type=range]{
  width:100%; -webkit-appearance:none; height:4px; border-radius:4px;
  background: linear-gradient(var(--color-primary), var(--color-primary)) 0/var(--fill,50%) 100% no-repeat, #33373f;
}
input[type=range]::-webkit-slider-thumb{
  -webkit-appearance:none; width:18px; height:18px; border-radius:50%; background:#fff;
  box-shadow:0 0 0 4px rgba(232,147,95,.35); cursor:pointer;
}
.roi-result{ text-align:center; }
.roi-result .label-md{ font-family:var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.08em; color: var(--text-on-surface-dim); }
.roi-value{ font-family: var(--font-display); font-size:48px; font-weight:600; color:#fff; margin: 10px 0 4px; }
.roi-sub{ color: var(--text-on-surface-dim); font-size:13px; margin-bottom: var(--sp-3); }
.roi-note{ font-size:12px; color: var(--text-on-surface-dim); border-top:1px solid var(--color-border-surface); padding-top: var(--sp-3); }

/* ---------- Demos ---------- */
.demo-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-3); }
.demo-card{
  border:1px solid var(--color-border-surface); border-radius:14px; padding: var(--sp-3);
  text-decoration:none; color:inherit; display:block; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  background: var(--color-surface);
}
.demo-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: rgba(255,255,255,.2); }
.demo-thumb{ height:120px; border-radius:8px; margin-bottom: var(--sp-2); background: var(--color-surface); position:relative; overflow:hidden; }
.demo-thumb::after{ content:""; position:absolute; inset:0; background: radial-gradient(120px 80px at 30% 20%, rgba(232,147,95,.35), transparent 70%); }
.thumb-klima{ background:#0B1E2B; }
.thumb-klima::after{ background: radial-gradient(120px 80px at 30% 20%, rgba(56,189,248,.4), transparent 70%); }
.thumb-auto{ background:#12151C; }
.thumb-auto::after{ background: radial-gradient(120px 80px at 30% 20%, rgba(245,158,11,.38), transparent 70%); }
.thumb-holic{ background:#1C1815; }
.thumb-holic::after{ background: radial-gradient(120px 80px at 30% 20%, rgba(212,175,140,.4), transparent 70%); }
.demo-card .eyebrow{ margin-bottom:6px; }
.demo-card h3{ margin-bottom:4px; }
.demo-link{ font-family:var(--font-mono); font-size:12px; color: var(--color-primary); margin-top:8px; display:inline-block; }

/* ---------- FAQ accordion ---------- */
.accordion-item{ border-bottom:1px solid var(--color-border); }
.accordion-trigger{
  width:100%; text-align:left; background:none; border:none; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center; padding: 20px 0; font-weight:600; font-size:16px; color: var(--text-primary);
}
.accordion-trigger::after{ content:"+"; font-size:20px; color: var(--text-secondary); transition: transform .25s var(--ease); font-weight:400; }
.accordion-trigger[aria-expanded="true"]::after{ transform: rotate(45deg); }
.accordion-panel{ display:grid; grid-template-rows: minmax(0,0fr); transition: grid-template-rows .25s var(--ease); overflow:hidden; }
.accordion-panel > *{ overflow:hidden; }
.accordion-item.is-open .accordion-panel{ grid-template-rows: minmax(0,1fr); }
.accordion-panel p{ padding-bottom: 20px; max-width: 60ch; }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns: 1fr .8fr; gap: var(--sp-5); }
.field{ margin-bottom: var(--sp-3); }
.field label{ display:block; font-size:13px; font-weight:600; margin-bottom:6px; color: var(--text-primary); }
.field input, .field textarea{
  width:100%; padding:12px 14px; border-radius: var(--radius-control); border:1px solid var(--color-border-surface);
  font-family: var(--font-body); font-size:14.5px; background: var(--color-surface); color: var(--text-primary);
}
.field input::placeholder, .field textarea::placeholder{ color: var(--text-on-surface-dim); }
.field input:focus, .field textarea:focus{ outline:2px solid var(--color-primary); outline-offset:1px; border-color: var(--color-primary); }
.contact-info{ background: var(--color-surface); border-radius:16px; padding: var(--sp-4); box-shadow: var(--shadow-surface); }
.contact-info .row{ margin-bottom: var(--sp-3); }
.contact-info .row:last-child{ margin-bottom:0; }
.contact-info .label{ font-family:var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.06em; color: var(--text-on-surface-dim); display:block; margin-bottom:4px; }
.contact-info .val{ color:#fff; font-weight:600; font-size:15px; }

/* ---------- Footer ---------- */
footer{ border-top:1px solid var(--color-border); padding: var(--sp-4) 0; }
footer .container{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; font-size:13px; color: var(--text-secondary); }

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .hero-grid, .compare, .steps, .about-grid, .pricing-grid, .demo-grid, .roi-grid, .contact-grid{ grid-template-columns: 1fr; }
  .chat-body{ grid-template-columns: 1fr; }
  .chat-qs{ border-right:none; border-bottom:1px solid var(--color-border-surface); flex-direction:row; flex-wrap:wrap; }
  .price-card.featured{ transform:none; }
  .nav-links, .nav-cta .btn-ghost{ display:none; }
  .nav-toggle{ display:block; }
}
@media (max-width: 560px){
  .hero{ padding-top: 32px; }
  h1{ font-size: 32px; }
  .section{ padding: 56px 0; }
  .dash-row{ grid-template-columns: 1fr 1fr; }
  .dash-tile-wide{ grid-column: 1 / -1; }
}
