@font-face {
  font-family: "Clash Display";
  src: url("/assets/fonts/ClashDisplay-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("/assets/fonts/Satoshi-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("/assets/fonts/Satoshi-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #100e0b;
  --ink-soft: #1b1712;
  --cream: #fff9ef;
  --muted: #b9b1a4;
  --honey: #ffd542;
  --honey-deep: #d9a900;
  --line: rgba(255, 249, 239, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--cream);
  font-family: "Satoshi", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
}

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

.wordmark {
  color: var(--honey);
  font-family: "Clash Display", sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -1.5px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 249, 239, 0.78);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

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

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

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% 36%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 14, 11, 0.98) 0%, rgba(16, 14, 11, 0.82) 38%, rgba(16, 14, 11, 0.25) 70%, rgba(16, 14, 11, 0.1) 100%),
    linear-gradient(0deg, var(--ink) 0%, rgba(16, 14, 11, 0) 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 180px 0 112px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--honey);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(56px, 7.3vw, 96px);
  line-height: 0.96;
}

.hero-copy {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 249, 239, 0.78);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--honey);
  color: #1f1a12;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.button:hover,
.button:focus-visible {
  background: #ffe26b;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(16, 14, 11, 0.35);
  color: var(--cream);
  backdrop-filter: blur(8px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 249, 239, 0.1);
}

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 110px 0;
}

.section-heading {
  max-width: 700px;
  margin: 0 0 48px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
}

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

.feature-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 249, 239, 0.06), rgba(255, 249, 239, 0.015));
}

.feature-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--honey);
  color: #211b12;
  font-size: 13px;
  font-weight: 700;
}

.feature-card h3 {
  margin: 42px 0 12px;
  font-size: 27px;
  line-height: 1.05;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.closing {
  padding: 60px 0 120px;
}

.closing-card {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 72px;
  border-radius: 32px;
  background: var(--honey);
  color: #1d1810;
}

.closing-card h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
}

.closing-card p {
  max-width: 580px;
  margin: 20px 0 0;
  color: rgba(29, 24, 16, 0.72);
}

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

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 48px 0 56px;
}

.footer-note {
  max-width: 520px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
}

.footer-links a {
  color: rgba(255, 249, 239, 0.72);
  font-size: 13px;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--cream);
}

.legal-page .site-header {
  position: relative;
  border-bottom: 1px solid var(--line);
}

.legal {
  width: min(calc(100% - 40px), 820px);
  margin: 0 auto;
  padding: 84px 0 120px;
}

.legal h1 {
  max-width: none;
  font-size: clamp(48px, 7vw, 76px);
}

.updated {
  margin: 18px 0 56px;
  color: var(--muted);
  font-size: 14px;
}

.legal h2 {
  margin: 48px 0 14px;
  font-size: 30px;
  line-height: 1.15;
}

.legal p,
.legal li {
  color: #d3ccc0;
}

.legal ul,
.legal ol {
  padding-left: 24px;
}

.legal li + li {
  margin-top: 8px;
}

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

.legal-callout {
  margin: 40px 0;
  padding: 24px;
  border: 1px solid rgba(255, 213, 66, 0.28);
  border-radius: 18px;
  background: rgba(255, 213, 66, 0.07);
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(16, 14, 11, 0.93) 0%, rgba(16, 14, 11, 0.65) 55%, rgba(16, 14, 11, 0.15) 100%),
      linear-gradient(0deg, var(--ink) 0%, rgba(16, 14, 11, 0) 55%);
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 22px 0;
  }

  .nav-links a:not(:last-child) {
    display: none;
  }

  .hero {
    min-height: 780px;
  }

  .hero-image img {
    object-position: 58% 35%;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, var(--ink) 0%, rgba(16, 14, 11, 0.9) 36%, rgba(16, 14, 11, 0.1) 82%),
      linear-gradient(90deg, rgba(16, 14, 11, 0.32), rgba(16, 14, 11, 0.08));
  }

  .hero-content {
    padding-bottom: 74px;
  }

  .hero-copy {
    max-width: 510px;
    font-size: 18px;
  }

  .section {
    padding: 78px 0;
  }

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

  .feature-card {
    min-height: 220px;
  }

  .closing-card {
    padding: 44px 26px;
    border-radius: 24px;
  }

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

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

  .legal {
    padding-top: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
