:root {
  --yellow: #ffcc00;
  --yellow-2: #ffe36b;
  --orange: #ff7a00;
  --black: #111111;
  --ink: #191919;
  --muted: #5a5142;
  --cream: #fff7df;
  --white: #ffffff;
  --line: rgba(17, 17, 17, 0.12);
  --shadow: 0 28px 80px rgba(30, 20, 0, 0.18);
  --shadow-strong: 0 18px 0 rgba(17, 17, 17, 0.18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 204, 0, 0.40), transparent 30rem),
    radial-gradient(circle at 88% 12%, rgba(255, 122, 0, 0.22), transparent 28rem),
    var(--cream);
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 70%);
}

a {
  color: inherit;
}

svg {
  display: block;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--black);
  color: var(--white);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 247, 223, 0.86);
  border-bottom: 1px solid rgba(17, 17, 17, 0.10);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  color: var(--black);
  text-decoration: none;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--black);
  border-radius: 15px;
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--black);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
  fill: var(--black);
}

.brand-mark .brand-line {
  fill: none;
  stroke: var(--cream);
  stroke-width: 3.2;
  stroke-linecap: round;
}

.brand-text {
  font-size: 19px;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1 1 auto;
}

.header-nav a {
  color: rgba(17, 17, 17, 0.70);
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
}

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

.header-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 25px;
  border: 3px solid var(--black);
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  box-shadow: 7px 7px 0 var(--yellow);
  font-size: 17px;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
}

.header-button:hover,
.primary-button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 var(--yellow);
}

.header-button:active,
.primary-button:active {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--yellow);
}

.brand:focus-visible,
.header-nav a:focus-visible,
.header-button:focus-visible,
.primary-button:focus-visible,
.site-footer a:focus-visible {
  outline: 4px solid var(--orange);
  outline-offset: 5px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 86px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 204, 0, 0.86), transparent 22rem),
    radial-gradient(circle at 92% 72%, rgba(255, 122, 0, 0.30), transparent 24rem),
    linear-gradient(135deg, #fff7df 0%, #fff0b8 48%, #ffe070 100%);
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border: 3px solid var(--black);
  border-radius: 999px;
  opacity: 0.18;
  transform: rotate(-14deg);
}

.hero-bg::before {
  width: 420px;
  height: 140px;
  right: -140px;
  top: 112px;
}

.hero-bg::after {
  width: 300px;
  height: 96px;
  right: 180px;
  bottom: 50px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.partner-note,
.eyebrow {
  margin: 0 0 14px;
  color: rgba(17, 17, 17, 0.68);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 810px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7.5vw, 92px);
  line-height: 0.93;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.hero-text {
  max-width: 735px;
  margin-bottom: 32px;
  color: rgba(17, 17, 17, 0.80);
  font-size: clamp(21px, 2.75vw, 30px);
  line-height: 1.28;
  letter-spacing: -0.02em;
}

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

.primary-button {
  min-height: 68px;
  padding: 20px 34px;
  background: var(--black);
  color: var(--white);
  box-shadow: 9px 9px 0 var(--orange);
  font-size: 20px;
}

.primary-button::after {
  content: "→";
  margin-left: 12px;
  font-size: 24px;
  line-height: 0;
}

.primary-button:hover {
  box-shadow: 12px 12px 0 var(--orange);
}

.action-note {
  max-width: 300px;
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: 15px;
  font-weight: 800;
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.route-card {
  position: relative;
  min-height: 132px;
  padding: 26px 26px 24px;
  border: 3px solid var(--black);
  border-radius: var(--radius-xl);
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.route-card::before {
  content: "";
  position: absolute;
  inset: -50px -70px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.95;
}

.route-card p {
  position: relative;
  z-index: 1;
  max-width: 315px;
  margin: 58px 0 0;
  font-size: 25px;
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.route-dot {
  position: absolute;
  left: 28px;
  top: 28px;
  width: 22px;
  height: 22px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--orange);
}

.route-dot.end {
  left: auto;
  right: 82px;
  top: 31px;
  background: var(--yellow);
}

.route-line {
  position: absolute;
  left: 58px;
  top: 39px;
  width: min(62%, 270px);
  height: 0;
  border-top: 4px dashed rgba(255, 255, 255, 0.78);
}

.hook-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hook-card {
  display: grid;
  gap: 12px;
  min-height: 142px;
  padding: 18px;
  border: 2px solid var(--black);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 6px 6px 0 rgba(17, 17, 17, 0.12);
}

.hook-icon,
.step-picto,
.doc-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--black);
  border-radius: 16px;
  background: var(--yellow);
  color: var(--black);
  box-shadow: 4px 4px 0 var(--black);
  font-weight: 950;
}

.hook-icon svg,
.step-picto svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hook-card span:last-child {
  display: block;
  color: var(--black);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.section {
  padding: 82px 0;
}

.steps-section {
  background: var(--white);
}

.section-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.43fr) minmax(0, 0.57fr);
  gap: 48px;
  align-items: start;
}

.section-title-block {
  position: sticky;
  top: 102px;
}

