@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("assets/fonts/outfit-100.ttf") format("truetype");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("assets/fonts/outfit-200.ttf") format("truetype");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("assets/fonts/outfit-300.ttf") format("truetype");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/outfit-400.ttf") format("truetype");
}

:root {
  color-scheme: dark;
  --ink: #090806;
  --panel: #15120d;
  --panel-strong: #211a11;
  --gold: #d5aa55;
  --gold-soft: #f1d28a;
  --line: rgba(213, 170, 85, 0.24);
  --text: #f5efe2;
  --muted: #bdb3a2;
  --danger: #e09843;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(213, 170, 85, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(213, 170, 85, 0.04) 1px, transparent 1px),
    var(--ink);
  background-size: 72px 72px;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 60px);
  background: rgba(9, 8, 6, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 200;
}

.brand img {
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.34);
}

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

nav a {
  text-decoration: none;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--gold-soft);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  padding: clamp(88px, 13vh, 140px) clamp(20px, 7vw, 88px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.92), rgba(9, 8, 6, 0.72) 45%, rgba(9, 8, 6, 0.34)),
    linear-gradient(0deg, rgba(9, 8, 6, 0.94), transparent 56%);
  z-index: 1;
}

.hero-icon {
  position: absolute;
  right: clamp(-160px, -9vw, -40px);
  top: 50%;
  width: min(76vw, 720px);
  height: auto;
  transform: translateY(-48%) rotate(-7deg);
  opacity: 0.48;
  filter: saturate(0.9) contrast(1.08);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--gold-soft);
}

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

h1 {
  margin-bottom: 12px;
  font-size: clamp(76px, 13vw, 168px);
  line-height: 0.86;
  font-weight: 100;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.96;
  font-weight: 100;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 200;
  letter-spacing: 0;
}

p,
li {
  font-size: 17px;
  line-height: 1.58;
  color: var(--muted);
}

.lede {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.08;
  font-weight: 200;
  color: var(--text);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
}

.button.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #181007;
}

.button.secondary {
  background: rgba(245, 239, 226, 0.045);
}

.band,
.split,
.document {
  padding: clamp(56px, 9vw, 112px) clamp(20px, 7vw, 88px);
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

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

.grid {
  display: grid;
  gap: 14px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

article {
  min-height: 260px;
  padding: 22px;
  background: color-mix(in srgb, var(--panel) 88%, black);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.number {
  display: block;
  margin-bottom: 62px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 300;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.copy-stack p {
  margin-bottom: 18px;
}

.wide-copy {
  max-width: 960px;
  font-size: 21px;
  line-height: 1.45;
}

.compact {
  padding-bottom: clamp(70px, 12vw, 140px);
}

.document {
  max-width: 960px;
  margin: 0 auto;
}

.document-header {
  margin-bottom: 42px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.document-header h1 {
  font-size: clamp(56px, 10vw, 112px);
}

.document-header p {
  max-width: 740px;
  font-size: 22px;
  line-height: 1.35;
}

.document-body h2 {
  margin-top: 38px;
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 200;
}

.document-body ul {
  padding-left: 22px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 7vw, 88px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 820px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-icon {
    right: -180px;
    width: 560px;
    opacity: 0.32;
  }

  .grid.three,
  .split {
    grid-template-columns: 1fr;
  }

  article {
    min-height: 0;
  }

  .number {
    margin-bottom: 34px;
  }
}
