:root{
  --bg: #0b0f14;
  --bg2:#0f141c;
  --surface: rgba(255,255,255,0.03);
  --surface2: rgba(255,255,255,0.045);
  --border: rgba(255,255,255,0.08);
  --border2: rgba(255,255,255,0.12);
  --text: #e6e9ed;
  --muted: #a7adb5;
  --muted2: rgba(231,235,240,0.7);
  --shadow: 0 20px 60px rgba(0,0,0,0.55);
  --radius: 18px;
  --max: 1120px;
  --accent: rgba(185,210,255,0.9);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(255,255,255,0.08), transparent 65%),
    radial-gradient(900px 500px at 15% 20%, rgba(140,180,255,0.08), transparent 60%),
    radial-gradient(900px 500px at 85% 25%, rgba(140,180,255,0.06), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x:hidden;
}

.grain{
  position:fixed; inset:0;
  pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode:soft-light;
  opacity:.35;
}

a{color:inherit; text-decoration:none}
.wrap{max-width:var(--max); margin:0 auto; padding:0 20px;}

header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(11,15,20,0.85), rgba(11,15,20,0.55));
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  letter-spacing: .02em;
  justify-content: flex-start;
}
.mark{
  width:34px; height:34px; border-radius:12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display:grid; place-items:center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.mark svg{width:20px; height:20px; opacity:.95}
.brandname{
  font-weight:650;
  font-size:16px;
}
nav ul{
  display:flex; list-style:none; padding:0; margin:0;
  gap:18px; align-items:center;
  color: var(--muted2);
  font-size:14px;
}
nav a{padding:8px 10px; border-radius:12px}
nav a:hover{background:rgba(255,255,255,0.05); color:var(--text)}
.cta{
  display:flex; align-items:center; gap:10px;
  min-width: 220px; justify-content:flex-end;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  cursor: pointer;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16);
}
.btn.secondary{
  background: transparent;
  box-shadow:none;
  color: var(--muted2);
  border: 1px solid rgba(255,255,255,0.08);
}
.btn.secondary:hover{color:var(--text); background: rgba(255,255,255,0.04)}

.hero{
  padding: 15px 0 32px;
  position:relative;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}
.kicker{
  color: var(--muted2);
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
h1{
  margin:0;
  font-size: clamp(30px, 3.75vw, 48px);
  line-height:1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  border: none;
  outline: none;
}
.sub{
  margin: 14px auto 16px;
  color: var(--muted2);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height:1.6;
  max-width: 56ch;
}

.glowline{
  height: 2px;
  width: min(680px, 90%);
  margin: 16px auto 18px;
  position:relative;
  border-radius:999px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(185,210,255,0.18) 18%,
    rgba(255,255,255,0.75) 50%,
    rgba(185,210,255,0.18) 82%,
    transparent 100%);
  filter: blur(0.2px);
  box-shadow:
    0 0 14px rgba(185,210,255,0.14),
    0 0 50px rgba(255,255,255,0.05);
  opacity: .95;
}
.glowline::after{
  content:"";
  position:absolute; inset:-10px 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(185,210,255,0.12) 25%,
    rgba(255,255,255,0.18) 50%,
    rgba(185,210,255,0.12) 75%,
    transparent 100%);
  filter: blur(8px);
  opacity: .9;
  border-radius:999px;
}

.hero-actions{
  display:flex; gap:12px; flex-wrap:wrap; margin-top: 8px;
  justify-content: center;
}
.pillrow{
  display:flex; gap:8px; flex-wrap:wrap; margin-top: 20px;
}
.pill{
  padding:8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted2);
  font-size: 12px;
}

.panel{
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.panel .top{
  padding:16px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display:flex; align-items:center; justify-content:space-between;
  color: var(--muted2);
  font-size: 13px;
}
.dot{
  width:10px; height:10px; border-radius:50%;
  background: rgba(255,255,255,0.18);
  box-shadow: 0 0 24px rgba(185,210,255,0.12);
}
.panel .body{
  padding: 18px;
}
.stat{
  display:flex; align-items:flex-start; justify-content:space-between;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.18);
  margin-bottom: 10px;
}
.stat strong{font-size:14px}
.stat span{color:var(--muted2); font-size:12px}
.tag{
  font-size: 12px;
  color: var(--muted2);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  padding: 6px 10px;
  border-radius: 999px;
  display:inline-flex;
  gap:8px;
  align-items:center;
}

section{
  padding: 12px 0;
}
.section-title{
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted2);
  margin: 0 0 14px;
  font-weight: 500;
}
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.03);
  padding: 18px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.35);
}
.card h3{
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: .01em;
}
.card p{
  margin:0;
  color: var(--muted2);
  font-size: 14px;
  line-height: 1.6;
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

footer{
  padding: 42px 0 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--muted2);
}
.footergrid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items:start;
}
.small{
  font-size: 13px;
  line-height: 1.6;
}
.links{
  display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;
}