.centered {
  position: static;
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.steps-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 82px;
  padding: 18px 20px;
  border: 2px solid var(--black);
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: 5px 5px 0 rgba(17, 17, 17, 0.12);
  color: rgba(17, 17, 17, 0.80);
  font-size: 18px;
}

.steps-list strong {
  color: var(--black);
}

.step-picto {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 15px;
}

.docs-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 204, 0, 0.40), transparent 22rem),
    radial-gradient(circle at 90% 80%, rgba(255, 122, 0, 0.14), transparent 24rem),
    var(--cream);
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.doc-card {
  min-height: 270px;
  padding: 24px;
  border: 2px solid var(--black);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 7px 7px 0 rgba(17, 17, 17, 0.12);
}

.doc-card.accent-card {
  background: #fff1a3;
}

.doc-top {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.doc-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  font-size: 14px;
}

.doc-card p {
  margin-bottom: 0;
  color: rgba(17, 17, 17, 0.75);
  font-size: 17px;
}

.final-cta {
  padding: 70px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 204, 0, 0.95), transparent 16rem),
    linear-gradient(135deg, var(--black), #252525 62%, #3b2a00);
}

.final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.final-inner h2 {
  margin-bottom: 12px;
}

.final-inner p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(19px, 2.6vw, 26px);
  line-height: 1.3;
}

.dark-eyebrow {
  color: rgba(255, 255, 255, 0.66);
}

.final-button {
  flex: 0 0 auto;
  background: var(--yellow);
  color: var(--black);
  box-shadow: 9px 9px 0 var(--orange);
}

.site-footer {
  padding: 28px 0;
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: grid;
  gap: 8px;
}

.site-footer p {
  margin-bottom: 0;
  font-size: 14px;
}

.site-footer a {
  color: var(--white);
  font-weight: 950;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

@media (max-width: 1100px) {
  .hero-inner,
  .section-layout {
    grid-template-columns: 1fr;
  }

  .section-title-block {
    position: static;
  }

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

  .doc-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .header-nav {
    display: none;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-text {
    font-size: 18px;
  }

  .header-button {
    min-height: 46px;
    padding: 12px 15px;
    box-shadow: 5px 5px 0 var(--yellow);
    font-size: 13px;
  }

  .hero {
    padding: 52px 0 62px;
  }

  .hero-inner {
    gap: 32px;
  }

  .hero-text {
    margin-bottom: 28px;
  }

  .primary-button {
    width: 100%;
    min-height: 66px;
  }

  .action-note {
    max-width: none;
  }

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

  .route-card p {
    font-size: 22px;
  }

  .section {
    padding: 58px 0;
  }

  .steps-list li {
    align-items: flex-start;
    font-size: 17px;
  }

  .final-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-button {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(100% - 22px, 1160px);
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    box-shadow: 4px 4px 0 var(--black);
  }

  .brand-text {
    display: none;
  }

  .hook-card,
  .doc-card,
  .route-card {
    border-radius: 24px;
  }

  .doc-top {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* critique update */
.income-section,
.city-section,
.faq-section {
  background: var(--white);
}

.income-section {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.city-section {
  background:
    radial-gradient(circle at 92% 14%, rgba(255, 204, 0, 0.36), transparent 20rem),
    var(--cream);
}

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

.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.faq-list details {
  border: 2px solid var(--black);
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: 5px 5px 0 rgba(17, 17, 17, 0.12);
}

.info-card {
  min-height: 180px;
  padding: 24px;
}

.info-card.strong-card {
  background: var(--yellow);
}

.info-card.wide-card {
  min-height: auto;
  background: var(--white);
}

.info-card h3 {
  margin-bottom: 12px;
}

.info-card p {
  margin-bottom: 0;
  color: rgba(17, 17, 17, 0.76);
  font-size: 18px;
}

.info-card .small-note {
  margin-top: 12px;
  color: rgba(17, 17, 17, 0.58);
  font-size: 15px;
  font-weight: 800;
}

.compact-steps li {
  min-height: 96px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--black);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.2;
  list-style-position: inside;
}

.faq-list summary:focus-visible {
  outline: 4px solid var(--orange);
  outline-offset: -4px;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: rgba(17, 17, 17, 0.76);
  font-size: 17px;
}

@media (max-width: 1100px) {
  .two-columns {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .info-card,
  .faq-list summary,
  .faq-list p {
    font-size: 17px;
  }

  .faq-list summary {
    padding: 20px;
  }

  .faq-list p {
    padding: 0 20px 20px;
  }
}

/* income update */
.hero-income {
  display: inline-grid;
  gap: 4px;
  margin: -10px 0 28px;
  padding: 18px 22px;
  border: 3px solid var(--black);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 7px 7px 0 var(--orange);
}

.hero-income strong {
  color: var(--black);
  font-size: clamp(28px, 4.3vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.hero-income span {
  color: rgba(17, 17, 17, 0.68);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.income-max-card h3 {
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 0.98;
}

@media (max-width: 760px) {
  .hero-income {
    width: 100%;
    margin-bottom: 24px;
  }
}
