:root {
  --bg: #071018;
  --bg-soft: #0c1822;
  --line: rgba(225, 244, 255, .14);
  --text: #edf7fb;
  --muted: #91a9b7;
  --blue: #63c9ff;
  --blue-bright: #a4e2ff;
  --shell: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--bg); }
body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(115deg, transparent 0 47%, rgba(99, 201, 255, .07) 47.1%, transparent 47.25%),
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(225,244,255,.025) 120px, transparent 121px),
    var(--bg);
  font-family: "Manrope", "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.shell { width: var(--shell); margin: 0 auto; }
.site-header {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(225,244,255,.08);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.brand-mark { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(99,201,255,.6); border-radius: 50%; color: var(--blue); font-size: 13px; }
.status { color: var(--muted); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.status i { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 16px rgba(99,201,255,.85); }
.hero { min-height: calc(100vh - 92px); padding: clamp(100px, 16vw, 190px) 0 100px; display: flex; flex-direction: column; justify-content: center; }
.eyebrow { margin: 0 0 28px; color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: .19em; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 24px; height: 1px; margin: 0 12px 3px 0; background: var(--blue); }
h1 { max-width: 920px; margin: 0; font-size: clamp(60px, 10vw, 132px); font-weight: 500; line-height: .88; letter-spacing: -.075em; }
h1 span { color: var(--blue); }
.hero-rule { width: min(100%, 680px); height: 1px; margin-top: 58px; background: linear-gradient(90deg, var(--blue), transparent); opacity: .7; }
.site-footer { min-height: 120px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--muted); border-top: 1px solid rgba(225,244,255,.08); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.site-footer a { color: var(--blue); transition: color .25s ease; }
.site-footer a:hover { color: var(--blue-bright); }
.site-footer a span { margin-left: 12px; font-size: 16px; }
@media (max-width: 620px) {
  :root { --shell: calc(100vw - 32px); }
  .site-header { height: 76px; }
  .status { font-size: 9px; }
  .hero { min-height: calc(100svh - 76px); padding: 76px 0 76px; }
  h1 { font-size: clamp(52px, 16vw, 78px); }
  .site-footer { min-height: 110px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 14px; }
}
