:root {
  color-scheme: dark;
  --bg: #090d0b;
  --panel: rgba(14, 20, 17, 0.86);
  --panel-strong: #121915;
  --text: #edf1e8;
  --muted: #a7b1a5;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #d7ff68;
  --accent-dark: #93bd38;
  --danger: #ff8d8d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(7, 11, 9, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.site-header.compact {
  position: sticky;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: var(--bg);
  background: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 26px);
  color: var(--muted);
  font-size: 0.94rem;
}

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

nav a:hover,
.policy-links a:hover,
.legal-card a:hover {
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("/hero.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: saturate(0.9) contrast(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 12, 10, 0.88) 0%, rgba(8, 12, 10, 0.56) 44%, rgba(8, 12, 10, 0.08) 100%),
    linear-gradient(0deg, rgba(9, 13, 11, 0.92) 0%, rgba(9, 13, 11, 0.04) 38%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100vw - 36px));
  padding: 148px 0 clamp(72px, 12vh, 120px) clamp(18px, 4vw, 56px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.1rem, 8vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 4.3rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

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

.hero-copy {
  width: min(610px, 100%);
  color: #dce5d9;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

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

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.primary-link {
  color: #10140f;
  background: var(--accent);
}

.primary-link:hover {
  background: #e4ff91;
}

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

.secondary-link:hover {
  border-color: rgba(215, 255, 104, 0.36);
}

.content-band {
  width: min(1180px, calc(100vw - 36px));
  margin: 0 auto;
  padding: clamp(56px, 9vw, 96px) 0;
}

.section-heading {
  width: min(700px, 100%);
  margin-bottom: 28px;
}

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

.feature-grid article,
.credit-card,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.feature-grid article {
  min-height: 170px;
  padding: 22px;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 6vw, 70px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.credit-card {
  padding: 22px;
  background: var(--panel-strong);
}

.credit-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.credit-card li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.credit-card strong {
  color: var(--accent);
}

.policy-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.policy-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

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

.legal-page {
  width: min(860px, calc(100vw - 36px));
  margin: 0 auto;
  padding: 56px 0 88px;
}

.legal-card {
  padding: clamp(22px, 5vw, 44px);
}

.legal-card h1 {
  font-size: clamp(2.4rem, 7vw, 4.8rem);
}

.legal-card h2 {
  margin-top: 32px;
  font-size: 1.32rem;
}

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

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
    gap: 12px;
  }

  .hero-content {
    padding-top: 168px;
  }

  .feature-grid,
  .split-band,
  .policy-strip {
    grid-template-columns: 1fr;
  }

  .policy-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    width: 100%;
    padding-right: 18px;
  }

  .feature-grid article {
    min-height: 0;
  }

  footer {
    display: grid;
  }
}
