:root {
  color-scheme: light;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --paper: #f5f5f7;
  --white: #ffffff;
  --panel: #fbfbfd;
  --line: #d2d2d7;
  --blue: #0071e3;
  --blue-dark: #005bbf;
  --black: #000000;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Segoe UI", system-ui, sans-serif;
  line-height: 1.47059;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 48px;
  padding: 0 clamp(18px, 4vw, 54px);
  color: rgba(29, 29, 31, 0.9);
  background: rgba(251, 251, 253, 0.82);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: saturate(180%) blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 650;
}

.brand-mark {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 30px);
  color: rgba(29, 29, 31, 0.78);
  font-size: 0.78rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-call {
  padding: 6px 13px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
}

.nav-call:hover {
  color: var(--white);
  background: var(--blue-dark);
}

.hero {
  position: relative;
  min-height: min(780px, 88vh);
  overflow: hidden;
  display: grid;
  align-items: start;
  padding: 94px clamp(20px, 5vw, 72px) 52px;
  color: var(--ink);
  background: var(--paper);
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.95;
}

.hero-scrim {
  background:
    linear-gradient(180deg, rgba(245, 245, 247, 0.99) 0%, rgba(245, 245, 247, 0.95) 34%, rgba(245, 245, 247, 0.62) 62%, rgba(245, 245, 247, 0.1) 100%),
    linear-gradient(90deg, rgba(245, 245, 247, 0.62), rgba(245, 245, 247, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 9px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow.dark {
  color: var(--blue);
}

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

h1 {
  margin: 0 auto 16px;
  max-width: 980px;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 1.035;
  letter-spacing: 0;
  font-weight: 730;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  max-width: 100%;
  font-size: clamp(2.3rem, 5vw, 4.35rem);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 720;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
  font-weight: 650;
}

.hero-copy {
  width: min(720px, 100%);
  margin: 0 auto 10px;
  color: rgba(29, 29, 31, 0.88);
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  line-height: 1.25;
  text-wrap: balance;
}

.hero-note {
  width: min(980px, 100%);
  margin: 0 auto 30px;
  color: #000000;
  font-size: clamp(1.65rem, 3.15vw, 3rem);
  font-weight: 850;
  line-height: 1.12;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.button:hover,
.small-link:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: none;
}

.button.primary:hover {
  background: var(--blue-dark);
}

.button.secondary {
  color: var(--blue);
  border-color: var(--blue);
  background: rgba(255, 255, 255, 0.44);
}

.button.secondary:hover {
  color: var(--white);
  background: var(--blue);
}

.button.full {
  width: 100%;
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.signal-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.signal-strip span {
  min-width: min(280px, 100%);
  padding: 18px 30px;
  border: 3px solid #000000;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(237, 250, 242, 0.9)),
    rgba(52, 199, 89, 0.12);
  color: #000000;
  box-shadow:
    0 18px 38px rgba(12, 116, 56, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  font-weight: 950;
  text-align: center;
  backdrop-filter: blur(14px);
}

.section-inner {
  width: calc(100% - 40px);
  max-width: 1180px;
  margin: 0 auto;
}

.intro-section,
.content-section,
.band-section,
.waitlist-section {
  padding: clamp(64px, 8vw, 118px) 0;
}

.intro-section {
  background: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.74fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
}

.intro-copy p,
.waitlist-layout > div:first-child p {
  color: var(--muted);
  font-size: 1.13rem;
}

.intro-copy p:last-child,
.waitlist-layout > div:first-child p:last-of-type {
  margin-bottom: 0;
}

.section-heading {
  width: min(820px, 100%);
  margin: 0 auto 36px;
  text-align: center;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.signal-grid article,
.waitlist-form {
  border: 0;
  border-radius: 8px;
  background: var(--panel);
  box-shadow: none;
}

.signal-grid article {
  min-height: 260px;
  padding: 28px;
}

.index {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 650;
}

.signal-grid p,
.site-footer p {
  color: var(--muted);
}

.band-section {
  color: var(--white);
  background: var(--black);
}

.band-section .eyebrow {
  color: #86868b;
}

.band-section h2 {
  color: var(--white);
}

.delivery-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
}

.delivery-layout .section-heading {
  margin: 0;
  text-align: left;
}

.delivery-table {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}

.delivery-table div {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}

.delivery-table strong {
  color: var(--white);
  font-weight: 650;
}

.delivery-table span {
  color: rgba(245, 245, 247, 0.72);
}

.waitlist-section {
  background: var(--white);
}

.waitlist-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 440px);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
}

.waitlist-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 11px 12px;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(0, 113, 227, 0.18);
  border-color: var(--blue);
}

.form-status {
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 600;
}

.small-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue);
  font-weight: 500;
}

.site-footer {
  padding: 34px 0;
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) 1fr;
  gap: 28px;
}

.site-footer strong,
.site-footer a {
  color: var(--ink);
}

.site-footer p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

@media (max-width: 1060px) {
  .signal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
  }

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

  .hero {
    min-height: auto;
    padding-top: 94px;
    padding-bottom: 260px;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(245, 245, 247, 0.99) 0%, rgba(245, 245, 247, 0.92) 44%, rgba(245, 245, 247, 0.24) 100%),
      linear-gradient(90deg, rgba(245, 245, 247, 0.62), rgba(245, 245, 247, 0.2));
  }

  .split,
  .delivery-layout,
  .waitlist-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .delivery-layout .section-heading {
    text-align: center;
  }
}

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

  .brand span:last-child {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-call span {
    display: none;
  }

  .hero {
    display: block;
    padding: 82px 18px 220px;
  }

  .hero-content,
  .section-inner {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  h1 {
    font-size: clamp(2.55rem, 11vw, 3.5rem);
    text-wrap: normal;
  }

  h2 {
    font-size: clamp(2rem, 8.5vw, 2.7rem);
    line-height: 1.08;
    text-wrap: normal;
  }

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

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

  .signal-grid article {
    min-height: 0;
  }

  .index {
    margin-bottom: 24px;
  }

  .delivery-table div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 20px 0;
  }

  .waitlist-form {
    padding: 22px;
  }
}
