:root {
  --bg: #fbfbfa;
  --surface: #fff;
  --text: #171717;
  --muted: #686868;
  --line: #e7e7e4;
  --accent: #ffd21f;
  --accent-hover: #f5c500;
  --dark: #171717;
  --container: 1240px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 251, 250, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

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

.logo {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  flex: 0 0 auto;
}

.logo span {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.logo small {
  font-size: 10px;
  color: #8a8a8a;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-left: auto;
  margin-right: 8px;
}

.desktop-nav a {
  position: relative;
  color: #555;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--text);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  border: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #151515;
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 24px rgba(255, 210, 31, 0.22);
}

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

.btn-header {
  min-height: 44px;
  padding-inline: 20px;
  background: var(--accent);
  white-space: nowrap;
}

.btn-large {
  min-height: 58px;
  padding-inline: 28px;
  font-size: 16px;
}

.btn-step {
  margin-top: 22px;
}

/* Typography */
.eyebrow {
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #777;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.045em;
}

h3 {
  letter-spacing: -0.025em;
}

p {
  color: var(--muted);
  line-height: 1.55;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 56px;
  min-height: 560px;
  display: flex;
  align-items: center;
}

/* Full-width dark overlay across the screen on desktop */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.74) 0%,
    rgba(0, 0, 0, 0.5) 45%,
    rgba(0, 0, 0, 0.12) 100%
  );
  pointer-events: none;
}

.hero-grid {
  position: static;
  min-height: auto;
  display: block;
}

/* Background image — fills entire width of the screen on desktop */
.hero .hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  z-index: 0;
  border-radius: 0;
  background: linear-gradient(135deg, #ecece9, #deded9);
}

.hero .hero-media picture,
.hero .hero-media .replaceable-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

/* Text block sits on top within container */
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 0;
}

/* Invert text colors for dark overlay */
.hero-copy .eyebrow {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.hero-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(40px, 4.3vw, 66px);
  color: #fff;
}

.hero-copy .hero-lead {
  margin-bottom: 22px;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-copy .income strong {
  color: #fff;
}

.hero-copy .income span {
  color: rgba(255, 255, 255, 0.8);
}

.hero-copy .chips span {
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
}

.hero-copy .microcopy {
  color: rgba(255, 255, 255, 0.7);
}

.hero-copy .hero-disclaimer {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.45);
}

.hero-lead {
  max-width: 590px;
  font-size: 19px;
  margin-bottom: 22px;
}

.income {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-bottom: 18px;
}

.income strong {
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.05em;
}

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

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
}

.chips span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #555;
  font-size: 13px;
}

.microcopy {
  margin: 10px 0 0 2px;
  font-size: 12px;
}

.hero-disclaimer {
  max-width: 530px;
  margin: 22px 0 0;
  font-size: 11px;
  color: #8b8b8b;
}

/* Media Placeholder */
.media-placeholder {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ecece9, #deded9);
}

.hero-media {
  min-height: 590px;
  border-radius: 34px 34px 34px 90px;
}

.media-placeholder .replaceable-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 10px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #555;
}

.media-label span {
  font-weight: 500;
  letter-spacing: 0;
}

/* Benefits Section */
.split-heading {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 50px;
  align-items: end;
}

.split-heading > p {
  margin-bottom: 7px;
  font-size: 17px;
}

.benefit-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.benefit {
  padding: 0 28px;
  border-left: 1px solid var(--line);
}

.benefit:first-child {
  padding-left: 0;
  border-left: 0;
}

.benefit:last-child {
  padding-right: 0;
}

.big-number {
  margin-bottom: 42px;
  color: #cfcfcb;
  font-size: 56px;
  line-height: 0.8;
  letter-spacing: -0.06em;
}

.benefit h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.benefit p {
  margin: 0;
  max-width: 235px;
  font-size: 14px;
}

/* Steps Section */
.centered {
  text-align: center;
}

.centered > p:last-child {
  max-width: 600px;
  margin-inline: auto;
}

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

.step {
  position: relative;
  min-height: 270px;
  padding: 0 40px;
  border-left: 1px solid var(--line);
}

.step:first-child {
  border-left: 0;
  padding-left: 0;
}

.step:last-child {
  padding-right: 0;
}

.step-number {
  font-size: 92px;
  line-height: 0.8;
  letter-spacing: -0.08em;
  color: #d1d1cd;
  margin-bottom: 42px;
}

.step h3 {
  font-size: 19px;
  margin-bottom: 9px;
}

.step p {
  max-width: 290px;
  font-size: 14px;
  margin-bottom: 0;
}

.step-line {
  position: absolute;
  top: 34px;
  right: -1px;
  width: 44px;
  height: 1px;
  background: var(--accent);
}

.step:last-child .step-line {
  display: none;
}

/* Formats Section */
.formats {
  background: #f6f6f3;
}

.format-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.format-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.format-card .card-media,
.card-media {
  height: 240px;
  background: transparent;
}

.format-content {
  padding: 22px;
}

.format-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.format-content p {
  margin: 0;
  font-size: 13px;
}

