:root {
  --canvas: #000000;
  --surface: #0a0a0a;
  --surface-pressed: #141414;
  --text-primary: rgba(255, 255, 255, 1);
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-tertiary: rgba(255, 255, 255, 0.55);
  --text-quaternary: rgba(255, 255, 255, 0.5);
  --hairline: rgba(255, 255, 255, 0.15);
  --border-subtle: rgba(255, 255, 255, 0.25);
  --accent: #2251ff;
  --container: 1280px;
  --header-height: 80px;
  --hero-top-space: clamp(40px, 7vw, 72px);
  --hero-measure: 840px;
  --copy-measure: 608px;
  --section-measure: 768px;
  --section-text-size: 16px;
  --section-title-size: clamp(40px, 5vw, 48px);
  --section-gap-tight: 24px;
  --section-gap: clamp(56px, 8vw, 80px);
  --page-padding: clamp(24px, 4vw, 48px);
  --gutter: 40px;
  --headline: Bower, "Freight Display Pro", Georgia, "Times New Roman", serif;
  --body: Lato, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "SF Mono", Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--text-primary);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: normal;
}

body.offer-dialog-open,
body.mobile-menu-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

p {
  margin: 0;
  color: var(--text-secondary);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: #ffffff;
  color: #000000;
}

.skip-link:focus {
  top: 1rem;
}

.site-shell {
  width: min(var(--container), calc(100% - (var(--page-padding) * 2)));
  margin: 0 auto;
}

.page-main {
  padding-bottom: var(--section-gap);
  overflow-x: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.96);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-height);
  padding: 0;
  border-bottom: 0.5px solid var(--hairline);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--headline);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 32px;
}

.brand img {
  display: block;
  width: auto;
  height: 32px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex: 1;
}

.site-nav a,
.nav-cta,
.mobile-nav-toggle {
  font-family: var(--body);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.75);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0 0 4px;
  border-bottom: 0.5px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus-visible,
.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
  color: var(--text-primary);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

.nav-cta,
.cta-link,
.button-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 0 0 4px;
  border-bottom: 0.5px solid #ffffff;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--text-primary);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.cta-link:hover,
.cta-link:focus-visible,
.button-link:hover,
.button-link:focus-visible {
  opacity: 0.8;
}

.button-link {
  appearance: none;
  background: transparent;
  border: none;
  border-bottom: 0.5px solid #ffffff;
  border-radius: 0;
  cursor: pointer;
}

.mobile-nav-toggle {
  display: none;
  padding: 0;
  border: none;
  background: transparent;
}

.mobile-nav-panel {
  display: none;
}

.section {
  padding: var(--section-gap) 0 0;
}

.section-shell {
  padding-top: 40px;
  border-top: 0.5px solid var(--hairline);
}

.page-main > .section:not(.hero) .section-shell {
  width: min(var(--section-measure), calc(100% - (var(--page-padding) * 2)));
  max-width: var(--section-measure);
  margin-inline: auto;
  padding-top: 24px;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  padding-top: var(--hero-top-space);
}

.hero .section-shell {
  border-top: none;
  padding-top: 0;
  width: min(var(--container), calc(100% - (var(--page-padding) * 2)));
  max-width: var(--container);
  min-height: calc(100vh - var(--header-height) - var(--hero-top-space));
  min-height: calc(100dvh - var(--header-height) - var(--hero-top-space));
}

.hero-copy {
  display: grid;
  gap: 24px;
  max-width: var(--hero-measure);
}

.hero-copy > .cta-link {
  width: fit-content;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--headline);
  font-size: clamp(56px, 8vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.2px;
  max-width: none;
  text-wrap: balance;
}

.hero-lead {
  max-width: var(--copy-measure);
  font-size: var(--section-text-size);
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-word;
}

.section-intro,
.lede-block,
.section-headline-block,
.faq-head,
.offer-intake-copy {
  display: grid;
  gap: var(--section-gap-tight);
  width: 100%;
  max-width: none;
  margin: 0;
  justify-items: stretch;
}

