:root {
  color-scheme: light dark;
  --ink: #181916;
  --muted: #66665f;
  --paper: #eee8e1;
  --night: #111210;
  --line: rgba(255, 255, 255, 0.14);
  --lime: #c8f43b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.site-header {
  align-items: center;
  color: #ecebe6;
  display: grid;
  gap: clamp(28px, 4vw, 70px);
  grid-template-columns: 1fr auto auto;
  left: 0;
  padding: 36px clamp(32px, 5vw, 88px);
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-size: 18px;
  font-weight: 700;
  gap: 14px;
  letter-spacing: 0.16em;
  justify-self: start;
}

.brand svg {
  fill: none;
  height: 38px;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 3.2;
  width: 48px;
}

.site-header nav {
  display: flex;
  gap: clamp(28px, 3.5vw, 58px);
}

.site-header nav a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  transition: color 160ms ease;
}

.site-header nav a:hover {
  color: #fff;
}

.header-cta {
  border: 1px solid var(--lime);
  border-radius: 999px;
  font-size: 15px;
  justify-self: end;
  padding: 14px 24px;
  transition: background 160ms ease, color 160ms ease;
}

.header-cta:hover {
  background: var(--lime);
  color: var(--ink);
}

.hero {
  align-items: center;
  background:
    radial-gradient(circle at 22% 39%, rgba(255, 253, 249, 0.98) 0, rgba(239, 233, 226, 0.94) 24%, rgba(191, 184, 175, 0.62) 47%, transparent 68%),
    linear-gradient(108deg, #e9e1d8 0%, #d7cfc6 43%, #333330 69%, #111210 100%);
  display: flex;
  min-height: 780px;
  overflow: hidden;
  padding: 130px clamp(32px, 5vw, 88px) 70px;
  position: relative;
}

.hero::after {
  background: linear-gradient(90deg, rgba(217, 207, 197, 0.7), rgba(17, 18, 16, 0.85));
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
}

.hero-copy {
  max-width: 540px;
  position: relative;
  width: 39%;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  color: #52534d;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.16em;
  margin: 0 0 26px;
  text-transform: uppercase;
}

.eyebrow span {
  background: var(--lime);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

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

h1 {
  font-size: clamp(58px, 5.15vw, 90px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin-bottom: 30px;
}

.hero-intro {
  color: var(--muted);
  font-size: clamp(18px, 1.4vw, 23px);
  line-height: 1.45;
  margin-bottom: 38px;
  max-width: 510px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
}

.button {
  align-items: center;
  border: 0;
  border-radius: 15px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 700;
  gap: 18px;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-dark span {
  color: var(--lime);
  font-size: 23px;
}

.text-link {
  color: #5f605a;
  font-size: 16px;
  font-weight: 700;
}

.text-link span {
  display: inline-block;
  margin-left: 10px;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.invite-note {
  color: #7a7a73;
  font-size: 13px;
  margin: 19px 0 0;
}

.hero-visual {
  bottom: 0;
  height: 88%;
  pointer-events: none;
  position: absolute;
  right: -3.5%;
  width: 66%;
}

.hero-visual::after {
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.48), transparent 67%);
  bottom: -7%;
  content: "";
  height: 19%;
  left: 15%;
  position: absolute;
  width: 85%;
}

.hero-visual img {
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  position: relative;
  width: 100%;
  z-index: 1;
}

.beta-chip {
  align-items: center;
  background: rgba(20, 21, 19, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  display: flex;
  font-size: 11px;
  font-weight: 700;
  gap: 14px;
  letter-spacing: 0.15em;
  padding: 12px 12px 12px 18px;
  position: absolute;
  right: 9%;
  top: 17%;
  z-index: 3;
}

.beta-chip span {
  align-items: center;
  background: var(--lime);
  border-radius: 50%;
  color: var(--ink);
  display: flex;
  height: 27px;
  justify-content: center;
  letter-spacing: 0;
  width: 27px;
}

.process {
  background: var(--night);
  color: #f4f2ed;
  padding: 120px clamp(32px, 7vw, 120px) 130px;
}

.section-heading {
  display: grid;
  gap: 0 7vw;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.7fr);
  margin-bottom: 68px;
}

.section-heading .eyebrow {
  color: #9c9d95;
  grid-column: 1 / -1;
}

.section-heading h2,
.beta-copy h2 {
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.02;
  margin-bottom: 0;
  max-width: 780px;
}

.section-heading > p:last-child {
  align-self: end;
  color: #a4a59d;
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 4px;
}

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

.steps li {
  background: #1b1c19;
  border-top: 1px solid var(--line);
  min-height: 300px;
  padding: 34px;
}

.steps li:first-child {
  border-radius: 20px 0 0 20px;
}

.steps li:last-child {
  border-radius: 0 20px 20px 0;
}

.step-number {
  color: var(--lime);
  display: block;
  font-size: 13px;
  letter-spacing: 0.14em;
  margin-bottom: 100px;
}

.steps h3 {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.steps p {
  color: #a4a59d;
  line-height: 1.55;
  margin-bottom: 0;
  max-width: 320px;
}

.beta-section {
  background: var(--paper);
  display: grid;
  gap: clamp(50px, 8vw, 130px);
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  padding: 120px clamp(32px, 7vw, 120px);
}

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

.beta-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin: 30px 0;
  max-width: 640px;
}

.beta-copy ul {
  border-top: 1px solid rgba(24, 25, 22, 0.18);
  list-style: none;
  margin: 0;
  max-width: 640px;
  padding: 0;
}

.beta-copy li {
  border-bottom: 1px solid rgba(24, 25, 22, 0.18);
  font-weight: 600;
  padding: 17px 0 17px 28px;
  position: relative;
}

.beta-copy li::before {
  color: #7ca000;
  content: "\2192";
  left: 0;
  position: absolute;
}

.apply-card {
  align-self: start;
  background: #171815;
  border-radius: 24px;
  color: #f7f5ef;
  padding: clamp(30px, 4vw, 54px);
}

.form-kicker {
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  margin-bottom: 18px;
}

.apply-card h2 {
  font-size: clamp(36px, 3.8vw, 58px);
  font-weight: 500;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
}

.apply-card > p:not(.form-kicker) {
  color: #a9aaa2;
  margin-bottom: 32px;
}

.apply-card form,
.apply-card label {
  display: grid;
  gap: 9px;
}

.apply-card form {
  gap: 19px;
}

.field-row {
  display: grid;
  gap: 14px;
  grid-template-columns: 0.8fr 1.2fr;
}

.apply-card label {
  color: #c8c9c2;
  font-size: 13px;
}

.apply-card input,
.apply-card select {
  background: #242521;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  color: #fff;
  min-height: 52px;
  padding: 0 15px;
  width: 100%;
}

.apply-card input::placeholder {
  color: #74756f;
}

.apply-card input:focus,
.apply-card select:focus {
  border-color: var(--lime);
  outline: none;
}

.button-lime {
  background: var(--lime);
  color: var(--ink);
  margin-top: 4px;
  width: 100%;
}

.button-lime:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-note,
.form-status {
  color: #81827c;
  font-size: 12px;
  margin: -8px 0 0;
  text-align: center;
}

.form-status {
  color: var(--lime);
  min-height: 15px;
}

.form-status[data-error="true"] {
  color: #ff9d8f;
}

.honeypot {
  left: -9999px;
  position: absolute;
}

footer {
  align-items: center;
  background: #0c0d0b;
  border-top: 1px solid var(--line);
  color: #777870;
  display: grid;
  font-size: 13px;
  gap: 24px;
  grid-template-columns: 1fr auto 1fr;
  padding: 38px clamp(32px, 7vw, 120px);
}

footer p {
  margin: 0;
}

footer p:last-child {
  justify-self: end;
}

.brand-light {
  color: #f1f0ea;
  font-size: 14px;
}

.brand-light svg {
  height: 28px;
  width: 36px;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    align-items: start;
    min-height: 900px;
    padding-top: 160px;
  }

  .hero-copy {
    width: 52%;
  }

  .hero-visual {
    height: 67%;
    width: 76%;
  }

  .beta-chip {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 24px 20px;
  }

  .brand {
    font-size: 15px;
    gap: 9px;
  }

  .brand svg {
    height: 31px;
    width: 38px;
  }

  .header-cta {
    color: var(--ink);
    font-size: 13px;
    padding: 11px 16px;
  }

  .hero {
    align-items: start;
    background:
      radial-gradient(circle at 35% 25%, #fffdf9 0, #e6ded5 42%, transparent 70%),
      linear-gradient(160deg, #e9e1d8 0%, #d7cfc6 52%, #171815 76%);
    min-height: 810px;
    padding: 125px 20px 0;
  }

  .hero-copy {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  h1 {
    font-size: clamp(48px, 14vw, 68px);
    margin-bottom: 22px;
  }

  .hero-intro {
    font-size: 17px;
    margin-bottom: 26px;
    max-width: 470px;
  }

  .hero-actions {
    gap: 20px;
  }

  .button {
    min-height: 52px;
    padding: 0 21px;
  }

  .text-link {
    font-size: 14px;
  }

  .hero-visual {
    bottom: -2%;
    height: 43%;
    right: -21%;
    width: 126%;
  }

  .process,
  .beta-section {
    padding: 82px 20px;
  }

  .section-heading,
  .beta-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading > p:last-child {
    margin-top: 24px;
  }

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

  .steps li {
    min-height: 220px;
  }

  .steps li:first-child {
    border-radius: 18px 18px 0 0;
  }

  .steps li:last-child {
    border-radius: 0 0 18px 18px;
  }

  .step-number {
    margin-bottom: 52px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  footer {
    grid-template-columns: 1fr;
    text-align: left;
  }

  footer p:last-child {
    justify-self: start;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
