:root{
  --bg:#F6F9FC;
  --card:#ffffff;
  --text:#0b1220;
  --muted:#445066;
  --border:rgba(15,23,42,.10);
  --shadow:0 18px 40px rgba(15,23,42,.10);
  --shadow-soft:0 10px 28px rgba(15,23,42,.08);
  --radius:18px;
  --radius-sm:14px;
  --max:1120px;
  --accent1:#5B6CFF;
  --accent2:#19D3FF;
  --link:#525CFF;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--bg);
  overflow-x:hidden;
}
a{color:var(--link); text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%; height:auto; display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 22px}
.section{padding:84px 0}
.section.tight{padding:64px 0}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.65);
  border-radius:999px;
  color:var(--muted);
  font-weight:600;
  font-size:14px;
  box-shadow:0 12px 30px rgba(15,23,42,.06);
}
.kicker .dot{width:6px;height:6px;border-radius:999px;background:rgba(82,92,255,.75)}
h1{
  margin:18px 0 14px;
  font-size:56px;
  line-height:1.02;
  letter-spacing:-0.03em;
}
h2{
  margin:0 0 10px;
  font-size:38px;
  line-height:1.08;
  letter-spacing:-0.02em;
}
h3{
  margin:0 0 8px;
  font-size:18px;
  letter-spacing:-0.01em;
}
p{margin:0 0 14px; color:var(--muted); font-size:17px; line-height:1.6}
.small{font-size:14px; color:var(--muted)}
.muted{color:var(--muted)}
.bold{font-weight:800; color:var(--text)}
.accent{
  background:linear-gradient(90deg,var(--accent1),var(--accent2));
  -webkit-background-clip:text; background-clip:text;
  color:transparent;
  font-weight:900;
}
hr.sep{
  border:0; height:1px; background:var(--border); margin:24px 0;
}

/* Header */
.header{
  position:sticky; top:0; z-index:1000;
  backdrop-filter:saturate(180%) blur(12px);
  -webkit-backdrop-filter:saturate(180%) blur(12px);
  background:rgba(246,249,252,.86);
  border-bottom:1px solid rgba(15,23,42,.08);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  height:72px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  min-width:0;
}
.brand img{
  width:34px; height:34px;
  border-radius:10px;
  background:transparent;
}
.brand .name{
  font-weight:800;
  letter-spacing:-0.01em;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:42vw;
}
.nav{
  display:flex; align-items:center; gap:20px;
}
.nav a{
  color:var(--muted);
  font-weight:650;
  font-size:14px;
  padding:10px 10px;
  border-radius:10px;
}
.nav a:hover{background:rgba(15,23,42,.04); text-decoration:none}
.header-right{display:flex; align-items:center; gap:12px; min-width:0}

/* Language switch */
.lang{
  display:inline-flex;
  border:1px solid var(--border);
  background:rgba(255,255,255,.78);
  border-radius:999px;
  padding:3px;
  gap:3px;
  box-shadow:0 10px 24px rgba(15,23,42,.06);
}
.lang button{
  border:0;
  background:transparent;
  padding:8px 10px;
  border-radius:999px;
  font-weight:800;
  font-size:13px;
  color:var(--muted);
  cursor:pointer;
  display:inline-flex; align-items:center; gap:8px;
  line-height:1;
}
.lang button .flag{font-size:16px}
.lang button.active{
  background:#fff;
  color:var(--text);
  box-shadow:0 10px 20px rgba(15,23,42,.08);
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  font-weight:800;
  font-size:14px;
  cursor:pointer;
  text-decoration:none !important;
}
.btn.primary{
  border:0;
  background:linear-gradient(90deg,var(--accent1),var(--accent2));
  color:white;
  box-shadow:0 18px 32px rgba(91,108,255,.18);
}
.btn.primary:hover{filter:saturate(1.1); transform:translateY(-1px)}
.btn.secondary:hover{background:rgba(15,23,42,.04)}
.btn:active{transform:translateY(0)}
.btn .icon{
  width:16px; height:16px;
  display:inline-block;
}

