:root {
  --bg: #070914;
  --bg-2: #0d1020;
  --panel: rgba(255, 255, 255, 0.052);
  --panel-strong: rgba(255, 255, 255, 0.078);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f6f1e8;
  --muted: #bdc3d4;
  --muted-2: #8790a7;
  --accent: #8deee0;
  --accent-deep: #1f8d86;
  --shadow: rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 74% 0%, rgba(120, 87, 183, 0.22), transparent 32%),
    radial-gradient(circle at 8% 18%, rgba(141, 238, 224, 0.09), transparent 26%),
    linear-gradient(180deg, #090b18 0%, var(--bg) 58%, #060812 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 9, 20, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1080px, calc(100% - 42px));
  margin: 0 auto;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--text);
}

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

main {
  width: min(1080px, calc(100% - 42px));
  margin: 0 auto;
}

.hero {
  max-width: 860px;
  padding: 118px 0 78px;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(141, 238, 224, 0.22);
  border-radius: 999px;
  background: rgba(141, 238, 224, 0.075);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Fraunces, Georgia, serif;
}

h1 {
  max-width: 830px;
  margin-bottom: 30px;
  font-size: clamp(46px, 7.2vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-weight: 650;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.hero-copy strong {
  color: var(--text);
  font-weight: 750;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 21px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #071012;
  background: var(--accent);
}

.button.primary:hover {
  color: #071012;
  background: #a6f5eb;
}

.button.secondary {
  color: var(--text);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.045);
}

.button.secondary:hover {
  border-color: rgba(141, 238, 224, 0.42);
  background: rgba(141, 238, 224, 0.08);
}

.section {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.section h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 650;
}

.section-intro {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.66;
}

.status-box {
  max-width: 930px;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  box-shadow: 0 24px 72px var(--shadow);
}

.status-box p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.status-box p:last-child {
  margin-bottom: 0;
}

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

.card {
  min-height: 196px;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.04));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
}

.card h3 {
  margin-bottom: 14px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.card p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.62;
}

.business p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.business a {
  color: var(--accent);
}

/* Shared secondary page style: contact, privacy, terms */

.legal-page {
  width: min(900px, calc(100% - 42px));
  margin: 0 auto;
  padding: 86px 0 96px;
}

.legal-content {
  border-top: 1px solid var(--border);
  padding-top: 54px;
  min-height: 66vh;
}

.legal-content h1 {
  margin-bottom: 28px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(44px, 6vw, 70px);
  line-height: 0.96;
  letter-spacing: -0.052em;
  font-weight: 650;
}

.legal-content h2 {
  margin-top: 38px;
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.legal-content a {
  color: var(--accent);
}

.legal-content ul {
  padding-left: 22px;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  color: var(--muted-2);
}

.footer-inner {
  width: min(1080px, calc(100% - 42px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
}

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

@media (max-width: 760px) {
  .nav {
    min-height: auto;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    gap: 14px;
    flex-wrap: wrap;
  }

  .hero {
    padding: 76px 0 56px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-copy {
    font-size: 16.5px;
  }

  .section {
    padding: 48px 0;
  }

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

  .status-box,
  .card {
    border-radius: 23px;
  }

  .legal-page {
    padding: 62px 0 76px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
