:root {
  color-scheme: dark;
  --ink: #f7f3e8;
  --muted: #b7c4ca;
  --navy: #071923;
  --navy-soft: #102b36;
  --teal: #1b786f;
  --gold: #d8b66a;
  --line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 85% 8%, rgba(29, 120, 111, 0.32), transparent 32rem),
    radial-gradient(circle at 8% 92%, rgba(216, 182, 106, 0.14), transparent 30rem),
    var(--navy);
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 64px;
  min-height: 690px;
  padding: 72px 0 96px;
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 78px);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.03em;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy > p {
  max-width: 690px;
  margin-bottom: 34px;
  font-size: 18px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  border-color: var(--gold);
  color: #132229;
  background: var(--gold);
  box-shadow: 0 16px 42px rgba(216, 182, 106, 0.18);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.status-card,
.card,
.legal-panel {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.status-card {
  padding: 32px;
  border-radius: 30px;
}

.status-card h2 {
  margin-bottom: 12px;
  font-size: 25px;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #59d5a8;
  box-shadow: 0 0 18px rgba(89, 213, 168, 0.7);
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

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

.card {
  padding: 28px;
  border-radius: 24px;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.card p {
  margin-bottom: 0;
}

.legal-header {
  max-width: 780px;
  padding: 78px 0 34px;
}

.legal-header h1 {
  font-size: clamp(40px, 6vw, 64px);
}

.legal-panel {
  margin-bottom: 88px;
  padding: clamp(28px, 6vw, 64px);
  border-radius: 30px;
}

.legal-panel h2 {
  margin-top: 42px;
  margin-bottom: 12px;
  font-size: 25px;
}

.legal-panel h2:first-child {
  margin-top: 0;
}

.legal-panel li {
  margin: 10px 0;
  color: var(--muted);
  line-height: 1.65;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 800px) {
  .nav a:not(.button) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 38px;
    min-height: auto;
    padding: 66px 0 78px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .button {
    transition: transform 160ms ease, filter 160ms ease;
  }
}
