@font-face {
  font-family: 'Oswald';
  src: url('marketing-assets/fonts/Oswald-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #211A16;
  --ink-strong: #0A0A0A;
  --muted: #695D51;
  --paper: #FFF8EF;
  --paper-alt: #F4E8D8;
  --surface: #FFFFFF;
  --line: rgba(49, 32, 19, 0.16);
  --accent: #FF7A00;
  --accent-strong: #E85F00;
  --gold: #FFD000;
  --cool: #0E6262;
  --blue: #17324D;
  --shadow: rgba(31, 19, 10, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(14, 98, 98, 0.45);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px 28px;
  background: rgba(255, 248, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-link,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 44px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--muted);
}

.site-nav .nav-primary {
  color: var(--ink-strong);
  border: 1px solid rgba(255, 122, 0, 0.34);
  background: rgba(255, 122, 0, 0.12);
}

.hero {
  position: relative;
  min-height: 84vh;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(10, 10, 10, 0.92), rgba(23, 50, 77, 0.72)),
    #0A0A0A;
  color: #FFF8EF;
}

.hero-mark {
  position: absolute;
  right: -130px;
  top: 28px;
  width: 720px;
  opacity: 0.18;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  min-height: 84vh;
  padding: 86px 28px 96px;
}

.hero-copy {
  max-width: 780px;
}

.hero-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-lockup img {
  width: 108px;
  height: auto;
  display: block;
}

.hero-lockup-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-logo-title {
  font-size: 44px;
  letter-spacing: 2px;
}

.hero-logo-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 5px;
  color: #F5D5A9;
  line-height: 1;
  padding-left: 5px;
}

.eyebrow {
  margin: 0 0 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--cool);
}

.hero .eyebrow {
  color: #FFD000;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  font-size: 72px;
  font-weight: 900;
}

h2 {
  font-size: 46px;
  font-weight: 800;
}

h3 {
  font-size: 26px;
  font-weight: 800;
}

.hero-lede {
  margin: 22px 0 0;
  max-width: 640px;
  color: rgba(255, 248, 239, 0.86);
  font-size: 22px;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  border: 1px solid transparent;
}

.button-primary {
  color: #17100A;
  background: linear-gradient(90deg, var(--accent) 0%, var(--gold) 100%);
}

.button-secondary {
  color: #FFF8EF;
  border-color: rgba(255, 248, 239, 0.34);
  background: rgba(255, 248, 239, 0.08);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 8px 10px;
  border: 1px solid rgba(255, 248, 239, 0.2);
  border-radius: 8px;
  color: rgba(255, 248, 239, 0.78);
  background: rgba(255, 248, 239, 0.07);
}

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

.two-column,
.mission-inner,
.flow-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 54px;
  align-items: start;
}

.story-band {
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
}

.story-band .section-inner {
  padding-top: 42px;
  padding-bottom: 64px;
}

.story-band p,
.mission-section p,
.flow-step span,
.feature-card p {
  color: var(--muted);
  font-size: 18px;
}

.features-section {
  background: var(--paper);
}

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

.feature-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 38px rgba(31, 19, 10, 0.08);
}

.feature-kicker {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #FFF8EF;
  background: var(--blue);
  font-family: 'Oswald', sans-serif;
  font-weight: 800;
}

.flow-section {
  color: #FFF8EF;
  background: var(--ink-strong);
}

.flow-section .eyebrow {
  color: var(--gold);
}

.flow-section h2 {
  color: #FFF8EF;
}

.flow-steps {
  display: grid;
  gap: 14px;
}

.flow-step {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(255, 248, 239, 0.16);
  border-radius: 8px;
  background: rgba(255, 248, 239, 0.06);
}

.flow-step strong {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
}

.flow-step span {
  color: rgba(255, 248, 239, 0.72);
}

.mission-section {
  background: #FFFFFF;
}

.site-footer {
  color: #FFF8EF;
  background: #0A0A0A;
  border-top: 1px solid rgba(255, 248, 239, 0.12);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand img {
  display: block;
  flex: 0 0 auto;
}

.footer-title {
  display: block;
  font-size: 30px;
}

.footer-subtitle {
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  color: rgba(255, 248, 239, 0.72);
}

.document-shell {
  min-height: 70vh;
  background: var(--paper);
}

.document {
  max-width: 880px;
  margin: 0 auto;
  padding: 72px 28px 90px;
}

.document h1 {
  font-size: 54px;
  margin-bottom: 24px;
}

.document h2 {
  font-size: 34px;
  margin-top: 38px;
}

.document h3 {
  font-size: 25px;
  margin-top: 28px;
}

.document p,
.document li {
  color: var(--muted);
  font-size: 18px;
}

.document a {
  color: var(--cool);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.document ul,
.document ol {
  padding-left: 26px;
}

.document code {
  padding: 2px 5px;
  border-radius: 6px;
  background: rgba(14, 98, 98, 0.09);
}

.wm-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  letter-spacing: 1.2px;
  line-height: 1;
  background: linear-gradient(90deg, #ff7a00 0%, #f0a000 55%, #ffd000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.wm-title-dark {
  background: linear-gradient(90deg, #ff6b00 0%, #ff9a00 40%, #ffe033 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wm-sub {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
  color: #4a3020;
  display: block;
  margin-top: 5px;
  padding-left: 3px;
}

.wm-sub-dark {
  color: #c4a882;
}

.header-wordmark {
  font-size: 24px;
}

@media (max-width: 1100px) {
  .hero-inner {
    padding-top: 42px;
    padding-bottom: 54px;
  }

  .hero-logo-title {
    font-size: 38px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 40px;
  }

  .hero-lede {
    font-size: 20px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .site-nav {
    justify-content: flex-start;
  }

  .two-column,
  .mission-inner,
  .flow-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand-link {
    gap: 8px;
  }

  .brand-mark {
    width: 34px;
  }

  .header-wordmark {
    font-size: 20px;
  }

  .site-nav a {
    min-height: 36px;
    padding: 6px 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .section-inner,
  .document,
  .footer-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-inner {
    padding-top: 34px;
    padding-bottom: 42px;
  }

  .hero-lockup img {
    width: 78px;
  }

  .hero-logo-title {
    font-size: 34px;
  }

  .hero-logo-subtitle {
    font-size: 12px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-lede {
    font-size: 19px;
  }

  .hero-actions,
  .hero-points,
  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .hero-points li {
    width: 100%;
  }

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

  .feature-card {
    min-height: auto;
  }

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

  .document h1 {
    font-size: 42px;
  }
}
