:root {
  --bg: #07111f;
  --panel: rgba(14, 29, 48, 0.78);
  --line: rgba(145, 176, 207, 0.16);
  --text: #f4f7fb;
  --muted: #aab8c7;
  --accent: #d3a94b;
  --accent-soft: #f0cd7d;
  --blue: #5aa6e8;
}

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

body {
  margin: 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(90, 166, 232, 0.12), transparent 32%),
    radial-gradient(circle at 20% 30%, rgba(211, 169, 75, 0.06), transparent 28%),
    linear-gradient(180deg, #06101d 0%, #091523 52%, #07111f 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 70%);
}

a { color: inherit; }

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(211, 169, 75, 0.45);
  background: linear-gradient(145deg, rgba(211, 169, 75, 0.16), rgba(90, 166, 232, 0.08));
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-soft);
  border-radius: 12px;
  box-shadow: 0 0 35px rgba(211, 169, 75, 0.08);
}

.brand-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand-subtitle {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(90, 166, 232, 0.24);
  border-radius: 999px;
  color: #c9def1;
  background: rgba(90, 166, 232, 0.06);
  font-size: 12px;
  font-weight: 600;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6de2a8;
  box-shadow: 0 0 12px rgba(109, 226, 168, 0.9);
}

.hero {
  padding: 110px 0 80px;
  max-width: 980px;
}

.eyebrow, .section-kicker {
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero h1 {
  margin: 18px 0 24px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero h1 span {
  display: block;
  color: #9fc8eb;
}

.hero-copy {
  max-width: 760px;
  color: #c4d0dc;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  text-decoration: none;
  padding: 13px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  transition: 0.2s ease;
}

.button.primary {
  color: #08111d;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  box-shadow: 0 8px 24px rgba(211, 169, 75, 0.16);
}

.button.secondary {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color: #dce7f2;
}

.button:hover { transform: translateY(-2px); }

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 54px;
}

.signal-card, .capability-card, .product-panel, .launch-banner {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(16, 36, 58, 0.78), rgba(8, 21, 35, 0.72));
  backdrop-filter: blur(10px);
  border-radius: 16px;
}

.signal-card { padding: 18px; }

.signal-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

.section-block {
  padding: 78px 0;
  border-top: 1px solid var(--line);
}

.section-heading { margin-bottom: 30px; }

.section-heading h2, .philosophy h2, .launch-banner h2 {
  margin: 9px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(30px, 4.2vw, 52px);
  letter-spacing: -0.03em;
}

.section-subhead {
  color: var(--muted);
  margin-top: 8px;
  font-size: 16px;
}

.product-panel { padding: 30px; }

.product-tag {
  color: #d7e7f4;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 18px;
}

.product-copy p {
  color: #b8c6d4;
  line-height: 1.75;
  max-width: 860px;
}

.decision-chain {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.decision-chain div {
  padding: 10px 14px;
  border-radius: 9px;
  background: rgba(90, 166, 232, 0.08);
  color: #d6e8f7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.decision-chain span {
  color: var(--accent);
  font-weight: 700;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.capability-card { padding: 24px; }

.capability-number {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.capability-card h3 {
  font-family: "Space Grotesk", sans-serif;
  margin: 10px 0 10px;
  font-size: 22px;
}

.capability-card p {
  color: #b5c3d0;
  line-height: 1.65;
}

.philosophy {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: end;
}

.philosophy p {
  color: #bcc9d5;
  line-height: 1.75;
  font-size: 17px;
}

.launch-banner {
  margin: 30px 0 70px;
  padding: 34px;
  box-shadow: 0 0 50px rgba(90, 166, 232, 0.05);
}

.launch-banner p {
  color: var(--muted);
  max-width: 780px;
  line-height: 1.65;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.site-footer strong {
  color: #eaf1f7;
  display: block;
  margin-bottom: 5px;
}

@media (max-width: 780px) {
  .page-shell { width: min(100% - 24px, 1180px); }
  .site-header { align-items: flex-start; flex-direction: column; }
  .brand-subtitle { max-width: 280px; line-height: 1.4; }
  .hero { padding-top: 72px; }
  .signal-grid, .capability-grid, .philosophy { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(44px, 13vw, 70px); }
  .site-footer { flex-direction: column; }
}
