:root {
  color-scheme: light;
  --black: #000;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --grey: #f5f5f7;
  --grey-dark: #d2d2d7;
  --white: #fff;
  --pink: #ff8da1;
  --pink-hover: #ff7891;
  --pink-soft: #fff0f3;
  --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;
  --font-editorial: "Inter", 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(--pink);
  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: 72px 68px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin: 0 0 20px;
  padding: 8px 15px;
  border: 1px solid rgba(255, 141, 161, 0.5);
  border-radius: 999px;
  color: var(--ink);
  background: var(--pink-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 {
  max-width: 1030px;
  margin: 0 auto;
  font-family: var(--font-editorial);
  font-size: clamp(44px, 6.6vw, 76px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.heading-line { display: block; }

.heading-accent { color: #86868b; }

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

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

.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-error:empty,
.form-error:empty {
  min-height: 0;
  margin: 0;
}

.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;
}

.turnstile-wrap:empty {
  min-height: 0;
  margin-top: 0;
}

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

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

.submit-button:hover {
  background: var(--pink-hover);
  box-shadow: 0 14px 34px rgba(255, 120, 145, 0.34);
  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-box {
  margin: 14px 0 0;
  padding: 18px 20px;
  border: 1px solid var(--grey-dark);
  border-radius: 16px;
  background: var(--white);
}

.privacy-box h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.privacy-box p {
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.privacy-box strong {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.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 {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
}

.lifestyle-grid video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: var(--black);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin: 6px 0 0;
  padding: 32px 12px;
  border-block: 1px solid var(--grey-dark);
  background: var(--grey);
}

.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 var(--grey-dark); }

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

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

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

.results {
  width: 100%;
  margin: 0;
  padding: 80px 0 64px;
  color: var(--white);
  background: var(--black);
  text-align: center;
}

.results h2,
.process-intro h2 {
  max-width: 920px;
  margin: 0 auto;
  font-family: var(--font-editorial);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

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

.earnings-controls { display: none; }

.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%;
  margin: 0;
  padding: 68px 0 76px;
  border-top: 1px solid #242426;
  color: var(--white);
  background: var(--black);
  text-align: center;
}

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

.process-grid li {
  min-height: 265px;
  padding: 28px;
  border: 1px solid #303033;
  border-radius: var(--radius);
  background: #1c1c1e;
}

.process-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 42px;
}

.process-step {
  color: var(--pink);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.process-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border: 1px solid var(--pink);
  border-radius: 15px;
  background: var(--pink);
  box-shadow: 0 8px 24px rgba(255, 141, 161, 0.14);
}

.process-icon::before {
  width: 23px;
  height: 23px;
  background: var(--black);
  content: "";
  -webkit-mask: var(--process-icon) center / contain no-repeat;
  mask: var(--process-icon) center / contain no-repeat;
}

.process-icon-send { --process-icon: url("/assets/icons/send.svg"); }
.process-icon-camera { --process-icon: url("/assets/icons/camera.svg"); }
.process-icon-eye-off { --process-icon: url("/assets/icons/eye-off.svg"); }
.process-icon-money { --process-icon: url("/assets/icons/badge-dollar-sign.svg"); }
.process-icon-flame { --process-icon: url("/assets/icons/flame.svg"); }
.process-icon-lock { --process-icon: url("/assets/icons/lock.svg"); }

.process-grid p {
  margin: 0;
  color: #e5e5e7;
  font-size: 17px;
  line-height: 1.47;
}

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

footer {
  padding: 70px 0 32px;
  border-top: 0;
  background: var(--grey);
}

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

.footer-heading > p {
  margin: 0 0 12px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-heading h2 {
  max-width: 840px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-editorial);
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.footer-response {
  max-width: 540px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.footer-inner nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.footer-inner a {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 160px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid #e5e5e7;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.footer-inner a:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.footer-inner a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.footer-inner a > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-inner a > strong {
  max-width: calc(100% - 34px);
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 21px);
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.footer-inner a > b {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  background: var(--pink);
  font-size: 15px;
  font-weight: 500;
}

.footer-legal {
  display: flex;
  width: min(var(--max), calc(100% - 40px));
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin: 42px auto 0;
  padding-top: 26px;
  border-top: 1px solid var(--grey-dark);
}

.disclaimer {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.copyright {
  flex: none;
  margin: 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: 52px; }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner nav { grid-template-columns: 1fr; }
  .footer-inner a { min-height: 112px; }
  .footer-legal { align-items: flex-start; flex-direction: column; }
}

@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: 36px 30px; }

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

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

  .application-card {
    margin-top: 30px;
    padding: 18px;
    border-radius: 22px;
  }

  .form-grid { gap: 14px; }

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

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

  .field-meta > span {
    padding-top: 2px;
    line-height: 1.1;
  }

  .submit-button {
    min-height: 108px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    margin-top: 2px;
    padding: 18px;
  }

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

  .privacy-box {
    margin-top: 12px;
    padding: 16px;
  }

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

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

  .proof-strip {
    margin-top: 4px;
    padding-block: 24px;
  }

  .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: 58px 40px; }

  .results .full-bleed-inner,
  .process .full-bleed-inner { width: 100%; }

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

  .earnings-grid {
    display: flex;
    gap: 14px;
    max-width: none;
    margin-top: 30px;
    padding: 0 24px 16px;
    overflow-x: auto;
    scroll-padding-inline: 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .earnings-grid::-webkit-scrollbar { display: none; }

  .earnings-placeholder {
    width: auto;
    flex: 0 0 min(82vw, 330px);
    padding: 24px;
    border-radius: 28px;
    scroll-snap-align: center;
  }

  .earnings-placeholder > span { font-size: 12px; }
  .earnings-placeholder strong { font-size: 24px; }
  .earnings-placeholder p { display: block; font-size: 13px; }

  .earnings-controls {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 10px 24px 0;
  }

  .earnings-arrow {
    display: flex;
    width: 39px;
    height: 39px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--pink);
    border-radius: 50%;
    color: var(--black);
    background: var(--pink);
    font-size: 17px;
    line-height: 1;
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
  }

  .earnings-arrow:hover {
    border-color: var(--pink-hover);
    color: var(--black);
    background: var(--pink-hover);
  }

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

  .process {
    padding-block: 48px 44px;
  }

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

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

  .process-step { font-size: 42px; }

  .process-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 14px;
  }

  .process-grid p { font-size: 17px; }

  footer { padding-block: 52px 24px; }

  .footer-inner,
  .footer-legal { width: calc(100% - 24px); }

  .footer-heading > p { font-size: 14px; }
  .footer-heading h2 { font-size: clamp(48px, 15vw, 66px); }
  .footer-response { margin-top: 16px; font-size: 17px; }

  .footer-inner nav {
    gap: 10px;
    margin-top: 30px;
  }

  .footer-inner a {
    min-height: 108px;
    padding: 20px;
    border-radius: 22px;
  }

  .footer-inner a > strong { font-size: 18px; }

  .footer-inner a > b {
    right: 18px;
    bottom: 18px;
  }

  .footer-legal {
    gap: 22px;
    margin-top: 30px;
  }
}

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