:root {
  --ink: #26171e;
  --ink-soft: #68545d;
  --indigo: #c2185b;
  --indigo-dark: #8e1243;
  --mint: #fce7f0;
  --mint-bright: #f5a3c3;
  --cream: #ffffff;
  --paper: #ffffff;
  --line: #eadde2;
  --danger: #b42318;
  --success: #c2185b;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-sm: 0 12px 35px rgba(38, 23, 30, 0.08);
  --shadow-lg: 0 28px 70px rgba(38, 23, 30, 0.14);
  --shell: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 18px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
[hidden] { display: none !important; }
.shell { width: min(100% - 32px, var(--shell)); margin-inline: auto; }
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 100;
  padding: 10px 14px; background: var(--ink); color: white; border-radius: 8px;
  transform: translateY(-160%); transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.topbar { height: 56px; background: white; border-bottom: 1px solid rgba(38,23,30,.1); }
.topbar__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { min-height: 44px; display: inline-flex; align-items: center; gap: 9px; text-decoration: none; font-weight: 850; letter-spacing: -.04em; }
.brand__mark { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; color: var(--indigo); }
.launch-note { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-soft); font-size: 12px; font-weight: 650; }
.launch-note__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(194,24,91,.1); }

.hero { min-height: 283px; position: relative; display: flex; align-items: center; overflow: hidden; padding-block: 34px 28px; }
.hero__copy { position: relative; z-index: 1; max-width: 670px; }
.eyebrow, .kicker { margin: 0 0 10px; color: var(--indigo); font-size: 11px; line-height: 1.2; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
h1, h2, h3, p { text-wrap: pretty; }
h1 { max-width: 650px; margin: 0; font-size: clamp(2.4rem, 9.6vw, 5.4rem); line-height: .98; letter-spacing: -.065em; font-weight: 760; }
.hero__lead { max-width: 570px; margin: 18px 0 0; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.hero__motif { display: none; }

.segment { padding: 10px 0 40px; }
.segment__heading { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 13px; }
.segment__heading .kicker { display: none; }
.segment h2 { margin: 0; font-size: 20px; line-height: 1.2; letter-spacing: -.03em; }
.segment__grid { display: grid; gap: 10px; }
.segment-card {
  width: 100%; min-height: 90px; display: grid; grid-template-columns: 48px 1fr 30px; align-items: center; gap: 12px;
  padding: 13px 14px; border: 1px solid var(--line); border-radius: var(--radius-md); color: var(--ink); background: white;
  text-align: left; cursor: pointer; transition: transform .2s, border-color .2s, box-shadow .2s, background .2s;
}
.segment-card__icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: #fce8f0; color: var(--indigo); }
.segment-card__icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.segment-card__copy { display: grid; gap: 3px; }
.segment-card__copy strong { font-size: 15px; line-height: 1.2; letter-spacing: -.02em; }
.segment-card__copy small { color: var(--ink-soft); font-size: 12px; line-height: 1.35; }
.segment-card__arrow { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 17px; transition: transform .2s, background .2s, color .2s; }
.segment-card:hover { transform: translateY(-2px); border-color: var(--indigo); box-shadow: var(--shadow-sm); }
.segment-card:hover .segment-card__arrow { transform: rotate(-45deg); background: var(--ink); color: white; }
.segment-card:focus-visible, input:focus-visible, select:focus-visible, .submit-button:focus-visible, .sticky-cta button:focus-visible, summary:focus-visible, a:focus-visible { outline: 3px solid #ffba52; outline-offset: 3px; }
.segment-card[aria-pressed="true"] { border-color: var(--indigo); background: #fff0f5; box-shadow: inset 0 0 0 1px var(--indigo); }
.segment-card[aria-pressed="true"] .segment-card__arrow { background: var(--indigo); color: white; transform: rotate(-45deg); }
.segment__hint { margin: 10px 2px 0; color: var(--ink-soft); font-size: 11px; }

.journey { position: relative; background: var(--paper); border-top: 1px solid var(--line); }
.journey__accent { height: 7px; background: linear-gradient(90deg, var(--indigo) 0 50%, var(--mint) 50%); }
.benefits { padding-block: 72px; }
.section-intro { max-width: 650px; margin-bottom: 34px; }
.section-intro h2, .assurance h2, .signup h2 { margin: 0; font-size: clamp(2rem, 7vw, 3.75rem); line-height: 1.03; letter-spacing: -.055em; }
.section-intro > p:last-child, .signup__intro > p { max-width: 590px; margin: 18px 0 0; color: var(--ink-soft); }
.benefit-grid { display: grid; gap: 12px; }
.benefit-card { min-height: 220px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--cream); }
.benefit-card__number { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 36px; border-radius: 50%; background: var(--ink); color: white; font-size: 11px; font-weight: 700; }
.benefit-card h3 { margin: 0 0 9px; font-size: 19px; line-height: 1.2; letter-spacing: -.035em; }
.benefit-card p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.6; }
.benefit-card:nth-child(2) { background: #fff7fa; }
.benefit-card:nth-child(3) { background: #fce8f1; }

.partner-program { padding-bottom: 72px; }
.partner-program__panel {
  position: relative; overflow: hidden; padding: 32px 24px; border-radius: var(--radius-lg);
  background: var(--indigo); color: white; box-shadow: var(--shadow-lg);
}
.partner-program__panel::before {
  content: ""; position: absolute; width: 240px; height: 240px; right: -140px; top: -140px;
  border: 42px solid rgba(255,215,232,.22); border-radius: 50%;
}
.partner-program__intro { position: relative; z-index: 1; }
.partner-program__intro h2 { margin: 0; font-size: clamp(1.9rem, 7vw, 3.5rem); line-height: 1.03; letter-spacing: -.055em; }
.partner-program__intro > p:last-child { max-width: 620px; margin: 16px 0 0; color: rgba(255,255,255,.72); }
.partner-program__cards { position: relative; z-index: 1; display: grid; gap: 10px; margin-top: 30px; }
.partner-program__cards article { padding: 22px; border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius-md); background: rgba(255,255,255,.08); }
.partner-program__cards article:first-child { background: var(--mint); color: var(--ink); border-color: var(--mint); }
.partner-program__cards span { display: block; margin-bottom: 28px; font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.partner-program__cards h3 { margin: 0 0 8px; font-size: 18px; line-height: 1.2; letter-spacing: -.03em; }
.partner-program__cards p { margin: 0; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.55; }
.partner-program__cards article:first-child p { color: rgba(38,23,30,.7); }
.partner-program__note { position: relative; z-index: 1; margin: 20px 0 0; color: rgba(255,255,255,.58); font-size: 10px; }

.assurance { padding-bottom: 72px; }
.assurance__panel { position: relative; overflow: hidden; padding: 32px 24px; border-radius: var(--radius-lg); background: var(--ink); color: white; box-shadow: var(--shadow-lg); }
.assurance__panel::after { content: ""; position: absolute; width: 260px; height: 260px; top: -180px; right: -80px; border: 48px solid rgba(255,215,232,.18); border-radius: 50%; }
.kicker--light { color: var(--mint); }
.assurance h2 { max-width: 620px; font-size: clamp(1.9rem, 7vw, 3.5rem); }
.fact-list { position: relative; z-index: 1; margin: 34px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.fact-list li { min-height: 58px; display: grid; grid-template-columns: 36px 1fr; align-items: center; gap: 12px; border-bottom: 1px solid rgba(255,255,255,.2); }
.fact-list span { color: var(--mint); font-size: 11px; font-weight: 700; }
.fact-list strong { font-size: 14px; font-weight: 600; }
.assurance__note { position: relative; z-index: 1; margin: 24px 0 0; color: rgba(255,255,255,.68); font-size: 11px; }

.signup { display: grid; gap: 32px; padding-bottom: 80px; }
.signup__intro { align-self: start; }
.signup__aside { display: none; }
.form-card { padding: 22px 18px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--cream); box-shadow: var(--shadow-sm); }
.field-grid { display: grid; gap: 18px; }
.field { min-width: 0; }
.field label { display: flex; justify-content: space-between; margin-bottom: 7px; font-size: 12px; font-weight: 700; }
.field label span, .consent b { color: var(--danger); }
.field label em { color: var(--ink-soft); font-size: 10px; font-style: normal; font-weight: 500; }
.field input, .field select {
  width: 100%; height: 50px; padding: 0 14px; border: 1px solid #c9c6bb; border-radius: var(--radius-sm); color: var(--ink); background: var(--paper); transition: border-color .2s, box-shadow .2s;
}
.field input:hover, .field select:hover { border-color: #8b8797; }
.field input:focus, .field select:focus { border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(194,24,91,.1); outline: none; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--danger); background: #fff8f7; }
.field__error { display: block; min-height: 0; margin-top: 5px; color: var(--danger); font-size: 11px; line-height: 1.35; }
.field__error:not(:empty) { min-height: 15px; }
.phone-input { display: grid; grid-template-columns: 65px 1fr; border: 1px solid #c9c6bb; border-radius: var(--radius-sm); background: var(--paper); overflow: hidden; }
.phone-input:focus-within { border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(194,24,91,.1); }
.phone-input > span { display: grid; place-items: center; border-right: 1px solid #d9d6cc; color: var(--ink-soft); font-size: 13px; }
.phone-input input { border: 0; border-radius: 0; box-shadow: none !important; }
.phone-input:has(input[aria-invalid="true"]) { border-color: var(--danger); background: #fff8f7; }
.consent { display: grid; grid-template-columns: 22px 1fr; gap: 10px; margin-top: 22px; cursor: pointer; color: var(--ink-soft); font-size: 11px; line-height: 1.5; }
.consent input { appearance: none; width: 20px; height: 20px; margin: 0; border: 1px solid #96929f; border-radius: 6px; background: white; cursor: pointer; }
.consent input:checked { border-color: var(--indigo); background: var(--indigo) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='m5 10 3 3 7-7' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/16px no-repeat; }
.submit-button { width: 100%; min-height: 54px; display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding: 0 8px 0 18px; border: 0; border-radius: 15px; background: var(--indigo); color: white; font-size: 13px; font-weight: 750; cursor: pointer; transition: transform .2s, background .2s, opacity .2s; }
.submit-button i { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: rgba(255,255,255,.15); font-size: 18px; font-style: normal; }
.submit-button:not(:disabled):hover { transform: translateY(-1px); background: var(--indigo-dark); }
.submit-button:disabled { cursor: not-allowed; background: #d1cfd5; color: #74717c; }
.submit-button.is-loading { color: transparent; pointer-events: none; position: relative; }
.submit-button.is-loading::after { content: ""; position: absolute; inset: 0; margin: auto; width: 20px; height: 20px; border: 2px solid rgba(255,255,255,.4); border-top-color: white; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-status { display: none; margin: 14px 0 0; padding: 14px; border-radius: 12px; font-size: 12px; }
.form-status.is-success { display: block; color: #7b123c; background: #fce8f0; }
.form-status.is-error { display: block; color: #8c211a; background: #fee9e7; }
.privacy-note { margin: 20px 0 0; padding-top: 18px; border-top: 1px solid var(--line); color: #6a6775; font-size: 10px; line-height: 1.55; }

.sticky-cta { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 20; max-width: 650px; margin-inline: auto; display: none; align-items: center; justify-content: space-between; gap: 10px; padding: 8px 8px 8px 16px; border: 1px solid rgba(255,255,255,.2); border-radius: 18px; background: rgba(38,23,30,.94); color: white; box-shadow: 0 18px 50px rgba(38,23,30,.3); backdrop-filter: blur(12px); }
.sticky-cta.is-visible { display: flex; animation: rise .3s ease both; }
@keyframes rise { from { transform: translateY(20px); opacity: 0; } }
.sticky-cta div { display: none; }
.sticky-cta button { width: 100%; min-height: 46px; border: 0; border-radius: 12px; background: var(--mint); color: var(--ink); font-size: 12px; font-weight: 800; cursor: pointer; }
.sticky-cta button span { margin-left: 8px; }

.footer { padding-top: 52px; background: var(--ink); color: white; }
.brand--footer { color: white; }
.brand--footer .brand__mark { color: var(--mint); }
.footer__top { display: grid; gap: 36px; padding-bottom: 40px; }
.footer__top > div:first-child p { max-width: 320px; color: rgba(255,255,255,.62); font-size: 12px; }
.footer__links { display: grid; gap: 14px; align-content: start; font-size: 12px; }
.footer__links a, .footer__links summary { min-height: 44px; display: flex; align-items: center; text-underline-offset: 4px; }
.footer__links span { color: rgba(255,255,255,.5); }
.footer details summary { cursor: pointer; }
.footer details p { max-width: 400px; color: rgba(255,255,255,.58); font-size: 11px; }
.footer__bottom { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.54); font-size: 10px; }

@media (min-width: 768px) {
  .shell { width: min(100% - 64px, var(--shell)); }
  .topbar { height: 64px; }
  .launch-note { font-size: 13px; }
  .hero { min-height: 430px; padding-block: 64px; }
  .hero__copy { width: 64%; }
  .hero__lead { font-size: 18px; }
  .hero__motif { position: absolute; display: block; width: 360px; height: 330px; right: -42px; bottom: 30px; }
  .motif-card { position: absolute; border: 1px solid rgba(194,24,91,.22); border-radius: 26px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-lg); }
  .motif-card--back { width: 190px; height: 220px; right: 10px; top: 16px; padding: 34px 26px; transform: rotate(11deg); }
  .motif-card--back span { display: block; width: 100%; height: 8px; margin-bottom: 18px; border-radius: 10px; background: #f1d8e2; }
  .motif-card--back span:nth-child(2) { width: 62%; }
  .motif-card--front { width: 240px; height: 250px; left: 10px; bottom: 8px; padding: 26px; transform: rotate(-5deg); }
  .motif-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 42px; }
  .motif-card__top i { width: 42px; height: 42px; border-radius: 14px; background: var(--indigo); }
  .motif-card__top b { width: 60px; height: 10px; border-radius: 8px; background: var(--mint); }
  .motif-card__line { width: 66%; height: 8px; margin-bottom: 12px; border-radius: 8px; background: #e4d9de; }
  .motif-card__line--wide { width: 100%; background: var(--ink); }
  .motif-card__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 26px; }
  .motif-card__stats span { height: 45px; border-radius: 12px; background: #fae9f0; }
  .motif-card__stats span:nth-child(2) { background: var(--mint); }
  .motif-orbit { position: absolute; border-radius: 50%; background: var(--mint-bright); box-shadow: 0 8px 20px rgba(194,24,91,.16); }
  .motif-orbit--one { width: 28px; height: 28px; top: 22px; left: 50px; }
  .motif-orbit--two { width: 13px; height: 13px; right: 26px; bottom: 28px; background: var(--indigo); }
  .segment { padding: 20px 0 72px; }
  .segment__heading .kicker { display: block; margin: 0; }
  .segment h2 { font-size: 28px; }
  .segment__grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
  .segment-card { min-height: 116px; grid-template-columns: 58px 1fr 38px; padding: 18px; }
  .segment-card__icon { width: 58px; height: 58px; }
  .segment-card__copy strong { font-size: 17px; }
  .segment-card__copy small { font-size: 13px; }
  .segment__hint { font-size: 12px; }
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit-card { min-height: 270px; padding: 28px; }
  .benefit-card__number { margin-bottom: 70px; }
  .partner-program__panel { padding: 54px; }
  .partner-program__cards { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .partner-program__cards article { min-height: 220px; padding: 26px; }
  .partner-program__cards span { margin-bottom: 54px; }
  .assurance__panel { padding: 54px; }
  .fact-list { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 40px; }
  .signup { grid-template-columns: .82fr 1.18fr; gap: 60px; align-items: start; padding-bottom: 120px; }
  .signup__intro { position: sticky; top: 40px; }
  .signup__aside { width: 180px; height: 180px; margin-top: 42px; display: flex; flex-direction: column; justify-content: end; padding: 22px; border-radius: 50%; background: var(--mint); transform: rotate(-7deg); }
  .signup__aside span { font-size: 13px; }
  .signup__aside strong { font-size: 23px; letter-spacing: -.04em; }
  .signup__aside i { position: absolute; top: 22px; right: 40px; font-size: 28px; font-style: normal; }
  .form-card { padding: 32px; }
  .field-grid { grid-template-columns: repeat(2, 1fr); }
  .field--full { grid-column: 1 / -1; }
  .sticky-cta div { display: grid; }
  .sticky-cta small { color: var(--mint); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
  .sticky-cta strong { font-size: 12px; }
  .sticky-cta button { width: auto; min-width: 160px; padding-inline: 16px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__links { justify-self: end; min-width: 270px; }
}

@media (min-width: 1024px) {
  .hero { min-height: 500px; }
  .hero__motif { width: 440px; height: 390px; right: 20px; bottom: 38px; transform: scale(1.08); }
  .segment { margin-top: -4px; }
  .segment-card { min-height: 128px; padding-inline: 24px; }
  .benefits { padding-block: 110px 96px; }
  .section-intro { margin-bottom: 50px; }
  .partner-program { padding-bottom: 110px; }
  .partner-program__panel { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; padding: 70px; }
  .partner-program__cards { margin-top: 0; }
  .partner-program__note { grid-column: 1 / -1; margin-top: 0; }
  .assurance { padding-bottom: 110px; }
  .assurance__panel { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; padding: 70px; }
  .fact-list { margin-top: 0; }
  .assurance__note { grid-column: 1 / -1; margin-top: 0; }
  .signup { gap: 100px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
