@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --navy: #071526;
  --navy-2: #0b2037;
  --blue: #1769ff;
  --cyan: #35c6ff;
  --ink: #142337;
  --muted: #64748b;
  --line: #dce5ef;
  --light: #f5f8fb;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  color: var(--white);
}

.nav {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.brand {
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: .03em;
  font-weight: 700;
}

.brand-mark {
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,.45);
  font-family: "Space Grotesk", sans-serif;
}

.brand-word {
  font-size: 13px;
  letter-spacing: .18em;
}

.status {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  color: #b9d5ff;
}

.hero {
  min-height: 720px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 28%, rgba(23,105,255,.28), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.grid-lines {
  position: absolute;
  inset: 0;
  opacity: .23;
  background-image:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero::after {
  content: ".gTLD";
  position: absolute;
  right: -4vw;
  bottom: -7vw;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(150px, 25vw, 360px);
  font-weight: 700;
  line-height: .8;
  color: rgba(255,255,255,.025);
  letter-spacing: -.08em;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 190px;
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: #8ebdff;
}

h1, h2, h3 {
  font-family: "Space Grotesk", sans-serif;
}

h1 {
  margin: 0;
  font-size: clamp(74px, 12vw, 150px);
  line-height: .83;
  letter-spacing: -.07em;
  font-weight: 600;
}

h1 span { color: var(--cyan); }

.intro {
  max-width: 570px;
  margin: 44px 0 34px;
  color: #c5d1df;
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.55;
}

.launch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 17px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(53,198,255,.8);
}

.coverage {
  padding: 120px 0 130px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: end;
  padding-bottom: 62px;
}

.section-heading .eyebrow { color: var(--blue); margin-bottom: 0; }

h2 {
  margin: 0;
  max-width: 670px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 600;
}

.topics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.topics article {
  padding: 32px 28px 10px 0;
  border-right: 1px solid var(--line);
}

.topics article:not(:first-child) { padding-left: 28px; }
.topics article:last-child { border-right: 0; }

.topics span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
}

h3 {
  margin: 38px 0 14px;
  font-size: 20px;
  line-height: 1.15;
}

.topics p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.statement {
  padding: 30px 0;
  background: var(--light);
}

.statement-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #506176;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}

.line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

footer {
  background: var(--navy);
  color: #92a3b7;
  font-size: 11px;
  letter-spacing: .04em;
}

.footer-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 800px) {
  .container { width: min(100% - 32px, 1160px); }
  .nav { height: 72px; }
  .status { display: none; }
  .hero { min-height: 650px; }
  .hero-content { padding-top: 155px; }
  .section-heading { display: block; }
  .section-heading .eyebrow { margin-bottom: 30px; }
  .topics { grid-template-columns: repeat(2, 1fr); }
  .topics article:nth-child(2) { border-right: 0; }
  .topics article:nth-child(3) { padding-left: 0; border-top: 1px solid var(--line); }
  .topics article:nth-child(4) { border-top: 1px solid var(--line); }
  .footer-inner { flex-direction: column; justify-content: center; padding: 20px 0; }
}

@media (max-width: 520px) {
  .hero { min-height: 610px; }
  .hero-content { padding-top: 135px; }
  .intro { margin-top: 34px; }
  .coverage { padding: 80px 0; }
  .topics { grid-template-columns: 1fr; }
  .topics article,
  .topics article:not(:first-child) {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .topics article:last-child { border-bottom: 0; }
  .statement-inner { display: block; }
  .statement-inner .line { margin: 15px 0; }
}