.format-note {
  margin: 32px auto 0;
  text-align: center;
  font-size: 14px;
}

/* Conditions & FAQ Section */
.conditions-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
}

.conditions h3 {
  font-size: 22px;
  margin-bottom: 24px;
}

.requirement-list,
.faq-list {
  border-top: 1px solid var(--line);
}

.requirement,
details {
  border-bottom: 1px solid var(--line);
}

.requirement {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px 0;
}

.requirement-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 11px;
  color: #777;
}

.requirement strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.requirement p {
  margin: 0;
  font-size: 13px;
}

details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-weight: 600;
  font-size: 15px;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary span {
  font-size: 20px;
  font-weight: 400;
  color: #777;
  transition: transform 0.2s ease;
}

details[open] summary span {
  transform: rotate(45deg);
}

details p {
  margin: -5px 35px 20px 0;
  font-size: 14px;
}

.trust-note {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #858585;
  font-size: 11px;
  line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
  border-bottom: 0;
  padding-top: 40px;
}

.cta-panel {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 55px 65px;
  background: var(--accent);
  border-radius: 32px;
}

.cta-panel h2 {
  margin-bottom: 12px;
}

.cta-panel p:last-child {
  margin-bottom: 0;
  color: #39351e;
}

.cta-panel .eyebrow {
  color: #514c27;
}

/* Footer */
.site-footer {
  padding: 30px 0 42px;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
}

.footer-links a,
.copyright {
  color: #8a8a86;
  font-size: 11px;
}

.copyright {
  white-space: nowrap;
}

.mobile-cta {
  display: none;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive Styles */
@media (min-width: 1440px) {
  .hero {
    min-height: 850px;
  }
}

@media (max-width: 1050px) {
  .hero-copy {
    padding: 0;
  }

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

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 55px;
  }

  .benefit:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .desktop-nav {
    gap: 20px;
  }

  .desktop-nav a {
    font-size: 12px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .section {
    padding: 82px 0;
  }

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

  .logo small {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  .btn-header {
    min-height: 42px;
    padding-inline: 16px;
    font-size: 13px;
  }

  .hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding-top: 48px;
    padding-bottom: 54px;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.76) 0%,
      rgba(0, 0, 0, 0.56) 45%,
      rgba(0, 0, 0, 0.8) 100%
    );
    pointer-events: none;
  }

  .hero-grid {
    position: static;
    display: block;
    min-height: auto;
    border-radius: 0;
    overflow: visible;
  }

  .hero .hero-media,
  .hero-grid > .hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    z-index: 0;
    border-radius: 0;
    order: unset;
    margin-top: 0;
  }

  .hero .hero-media picture,
  .hero .hero-media .replaceable-image {
    object-position: center top;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    padding: 0;
    max-width: 100%;
  }

  .hero-copy .eyebrow {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
  }

  .hero-copy h1 {
    color: #fff;
    font-size: clamp(34px, 8.5vw, 44px);
    margin-bottom: 14px;
  }

  .hero-copy .hero-lead {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin-bottom: 18px;
  }

  .hero-copy .income strong {
    color: #fff;
    font-size: clamp(36px, 9vw, 44px);
  }

  .hero-copy .income span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
  }

  .hero-copy .chips {
    gap: 8px;
    margin-bottom: 22px;
  }

  .hero-copy .chips span {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 12px;
    padding: 7px 11px;
  }

  .hero-copy .btn {
    width: 100%;
  }

  .hero-copy .microcopy {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-top: 8px;
  }

  .hero-copy .hero-disclaimer {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    margin-top: 14px;
  }

  .split-heading {
    display: block;
  }

  .split-heading > p {
    margin-top: 18px;
  }

  .benefit-grid {
    margin-top: 55px;
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .benefit,
  .benefit:first-child,
  .benefit:last-child {
    padding: 28px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .big-number {
    margin-bottom: 20px;
    font-size: 48px;
  }

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

  .step,
  .step:first-child,
  .step:last-child {
    min-height: auto;
    padding: 0 0 45px 62px;
    border-left: 0;
  }

  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 21px;
    top: 72px;
    bottom: 0;
    width: 1px;
    background: var(--line);
  }

  .step-number {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    font-size: 38px;
    color: #cfcfcb;
  }

  .step-line {
    display: none;
  }

  .format-grid {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .format-card .card-media,
  .card-media {
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
  }

  .format-card .replaceable-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .conditions-grid {
    margin-top: 50px;
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .trust-note {
    margin-top: 45px;
  }

  .cta-panel {
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 28px;
    border-radius: 24px;
  }

  .cta-panel .btn {
    width: 100%;
  }

  .footer-inner {
    flex-wrap: wrap;
    gap: 22px;
  }

  .footer-links {
    order: 3;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    margin-left: 0;
  }

  .copyright {
    margin-left: auto;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: block;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(251, 251, 250, 0.9);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--line);
    transform: translateY(110%);
    transition: transform 0.3s ease;
  }

  .mobile-cta.is-visible {
    transform: none;
  }

  .mobile-cta .btn {
    width: 100%;
    min-height: 52px;
  }
}

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

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