*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: calc(var(--header-height) + 0.75rem);
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: var(--leading-body);
  color: var(--color-ink);
  background: var(--color-cream);
}

body.is-nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:hover {
  opacity: 0.6;
}

:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  font-weight: 400;
}

.wrap {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  height: var(--header-height);
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-ink);
}

.header-inner {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0 var(--pad-x);
  gap: 0.75rem;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: var(--z-toggle);
  min-height: var(--header-height);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.logo__mark {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--color-red);
  flex: none;
  transition: transform 0.2s var(--ease), color 0.2s var(--ease);
}

.logo:hover {
  opacity: 1;
}

.logo:hover .logo__mark,
.logo:focus-visible .logo__mark {
  color: var(--color-red-deep);
  transform: translate(1px, -1px);
}

.header-start,
.header-end {
  display: flex;
  align-items: center;
  min-width: var(--touch-min);
}

.header-end {
  justify-content: flex-end;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.25rem;
  min-width: 0;
}

.nav-desktop a {
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
}

.header-cta {
  display: none;
  justify-self: end;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  min-height: var(--touch-min);
  align-items: center;
  white-space: nowrap;
}

.menu-toggle {
  justify-self: start;
  position: relative;
  z-index: var(--z-toggle);
  min-width: var(--touch-min);
  height: var(--touch-min);
  margin-left: -0.5rem;
  padding: 0 0.35rem;
  border: 0;
  background: transparent;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
}

.menu-toggle-label {
  pointer-events: none;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  height: 100dvh;
  z-index: var(--z-nav);
  background: var(--color-cream);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 2rem) var(--pad-x) 3rem;
  transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease);
}

.logo,
.menu-toggle {
  isolation: isolate;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
}

.nav-overlay-inner a {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2rem, 8vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-decoration: none;
  min-height: var(--touch-min);
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav-overlay {
    display: none;
  }

  .nav-desktop,
  .header-cta {
    display: inline-flex;
  }
}

.hero {
  margin-top: var(--header-height);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  background: var(--color-red);
  color: var(--color-cream);
  height: calc(100dvh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  max-height: calc(100dvh - var(--header-height));
  overflow: hidden;
}

.hero-copy,
.hero-media {
  grid-area: 1 / 1;
  min-width: 0;
  min-height: 0;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(0.75rem, 2.5vh, 2.5rem);
  padding: clamp(1.15rem, 3.2vh, 4.5rem) var(--pad-x) clamp(1.15rem, 3vh, 4rem);
  background:
    linear-gradient(
      180deg,
      rgb(196 39 31 / 0.96) 0%,
      rgb(196 39 31 / 0.86) 52%,
      rgb(196 39 31 / 0.42) 100%
    );
}

.hero-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 45rem;
}

.hero h1 {
  margin: 0;
  font-size: var(--h1);
}

.hero-lead {
  margin: 0;
  max-width: 30ch;
}

.hero-cta {
  font-size: 0.9375rem;
  font-weight: 500;
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 38.75rem;
}

.stat-row {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: var(--stat);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.stat-row dt,
.stat-row dd {
  margin: 0;
}

.stat-rule {
  flex: 1;
  min-width: 1.5rem;
  border-bottom: 1px solid var(--color-cream);
  transform: translateY(-0.4em);
}

.hero-media {
  z-index: 0;
  background: var(--color-red-deep);
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

@media (min-width: 993px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 40%);
    grid-template-rows: 1fr;
  }

  .hero-copy {
    grid-area: 1 / 1;
    background: var(--color-red);
  }

  .hero-media {
    grid-area: 1 / 2;
  }
}

@media (max-width: 767px) {
  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
    grid-template-rows: auto minmax(11.5rem, 38vw);
    overflow: hidden;
  }

  .hero-copy,
  .hero-media {
    grid-area: auto;
  }

  .hero-copy {
    background: var(--color-red);
    padding: 1.35rem var(--pad-x) 1.25rem;
    gap: 1.25rem;
  }

  .hero-intro {
    gap: 0.85rem;
  }

  .hero-lead {
    max-width: 38ch;
  }

  .stat-row {
    font-size: clamp(1.05rem, 5vw, 1.35rem);
  }

  .hero-media {
    height: auto;
    min-height: 11.5rem;
  }

  .hero-media img {
    min-height: 11.5rem;
    height: 38vw;
    max-height: 16rem;
  }
}

.why {
  padding: var(--section-y) var(--pad-x) 0;
}

.why h2 {
  margin: 0 0 var(--rhythm);
  font-size: var(--h2);
}

.why-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  padding-bottom: var(--rhythm);
}

.why-item {
  width: 100%;
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-ink);
}

@media (max-width: 767px) {
  .why-item {
    padding: 1rem 0;
  }
}

.why-item h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.08;
}

@media (min-width: 577px) {
  .why-item h3 {
    min-height: 2.16em;
  }
}

.why-item p {
  margin: 0;
  max-width: none;
}

