:root {
  color-scheme: light;
  --black: #000;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --grey: #f5f5f7;
  --grey-dark: #d2d2d7;
  --white: #fff;
  --focus: #0071e3;
  --danger: #b42318;
  --success: #157347;
  --radius: 28px;
  --radius-small: 16px;
  --max: 1180px;
  --font-display: "SF Pro Display", "SF UI Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-display);
  font-synthesis: none;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

button,
input,
textarea { font: inherit; }

button { cursor: pointer; }

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--black);
  transform: translateY(-170%);
}

.skip-link:focus { transform: translateY(0); }

.review-strip {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  color: var(--white);
  background: var(--black);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.stars {
  display: inline-flex;
  gap: 2px;
}

.stars i {
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  color: var(--black);
  background: var(--white);
  font-size: 10px;
  font-style: normal;
  line-height: 1;
}

.review-divider { color: rgba(255, 255, 255, 0.54); }

.section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  padding-block: 84px 92px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin: 0 0 24px;
  padding: 8px 15px;
  border: 1px solid var(--grey-dark);
  border-radius: 999px;
  color: var(--ink);
  background: var(--grey);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 {
  max-width: 1030px;
  margin: 0 auto;
  font-size: clamp(44px, 6.6vw, 76px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.application-card {
  max-width: 920px;
  margin: 58px auto 0;
  padding: clamp(22px, 4vw, 44px);
  border: 0;
  border-radius: var(--radius);
  text-align: left;
  background: var(--grey);
}

.form-grid {
  display: grid;
  gap: 18px;
}

.field { min-width: 0; }

.field label {
  display: block;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.field label span {
  color: var(--muted);
  font-weight: 400;
}

.field input,
.field textarea {
  display: block;
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--grey-dark);
  border-radius: 14px;
  outline: 0;
  color: var(--ink);
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 138px;
  resize: vertical;
}

.field input:hover,
.field textarea:hover { border-color: #a1a1a6; }

.field input:focus,
.field textarea:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.13);
}

.field [aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.09);
}

.field-error,
.form-error {
  min-height: 18px;
  margin: 6px 0 0;
  color: var(--danger);
  font-size: 12px;
}

.field-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.field-meta > span {
  padding-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.turnstile-wrap {
  min-height: 68px;
  margin-top: 4px;
}

.verification-loading {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.form-error { margin: -4px 0 12px; }

.submit-button {
  display: flex;
  width: 100%;
  min-height: 98px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  border: 0;
  border-radius: 16px;
  color: var(--white);
  background: var(--black);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.submit-button:hover {
  background: #202020;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.submit-button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.submit-button > span {
  max-width: 520px;
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 400;
  line-height: 1.25;
  text-align: left;
}

.submit-button strong {
  flex: none;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  white-space: nowrap;
}

.privacy-note {
  max-width: 690px;
  margin: 15px auto 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.privacy-note a {
  color: var(--ink);
  text-underline-offset: 3px;
}

.success-state {
  align-items: flex-start;
  gap: 15px;
  padding: 22px;
  border: 1px solid rgba(21, 115, 71, 0.25);
  border-radius: 16px;
  background: #edf7f1;
}

.success-state:not([hidden]) { display: flex; }
.success-state h2 { margin: 0 0 5px; font-size: 24px; }
.success-state p { margin: 0; color: #3e5c49; }

.success-mark {
  display: grid;
  width: 36px;
  height: 36px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--success);
  font-weight: 700;
}

.lifestyle {
  width: min(1380px, calc(100% - 24px));
  padding-bottom: 0;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
}

.lifestyle-grid video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 690px;
  object-fit: cover;
  background: var(--black);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1440px, 100%);
  margin: 8px auto 0;
  padding: 38px 12px;
  border-block: 1px solid #242424;
  background: var(--black);
}

.proof-item {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  padding: 4px 12px;
  text-align: center;
}

.proof-item + .proof-item { border-left: 1px solid #252525; }

.proof-item strong {
  color: var(--white);
  font-size: clamp(32px, 5.4vw, 60px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.045em;
}

.proof-item span {
  margin-top: 12px;
  color: #a1a1a6;
  font-size: clamp(10px, 1.6vw, 16px);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.results {
  width: 100%;
  padding: 104px max(20px, calc((100% - var(--max)) / 2)) 116px;
  color: var(--white);
  background: var(--black);
  text-align: center;
}

.results > h2,
.process-intro h2 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.results > h2 span {
  display: block;
  color: var(--white);
}

.earnings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 54px auto 0;
}

.earnings-placeholder {
  position: relative;
  display: flex;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid #303030;
  border-radius: var(--radius);
  text-align: left;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.14)),
    radial-gradient(circle at 28% 18%, #2b2b2d, #101010 48%, #050505 78%);
}

.earnings-placeholder::before {
  position: absolute;
  top: 22%;
  left: 50%;
  width: 34%;
  aspect-ratio: 1;
  border: 1px solid #3b3b3d;
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.earnings-placeholder > span {
  color: #a1a1a6;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.earnings-placeholder strong {
  margin-top: 7px;
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
}

.earnings-placeholder p {
  margin: 5px 0 0;
  color: #86868b;
  font-size: 13px;
}

.process {
  width: 100%;
  padding: 112px max(20px, calc((100% - var(--max)) / 2));
  background: var(--grey);
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.process-grid li {
  min-height: 265px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
}

.process-grid li > span {
  display: block;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.process-grid p {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.47;
}

.process-grid strong { font-weight: 600; }

footer {
  padding: 58px max(20px, calc((100% - var(--max)) / 2)) 30px;
  border-top: 1px solid #e5e5e7;
  background: var(--white);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.footer-inner strong {
  font-size: 21px;
  font-weight: 600;
}

.footer-inner p {
  margin: 4px 0 0;
  color: var(--muted);
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
}

.footer-inner a {
  color: var(--ink);
  font-size: 14px;
  text-underline-offset: 4px;
}

.disclaimer {
  max-width: 930px;
  margin: 42px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.copyright {
  margin: 18px 0 0;
  color: #86868b;
  font-size: 12px;
}

@media (min-width: 700px) {
  .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field-wide { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  .hero { padding-top: 66px; }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { flex-direction: column; }
  .footer-inner nav { flex-direction: column; justify-content: flex-start; }
}

@media (max-width: 560px) {
  .review-strip {
    gap: 5px;
    font-size: 12px;
  }

  .stars { gap: 1px; }

  .stars i {
    width: 13px;
    height: 13px;
    font-size: 8px;
  }

  .section-shell { width: calc(100% - 24px); }

  .hero { padding-block: 52px 62px; }

  .eyebrow {
    min-height: 34px;
    margin-bottom: 20px;
    padding: 7px 12px;
    font-size: 12px;
  }

  h1 {
    font-size: clamp(39px, 12vw, 52px);
    line-height: 1.02;
  }

  .application-card {
    margin-top: 38px;
    padding: 19px;
    border-radius: 22px;
  }

  .field input {
    min-height: 56px;
    font-size: 16px;
  }

  .field textarea { font-size: 16px; }

  .submit-button {
    min-height: 116px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 19px;
  }

  .submit-button strong { font-size: 21px; }

  .lifestyle { width: calc(100% - 8px); }

  .lifestyle-grid {
    gap: 3px;
    border-radius: 20px;
  }

  .proof-strip {
    margin-top: 5px;
    padding-block: 30px;
  }

  .proof-item { padding-inline: 7px; }
  .proof-item strong { font-size: clamp(29px, 9.5vw, 42px); }
  .proof-item span { margin-top: 9px; font-size: 9px; }

  .results {
    padding-block: 78px 88px;
    padding-inline: 12px;
  }

  .results > h2,
  .process-intro h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .earnings-grid {
    gap: 7px;
    margin-top: 40px;
  }

  .earnings-placeholder {
    padding: 11px;
    border-radius: 15px;
  }

  .earnings-placeholder > span { font-size: 9px; }
  .earnings-placeholder strong { font-size: 13px; }
  .earnings-placeholder p { display: none; }

  .process {
    padding-block: 82px;
    padding-inline: 12px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 40px;
  }

  .process-grid li {
    min-height: 0;
    padding: 24px;
    border-radius: 22px;
  }

  .process-grid li > span { margin-bottom: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
