
:root {
  --bg: #080d13;
  --bg-soft: #0d1520;
  --panel: rgba(17, 27, 39, 0.72);
  --panel-strong: rgba(20, 34, 49, 0.92);
  --line: rgba(148, 176, 204, 0.18);
  --text: #edf6ff;
  --muted: #aab8c8;
  --soft: #d7e2ef;
  --blue: #60a5fa;
  --cyan: #67e8f9;
  --green: #8ee6b8;
  --warn: #f7c873;
  --shadow: 0 24px 80px rgba(0,0,0,.36);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(96, 165, 250, .16), transparent 28rem),
    radial-gradient(circle at 10% 20%, rgba(103, 232, 249, .08), transparent 22rem),
    linear-gradient(180deg, #070b10 0%, var(--bg) 46%, #05080c 100%);
  line-height: 1.6;
}
a { color: inherit; }
.page { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}
.brand { display:flex; gap:14px; align-items:center; text-decoration:none; }
.brand img { width:48px; height:auto; border-radius:14px; box-shadow: 0 0 30px rgba(96,165,250,.25); }
.brand span { font-weight: 720; letter-spacing: .02em; }
.brand-blue { color: var(--blue); }
.nav-links { display:flex; gap:20px; color: var(--muted); font-size: 14px; }
.nav-links a { text-decoration:none; }
.nav-links a:hover { color: var(--text); }
.hero { padding: 68px 0 46px; text-align: center; position:relative; }
.logo-hero { width: 132px; height: auto; margin: 0 auto 24px; border-radius: 36px; box-shadow: 0 0 90px rgba(96,165,250,.22); }
.kicker { color: var(--cyan); font-size: 14px; text-transform: uppercase; letter-spacing: .16em; font-weight: 700; margin-bottom: 14px; }
h1 { margin: 0 auto; max-width: 920px; font-size: clamp(44px, 8vw, 88px); line-height: .98; letter-spacing: -.055em; }
.lead { max-width: 730px; margin: 24px auto 0; color: var(--soft); font-size: clamp(18px, 2vw, 23px); }
.strapline { margin-top: 18px; color: var(--muted); font-size: 18px; letter-spacing:.02em; }
.actions { display:flex; flex-wrap:wrap; justify-content:center; gap:14px; margin-top:32px; }
.button {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 13px 18px; border-radius: 999px; text-decoration:none;
  border: 1px solid var(--line); background: rgba(255,255,255,.05); color: var(--text);
  font-weight: 680;
}
.button.primary { background: linear-gradient(135deg, rgba(96,165,250,.94), rgba(103,232,249,.72)); color: #07101a; border: none; }
.notice {
  max-width: 860px; margin: 34px auto 0; padding: 18px 20px; border: 1px solid rgba(142,230,184,.28);
  border-radius: 18px; background: rgba(142,230,184,.06); color: #dffbed;
}
.grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:18px; margin: 38px 0; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.four { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.card h3 { margin:0 0 8px; font-size: 20px; letter-spacing:-.02em; }
.card p { margin:0; color: var(--muted); }
section { padding: 46px 0; }
.section-title { max-width: 760px; margin-bottom: 20px; }
h2 { font-size: clamp(28px, 4vw, 48px); line-height: 1.04; letter-spacing: -.04em; margin:0 0 14px; }
.section-title p { color: var(--muted); margin:0; font-size:18px; }
.pipeline {
  display:flex; flex-wrap:wrap; gap:10px; align-items:center; margin-top:22px;
}
.pipeline span { padding: 10px 13px; border-radius: 14px; background: rgba(255,255,255,.055); border:1px solid var(--line); color: var(--soft); font-weight:680; }
.pipeline i { color: var(--blue); font-style:normal; }
.email-box {
  margin: 36px 0 70px; padding: 28px; border-radius: var(--radius); border:1px solid rgba(96,165,250,.28);
  background: linear-gradient(135deg, rgba(96,165,250,.12), rgba(103,232,249,.055));
  display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
}
.email-box p { margin:0; color:var(--muted); }
.email { font-size: 20px; font-weight: 780; color: var(--text); text-decoration:none; }
footer { border-top:1px solid var(--line); padding: 28px 0 44px; color: var(--muted); font-size:14px; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.badge { display:inline-flex; padding: 7px 10px; border-radius:999px; background:rgba(96,165,250,.09); border:1px solid rgba(96,165,250,.20); color:#b9d9ff; font-weight:700; font-size:13px; }
ul.clean { padding-left: 20px; color: var(--muted); }
ul.clean li { margin: 8px 0; }
@media (max-width: 850px) {
  .grid, .grid.two, .grid.four { grid-template-columns: 1fr; }
  .nav-links { display:none; }
  .hero { padding-top: 42px; }
}