@media (min-width: 577px) {
  .why-list {
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(2rem, 4vw, 4rem);
  }

  .why-item:nth-child(odd) {
    padding-right: 0.25rem;
  }

  .why-item:nth-child(even) {
    padding-left: 0.25rem;
  }

  .why-item:last-child {
    grid-column: 1 / -1;
    padding-left: 0;
    padding-right: 0;
  }
}

.vision {
  display: grid;
}

.vision-copy {
  background: var(--color-cyan);
  color: var(--color-cream);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.25rem;
  padding: clamp(1.5rem, 4vw, 4rem) var(--pad-x);
  min-height: 0;
}

.vision h2 {
  margin: 0;
  font-size: clamp(2.1rem, 8vw, 4.5rem);
}

.vision-copy p {
  margin: 0;
  max-width: 36ch;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.vision-media {
  background: var(--color-cyan-deep);
  min-height: 0;
}

.vision-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16 / 10;
}

@media (min-width: 993px) {
  .vision {
    grid-template-columns: 1fr 1fr;
    min-height: min(100dvh, 43.75rem);
  }

  .vision-copy,
  .vision-media {
    min-height: 0;
  }

  .vision-media img {
    height: 100%;
    aspect-ratio: auto;
    min-height: 100%;
  }
}

.features {
  padding: var(--rhythm) var(--pad-x) 0;
}

.features-intro {
  max-width: min(46rem, 100%);
}

.features h2 {
  margin: 0;
  font-size: var(--h2);
}

.features-intro p {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 1.25rem 0 0;
  max-width: 46ch;
}

.feature-list {
  display: grid;
  gap: 0;
  margin-top: var(--rhythm);
  padding-bottom: var(--rhythm);
  border-top: 1px solid var(--color-ink);
}

.feature-item {
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--color-ink);
}

@media (min-width: 577px) {
  .feature-item {
    padding: 1.35rem 0;
  }
}

.feature-item h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.08;
}

.feature-item p {
  margin: 0;
  max-width: 52ch;
}

@media (min-width: 577px) {
  .feature-list {
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(1.5rem, 4vw, 4rem);
  }

  .feature-item:nth-child(odd) {
    padding-right: 0.75rem;
  }

  .feature-item:nth-child(even) {
    padding-left: 0.75rem;
  }
}

.compare {
  display: grid;
  margin-top: var(--rhythm);
}

.compare-pane {
  padding: clamp(1.5rem, 4vw, 4rem) var(--pad-x);
  display: grid;
  grid-template-rows: auto auto repeat(3, minmax(3.5rem, auto));
}

.compare-hot {
  background: var(--color-red);
  color: var(--color-cream);
}

.compare-cold {
  background: var(--color-ink);
  color: var(--color-cream);
}

.compare h2,
.compare h3 {
  margin: 0;
  font-size: clamp(1.85rem, 6vw, 3.5rem);
}

.compare-pane > p {
  margin: 0.85rem 0 1.1rem;
  max-width: 40ch;
}

.compare-list {
  display: contents;
  list-style: none;
  margin: 0;
  padding: 0;
}

.compare-list li {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0.9rem 0;
  border-top: 1px solid currentColor;
}

@media (min-width: 577px) {
  .compare-pane > p {
    min-height: 4.65em;
    margin: 1.25rem 0 1.75rem;
  }

  .compare-list li {
    min-height: 4.25rem;
    padding: 1.15rem 0;
  }
}

.compare-list li:last-child {
  border-bottom: 1px solid currentColor;
}

@media (min-width: 577px) {
  .compare {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto repeat(3, minmax(4.25rem, auto));
  }

  .compare-pane {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 1 / -1;
    min-height: 0;
  }
}

.statement {
  padding: var(--rhythm) var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}

.statement p {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 500;
  line-height: 1.4;
  max-width: 42rem;
}

.mark {
  border-bottom: 2px solid var(--color-red);
  padding-bottom: 2px;
}

.privacy {
  display: grid;
}

.privacy-copy {
  padding: var(--rhythm) var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.privacy h2 {
  margin: 0;
  font-size: var(--h2-xl);
}

.privacy-copy p {
  margin: 1rem 0 0;
  max-width: 46ch;
  line-height: 1.6;
}

.privacy-copy p:first-of-type {
  margin-top: 1.25rem;
}

.privacy-media {
  background: var(--color-ink);
}

.privacy-frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.privacy-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 993px) {
  .privacy {
    grid-template-columns: 1fr 1fr;
  }

  .privacy-copy {
    padding: var(--rhythm) var(--pad-x);
  }

  .privacy-copy p:first-of-type {
    margin-top: 2.5rem;
  }

  .privacy-media,
  .privacy-frame,
  .privacy-frame img {
    min-height: 100%;
    height: 100%;
    aspect-ratio: auto;
  }
}

.audience {
  display: grid;
}

.audience article {
  padding: clamp(1.35rem, 4vw, 3.5rem) var(--pad-x);
  color: var(--color-cream);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.85rem;
}

@media (min-width: 993px) {
  .audience article {
    gap: 1.5rem;
    min-height: min(70dvh, 35rem);
  }
}

.audience h2 {
  margin: 0;
  font-size: var(--audience);
  line-height: 0.98;
}

.audience p {
  margin: 0;
  max-width: 34ch;
}

