:root {
  color-scheme: dark;
  font-family: "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
  --background: #101419;
  --foreground: #f4f6f8;
  --muted: #b1bcc7;
  --accent: #70ddb7;
  background: var(--background);
  color: var(--foreground);
}

* { box-sizing: border-box; }

body { margin: 0; }

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  max-width: 86rem;
  margin-inline: auto;
  padding: 2rem clamp(1.5rem, 6vw, 6rem);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
}

.brand img { display: block; border-radius: 0.5rem; }

main { flex: 1; padding-block: clamp(4rem, 12vh, 9rem); }

.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 1.1;
}

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

.intro {
  margin-block: 1.8rem 1rem;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.description {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.status {
  margin: 2.5rem 0 0;
  padding-left: 1rem;
  border-left: 2px solid var(--accent);
  font-size: 1rem;
  line-height: 1.6;
}

a { color: var(--accent); text-underline-offset: 0.25em; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 6px; }

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #343e49;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
}
