:root {
  color-scheme: dark;
  --bg: #09100f;
  --panel: #111b1a;
  --panel-strong: #172221;
  --text: #f1f7f4;
  --muted: #aebdb7;
  --line: rgba(255, 255, 255, 0.14);
  --cyan: #58d6d6;
  --green: #7ccd72;
  --magenta: #e46aa9;
  --gold: #e0b45c;
  --shadow: rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(9, 16, 15, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-mark,
.site-nav {
  display: flex;
  align-items: center;
}

.site-mark {
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
}

.mark-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--green) 52%, var(--magenta));
  box-shadow: 0 0 24px rgba(88, 214, 214, 0.6);
}

.site-nav {
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--text);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 64px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-image,
.hero-scrim,
.hero-content {
  grid-area: 1 / 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: calc(100svh - 64px);
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(6, 12, 12, 0.9), rgba(6, 12, 12, 0.62) 48%, rgba(6, 12, 12, 0.18)),
    linear-gradient(0deg, rgba(9, 16, 15, 0.86), rgba(9, 16, 15, 0.05) 42%);
}

.hero-content {
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  align-self: center;
  margin-left: clamp(18px, 7vw, 96px);
  padding: 72px 0 104px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 640px;
  margin: 26px 0 0;
  color: #d8e6e1;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 750;
  text-decoration: none;
}

.button.primary {
  background: var(--text);
  color: #09100f;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.notice {
  width: min(1120px, calc(100% - 36px));
  margin: 28px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(224, 180, 92, 0.36);
  border-radius: 8px;
  background: rgba(224, 180, 92, 0.11);
  color: #f6e7c7;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0;
}

.intro,
.split,
.status-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.section p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading {
  margin-bottom: 26px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  box-shadow: 0 18px 40px var(--shadow);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid rgba(88, 214, 214, 0.32);
  border-radius: 999px;
  background: rgba(88, 214, 214, 0.11);
  color: var(--cyan);
  font-weight: 900;
}

.feature-card p {
  min-height: 100px;
  font-size: 0.98rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-top: 18px;
  padding: 0 11px;
  border: 1px solid rgba(124, 205, 114, 0.34);
  border-radius: 999px;
  color: #d8f1d3;
  font-size: 0.84rem;
  font-weight: 750;
}

.dns-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 24px;
  color: #d4ded9;
}

.dns-list li {
  padding-left: 8px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 780px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-content {
    align-self: end;
    margin: 0 auto;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(6, 12, 12, 0.94), rgba(6, 12, 12, 0.5) 65%, rgba(6, 12, 12, 0.22)),
      linear-gradient(90deg, rgba(6, 12, 12, 0.42), rgba(6, 12, 12, 0.12));
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .intro,
  .split,
  .status-section,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .feature-card p {
    min-height: 0;
  }
}
