:root {
  color-scheme: dark;
  --ink: #f7fbff;
  --muted: #b8c5d6;
  --subtle: #8392aa;
  --page: #06100f;
  --panel: #0c1a1f;
  --panel-2: #10242c;
  --line: rgba(255, 255, 255, 0.13);
  --felt: #0f5b43;
  --felt-2: #11392f;
  --gold: #ffc94a;
  --gold-2: #d99b2b;
  --rose: #ff5c7a;
  --blue: #37b8ff;
  --shadow: rgba(0, 0, 0, 0.35);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(6, 16, 15, 0.62), var(--page) 640px),
    radial-gradient(circle at 18% 18%, rgba(15, 91, 67, 0.52), transparent 30%),
    var(--page);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 12, 15, 0.74);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 40px, var(--max));
  min-height: 68px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 10px 30px var(--shadow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.93rem;
}

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

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 82svh;
  padding: 116px 0 84px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 9, 18, 0.96) 0%, rgba(3, 9, 18, 0.76) 42%, rgba(3, 9, 18, 0.22) 100%),
    image-set(url("./home-hero.png") type("image/png"));
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 90px;
  background: linear-gradient(180deg, transparent, var(--page));
}

.hero-inner,
.section-inner,
.legal-page,
.footer-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(255, 201, 74, 0.8);
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 9vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  width: min(570px, 100%);
  margin-bottom: 30px;
  color: #d7e2ef;
  font-size: clamp(1.08rem, 2.4vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  border-color: rgba(255, 201, 74, 0.72);
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  color: #201400;
}

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

.status-line {
  margin: 18px 0 0;
  color: var(--subtle);
  font-size: 0.95rem;
}

.section {
  padding: 78px 0;
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    linear-gradient(90deg, rgba(15, 91, 67, 0.2), rgba(255, 201, 74, 0.08));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.section-heading h2,
.legal-page h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p,
.legal-lead {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.feature-card,
.note-card,
.support-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.feature-card {
  padding: 24px;
}

.feature-card h3,
.support-card h2,
.note-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.feature-card p,
.support-card p,
.note-card p,
.legal-section p,
.legal-section li {
  color: var(--muted);
}

.table-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.note-card {
  padding: 26px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(55, 184, 255, 0.56);
}

.legal-page {
  padding: 128px 0 80px;
}

.legal-meta {
  margin-bottom: 32px;
  color: var(--subtle);
}

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

.legal-section h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

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

.support-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.support-card {
  padding: 28px;
}

.mail-link {
  color: var(--gold);
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050b0d;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0;
  color: var(--subtle);
  font-size: 0.92rem;
}

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

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 820px) {
  .nav {
    width: min(100% - 28px, var(--max));
  }

  .nav-links {
    gap: 12px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 76svh;
    padding-top: 108px;
    background:
      linear-gradient(180deg, rgba(3, 9, 18, 0.9) 0%, rgba(3, 9, 18, 0.76) 48%, rgba(3, 9, 18, 0.36) 100%),
      image-set(url("./home-hero.png") type("image/png"));
    background-position: 62% center;
    background-size: cover;
  }

  .hero-inner,
  .section-inner,
  .legal-page,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .feature-grid,
  .table-strip,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }
}

@media (max-width: 560px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 86px;
    gap: 8px;
  }

  .hero {
    padding-top: 124px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.9rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
  }
}
