:root{
  --bg:#090b0f;
  --panel:#11161d;
  --panel2:#161d27;
  --border:rgba(255,255,255,.1);
  --text:#f5f7fb;
  --muted:#a5adba;
  --muted2:#697386;
  --accent:#2dd4bf;
  --accent2:#60a5fa;
  --btc:#F7931A;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  min-height:100vh;
  background:
    linear-gradient(180deg,#07090d 0%,#0b1017 42%,#090b0f 100%);
  color:var(--text);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
a{color:inherit}
.nav{
  position:sticky;top:0;z-index:20;
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  padding:16px 40px;
  background:rgba(9,11,15,.84);
  border-bottom:1px solid var(--border);
  backdrop-filter:blur(16px) saturate(160%);
}
.brand{display:flex;align-items:center;gap:8px;font-weight:800;text-decoration:none}
.brand-wordmark{display:block;width:174px;height:auto;filter:drop-shadow(0 10px 24px rgba(0,0,0,.24))}
.brand-logo{
  display:inline-flex;align-items:baseline;gap:5px;
  color:#f8fafc;font-family:"Space Grotesk",Inter,sans-serif;
  font-size:20px;font-weight:800;line-height:1;letter-spacing:0;
}
.brand-logo .dash{color:var(--accent)}
.brand-logo .hosting{color:#dbeafe}
.brand-o{
  display:inline-block;color:#4ade80;
  animation:statusO 3.6s steps(1,end) infinite;
  text-shadow:0 0 16px rgba(74,222,128,.65)
}
.brand-dot{width:8px;height:8px;border-radius:50%;background:var(--accent);box-shadow:0 0 18px rgba(45,212,191,.7)}
@keyframes statusO{
  0%,32%{color:#4ade80;text-shadow:0 0 16px rgba(74,222,128,.65)}
  33%,65%{color:#facc15;text-shadow:0 0 16px rgba(250,204,21,.58)}
  66%,100%{color:#fb7185;text-shadow:0 0 16px rgba(251,113,133,.55)}
}
.nav-links{display:flex;align-items:center;justify-content:flex-end;gap:8px;color:var(--muted);font-size:13px;font-weight:800;flex-wrap:wrap}
.nav-links a{
  min-height:34px;display:inline-flex;align-items:center;justify-content:center;
  padding:0 12px;border:1px solid rgba(255,255,255,.08);border-radius:8px;
  background:rgba(255,255,255,.035);text-decoration:none;white-space:nowrap
}
.nav-links a:hover{color:var(--text);border-color:rgba(45,212,191,.28);background:rgba(45,212,191,.08)}
.nav-links .nav-cta{color:#061018;background:linear-gradient(135deg,var(--accent),var(--accent2));border-color:transparent}
.page{
  width:min(1180px,calc(100% - 40px));
  margin:0 auto;
}
.hero{
  position:relative;
  min-height:520px;
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:42px;
  align-items:center;
  padding:72px 0 54px;
}
.hero::before{
  content:"";
  position:absolute;inset:42px -36px 20px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:10px;
  background:
    linear-gradient(115deg,rgba(45,212,191,.13),transparent 32%),
    linear-gradient(245deg,rgba(247,147,26,.11),transparent 32%),
    repeating-linear-gradient(90deg,rgba(255,255,255,.035) 0 1px,transparent 1px 68px);
  z-index:-1;
}
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 12px;border:1px solid rgba(45,212,191,.25);border-radius:8px;
  color:var(--accent);font-family:"IBM Plex Mono",monospace;font-size:12px;font-weight:700;
  background:rgba(12,18,25,.5);
}
h1{
  margin-top:22px;
  font-family:"Space Grotesk",Inter,sans-serif;
  font-size:clamp(2.25rem,5.4vw,5rem);
  line-height:1.02;
  letter-spacing:0;
  overflow-wrap:anywhere;
}
.lead{margin-top:22px;color:var(--muted);font-size:18px;line-height:1.7;max-width:680px}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:30px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:46px;padding:0 18px;border-radius:8px;
  border:1px solid rgba(255,255,255,.13);
  text-decoration:none;font-weight:800;font-size:14px;
  background:rgba(255,255,255,.06);
}
.btn.primary{background:linear-gradient(135deg,var(--accent),#76e4f7);color:#061018;border-color:transparent}
.btn.orange{background:linear-gradient(135deg,var(--btc),#ffb347);color:#140b02;border-color:transparent}
.panel{
  background:linear-gradient(180deg,rgba(22,29,39,.96),rgba(13,18,26,.96));
  border:1px solid var(--border);
  border-radius:8px;
  box-shadow:0 22px 70px rgba(0,0,0,.32);
}
.visual{padding:24px;min-height:360px;display:flex;flex-direction:column;justify-content:space-between}
.security-visual{
  position:relative;
  min-height:210px;
  margin-bottom:22px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:8px;
  background:
    radial-gradient(circle at 18% 30%,rgba(45,212,191,.18),transparent 24%),
    radial-gradient(circle at 82% 70%,rgba(96,165,250,.16),transparent 28%),
    linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,.012));
  overflow:hidden;
}
.security-visual svg{position:absolute;inset:0;width:100%;height:100%}
.security-visual.image-mode{display:block;padding:0}
.security-visual.image-mode img{width:100%;height:100%;object-fit:cover;border-radius:8px}
.security-visual .line{stroke:rgba(45,212,191,.58);stroke-width:2;stroke-dasharray:8 8;animation:dash 9s linear infinite}
.security-visual .line.orange{stroke:rgba(247,147,26,.72)}
.security-visual .ring{fill:rgba(17,22,29,.9);stroke:rgba(255,255,255,.16);stroke-width:1.5}
.security-visual .node-label{fill:#f5f7fb;font:700 12px Inter,system-ui,sans-serif}
.security-visual .small-label{fill:#a5adba;font:600 10px "IBM Plex Mono",monospace}
.security-visual .pulse-node{filter:drop-shadow(0 0 12px rgba(45,212,191,.5))}
@keyframes dash{to{stroke-dashoffset:-160}}
.metric-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.metric{padding:16px;border:1px solid rgba(255,255,255,.09);border-radius:8px;background:rgba(255,255,255,.035)}
.metric b{display:block;font-family:"Space Grotesk",Inter,sans-serif;font-size:26px}
.metric span{display:block;margin-top:4px;color:var(--muted2);font-size:12px;text-transform:uppercase}
.route{
  margin-top:18px;padding:18px;border:1px solid rgba(45,212,191,.18);border-radius:8px;
  background:rgba(45,212,191,.05);
}
.route-line{display:grid;grid-template-columns:1fr 32px 1fr 32px 1fr;align-items:center;gap:8px;color:var(--muted);font-size:12px;text-align:center}
.node{padding:12px 8px;border:1px solid rgba(255,255,255,.12);border-radius:8px;background:rgba(255,255,255,.05);color:var(--text);font-weight:800}
.arrow{color:var(--accent);font-weight:900}
.section{padding:54px 0}
.section-head{display:flex;align-items:end;justify-content:space-between;gap:24px;margin-bottom:22px}
.section-head h2{font-family:"Space Grotesk",Inter,sans-serif;font-size:32px}
.section-head p{color:var(--muted);line-height:1.6;max-width:520px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.card{padding:24px}
.card .icon{width:42px;height:42px;display:flex;align-items:center;justify-content:center;border-radius:8px;background:rgba(45,212,191,.1);font-size:20px;margin-bottom:18px}
.card h3{font-size:18px;margin-bottom:10px}
.card p,.card li{color:var(--muted);font-size:14px;line-height:1.7}
.card ul{padding-left:18px}
.pricing{
  width:100%;border-collapse:collapse;overflow:hidden;border-radius:8px;
  border:1px solid var(--border);
}
.pricing th,.pricing td{padding:16px;border-bottom:1px solid rgba(255,255,255,.08);text-align:left;font-size:14px}
.pricing th{color:var(--muted);font-size:12px;text-transform:uppercase;background:rgba(255,255,255,.04)}
.pricing td:last-child{font-family:"IBM Plex Mono",monospace;font-weight:800;color:var(--text)}
.service-tabs{display:flex;gap:10px;flex-wrap:wrap}
.service-tabs a{
  padding:10px 14px;border-radius:8px;border:1px solid var(--border);
  text-decoration:none;color:var(--muted);font-weight:800;font-size:13px;background:rgba(255,255,255,.04)
}
.service-tabs a.active{color:#061018;background:linear-gradient(135deg,var(--accent),var(--accent2));border-color:transparent}
.footer{padding:54px 0 34px;border-top:1px solid var(--border);color:var(--muted2);font-size:12px}
.diagram-card{padding:24px}
.diagram-title{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:16px}
.diagram-title h3{font-size:18px}
.diagram-title span{color:var(--muted2);font:700 11px "IBM Plex Mono",monospace}
.flow-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.flow-step{position:relative;padding:18px;border:1px solid rgba(255,255,255,.09);border-radius:8px;background:rgba(255,255,255,.035)}
.flow-step b{display:block;margin-bottom:8px}
.flow-step p{color:var(--muted);font-size:13px;line-height:1.6}
.flow-step:not(:last-child)::after{content:"";position:absolute;right:-12px;top:50%;width:12px;height:1px;background:rgba(45,212,191,.5)}
@media(max-width:900px){
  .nav{padding:12px 16px;align-items:flex-start}.nav-links{gap:6px;font-size:11px;max-width:calc(100% - 132px)}
  .brand-wordmark{width:144px}
  .nav-links a{min-height:30px;padding:0 9px}
  h1{font-size:clamp(2rem,11vw,3.15rem);line-height:1.08}
  .hero{grid-template-columns:1fr;padding-top:50px}.hero::before{inset:24px -10px 0}
  .grid-3,.grid-2{grid-template-columns:1fr}
  .flow-grid{grid-template-columns:1fr}
  .flow-step:not(:last-child)::after{display:none}
  .section-head{display:block}.section-head p{margin-top:10px}
  .route-line{grid-template-columns:1fr;gap:10px}.arrow{transform:rotate(90deg)}
}
