:root {
  color-scheme: light;
  --ink: #15231f;
  --muted: #58665f;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --line: rgba(21, 35, 31, 0.16);
  --teal: #14745f;
  --teal-dark: #0e4f41;
  --copper: #b8682d;
  --berry: #7f3150;
  --sky: #d7e8ed;
  --shadow: 0 18px 48px rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 5vw, 64px);
  color: #fff;
}

.brand,
.site-header nav,
.hero-actions,
.footer,
.checks li {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: max-content;
  font-weight: 850;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  background: rgba(21, 35, 31, 0.3);
}

.site-header nav {
  gap: 18px;
  font-size: 14px;
  font-weight: 760;
}

.site-header nav a {
  opacity: 0.92;
}

.nav-action {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 112px clamp(20px, 6vw, 80px) 88px;
  color: #fff;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(10, 22, 19, 0.88), rgba(10, 22, 19, 0.58) 42%, rgba(10, 22, 19, 0.1) 78%),
    linear-gradient(0deg, rgba(10, 22, 19, 0.42), rgba(10, 22, 19, 0.08));
}

.hero-copy {
  position: relative;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd08e;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(54px, 10vw, 118px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 660px;
  margin: 22px 0 0;
  font-size: 23px;
  line-height: 1.3;
  font-weight: 720;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--teal);
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.12);
}

.hero-note {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.5;
}

.intro-band {
  background: var(--ink);
  color: #fff;
  padding: 24px clamp(20px, 6vw, 80px);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.summary-grid div {
  display: grid;
  gap: 4px;
}

.metric {
  font-size: 27px;
  font-weight: 920;
}

.metric-label {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px clamp(20px, 5vw, 56px);
}

.section-heading {
  max-width: 760px;
}

h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 10px 0 0;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: 0;
}

.section-copy,
.track-card p,
.waitlist-copy p,
.format-list span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.track-card {
  min-height: 258px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
}

.track-card:nth-child(2) {
  border-top: 5px solid var(--berry);
}

.track-card:nth-child(1) {
  border-top: 5px solid var(--teal);
}

.track-card:nth-child(3) {
  border-top: 5px solid var(--copper);
}

.track-kicker {
  margin: 0;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.format-section,
.waitlist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.format-section {
  max-width: none;
  background: var(--sky);
}

.format-section > * {
  max-width: 560px;
}

.format-section > :first-child {
  justify-self: end;
}

.format-list {
  display: grid;
  gap: 12px;
}

.format-list div {
  display: grid;
  gap: 5px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(21, 35, 31, 0.2);
}

.format-list strong {
  font-size: 18px;
}

.waitlist-section {
  align-items: stretch;
}

.checks {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.checks li {
  gap: 10px;
  color: var(--ink);
  font-weight: 760;
}

.checks li::before {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(20, 116, 95, 0.13);
}

.waitlist-form {
  display: grid;
  gap: 15px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

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

.waitlist-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 820;
}

.waitlist-form label span {
  font-size: 14px;
}

.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(21, 35, 31, 0.23);
  border-radius: 6px;
  padding: 11px 12px;
  background: #f7f8f4;
  color: var(--ink);
  font: inherit;
}

.waitlist-form textarea {
  resize: vertical;
  line-height: 1.45;
}

.waitlist-form .check {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-weight: 650;
}

.waitlist-form .check input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
}

.waitlist-form button {
  justify-self: start;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 780;
}

.form-status.error {
  color: #9a3412;
}

.footer {
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer span:first-child {
  color: var(--ink);
  font-weight: 850;
}

@media (max-width: 900px) {
  .site-header nav a:not(.nav-action) {
    display: none;
  }

  .hero {
    min-height: 74vh;
    padding-top: 100px;
  }

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

  .summary-grid,
  .track-grid,
  .format-section,
  .waitlist-section,
  .field-row {
    grid-template-columns: 1fr;
  }

  .format-section > *,
  .format-section > :first-child {
    max-width: 100%;
    justify-self: stretch;
  }
}

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

  .brand {
    font-size: 15px;
  }

  .nav-action {
    padding: 8px 10px;
  }

  .hero {
    min-height: 72vh;
    padding: 92px 18px 66px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 32px;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 58px 18px;
  }

  .waitlist-form {
    padding: 18px;
  }

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