:root {
  color-scheme: light;
  --ink: #07110f;
  --ink-2: #152320;
  --paper: #fbfaf6;
  --panel: #fffef9;
  --panel-2: #edf8f2;
  --line: #dbe3dc;
  --muted: #5f6f68;
  --cyan: #22d6cf;
  --green: #41d883;
  --coral: #ff735f;
  --gold: #efbd47;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(7, 17, 15, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 4vw, 54px);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--green);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  font-size: 0.94rem;
}

.nav a,
.header-cta {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.nav a:hover,
.header-cta:hover {
  color: var(--white);
}

.header-cta {
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 6px;
  padding: 10px 14px;
  background: rgba(7, 17, 15, 0.28);
  font-weight: 700;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(760px, 88svh);
  overflow: hidden;
  background: var(--ink);
}

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

.hero-image {
  object-fit: cover;
  object-position: 58% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 17, 15, 0.94) 0%, rgba(7, 17, 15, 0.72) 34%, rgba(7, 17, 15, 0.28) 72%, rgba(7, 17, 15, 0.12) 100%),
    linear-gradient(180deg, rgba(7, 17, 15, 0.44) 0%, rgba(7, 17, 15, 0) 46%, rgba(7, 17, 15, 0.52) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: 112px 0 58px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 16px;
  font-size: 4.8rem;
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.1rem;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

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

.hero-copy {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.28rem;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 13px 18px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--green);
  color: #04100b;
  box-shadow: 0 12px 30px rgba(65, 216, 131, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #54eda0;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.hero-stats div {
  min-width: 148px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(7, 17, 15, 0.42);
}

.hero-stats dt {
  margin-bottom: 3px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.section {
  padding: clamp(68px, 9vw, 118px) 0;
}

.intro-band {
  padding-top: clamp(42px, 7vw, 88px);
  padding-bottom: clamp(46px, 7vw, 84px);
  background: var(--paper);
}

.enter-band {
  padding-top: clamp(46px, 7vw, 84px);
  background: var(--panel);
}

.two-column,
.ownership-layout,
.waitlist-layout,
.fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.feature-card {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(7, 17, 15, 0.06);
}

.feature-chip {
  display: inline-flex;
  margin-bottom: 30px;
  border: 1px solid rgba(34, 214, 207, 0.42);
  border-radius: 6px;
  padding: 5px 8px;
  color: #0f6d67;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.feature-card p,
.timeline p,
.fit-grid li,
.faq-list p,
.ownership-layout p {
  color: var(--muted);
}

.ownership-band {
  background: var(--ink);
  color: var(--white);
}

.ownership-band .section-kicker {
  color: var(--gold);
}

.ownership-layout p {
  color: rgba(255, 255, 255, 0.72);
}

.compare-list {
  display: grid;
  gap: 10px;
}

.compare-list div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.compare-list span {
  color: rgba(255, 255, 255, 0.58);
}

.compare-list strong {
  color: var(--white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  min-height: 280px;
  border-top: 3px solid var(--ink);
  padding: 18px 18px 0 0;
}

.timeline span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--coral);
  font-weight: 900;
}

.fit-band {
  background: var(--panel-2);
}

.check-list,
.x-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.x-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before,
.x-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
}

.check-list li::before {
  content: "+";
  color: #168457;
}

.x-list li::before {
  content: "-";
  color: #b34838;
}

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

.waitlist-layout {
  align-items: center;
}

.contact-note {
  margin-top: 24px;
  border-left: 4px solid var(--coral);
  padding: 12px 0 12px 16px;
  color: var(--muted);
}

.contact-note a {
  color: var(--ink);
  font-weight: 800;
}

.waitlist-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 30px);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.form-title {
  margin-bottom: 18px;
  font-size: 1.3rem;
}

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

label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfd8d0;
  border-radius: 6px;
  padding: 12px 12px;
  background: #ffffff;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(34, 214, 207, 0.58);
  outline-offset: 2px;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.field-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.form-status.is-success {
  color: #126341;
}

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

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

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.site-footer {
  padding: 46px 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr auto;
  gap: 24px;
  align-items: start;
}

.site-footer nav {
  display: flex;
  gap: 16px;
}

.site-footer a {
  color: var(--white);
}

.fineprint {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  font-size: 0.85rem;
}

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

  .two-column,
  .ownership-layout,
  .waitlist-layout,
  .fit-grid,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: absolute;
  }

  h1 {
    font-size: 3.85rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    gap: 10px;
    padding: 16px 14px;
  }

  .brand span:last-child {
    max-width: 104px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-cta {
    padding: 9px 10px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-content {
    padding-top: 96px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .button {
    width: 100%;
  }

  .hero-stats,
  .form-grid,
  .feature-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: grid;
  }

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

  .timeline li {
    min-height: 0;
    padding-bottom: 22px;
  }

  .timeline span {
    margin-bottom: 16px;
  }

  .compare-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
