:root {
  --bg: #080b12;
  --surface: rgba(255,255,255,.055);
  --line: rgba(255,255,255,.11);
  --text: #f7f8fb;
  --muted: #a3a9b8;
  --blue: #7aa7ff;
  --mint: #78e6c7;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; color: var(--text); background: radial-gradient(circle at 15% 0, rgba(83,123,224,.2), transparent 30rem), radial-gradient(circle at 90% 65%, rgba(41,178,147,.11), transparent 30rem), var(--bg); font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
body::before { content: ""; position: fixed; inset: 0; pointer-events: none; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, black, transparent 80%); }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.header { position: sticky; z-index: 10; top: 0; border-bottom: 1px solid var(--line); background: rgba(8,11,18,.8); backdrop-filter: blur(18px); }
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 800; letter-spacing: .12em; }
.logo-mark { width: 27px; height: 27px; border-radius: 9px; background: linear-gradient(135deg, var(--blue), var(--mint)); transform: rotate(12deg); }
.links { display: flex; align-items: center; gap: 26px; color: var(--muted); font-size: 14px; }
.links a:hover, .links a[aria-current="page"] { color: var(--text); }
.lang { padding: 10px; border: 0; background: transparent; color: var(--muted); cursor: pointer; font-weight: 800; }
.hero { padding: clamp(80px, 12vw, 150px) 0 80px; }
.kicker { color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
h1 { max-width: 850px; margin: 20px 0 24px; font-size: clamp(50px, 8vw, 94px); line-height: .95; letter-spacing: -.06em; font-weight: 650; }
.gradient { color: transparent; background: linear-gradient(100deg, #fff, var(--blue), var(--mint)); background-clip: text; -webkit-background-clip: text; }
.domain-badge { display: inline-flex; align-items: center; gap: 9px; padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: #cbd1dd; background: var(--surface); font-size: 12px; font-weight: 750; }
.domain-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 12px var(--mint); }
.lead { max-width: 720px; margin: 25px 0 0; color: var(--muted); font-size: clamp(17px, 2vw, 21px); line-height: 1.65; }
.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding-bottom: 120px; }
.card { min-height: 300px; padding: 30px; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.018)); display: flex; flex-direction: column; }
.number { color: var(--blue); font-size: 12px; font-weight: 850; letter-spacing: .1em; }
.card h2 { margin: auto 0 15px; font-size: clamp(25px, 3vw, 36px); letter-spacing: -.035em; }
.card p { margin: 0; color: var(--muted); line-height: 1.65; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tag { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: #c1c6d2; font-size: 11px; }
.story { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; padding-bottom: 120px; }
.story h2 { margin: 0; font-size: clamp(32px, 5vw, 58px); letter-spacing: -.045em; line-height: 1.05; }
.story-copy p { margin: 0 0 22px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.cta { margin-bottom: 120px; padding: clamp(34px, 7vw, 72px); border: 1px solid var(--line); border-radius: 32px; background: linear-gradient(135deg, rgba(122,167,255,.15), rgba(120,230,199,.08)); }
.cta h2 { max-width: 720px; margin: 0 0 24px; font-size: clamp(34px, 5vw, 58px); letter-spacing: -.045em; }
.button { display: inline-flex; min-height: 48px; padding: 0 21px; align-items: center; border-radius: 999px; background: var(--text); color: #091018; font-size: 14px; font-weight: 800; }
footer { padding: 30px 0 42px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.footer-row { display: flex; justify-content: space-between; gap: 28px; }

@media (max-width: 760px) {
  .links a:not([aria-current="page"]) { display: none; }
  .grid, .story { grid-template-columns: 1fr; }
  .story { gap: 30px; }
  .card { min-height: 270px; }
  .footer-row { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
