@font-face {
  font-family: "YS Text";
  src: url("/fonts/text-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "YS Text";
  src: url("/fonts/text-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "YS Text";
  src: url("/fonts/text-bold.woff2") format("woff2");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #121212;
  --muted: #66655f;
  --yellow: #ffcc00;
  --yellow-hover: #f2bd00;
  --surface: #ffffff;
  --soft: #f6f6f4;
  --line: #e9e9e6;
  --shadow: 0 10px 35px rgba(20, 20, 20, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "YS Text", Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

svg {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(100% - 40px, 1180px);
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  width: 205px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 16px;
  font-weight: 500;
}

.desktop-nav > a:not(.nav-cta) {
  transition: opacity 180ms ease;
}

.desktop-nav > a:not(.nav-cta):hover {
  opacity: 0.55;
}

.nav-cta {
  border-radius: 14px;
  background: var(--yellow);
  padding: 14px 20px;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.nav-cta:hover {
  background: var(--yellow-hover);
  transform: translateY(-1px);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  align-content: center;
  gap: 5px;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  width: 26px;
  height: 2px;
  margin-left: auto;
  background: var(--ink);
}

.mobile-menu nav {
  position: absolute;
  right: 0;
  top: 58px;
  min-width: 220px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
  padding: 10px;
}

.mobile-menu nav a {
  display: block;
  border-radius: 12px;
  padding: 14px 16px;
  font-weight: 500;
}

.mobile-menu nav a:last-child {
  background: var(--yellow);
}

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: #e7e7e5;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: url("/images/hero-car.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.98) 34%, rgba(255, 255, 255, 0.72) 49%, transparent 70%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.1), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: 70px 0 44px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: #8a6c00;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  width: min(630px, 57vw);
  margin: 0;
  font-size: clamp(46px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.income-highlight {
  display: grid;
  justify-items: start;
  margin-top: 34px;
  line-height: 1.05;
}

.income-highlight span {
  font-size: 18px;
  font-weight: 500;
}

.income-highlight strong {
  margin: 6px 0 4px;
  border-radius: 11px;
  background: var(--yellow);
  padding: 5px 12px 8px;
  font-size: clamp(38px, 4vw, 56px);
  letter-spacing: -0.04em;
}

.hero-points {
  display: grid;
  gap: 16px;
  width: min(450px, 90%);
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.point-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--yellow);
}

.point-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.point-star {
  font-size: 23px;
}

.primary-cta {
  width: min(740px, calc(100vw - 40px));
  min-height: 76px;
  margin-top: 34px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: var(--yellow);
  box-shadow: 0 12px 30px rgba(255, 204, 0, 0.22);
  font-size: 23px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.primary-cta:hover {
  background: var(--yellow-hover);
  transform: translateY(-2px);
}

.primary-cta svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: 88px 0;
}

.section-inner {
  width: min(100% - 40px, 1080px);
  margin: 0 auto;
}

.section h2 {
  margin: 0;
  font-size: clamp(35px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-align: center;
}

.benefits-section {
  background: var(--soft);
}

.benefits-section .section-kicker {
  text-align: center;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.benefit-card {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 34px 30px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(20, 20, 20, 0.035);
}

.benefit-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow);
}

.benefit-icon svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  margin: 22px 0 8px;
  font-size: 23px;
}

.benefit-card p {
  max-width: 240px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.income-section {
  background: white;
}

.section-lead {
  max-width: 650px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  text-align: center;
}

.income-section .section-kicker,
.steps-section .section-kicker,
.faq-section .section-kicker {
  text-align: center;
}

.income-grid {
  display: grid;
  gap: 15px;
  max-width: 900px;
  margin: 44px auto 0;
}

.income-card {
  position: relative;
  min-height: 164px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  display: grid;
  grid-template-columns: minmax(240px, 37%) 1fr 56px;
  align-items: center;
  background: #fafaf8;
  box-shadow: 0 7px 22px rgba(20, 20, 20, 0.035);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.income-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.income-card-image {
  align-self: stretch;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #f0f0ee;
}

.income-card-image img {
  display: block;
  width: 100%;
  height: 100%;
}

.income-card-image .walk-image {
  object-fit: cover;
  object-position: center 30%;
}

.income-card-image .bike-image {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.income-card-image .car-image {
  object-fit: cover;
  object-position: 76% center;
}

.income-card-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  padding: 22px 30px;
}

.income-type {
  grid-column: 1 / -1;
  margin-bottom: 5px;
  font-size: 21px;
}

.income-amount {
  color: var(--yellow);
  font-size: clamp(52px, 7vw, 72px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-shadow: 0 1px 0 #e9b900;
}

.income-suffix {
  max-width: 88px;
  margin: 0 0 5px 13px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.08;
}

.income-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
}

.income-arrow svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.income-note {
  max-width: 740px;
  margin: 22px auto 0;
  color: #85847f;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.steps-section {
  background: #121212;
  color: white;
}

.steps-section .section-kicker {
  color: var(--yellow);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 45px;
}

.step-card {
  min-height: 290px;
  border: 1px solid #30302e;
  border-radius: 26px;
  background: #1c1c1b;
  padding: 28px;
}

.step-number {
  display: inline-grid;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  place-items: center;
  background: var(--yellow);
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.step-card h3 {
  margin: 54px 0 10px;
  font-size: 25px;
}

.step-card p {
  margin: 0;
  color: #bebdb8;
  font-size: 17px;
  line-height: 1.5;
}

.secondary-cta {
  width: min(100%, 560px);
  min-height: 70px;
  margin: 35px auto 0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: white;
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.secondary-cta svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.requirements-section {
  background: var(--yellow);
}

.requirements-inner {
  width: min(100% - 40px, 1080px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.requirements-copy .section-kicker {
  color: #6f5800;
}

.requirements-copy h2 {
  max-width: 550px;
  text-align: left;
}

.requirements-copy ul {
  display: grid;
  gap: 15px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.requirements-copy li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 19px;
  font-weight: 500;
}

.requirements-copy li > span {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: white;
}

.requirements-copy li svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.requirements-visual {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 30px;
  background: #d9d6ca;
  box-shadow: 0 22px 55px rgba(66, 51, 0, 0.18);
}

.requirements-visual > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 22%;
}

.visual-badge {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  min-height: 86px;
  border-radius: 19px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 16px 22px;
}

.visual-badge strong {
  font-size: 34px;
}

.visual-badge span {
  font-size: 17px;
  font-weight: 500;
}

.faq-section {
  background: white;
}

.faq-inner {
  width: min(100% - 40px, 820px);
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 42px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--soft);
}

.faq-list summary {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-size: 19px;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-plus {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow);
  font-size: 25px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] .faq-plus {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -2px 22px 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.final-cta-section {
  background: var(--soft);
  padding: 30px 30px 80px;
}

.final-cta-inner {
  width: min(100%, 1080px);
  margin: 0 auto;
  border-radius: 34px;
  background: var(--ink);
  color: white;
  padding: 72px;
  text-align: center;
}

.final-cta-inner .section-kicker {
  color: var(--yellow);
}

.final-cta-inner h2 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.final-cta-inner > p:not(.section-kicker) {
  max-width: 560px;
  margin: 22px auto 0;
  color: #bebdb8;
  font-size: 18px;
  line-height: 1.5;
}

.final-button {
  width: min(100%, 520px);
  margin-right: auto;
  margin-left: auto;
  color: var(--ink);
}

footer {
  background: var(--ink);
  color: white;
}

.footer-inner {
  width: min(100% - 40px, 1080px);
  min-height: 118px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-brand {
  width: 190px;
  border-radius: 8px;
  background: white;
  padding: 8px 10px;
}

.footer-brand img {
  display: block;
  width: 100%;
}

.footer-inner p {
  margin: 0 auto 0 0;
  color: #a9a8a3;
  font-size: 13px;
}

.footer-inner > a:last-child {
  color: var(--yellow);
  font-weight: 700;
}

@media (max-width: 820px) {
  .header-inner {
    width: min(100% - 32px, 720px);
    height: 72px;
  }

  .brand {
    width: 175px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: 740px;
  }

  .hero-background {
    background-position: 62% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.96) 46%, rgba(255, 255, 255, 0.44) 73%, rgba(255, 255, 255, 0.08) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.08), transparent 45%);
  }

  .hero-content {
    width: min(100% - 32px, 720px);
    padding-top: 48px;
  }

  .hero h1 {
    width: 66%;
    font-size: clamp(42px, 8.4vw, 64px);
  }

  .primary-cta {
    width: 100%;
    margin-top: 38px;
  }

  .section {
    padding: 70px 0;
  }

  .benefit-grid {
    gap: 12px;
  }

  .benefit-card {
    min-height: 250px;
    padding: 26px 18px;
  }

  .income-card {
    grid-template-columns: minmax(200px, 36%) 1fr 48px;
  }

  .income-card-copy {
    padding: 20px 24px;
  }

  .steps-grid {
    gap: 10px;
  }

  .step-card {
    min-height: 270px;
    padding: 22px;
  }

  .step-card h3 {
    margin-top: 45px;
    font-size: 22px;
  }

  .requirements-inner {
    gap: 34px;
  }

  .requirements-visual {
    height: 460px;
  }

  .final-cta-inner {
    padding: 58px 44px;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 720px;
  }

  .hero-background {
    background-position: 65% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.97) 47%, rgba(255, 255, 255, 0.38) 83%, rgba(255, 255, 255, 0.14) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.15), transparent 54%);
  }

  .eyebrow {
    max-width: 55%;
    margin-bottom: 12px;
    font-size: 12px;
  }

  .hero h1 {
    width: 62%;
    font-size: clamp(39px, 10.8vw, 52px);
    line-height: 1;
  }

  .income-highlight {
    margin-top: 26px;
  }

  .income-highlight span {
    font-size: 16px;
  }

  .income-highlight strong {
    font-size: 36px;
  }

  .hero-points {
    width: 65%;
    margin-top: 24px;
  }

  .hero-points li {
    gap: 10px;
    font-size: 15px;
  }

  .point-icon {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .primary-cta {
    position: absolute;
    top: 600px;
    min-height: 68px;
    margin-top: 0;
    font-size: 20px;
  }

  .section-inner {
    width: min(100% - 28px, 560px);
  }

  .section h2 {
    font-size: 34px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .benefit-card {
    min-height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 22px;
    text-align: left;
  }

  .benefit-icon {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    margin-right: 18px;
  }

  .benefit-card h3 {
    margin: 0 0 5px;
    font-size: 20px;
  }

  .benefit-card p {
    max-width: none;
    font-size: 15px;
  }

  .section-lead {
    font-size: 16px;
  }

  .income-grid {
    margin-top: 30px;
  }

  .income-card {
    min-height: 124px;
    border-radius: 18px;
    grid-template-columns: 38% 1fr 36px;
  }

  .income-card-copy {
    padding: 16px 14px;
  }

  .income-type {
    font-size: 17px;
  }

  .income-amount {
    font-size: clamp(42px, 13vw, 58px);
  }

  .income-suffix {
    max-width: 64px;
    margin: 0 0 4px 9px;
    font-size: 14px;
  }

  .income-arrow {
    width: 30px;
    height: 30px;
  }

  .income-arrow svg {
    width: 18px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .step-card {
    min-height: auto;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 4px 16px;
    align-items: center;
    border-radius: 20px;
    padding: 22px;
  }

  .step-number {
    grid-row: 1 / 3;
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .step-card h3 {
    margin: 0;
    font-size: 20px;
  }

  .step-card p {
    font-size: 15px;
  }

  .secondary-cta {
    min-height: 66px;
    padding: 0 18px;
    font-size: 17px;
    text-align: center;
  }

  .requirements-inner {
    width: min(100% - 28px, 560px);
    grid-template-columns: 1fr;
  }

  .requirements-copy h2 {
    font-size: 36px;
  }

  .requirements-copy li {
    font-size: 17px;
  }

  .requirements-visual {
    height: 420px;
  }

  .faq-inner {
    width: min(100% - 28px, 560px);
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 17px;
  }

  .final-cta-section {
    padding: 14px 14px 56px;
  }

  .final-cta-inner {
    border-radius: 26px;
    padding: 52px 22px;
  }

  .final-cta-inner h2 {
    font-size: 38px;
  }

  .final-cta-inner > p:not(.section-kicker) {
    font-size: 16px;
  }

  .final-button {
    position: static;
    min-height: 68px;
    margin-top: 30px;
  }

  .footer-inner {
    min-height: 190px;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    text-align: center;
  }

  .footer-inner p {
    max-width: 330px;
    margin: 0;
  }
}

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

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