:root {
  --paper: #ffffff;
  --soft: #f4f2f0;
  --ink: #111111;
  --muted: #67625f;
  --line: #d9d5d2;
  --pink: #ff2f92;
  --red: #ed1c3b;
  --blue: #1769ff;
  --yellow: #ffd400;
  --radius: 22px;
  --pad: clamp(22px, 4vw, 72px);
  --shadow: 12px 12px 0 #111111;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
button, input, textarea { font: inherit; }
a { color: inherit; }
img, svg { max-width: 100%; }
::selection { background: var(--pink); color: white; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.sale-strip {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px var(--pad);
  background: var(--ink);
  color: white;
  font-size: 13px;
  letter-spacing: .04em;
  text-align: center;
}
.sale-strip__pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 4px rgba(255,47,146,.18);
}

.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px var(--pad);
  background: rgba(255,255,255,.96);
  border-bottom: 2px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 50;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.04em;
  font-size: clamp(18px, 2vw, 26px);
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--ink);
  color: white;
  border-radius: 10px;
  font-size: 15px;
  letter-spacing: -.05em;
}
.brand__dot { color: var(--pink); }
.main-nav { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 34px); }
.main-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.main-nav a:not(.nav-cta):hover { color: var(--pink); }
.nav-cta {
  padding: 13px 18px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--ink);
}
.nav-cta:hover { transform: translate(2px,2px); box-shadow: 3px 3px 0 var(--ink); }
.menu-button { display: none; }