.section-intro-title,
.lede-block h2,
.section-headline-block h2,
.faq-head h2,
.offer-intake-copy h2 {
  margin: 0;
  font-family: var(--headline);
  font-size: var(--section-title-size);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.8px;
  max-width: 100%;
  text-wrap: balance;
}

.section-intro-body,
.lede-block p,
.section-headline-block p,
.faq-head > p {
  width: 100%;
  max-width: none;
  font-size: var(--section-text-size);
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-word;
}

.section-actions {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin-top: 16px;
}

.faq-shell {
  display: grid;
  gap: 32px;
}

.faq-list {
  width: 100%;
  border-top: 0.5px solid var(--hairline);
}

.faq-item {
  border-bottom: 0.5px solid var(--hairline);
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--text-tertiary);
  font-size: 24px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
  color: var(--text-primary);
}

.faq-item h3 {
  margin: 0;
  font-family: var(--headline);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.2px;
  text-wrap: balance;
}

.faq-answer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 24px;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
  text-align: justify;
  text-justify: inter-word;
}

.site-footer {
  padding: clamp(72px, 9vw, 112px) 0 28px;
  background: #000000;
  color: #ffffff;
}

.site-footer-inner {
  display: grid;
  gap: 28px;
}

.site-footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
  padding-top: 28px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.15);
}

.site-footer-brand-name {
  margin: 0;
}

.site-footer-brand {
  display: inline-flex;
  align-items: flex-start;
}

.site-footer-brand img {
  display: block;
  width: min(100%, 336px);
  height: auto;
}

.site-footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 180px));
  gap: 32px;
  align-items: start;
  justify-content: end;
}

.site-footer-group {
  display: grid;
  align-content: start;
  gap: 14px;
}

.site-footer-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-family: var(--body);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #2251ff;
}

.site-footer-links {
  display: grid;
  gap: 12px;
}

.site-footer-links a {
  width: fit-content;
  padding-bottom: 4px;
  border-bottom: 0.5px solid transparent;
  font-family: var(--body);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: normal;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.8);
}

.site-footer-bottom {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 24px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.15);
}

.site-footer-meta {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 16px;
}

@media (max-width: 980px) {
  .site-nav,
  .site-header > .site-shell > .nav-cta {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .mobile-nav-panel {
    position: absolute;
    inset: 100% 0 auto;
    display: block;
    background: #000000;
  }

  .mobile-nav-panel[hidden] {
    display: none;
  }

  .mobile-nav-panel-inner {
    width: min(var(--container), calc(100% - (var(--page-padding) * 2)));
    margin: 0 auto;
    padding: 24px 0 32px;
    border-bottom: 0.5px solid var(--hairline);
  }

  .mobile-nav-list {
    display: grid;
    gap: 16px;
  }

  .mobile-nav-footer {
    margin-top: 24px;
  }

  .mobile-nav-link {
    width: fit-content;
    font-family: var(--headline);
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.64px;
  }

  .hero {
    min-height: auto;
  }

  .hero .section-shell {
    padding-top: 0;
  }

  .site-footer-top {
    grid-template-columns: 1fr;
  }

  .site-footer-nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    justify-content: start;
  }

  .site-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 24px;
  }

  .hero-copy h1 {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -0.64px;
  }

  .section-intro-title,
  .lede-block h2,
  .section-headline-block h2,
  .faq-head h2,
  .offer-intake-copy h2 {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.64px;
  }

  .hero-lead,
  .section-intro-body,
  .lede-block p,
  .section-headline-block p,
  .faq-head > p,
  .faq-answer {
    font-size: 16px;
    line-height: 24px;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
  }

  .faq-item summary {
    gap: 16px;
    padding: 24px 0;
  }

  .faq-item summary::after {
    font-size: 24px;
  }

  .faq-item h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .site-footer-nav-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .hero-copy h1 {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.64px;
  }

  .section-intro-title,
  .lede-block h2,
  .section-headline-block h2,
  .faq-head h2,
  .offer-intake-copy h2 {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.32px;
  }

  .site-footer-brand img {
    width: min(100%, 224px);
  }
}
