:root {
  --black: #050504;
  --ink: #14110e;
  --ivory: #f4eadc;
  --paper: #fbf6ee;
  --muted: #887a6d;
  --line: rgba(20, 17, 14, .16);
  --line-dark: rgba(244, 234, 220, .24);
  --oxblood: #650b0b;
  --metal: #c9a46a;
  --shadow: 0 28px 90px rgba(5, 5, 4, .26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::selection {
  color: var(--ivory);
  background: var(--oxblood);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 58px);
  color: var(--ivory);
  background: linear-gradient(180deg, rgba(5, 5, 4, .78), rgba(5, 5, 4, .18) 72%, transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ivory);
  background: rgba(244, 234, 220, .08);
  border: 1px solid var(--line-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
}

.brand-text strong,
.footer strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.brand-text small {
  display: block;
  margin-top: 2px;
  color: rgba(244, 234, 220, .72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  align-items: center;
  color: rgba(244, 234, 220, .82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ivory);
  background: var(--black);
}

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

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 4, .84) 0%, rgba(5, 5, 4, .5) 36%, rgba(5, 5, 4, .05) 66%),
    linear-gradient(0deg, rgba(5, 5, 4, .82) 0%, rgba(5, 5, 4, .04) 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 138px clamp(20px, 5vw, 72px) 86px;
}

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

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

h1 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 9vw, 128px);
  font-weight: 400;
  line-height: .86;
  letter-spacing: 0;
}

h2 {
  max-width: 980px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 6vw, 80px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.05;
}

.lead {
  max-width: 640px;
  color: rgba(244, 234, 220, .84);
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.34;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid currentColor;
  border-radius: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-light {
  color: var(--black);
  background: var(--ivory);
  border-color: var(--ivory);
}

.btn-ghost {
  color: var(--ivory);
  background: rgba(244, 234, 220, .04);
  border-color: rgba(244, 234, 220, .52);
}

.btn-dark {
  color: var(--ivory);
  background: var(--black);
  border-color: var(--black);
}

.hero-rail {
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  bottom: 88px;
  z-index: 1;
  display: grid;
  gap: 20px;
  width: min(230px, 28vw);
  color: rgba(244, 234, 220, .82);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero-rail span {
  padding-top: 17px;
  border-top: 1px solid rgba(244, 234, 220, .34);
}

.band {
  padding: clamp(72px, 11vw, 142px) clamp(20px, 5vw, 76px);
}

.house {
  background: var(--paper);
}

.section-heading {
  max-width: 1040px;
  margin-bottom: clamp(34px, 6vw, 68px);
}

.section-heading h2 {
  color: var(--ink);
}

.house-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.module,
.proof-item {
  min-height: 280px;
  padding: clamp(24px, 4vw, 42px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .28);
}

.module-number {
  display: block;
  margin-bottom: 64px;
  color: var(--oxblood);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2em;
}

.module p,
.proof-item p,
.visual-copy p,
.waitlist-copy p,
.footer p {
  color: var(--muted);
  font-size: 17px;
}

.visual-code {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(30px, 7vw, 100px);
  align-items: end;
  color: var(--ivory);
  background:
    radial-gradient(circle at 82% 16%, rgba(101, 11, 11, .5), transparent 36%),
    linear-gradient(135deg, #050504, #17100c 52%, #080705);
}

.visual-copy p {
  max-width: 650px;
  color: rgba(244, 234, 220, .72);
}

.swatches {
  display: grid;
  gap: 0;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}

.swatches span {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--ivory);
  background: var(--swatch);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.swatches span:nth-child(2) {
  color: var(--ink);
}

.proof {
  background: #fffaf3;
}

.proof-item {
  background: transparent;
}

.proof-item.positive {
  background: rgba(201, 164, 106, .1);
}

.proof-item.negative {
  background: rgba(101, 11, 11, .07);
}

.waitlist {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(320px, .72fr);
  gap: clamp(34px, 8vw, 110px);
  align-items: start;
  color: var(--ivory);
  background: var(--black);
}

.waitlist h2 {
  color: var(--ivory);
}

.waitlist-copy p {
  max-width: 580px;
  color: rgba(244, 234, 220, .72);
}

.waitlist-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.waitlist-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fffaf3;
  border: 1px solid rgba(20, 17, 14, .22);
  border-radius: 0;
  font: inherit;
  font-size: 16px;
  text-transform: none;
}

input:focus,
select:focus {
  outline: 2px solid rgba(101, 11, 11, .45);
  outline-offset: 2px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 76px);
  color: rgba(244, 234, 220, .82);
  background: #080706;
  border-top: 1px solid rgba(244, 234, 220, .14);
}

.footer p {
  margin-bottom: 0;
  color: rgba(244, 234, 220, .58);
}

.footer a {
  color: var(--ivory);
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    min-height: 68px;
  }

  .brand-text small {
    display: none;
  }

  .nav {
    gap: 12px;
    font-size: 10px;
    letter-spacing: .1em;
  }

  .hero {
    min-height: 760px;
  }

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

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 5, 4, .66), rgba(5, 5, 4, .2) 35%, rgba(5, 5, 4, .86) 78%),
      linear-gradient(90deg, rgba(5, 5, 4, .72), rgba(5, 5, 4, .18));
  }

  .hero-content {
    padding: 112px 20px 48px;
  }

  .hero-rail {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    grid-template-columns: 1fr;
    padding: 0 20px 34px;
  }

  .house-grid,
  .proof-grid,
  .visual-code,
  .waitlist {
    grid-template-columns: 1fr;
  }

  .module,
  .proof-item {
    min-height: 220px;
  }

  .module-number {
    margin-bottom: 36px;
  }

  .footer {
    display: grid;
  }
}

@media (max-width: 560px) {
  .nav a:nth-child(2) {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text strong {
    font-size: 17px;
  }

  .hero {
    min-height: 720px;
  }

  h1 {
    font-size: clamp(50px, 16vw, 72px);
  }

  .lead {
    font-size: 18px;
  }

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

  .band {
    padding-block: 64px;
  }
}
