:root {
  --ink: #171415;
  --paper: #f6f2ed;
  --white: #fffdf9;
  --pink: #e8a2a7;
  --pink-bright: #ff8c98;
  --pink-soft: #f2d8d5;
  --rose: #b56f74;
  --line: rgba(23, 20, 21, .14);
  --radius: 30px;
  --container: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
.nowrap { white-space: nowrap; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 14px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(246, 242, 237, .98);
}
.wordmark {
  display: block;
  width: 170px;
  line-height: 0;
}
.wordmark img { width: 100%; height: auto; }
.site-nav { display: flex; gap: 30px; font-size: 14px; }
.site-nav a { transition: opacity .25s ease; }
.site-nav a:hover { opacity: .55; }
.site-header > .button { justify-self: end; }

.section-shell { width: min(calc(100% - clamp(32px, 6vw, 96px)), var(--container)); margin-inline: auto; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: stretch;
  min-height: calc(100svh - 78px);
  padding-block: clamp(34px, 5vw, 76px);
}
.hero__copy { display: flex; flex-direction: column; justify-content: center; padding-block: 14px; }
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 790px;
  margin: 20px 0 22px;
  font-size: clamp(44px, 4.25vw, 76px);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.057em;
}
.hero__price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  width: max-content;
  max-width: 100%;
  margin-bottom: 22px;
  padding: 4px 0 6px;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.15;
  letter-spacing: -.025em;
}
.hero__price span { color: rgba(23,20,21,.58); font-size: inherit; font-weight: 500; }
.hero__price > strong { font-size: clamp(29px, 3vw, 44px); font-weight: 700; line-height: 1.05; letter-spacing: -.045em; }
.hero__lead { max-width: 650px; margin-bottom: 24px; font-size: clamp(17px, 1.25vw, 19px); line-height: 1.45; }
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin-bottom: 18px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 58px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 48px; padding-inline: 22px; font-size: 13px; }
.button--primary { background: var(--pink-bright); }
.button--primary:hover { background: #ff7d8b; }
.button--dark { color: var(--white); background: var(--ink); }
.button--dark:hover { background: #332f30; }
.button--large { min-height: 68px; padding-inline: 36px; font-size: 16px; }
.floating-cta { position: fixed; z-index: 18; right: 24px; bottom: 24px; min-height: 58px; box-shadow: 0 12px 36px rgba(23,20,21,.2); opacity: 0; visibility: hidden; transform: translateY(14px); transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background .25s ease; }
.floating-cta.is-visible { opacity: 1; visibility: visible; transform: none; }
.hero__visual { position: relative; min-height: 650px; overflow: hidden; border-radius: var(--radius); background: var(--pink-soft); }
.hero__visual::after { position: absolute; inset: 0; content: ""; box-shadow: inset 0 0 0 1px rgba(255,255,255,.2); pointer-events: none; }
.hero__visual img { width: 100%; height: 100%; object-fit: cover; object-position: 54% center; }
.hero__badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 190px;
  height: 190px;
  padding: 30px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
}
.hero__badge > span { margin: 0 0 15px 7px; font-size: 12px; text-transform: uppercase; }
.hero__badge > div { display: flex; align-items: flex-end; gap: 7px; width: 100%; }
.hero__badge strong { flex: 0 0 auto; font-size: 58px; font-weight: 500; line-height: .78; letter-spacing: -.06em; }
.hero__badge div span { max-width: 58px; padding-bottom: 1px; font-size: 10px; line-height: 1.12; }

.marquee { overflow: hidden; padding: 20px 0; color: var(--white); background: var(--ink); }
.marquee__track { display: flex; align-items: center; width: max-content; animation: ticker 28s linear infinite; }
.marquee span { padding-inline: 28px; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.marquee i { width: 7px; height: 7px; border-radius: 50%; background: var(--pink-bright); }
@keyframes ticker { to { transform: translateX(-50%); } }

.content-section { padding-block: clamp(90px, 11vw, 170px); scroll-margin-top: 70px; }
.section-label { margin-bottom: clamp(42px, 6vw, 84px); color: rgba(23,20,21,.54); }
.section-label span { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 10px; }
.section-label--light { color: rgba(255,255,255,.55); }
.section-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .74fr); gap: clamp(48px, 9vw, 150px); align-items: start; }
h2 { margin-bottom: 0; font-size: clamp(44px, 5.4vw, 82px); font-weight: 500; line-height: .98; letter-spacing: -.055em; }
.copy { font-size: 17px; line-height: 1.65; }
.copy--large { font-size: clamp(19px, 1.7vw, 25px); line-height: 1.5; }
.copy p:last-child { margin-bottom: 0; }
.format-heading { max-width: 1100px; }
.format-cards { display: grid; grid-template-columns: .88fr 1.24fr .88fr; gap: 14px; margin-top: clamp(64px, 8vw, 110px); align-items: stretch; }
.format-card { min-height: 280px; padding: clamp(28px, 3vw, 42px); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.34); }
.format-card h3 { margin-bottom: 44px; font-size: clamp(26px, 2.35vw, 36px); font-weight: 500; line-height: 1.08; letter-spacing: -.035em; }
.format-card > strong { display: block; margin-bottom: 12px; font-size: clamp(22px, 2vw, 30px); font-weight: 500; line-height: 1.08; letter-spacing: -.03em; }
.format-card p { margin-bottom: 16px; color: rgba(23,20,21,.62); font-size: 15px; line-height: 1.5; }
.format-card p:last-child { margin-bottom: 0; }
.format-card--accent { border-color: transparent; background: var(--pink); }
.format-card--accent p { color: rgba(23,20,21,.72); }