/* Mobile menu */
.burger{
  display:none;
  width:42px; height:42px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.78);
  box-shadow:0 10px 24px rgba(15,23,42,.06);
  cursor:pointer;
}
.burger svg{width:20px; height:20px; margin:auto}
.mobile-panel{
  display:none;
  border-top:1px solid rgba(15,23,42,.08);
  background:rgba(246,249,252,.96);
  backdrop-filter:saturate(180%) blur(12px);
  -webkit-backdrop-filter:saturate(180%) blur(12px);
}
.mobile-panel .container{
  padding-top:10px; padding-bottom:14px;
}
.mobile-links{
  display:flex; flex-direction:column; gap:8px;
}
.mobile-links a{
  padding:12px 12px;
  border-radius:12px;
  font-weight:750;
  color:var(--muted);
  border:1px solid rgba(15,23,42,.06);
  background:rgba(255,255,255,.70);
}
.mobile-links a:hover{text-decoration:none; background:#fff}

/* Hero */
.hero{
  padding:64px 0 34px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap:28px;
  align-items:start;
}
.hero p.lead{
  font-size:18px;
  max-width:54ch;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 16px}
.bullets{
  margin:16px 0 0;
  padding-left:18px;
  color:var(--muted);
}
.bullets li{margin:10px 0; font-weight:650}
.bullets li::marker{color:rgba(82,92,255,.75)}

/* Floating Console */
.console{
  position:relative;
  background:rgba(255,255,255,.86);
  border:1px solid rgba(15,23,42,.10);
  border-radius:24px;
  box-shadow: var(--shadow);
  overflow:hidden;
  min-width:0;
}
.console::before{
  content:"";
  position:absolute; inset:-60px -40px auto -40px;
  height:160px;
  background:radial-gradient(closest-side, rgba(91,108,255,.18), rgba(25,211,255,.10), transparent 70%);
  filter:blur(10px);
}
.console-header{
  position:relative;
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 18px 12px;
}
.console-title{
  font-weight:900; letter-spacing:-0.02em; font-size:13px;
  color:rgba(15,23,42,.65);
}
.pill{
  position:relative;
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.8);
  font-weight:900;
  font-size:12px;
  color:var(--accent1);
}
.pill .spark{width:7px;height:7px;border-radius:999px;background:linear-gradient(90deg,var(--accent1),var(--accent2))}
.console-body{position:relative; padding:0 16px 16px}
.console-card{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(15,23,42,.10);
  border-radius:16px;
  padding:14px 14px;
  box-shadow:0 12px 22px rgba(15,23,42,.06);
  margin:12px 0;
}
.console-card h4{margin:0 0 6px; font-size:14px; letter-spacing:-0.01em}
.console-card p{margin:0; font-size:13.5px; line-height:1.55}
.codebox{
  background:linear-gradient(180deg, rgba(15,23,42,.03), rgba(91,108,255,.06));
  border:1px solid rgba(15,23,42,.10);
  border-radius:16px;
  padding:12px 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace;
  font-size:12.5px;
  color:rgba(15,23,42,.75);
  overflow:auto;
  white-space:pre;
  max-height:170px;
}

/* Stripe-style feature columns */
.feature-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:0;
  border-top:1px solid rgba(15,23,42,.08);
  margin-top:22px;
}
.feature{
  padding:26px 18px 18px;
  position:relative;
  min-width:0;
}
.feature:not(:first-child){
  border-left:1px dashed rgba(15,23,42,.10);
}
.feature .icon-badge{
  width:42px; height:42px;
  border-radius:14px;
  display:grid; place-items:center;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.78);
  box-shadow:0 12px 22px rgba(15,23,42,.06);
  margin-bottom:12px;
}
.feature .icon-badge svg{width:18px; height:18px; color:rgba(82,92,255,.95)}
.feature .title{font-weight:900; margin:0 0 6px}
.feature .desc{margin:0; font-size:14.5px}