@media (max-width: 600px){
  .steps{grid-template-columns: 1fr;}
}

/* Bullet list */
.bullet-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bullet-list li{
  color: var(--muted2);
  font-size: 14px;
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
.bullet-list li::before{
  content: "–";
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.22);
}

/* How we work steps */
.steps{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.step{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.03);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.35);
}
.step-num{
  font-size: 11px;
  letter-spacing: .14em;
  color: rgba(255,255,255,0.38);
  font-weight: 600;
}
.step-title{
  font-size: 15px;
  margin: 0 0 6px;
  font-weight: 600;
  color: var(--text);
}
.step p{
  margin: 0;
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.6;
}

/* Currently building note */
.building-note{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.015);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.building-label{
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 0;
}
.building-note p{
  margin: 0;
  color: var(--muted2);
  font-size: 14px;
  line-height: 1.75;
  max-width: 72ch;
}

/* Dashboard preview cards */
.dash-card{
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dash-preview{
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.28);
  overflow: hidden;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  aspect-ratio: 16 / 7;
}
.dash-preview-topbar{
  height: 6px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  width: 38%;
  margin-bottom: 2px;
}
.dash-preview-row{
  display: flex;
  gap: 8px;
  flex: 1;
  min-height: 0;
}
.dash-preview-cell{
  border-radius: 8px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 10px;
  gap: 6px;
}
.dash-bar{
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
}
.dash-bar.accent{
  background: rgba(185,210,255,0.18);
}
.dash-card-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.dash-card-header h3{
  margin: 0;
}
.badge-soon{
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  font-weight: 600;
}

/* ── Hero (centered, single-column) ──────────────────────── */
.hero-inner{
  max-width: 780px;
  padding: 72px 0 44px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-btn{
  background: rgba(185,210,255,0.1);
  border-color: rgba(185,210,255,0.22);
  color: var(--accent);
}
.hero-btn:hover{
  background: rgba(185,210,255,0.16);
  border-color: rgba(185,210,255,0.34);
}

/* ── About block ────────────────────────────────────────── */
.about-block{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.03);
  padding: 28px 32px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.35);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.about-block p{
  margin: 0;
  color: var(--muted2);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.8;
  max-width: 72ch;
}
.about-statement{
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

/* ── Intelligence Domains ───────────────────────────────── */
.domains-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.domain-card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.03);
  padding: 24px 20px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.domain-card:hover{
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.045);
  transform: translateY(-2px);
}
.domain-icon{
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(185,210,255,0.06);
  border: 1px solid rgba(185,210,255,0.12);
  display: grid; place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}
.domain-card h3{
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .01em;
}
.domain-card p{
  margin: 0;
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.65;
  flex: 1;
}
.domain-tag{
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  padding: 4px 10px;
  border-radius: 999px;
  align-self: flex-start;
  font-weight: 600;
}

/* ── Closing Statement ──────────────────────────────────── */
.closing-section{
  padding: 48px 0 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.closing-glow{
  width: min(480px, 90%);
  margin: 0 auto;
}
.closing-quote{
  margin: 0;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text);
  max-width: 640px;
  border: none;
  padding: 0;
}
.closing-sub{
  margin: 0;
  color: var(--muted2);
  font-size: clamp(14px, 1.3vw, 16px);
  max-width: 480px;
  line-height: 1.6;
}

/* ── Form inputs ────────────────────────────────────────── */
.form-input{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.22);
  color: var(--text);
  outline: none;
  font-family: inherit;
  font-size: 14px;
  width: 100%;
  transition: border-color .15s ease;
}
.form-input:focus{
  border-color: rgba(255,255,255,0.22);
}
.form-textarea{
  resize: vertical;
}

/* ── Contact rows ───────────────────────────────────────── */
.contact-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.18);
}
.contact-label{
  font-size: 14px;
  color: var(--muted2);
  font-weight: 500;
}

/* ── Responsive additions ───────────────────────────────── */
@media (max-width: 1100px){
  .domains-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr;}
  .cta{min-width:auto}
  .brand{min-width:auto}
  nav ul{display:none}
  .grid3{grid-template-columns: 1fr;}
  .split{grid-template-columns: 1fr;}
  .footergrid{grid-template-columns: 1fr;}
  .links{justify-content:flex-start}
  .hero{padding-top: 10px}
  .hero-inner{padding-top: 50px;}
  .steps{grid-template-columns: 1fr 1fr;}
}
@media (max-width: 600px){
  .steps{grid-template-columns: 1fr;}
  .domains-grid{grid-template-columns: 1fr;}
}