.content-section--dark { color: var(--white); background: var(--ink); }
.reason-heading { max-width: 1000px; }
.reason-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(60px, 8vw, 110px); border-block: 1px solid rgba(255,255,255,.18); }
.reason-grid article { padding: 30px clamp(22px, 3vw, 42px) 36px; border-left: 1px solid rgba(255,255,255,.18); }
.reason-grid article:first-child { border-left: 0; }
.reason-grid span { display: block; margin-bottom: 38px; color: rgba(255,255,255,.38); font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.reason-grid h3 { margin-bottom: 16px; font-size: clamp(25px, 2.5vw, 38px); font-weight: 500; line-height: 1.05; letter-spacing: -.035em; }
.reason-grid p { margin: 0; color: rgba(255,255,255,.65); font-size: 16px; line-height: 1.55; }
.section-grid--intro { align-items: end; }
.section-note { max-width: 520px; margin: 0; font-size: clamp(17px, 1.5vw, 22px); }
.economics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: clamp(64px, 8vw, 110px); }
.info-card, .metric-card { position: relative; overflow: hidden; min-height: 370px; padding: clamp(28px, 3.5vw, 54px); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.42); }
.info-card__number { display: grid; width: 42px; height: 42px; margin-bottom: 70px; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 11px; }
.info-card h3 { max-width: 700px; margin-bottom: 26px; font-size: clamp(27px, 2.7vw, 42px); font-weight: 500; line-height: 1.08; letter-spacing: -.04em; }
.info-card p { max-width: 830px; margin-bottom: 0; color: rgba(23,20,21,.7); font-size: 16px; }
.info-card--wide { grid-column: 1 / -1; }
.metric-card { display: flex; flex-direction: column; justify-content: space-between; min-height: 310px; color: var(--white); background: var(--ink); }
.metric-card span { font-size: 13px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.metric-card strong { font-size: clamp(52px, 6vw, 88px); font-weight: 500; line-height: .9; letter-spacing: -.07em; }
.metric-card small { max-width: 280px; color: rgba(255,255,255,.62); font-size: 14px; }
.metric-card--pink { color: var(--ink); background: var(--pink); }
.metric-card--pink small { color: rgba(23,20,21,.65); }

.content-section--blush { background: var(--pink-soft); }
.split-heading { max-width: 1200px; }
.split-heading em { color: rgba(23,20,21,.4); font-style: normal; }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: clamp(64px, 8vw, 110px); }
.support-card { min-height: 600px; padding: clamp(28px, 4vw, 58px); border-radius: var(--radius); background: var(--pink); }
.support-card--white { background: var(--white); }
.support-card__icon { display: grid; width: 62px; height: 62px; margin-bottom: clamp(56px, 6vw, 90px); place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 25px; }
.support-card h3 { max-width: 560px; margin-bottom: 28px; font-size: clamp(30px, 3.3vw, 48px); font-weight: 500; line-height: 1.06; letter-spacing: -.045em; }
.support-card p { max-width: 650px; margin: 0; color: rgba(23,20,21,.7); }
.support-list { margin: 24px 0 0; padding: 0; list-style: none; }
.support-list li { position: relative; padding: 15px 0 15px 26px; border-top: 1px solid rgba(23,20,21,.16); color: rgba(23,20,21,.72); }
.support-list li::before { position: absolute; left: 2px; content: "→"; color: var(--ink); }
.support-list strong { color: var(--ink); font-weight: 600; }
.support-list--contracts { margin-top: 26px; }
.support-list--services { counter-reset: service; }
.support-list--services li { position: relative; display: grid; grid-template-columns: 34px minmax(120px, .55fr) 1fr; gap: 8px 16px; padding: 19px 0; counter-increment: service; }
.support-list--services li::before { position: static; grid-column: 1; grid-row: 1; content: counter(service, decimal-leading-zero); color: rgba(23,20,21,.48); font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.support-list--services strong { grid-column: 2; grid-row: 1; font-size: 16px; }
.support-list--services span { grid-column: 3; grid-row: 1; color: rgba(23,20,21,.68); }

#fit > h2 { max-width: 950px; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: clamp(64px, 8vw, 110px); }
.fit-card { padding: clamp(28px, 3.5vw, 52px); border-radius: var(--radius); }
.fit-card--yes { background: var(--pink); }
.fit-card--no { border: 1px solid var(--line); background: rgba(255,255,255,.35); }
.fit-card__header { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 42px; }
.fit-card__header span { font-size: clamp(24px, 2.5vw, 38px); line-height: 1.1; letter-spacing: -.03em; }
.fit-card__header b { display: grid; flex: 0 0 58px; height: 58px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.fit-card ul { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.fit-card li { position: relative; padding: 19px 0 19px 32px; border-top: 1px solid rgba(23,20,21,.17); }
.fit-card li::before { position: absolute; left: 3px; content: "→"; }
.fit-card--no li::before { content: "×"; }
.closing-statement { max-width: 950px; margin: clamp(70px, 10vw, 140px) auto 0; text-align: center; font-size: clamp(30px, 4vw, 60px); line-height: 1.08; letter-spacing: -.045em; }

.final-cta { position: relative; min-height: 780px; padding: clamp(90px, 10vw, 150px) clamp(20px, 4vw, 64px); overflow: hidden; color: var(--ink); background: var(--pink); }
.final-cta__inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(390px, .72fr); gap: clamp(50px, 8vw, 130px); align-items: center; width: min(100%, var(--container)); margin-inline: auto; }
.final-cta__eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: clamp(32px, 5vw, 64px); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.final-cta__eyebrow i { width: 9px; height: 9px; border-radius: 50%; background: var(--ink); }
.final-cta__copy h2 { max-width: 850px; margin-bottom: 34px; }
.final-cta__copy h2 strong { font-weight: 500; }
.final-cta__copy p { max-width: 650px; margin: 0; font-size: clamp(17px, 1.45vw, 21px); }
.final-cta__card { min-height: 540px; padding: clamp(30px, 4vw, 54px); border-radius: var(--radius); color: var(--white); background: var(--ink); }
.final-cta__card-top { display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; margin-bottom: clamp(80px, 9vw, 130px); color: rgba(255,255,255,.55); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.final-cta__card-top b { display: flex; align-items: baseline; gap: 6px; color: var(--white); font-size: 28px; font-weight: 500; letter-spacing: -.04em; }
.final-cta__card-top small { color: rgba(255,255,255,.48); font-size: 9px; letter-spacing: .08em; }
.final-cta__card h3 { max-width: 520px; margin-bottom: 22px; font-size: clamp(32px, 3.1vw, 48px); font-weight: 500; line-height: 1.02; letter-spacing: -.045em; }
.final-cta__card p { max-width: 520px; margin-bottom: 30px; color: rgba(255,255,255,.62); font-size: 16px; }
.final-cta__card .button { width: 100%; margin-top: 8px; color: var(--ink); }
.final-cta__time { display: block; margin-top: 14px; color: rgba(255,255,255,.43); font-size: 11px; text-align: center; }
.final-cta__orb { position: absolute; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; }
.final-cta__orb--one { top: -280px; left: -180px; width: 650px; height: 650px; }
.final-cta__orb--two { right: -110px; bottom: -360px; width: 730px; height: 730px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes fade-up { from { opacity: 0; transform: translateY(10px); } }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero__copy { min-height: auto; }
  .hero__visual { min-height: min(72vw, 720px); }
  .section-grid { grid-template-columns: 1fr; gap: 42px; }
  .section-grid--intro { align-items: start; }
  .reason-grid { grid-template-columns: 1fr; }
  .reason-grid article { display: grid; grid-template-columns: 46px 180px 1fr; gap: 16px; align-items: start; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.18); border-left: 0; }
  .reason-grid article:first-child { border-top: 0; }
  .reason-grid span, .reason-grid h3 { margin: 0; }
  .reason-grid p { margin: 0; }
  .format-cards { grid-template-columns: 1fr; }
  .format-card { min-height: 0; }
  .support-card { min-height: 0; }
  .support-card__icon { margin-bottom: 80px; }
  .final-cta__inner { grid-template-columns: 1fr; }
  .final-cta__card { max-width: 720px; }
}

@media (max-width: 720px) {
  .site-header { min-height: 68px; }
  .wordmark { width: 136px; }
  .site-header > .button { display: none; }
  .hero { min-height: 0; padding-top: 28px; }
  h1 { font-size: clamp(39px, 9.5vw, 48px); }
  h2 { font-size: clamp(40px, 12vw, 62px); }
  .hero__lead { font-size: 17px; }
  .hero__price { align-items: flex-start; gap: 2px; padding: 2px 0 5px; font-size: 18px; }
  .hero__price > strong { font-size: clamp(29px, 8.2vw, 38px); }
  .hero__visual { min-height: 520px; border-radius: 22px; }
  .hero__visual img { object-position: 55% center; }
  .hero__badge { right: 14px; bottom: 14px; width: 150px; height: 150px; padding: 22px; }
  .hero__badge > span { margin-bottom: 12px; font-size: 10px; }
  .hero__badge > div { gap: 4px; }
  .hero__badge strong { font-size: 46px; }
  .hero__badge div span { max-width: 46px; font-size: 8.5px; }
  .floating-cta { right: 16px; bottom: 16px; left: 16px; width: calc(100% - 32px); }
  .reason-grid article { grid-template-columns: 34px 1fr; gap: 6px 12px; }
  .reason-grid span { grid-column: 1; grid-row: 1 / 3; }
  .reason-grid h3 { grid-column: 2; grid-row: 1; }
  .reason-grid p { grid-column: 2; grid-row: 2; }
  .marquee span { padding-inline: 20px; }
  .economics-grid, .support-grid, .fit-grid { grid-template-columns: 1fr; }
  .info-card--wide { grid-column: auto; }
  .info-card, .metric-card { min-height: 0; }
  .metric-card { min-height: 280px; }
  .info-card__number { margin-bottom: 52px; }
  .support-card__icon { margin-bottom: 64px; }
  .support-list--services li { grid-template-columns: 30px 1fr; gap: 5px 12px; }
  .support-list--services strong { grid-column: 2; }
  .support-list--services span { grid-column: 2; grid-row: 2; }
  .final-cta { min-height: 0; padding-block: 90px; }
  .final-cta__card { min-height: 0; }
  .final-cta__card-top { margin-bottom: 80px; }
}

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