/* Steps */
.steps{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:18px;
  margin-top:20px;
}
.step{
  background:rgba(255,255,255,.74);
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  padding:18px 18px;
  box-shadow:0 14px 26px rgba(15,23,42,.06);
}
.step-top{display:flex; align-items:center; gap:12px; margin-bottom:10px}
.step-num{
  width:34px; height:34px; border-radius:12px;
  display:grid; place-items:center;
  font-weight:900;
  color:rgba(82,92,255,.95);
  background:rgba(82,92,255,.08);
  border:1px solid rgba(82,92,255,.18);
}
.step h3{margin:0}
.step p{margin:0; font-size:14.5px}

/* Trust section columns */
.trust-grid{margin-top:18px}

/* Contact */
.contact-wrap{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(15,23,42,.10);
  border-radius:28px;
  box-shadow: var(--shadow-soft);
  padding:24px;
}
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}
.form{
  display:grid; gap:12px;
}
.field{
  display:grid; gap:6px;
}
label{
  font-size:12px;
  letter-spacing:.06em;
  font-weight:900;
  color:rgba(15,23,42,.65);
  text-transform:uppercase;
}
input, textarea{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.12);
  background:#fff;
  font:inherit;
  color:var(--text);
  outline:none;
  min-width:0;
}
textarea{min-height:110px; resize:vertical}
input:focus, textarea:focus{
  border-color:rgba(82,92,255,.45);
  box-shadow:0 0 0 4px rgba(82,92,255,.12);
}
.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.form-actions{display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin-top:8px}
.notice{
  font-size:13.5px;
  color:var(--muted);
}
.alert{
  display:none;
  margin-top:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.12);
  background:rgba(255,255,255,.9);
  font-weight:650;
}
.alert.ok{border-color:rgba(16,185,129,.35); background:rgba(16,185,129,.08); color:rgba(4,120,87,1)}
.alert.bad{border-color:rgba(239,68,68,.35); background:rgba(239,68,68,.08); color:rgba(127,29,29,1)}
.honeypot{position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden}

/* Footer */
.footer{
  padding:26px 0 40px;
  border-top:1px solid rgba(15,23,42,.08);
  background:rgba(246,249,252,.9);
}
.footer-grid{
  display:flex; align-items:flex-start; justify-content:space-between;
  gap:18px; flex-wrap:wrap;
}
.footer-brand{display:flex; align-items:flex-start; gap:12px; min-width:0}
.footer-brand img{width:34px;height:34px;border-radius:10px;background:transparent}
.footer-links{display:flex; gap:18px; flex-wrap:wrap}
.footer-links a{font-weight:800; font-size:13px; color:var(--link)}
.copyright{margin-top:10px; font-size:13px; color:var(--muted)}

/* Policy pages */
.policy{
  padding:44px 0 84px;
}
.policy .paper{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:22px;
  box-shadow:0 18px 40px rgba(15,23,42,.08);
  padding:26px;
}
.policy h1{font-size:42px}
.policy h2{font-size:22px; margin-top:22px}
.policy ul{padding-left:18px}
.policy li{margin:8px 0; color:var(--muted); line-height:1.6}
.policy p{font-size:15.5px}

/* Responsive */
@media (max-width: 980px){
  h1{font-size:48px}
  .hero-grid{grid-template-columns:1fr; gap:18px}
  .feature-grid{grid-template-columns:1fr; gap:0}
  .feature{padding:20px 10px}
  .feature:not(:first-child){border-left:0; border-top:1px dashed rgba(15,23,42,.10)}
  .steps{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
}
@media (max-width: 740px){
  .nav{display:none}
  .burger{display:grid; place-items:center}
  .header-inner{height:70px}
  .brand .name{max-width:52vw; font-size:14px}
  h1{font-size:38px}
  h2{font-size:30px}
  p{font-size:16px}
  .form-row{grid-template-columns:1fr}
  .section{padding:68px 0}
  .hero{padding:44px 0 22px}
}