.hero {
  min-height: calc(100vh - 126px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr);
  position: relative;
  border-bottom: 2px solid var(--ink);
  background: white;
}
.hero__copy {
  padding: clamp(64px, 8vw, 132px) var(--pad) clamp(76px, 8vw, 130px);
  align-self: center;
}
.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-bottom: 28px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}
.eyebrow span:first-child { color: var(--pink); }
.hero h1 {
  margin: 0;
  font-size: clamp(66px, 8.5vw, 166px);
  line-height: .81;
  letter-spacing: -.075em;
  font-weight: 950;
  text-wrap: balance;
}
.hero h1 span { color: var(--red); }
.hero__lead {
  max-width: 760px;
  margin: clamp(30px, 4vw, 54px) 0 0;
  font-size: clamp(18px, 1.5vw, 25px);
  line-height: 1.45;
  color: #2a2725;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border: 2px solid var(--ink);
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.button--primary { background: var(--pink); color: white; box-shadow: 7px 7px 0 var(--ink); }
.button--secondary { background: white; color: var(--ink); }
.button:hover { transform: translate(2px,2px); }
.button--primary:hover { box-shadow: 4px 4px 0 var(--ink); }
.tax-note { margin: 20px 0 0; color: var(--muted); font-size: 13px; }

.hero__stage {
  min-width: 0;
  display: grid;
  place-items: center;
  padding: clamp(56px, 6vw, 110px) clamp(28px, 5vw, 86px) clamp(90px, 8vw, 140px);
  background: var(--soft);
  border-left: 2px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.hero__stage::before,
.hero__stage::after {
  content: "";
  position: absolute;
  background: var(--ink);
  opacity: .08;
}
.hero__stage::before { width: 1px; height: 100%; left: 25%; top: 0; box-shadow: 160px 0 0 var(--ink), 320px 0 0 var(--ink), 480px 0 0 var(--ink); }
.hero__stage::after { width: 100%; height: 1px; top: 28%; left: 0; box-shadow: 0 160px 0 var(--ink), 0 320px 0 var(--ink), 0 480px 0 var(--ink); }
.stage-card {
  width: min(100%, 670px);
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 44px);
  background: white;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 3;
  transform: rotate(-2deg);
}
.stage-card__top { display: flex; justify-content: space-between; gap: 12px; font-size: 11px; font-weight: 900; letter-spacing: .09em; }
.stage-card__status { display: flex; align-items: center; gap: 7px; color: var(--red); }
.stage-card__status i { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.stage-card__domain { font-size: clamp(46px, 5vw, 88px); line-height: .9; font-weight: 950; letter-spacing: -.075em; overflow-wrap: anywhere; }
.stage-card__domain span { color: var(--pink); }
.stage-card__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.stage-card__tags span { padding: 8px 10px; border: 2px solid var(--ink); font-size: 11px; font-weight: 900; }
.stage-card__tags span:nth-child(2) { background: var(--pink); color: white; }
.stage-card__tags span:nth-child(3) { background: var(--blue); color: white; }
.stage-card__tags span:nth-child(4) { background: var(--red); color: white; }
.stage-card__price { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 3px solid var(--ink); }
.stage-card__price > div:first-child { display: grid; }
.stage-card__price small { font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.stage-card__price strong { font-size: clamp(42px, 5vw, 76px); line-height: 1; letter-spacing: -.06em; }
.stage-card__price span { color: var(--muted); font-size: 13px; }
.stage-card__badge { width: 80px; height: 80px; display: grid; place-items: center; background: var(--yellow); border: 3px solid var(--ink); border-radius: 50%; font-size: 22px; font-weight: 950; }
.stage-accent { position: absolute; z-index: 1; border: 3px solid var(--ink); }
.stage-accent--pink { width: 170px; height: 170px; right: -35px; top: 55px; background: var(--pink); transform: rotate(12deg); }
.stage-accent--blue { width: 130px; height: 130px; left: -40px; bottom: 90px; background: var(--blue); transform: rotate(-18deg); }
.stage-seal { position: absolute; z-index: 5; right: clamp(16px, 3vw, 46px); bottom: 38px; width: 116px; height: 116px; display: grid; place-items: center; align-content: center; border-radius: 50%; border: 3px solid var(--ink); background: white; font-size: 12px; font-weight: 900; text-align: center; transform: rotate(8deg); }
.stage-seal span { font-size: 34px; line-height: 1; }
.hero__ticker { grid-column: 1 / -1; overflow: hidden; border-top: 2px solid var(--ink); background: var(--yellow); padding: 13px 0; white-space: nowrap; font-size: 14px; font-weight: 950; letter-spacing: .08em; }
.hero__ticker div { width: max-content; padding-left: var(--pad); }

section { width: 100%; }
.section-kicker { margin-bottom: 20px; color: var(--red); font-size: 12px; font-weight: 950; letter-spacing: .14em; }
.section-kicker--light { color: #ff86bd; }

.proof { padding: clamp(82px, 9vw, 150px) var(--pad); background: white; }
.proof__headline { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: clamp(32px, 7vw, 120px); align-items: end; }
.proof h2, .possibilities h2, .package h2, .process h2, .faq h2, .contact h2 {
  margin: 0;
  font-size: clamp(48px, 6.3vw, 118px);
  line-height: .92;
  letter-spacing: -.065em;
  font-weight: 950;
}
.proof__headline p { margin: 0; font-size: clamp(18px, 1.45vw, 24px); color: var(--muted); }
.proof-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: clamp(52px, 7vw, 96px); }
.proof-card { min-height: 310px; display: flex; flex-direction: column; padding: 26px; border: 2px solid var(--ink); background: white; box-shadow: 7px 7px 0 var(--ink); }
.proof-card__number { width: 54px; height: 54px; display: grid; place-items: center; border: 2px solid var(--ink); font-weight: 950; background: white; }
.proof-card h3 { margin: auto 0 12px; font-size: clamp(24px, 2vw, 34px); line-height: 1; letter-spacing: -.04em; }
.proof-card p { margin: 0; color: #333; }
.proof-card--pink { background: #ffe5f1; }
.proof-card--blue { background: #e5efff; }
.proof-card--red { background: #ffe5e8; }
.proof-card--ink { background: var(--ink); color: white; box-shadow: 7px 7px 0 var(--pink); }
.proof-card--ink p { color: #ddd; }

.possibilities { padding: clamp(84px, 9vw, 154px) var(--pad); background: var(--ink); color: white; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.possibilities__intro { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .65fr); column-gap: clamp(36px, 8vw, 140px); align-items: end; }
.possibilities__intro .section-kicker { grid-column: 1 / -1; }
.possibilities__intro p { margin: 0; color: #c9c6c4; font-size: 18px; }
.possibility-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: clamp(54px, 7vw, 92px); }
.possibility-card { min-height: 410px; display: flex; flex-direction: column; padding: 30px; background: white; color: var(--ink); border: 2px solid white; }
.possibility-card__icon { width: 54px; height: 54px; display: grid; place-items: center; border: 2px solid var(--ink); font-weight: 950; }
.possibility-card h3 { margin: auto 0 15px; font-size: clamp(28px, 2.1vw, 39px); line-height: .98; letter-spacing: -.045em; }
.possibility-card p { margin: 0 0 26px; color: #4f4a47; }
.possibility-card ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; }
.possibility-card li { padding: 7px 9px; border: 1px solid var(--ink); font-size: 12px; font-weight: 800; }
.possibility-card--pink { background: var(--pink); color: white; }
.possibility-card--pink p, .possibility-card--blue p, .possibility-card--red p { color: white; }
.possibility-card--pink .possibility-card__icon, .possibility-card--pink li,
.possibility-card--blue .possibility-card__icon, .possibility-card--blue li,
.possibility-card--red .possibility-card__icon, .possibility-card--red li { border-color: white; }
.possibility-card--blue { background: var(--blue); color: white; }
.possibility-card--red { background: var(--red); color: white; }

.package { display: grid; grid-template-columns: 1fr .72fr 1fr; min-height: 520px; border-bottom: 2px solid var(--ink); }
.package > div { padding: clamp(50px, 6vw, 100px) var(--pad); }
.package__title { background: var(--soft); }
.package__price { display: flex; flex-direction: column; justify-content: center; background: var(--yellow); border-left: 2px solid var(--ink); border-right: 2px solid var(--ink); }
.package__price span { font-size: 12px; font-weight: 950; letter-spacing: .12em; }
.package__price strong { font-size: clamp(62px, 7vw, 120px); line-height: .95; letter-spacing: -.07em; }
.package__price small { margin-top: 12px; font-weight: 800; }
.package__details { display: flex; flex-direction: column; justify-content: center; gap: 26px; }
.package__details > div { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.package__details span { width: 40px; height: 40px; display: grid; place-items: center; border: 2px solid var(--ink); font-weight: 950; background: var(--pink); color: white; }
.package__details p { margin: 0; }

.process { padding: clamp(82px, 9vw, 150px) var(--pad); }
.process > h2 { max-width: 1180px; }
.process-list { margin: clamp(54px, 7vw, 100px) 0 0; padding: 0; list-style: none; border-top: 2px solid var(--ink); }
.process-list li { display: grid; grid-template-columns: 110px .9fr; gap: clamp(24px, 5vw, 90px); padding: 34px 0; border-bottom: 2px solid var(--ink); }
.process-list > li > span { font-size: 14px; font-weight: 950; color: var(--pink); }
.process-list h3 { margin: 0 0 7px; font-size: clamp(26px, 2.2vw, 40px); letter-spacing: -.04em; }
.process-list p { max-width: 900px; margin: 0; color: var(--muted); font-size: 18px; }

.faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(40px, 8vw, 140px); padding: clamp(82px, 9vw, 150px) var(--pad); background: var(--soft); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.faq-list { border-top: 2px solid var(--ink); }
details { border-bottom: 2px solid var(--ink); }
summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 0; cursor: pointer; font-size: clamp(19px, 1.7vw, 27px); font-weight: 900; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center; border: 2px solid var(--ink); background: white; }
details[open] summary::after { content: "−"; background: var(--pink); color: white; }
details p { margin: 0; padding: 0 56px 28px 0; color: var(--muted); font-size: 17px; }

.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(44px, 8vw, 140px); padding: clamp(82px, 9vw, 150px) var(--pad); background: var(--blue); color: white; }
.contact__copy p { max-width: 720px; font-size: 18px; color: #edf3ff; }
.copy-email { width: 100%; max-width: 680px; display: grid; gap: 3px; margin-top: 32px; padding: 18px; border: 2px solid white; background: transparent; color: white; text-align: left; cursor: pointer; }
.copy-email span { font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.copy-email b { font-size: clamp(18px, 2vw, 30px); overflow-wrap: anywhere; }
.copy-email:hover { background: white; color: var(--blue); }
.inquiry-form { padding: clamp(24px, 3vw, 42px); background: white; color: var(--ink); border: 3px solid var(--ink); box-shadow: 10px 10px 0 var(--pink); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.inquiry-form label { display: grid; gap: 7px; margin-bottom: 16px; font-size: 13px; font-weight: 900; }
.inquiry-form input, .inquiry-form textarea { width: 100%; padding: 14px; border: 2px solid var(--ink); border-radius: 0; background: white; color: var(--ink); outline: none; }
.inquiry-form input:focus, .inquiry-form textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255,47,146,.18); }
.consent { grid-template-columns: 22px 1fr !important; align-items: start; font-weight: 400 !important; }
.consent input { width: 19px; height: 19px; padding: 0; }
.button--form { width: 100%; background: var(--ink); color: white; }
.button--form:hover { background: var(--pink); }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: 12px; }

.site-footer { display: grid; grid-template-columns: 1fr 1fr auto; gap: 24px; align-items: end; padding: 54px var(--pad) 80px; background: var(--ink); color: white; }
.site-footer__brand { font-size: clamp(30px, 4vw, 64px); font-weight: 950; letter-spacing: -.06em; }
.site-footer__brand span { color: var(--pink); }
.site-footer p { margin: 0; color: #bbb; }
.site-footer nav { display: flex; gap: 18px; }
.site-footer a { color: white; }
.site-footer small { grid-column: 1 / -1; padding-top: 28px; border-top: 1px solid #333; color: #999; }
.mobile-buy { display: none; }

@media (min-width: 1900px) {
  :root { --pad: clamp(72px, 5vw, 130px); }
  .hero { grid-template-columns: 1.18fr .82fr; }
  .stage-card { width: min(100%, 800px); }
  .proof-grid { gap: 28px; }
  .possibility-grid { gap: 28px; }
}

@media (max-width: 1120px) {
  .hero { grid-template-columns: 1fr; }
  .hero__stage { min-height: 720px; border-left: 0; border-top: 2px solid var(--ink); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .possibility-grid { grid-template-columns: repeat(2, 1fr); }
  .package { grid-template-columns: 1fr 1fr; }
  .package__details { grid-column: 1 / -1; border-top: 2px solid var(--ink); }
  .faq, .contact { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer p { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  body { padding-bottom: 72px; }
  .sale-strip { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
  .sale-strip span:last-child { overflow: hidden; text-overflow: ellipsis; }
  .site-header { min-height: 74px; }
  .menu-button { display: flex; align-items: center; gap: 10px; border: 0; background: transparent; font-weight: 900; cursor: pointer; }
  .menu-button__lines { width: 26px; display: grid; gap: 6px; }
  .menu-button__lines i { display: block; height: 2px; background: var(--ink); transition: transform .2s ease; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 22px var(--pad); background: white; border-bottom: 2px solid var(--ink); flex-direction: column; align-items: stretch; }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 0; }
  .nav-cta { text-align: center; }
  .hero h1 { font-size: clamp(64px, 17vw, 118px); }
  .hero__stage { min-height: 620px; padding: 70px 22px 110px; }
  .stage-card { min-height: 430px; transform: rotate(-1deg); }
  .stage-card__domain { font-size: clamp(43px, 12vw, 72px); }
  .proof__headline, .possibilities__intro { grid-template-columns: 1fr; }
  .proof__headline p, .possibilities__intro p { margin-top: 26px; }
  .proof-grid, .possibility-grid { grid-template-columns: 1fr; }
  .proof-card, .possibility-card { min-height: 300px; }
  .package { grid-template-columns: 1fr; }
  .package__price { border: 0; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
  .package__details { grid-column: auto; border-top: 0; }
  .process-list li { grid-template-columns: 58px 1fr; gap: 12px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .site-footer { grid-template-columns: 1fr; padding-bottom: 44px; }
  .site-footer nav { margin-top: 8px; }
  .mobile-buy { position: fixed; z-index: 60; left: 0; right: 0; bottom: 0; min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 20px; background: var(--pink); color: white; border-top: 2px solid var(--ink); text-decoration: none; }
  .mobile-buy span { font-weight: 950; }
  .mobile-buy strong { font-size: 13px; }
}

@media (max-width: 520px) {
  :root { --pad: 18px; --shadow: 8px 8px 0 #111; }
  .brand__mark { display: none; }
  .brand { font-size: 18px; }
  .menu-button__label { display: none; }
  .hero__copy { padding-top: 56px; }
  .hero h1 { font-size: clamp(58px, 18.5vw, 88px); }
  .hero__lead { font-size: 17px; }
  .hero__actions { display: grid; }
  .stage-card { min-height: 400px; padding: 20px; }
  .stage-card__top { flex-direction: column; }
  .stage-card__price strong { font-size: 48px; }
  .stage-card__badge { width: 62px; height: 62px; font-size: 17px; }
  .stage-seal { width: 92px; height: 92px; right: 12px; bottom: 20px; }
  .stage-seal span { font-size: 27px; }
  .proof h2, .possibilities h2, .package h2, .process h2, .faq h2, .contact h2 { font-size: clamp(46px, 14vw, 72px); }
  .proof-card, .possibility-card { padding: 22px; }
  .package__price strong { font-size: 64px; }
  .process-list li { grid-template-columns: 1fr; }
  .inquiry-form { box-shadow: 7px 7px 0 var(--pink); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}


/* V2: fluid scaling, mobile refinement and legal pages */
html { scroll-padding-top: 104px; }
body { min-width: 320px; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
.site-header { width: 100%; backdrop-filter: blur(14px); }
.hero, section, .site-footer { width: 100%; }
.hero__copy, .stage-card, .contact > *, .package > *, .proof-card, .possibility-card { min-width: 0; }
.stage-card__price > div:first-child { min-width: 0; }
.stage-card__price strong, .package__price strong { white-space: nowrap; }
.inquiry-form input, .inquiry-form textarea { min-width: 0; }
.consent a { font-weight: 900; }
.direct-email { display: inline-block; margin-top: 18px; color: white; font-size: clamp(20px, 2vw, 30px); font-weight: 950; overflow-wrap: anywhere; }
.site-footer p a { color: #ff86bd; font-weight: 900; }

.legal-page { min-height: 72vh; padding: clamp(62px, 8vw, 120px) var(--pad) clamp(86px, 9vw, 150px); background: white; }
.legal-hero { max-width: 1100px; }
.legal-hero h1 { margin: 0; font-size: clamp(48px, 7.5vw, 112px); line-height: .9; letter-spacing: -.065em; font-weight: 950; }
.legal-hero > p { max-width: 780px; margin: 26px 0 0; color: var(--muted); font-size: clamp(17px, 1.4vw, 22px); }
.legal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: clamp(44px, 6vw, 76px); }
.legal-card { min-width: 0; padding: clamp(24px, 3vw, 36px); border: 2px solid var(--ink); background: var(--soft); }
.legal-card--primary { background: #ffe5f1; box-shadow: 7px 7px 0 var(--ink); }
.legal-card--wide { max-width: 1000px; margin-top: clamp(44px, 6vw, 76px); }
.legal-card h2 { margin: 0 0 15px; font-size: clamp(24px, 2.4vw, 38px); line-height: 1; letter-spacing: -.04em; }
.legal-card p { margin: 0 0 13px; font-size: 17px; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-card a, .legal-text a { color: var(--blue); font-weight: 800; overflow-wrap: anywhere; }
.legal-text { max-width: 1050px; margin-top: clamp(50px, 7vw, 92px); }
.legal-text h2 { margin: 42px 0 13px; font-size: clamp(26px, 2.7vw, 42px); line-height: 1.05; letter-spacing: -.04em; }
.legal-text p, .legal-text li { font-size: 17px; }
.legal-text p { margin: 0 0 16px; }
.legal-text li + li { margin-top: 7px; }
.site-footer--legal { padding-bottom: 46px; }
.button--compact { min-height: 46px; padding: 10px 17px; }

.error-page { min-height: 100svh; display: grid; place-content: center; justify-items: start; gap: 18px; padding: var(--pad); background: var(--soft); }
.error-page > span { color: var(--pink); font-size: clamp(80px, 18vw, 240px); line-height: .7; font-weight: 950; letter-spacing: -.08em; }
.error-page h1 { max-width: 900px; margin: 0; font-size: clamp(44px, 7vw, 110px); line-height: .92; letter-spacing: -.06em; }
.error-page p { margin: 0; color: var(--muted); font-size: 18px; }

@media (max-width: 820px) {
  html { scroll-padding-top: 82px; }
  .sale-strip { justify-content: center; flex-wrap: wrap; white-space: normal; overflow: visible; }
  .sale-strip span:last-child { overflow: visible; text-overflow: clip; }
  .main-nav { max-height: calc(100svh - 74px); overflow-y: auto; }
  .mobile-buy { padding: 12px max(20px, env(safe-area-inset-right)) calc(12px + env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left)); }
  .legal-grid { grid-template-columns: 1fr; }
  .site-footer--legal { padding-bottom: 44px; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: clamp(52px, 17vw, 82px); }
  .hero__actions .button { width: 100%; }
  .stage-card__price { align-items: center; gap: 12px; }
  .stage-card__price strong { font-size: clamp(38px, 12vw, 48px); }
  .package__price strong { font-size: clamp(54px, 18vw, 72px); }
  .legal-hero h1 { font-size: clamp(42px, 13vw, 62px); }
  .legal-card { padding: 22px; }
}

@media (min-width: 2200px) {
  :root { --pad: clamp(92px, 5vw, 150px); }
  body { font-size: 18px; }
  .stage-card { width: min(100%, 850px); min-height: 540px; }
}
