/* Minimal, neutral, responsive */
:root{
  --bg: #0b1220;
  --bg-2: #0e1628;
  --text: #e6edf3;
  --muted: #a8b3c7;
  --accent: #93c5fd;
  --radius: 14px;
}

*{ box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  color: var(--text);
  background: linear-gradient(180deg, var(--bg), var(--bg-2));
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container{
  width: min(820px, 100% - 32px);
  margin-inline: auto;
}

.site-header{
  padding-top: calc(env(safe-area-inset-top) + 64px);
  padding-bottom: 40px;
  text-align: center;
}

h1{
  font-size: clamp(26px, 4.5vw, 40px);
  margin: 0 0 12px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.domain{
  background: linear-gradient(90deg, #60a5fa, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead{
  font-size: clamp(15px, 2.6vw, 18px);
  color: var(--muted);
  margin: 0 auto 16px;
  max-width: 70ch;
}

.cta{
  margin-top: 8px;
  display: flex;
  justify-content: center;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: transform .06s ease, background .2s ease, border-color .2s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn:active{ transform: translateY(1px) scale(.99); }
.btn.primary{ background: rgba(255,255,255,.06); }

.site-footer{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0 calc(env(safe-area-inset-bottom) + 18px);
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}