.audience a {
  font-size: 0.875rem;
  font-weight: 500;
  align-self: flex-start;
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
}

.aud-holders {
  background: var(--color-red);
}

.aud-dao {
  background: var(--color-olive);
}

.aud-biz {
  background: var(--color-cyan);
}

@media (min-width: 577px) {
  .audience {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 993px) {
  .audience {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .audience article {
    min-height: min(70dvh, 35rem);
  }
}

.faq {
  padding: var(--rhythm) var(--pad-x) 0;
}

.faq h2 {
  margin: 0 0 var(--rhythm);
  font-size: var(--h2);
}

.faq-grid {
  display: grid;
  gap: 0 5rem;
  max-width: 87.5rem;
}

.faq-item {
  border-bottom: 1px solid var(--color-ink);
}

.faq-item button {
  display: flex;
  gap: 1rem;
  width: 100%;
  padding: 1.5rem 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
  min-height: var(--touch-min);
  align-items: flex-start;
}

.faq-bar {
  width: 2px;
  align-self: stretch;
  background: transparent;
  flex-shrink: 0;
}

.faq-item.is-open .faq-bar {
  background: var(--color-red);
}

.faq-q {
  flex: 1;
}

.faq-sign {
  font-size: 0.9375rem;
  line-height: 1.4;
}

.faq-a {
  display: none;
  margin: 0;
  padding: 0 2.5rem 1.75rem 1.125rem;
  max-width: 48ch;
  font-size: 0.875rem;
  line-height: 1.6;
}

.faq-item.is-open .faq-a {
  display: block;
}

@media (min-width: 577px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.reserve {
  padding: var(--rhythm) var(--pad-x) var(--section-y);
}

.reserve h2 {
  margin: 0;
  font-size: var(--h-reserve);
}

.reserve-fields {
  display: grid;
  gap: 1.25rem;
  margin-top: var(--rhythm);
  max-width: 40rem;
}

.reserve-fields p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.reserve-fields label,
.reserve-interest legend {
  font-size: 0.75rem;
  font-weight: 500;
}

.reserve-form input[type="email"],
.reserve-form select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--color-ink);
  border-radius: var(--radius);
  padding: 0.75rem 0;
  outline: none;
  min-height: var(--touch-min);
}

.reserve-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--color-ink) 50%), linear-gradient(135deg, var(--color-ink) 50%, transparent 50%);
  background-position: calc(100% - 12px) 50%, calc(100% - 7px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 1.5rem;
}

.reserve-interest {
  border: 0;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 40rem;
}

.reserve-interest label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: var(--touch-min);
  font-size: 0.9375rem;
  cursor: pointer;
}

.reserve-interest input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--color-red);
}

.reserve-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.reserve-form input::placeholder {
  color: var(--color-ink);
  opacity: 0.45;
}

.reserve-form button {
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-ink);
  background: transparent;
  border: 0;
  padding: 0;
  min-height: var(--touch-min);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.reserve-form button:hover {
  opacity: 0.6;
}

.form-note {
  margin: 0;
  font-size: 0.8125rem;
}

.reserve-form.is-error .form-note {
  color: var(--color-red);
}

.reserve-hint,
.reserve-success {
  margin: 1.5rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
}

.reserve.is-success .reserve-form,
.reserve.is-success .reserve-hint {
  display: none;
}

.reserve-success {
  display: none;
}

.reserve.is-success .reserve-success {
  display: block;
}

@media (min-width: 577px) {
  .reserve-fields {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.site-footer {
  background: var(--color-ink);
  color: var(--color-cream);
  padding: clamp(2rem, 5vw, 5rem) var(--pad-x) 1.35rem;
}

.footer-top {
  display: grid;
  gap: 1.5rem;
}

.footer-mark {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.85rem, 6vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.footer-tagline {
  margin: 0.5rem 0 0;
  max-width: 36ch;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem 1.15rem;
  width: 100%;
}

.footer-cols h2 {
  margin: 0 0 0.45rem;
  font-size: 0.6875rem;
  font-weight: 500;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-cols ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: 0.8125rem;
}

.footer-cols a {
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-copy {
  border-top: 1px solid rgb(239 236 228 / 0.35);
  margin-top: 1.5rem;
  padding-top: 1rem;
  font-size: 0.6875rem;
  line-height: 1.45;
  opacity: 0.75;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: minmax(12rem, 1fr) auto;
    align-items: start;
    gap: 3rem;
  }

  .footer-cols {
    gap: 2rem 3.5rem;
    width: auto;
  }

  .footer-cols a {
    min-height: var(--touch-min);
  }

  .footer-copy {
    margin-top: clamp(2.5rem, 5vw, 4rem);
    padding-top: 1.25rem;
    font-size: 0.75rem;
  }
}

@media (min-width: 1441px) {
  .site-header .header-inner,
  .why,
  .features,
  .statement,
  .faq,
  .reserve,
  .site-footer {
    max-width: 90rem;
    margin-inline: auto;
  }

}

@media (prefers-reduced-motion: reduce) {
  .nav-overlay {
    transition: none;
  }
}
