:root {
  --magenta: #cc0066;
  --magenta-dark: #99004d;
  --magenta-soft: #f5d6e5;
  --ink: #26231f;
  --heading: #302d29;
  --strong: #302d29;
  --muted: #706b64;
  --paper: #f5f3ee;
  --paper-deep: #ece6dc;
  --line: #d8d1c7;
  --white: #ffffff;
  --dark: #171717;
  --dark-2: #22201d;
  --danger: #c73535;
  --container: 1170px;
  --header-height: 94px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  letter-spacing: 0;
}

body.is-preview-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(130px, 1fr);
  align-items: center;
  gap: clamp(22px, 3.4vw, 46px);
  padding: 0 clamp(16px, 3vw, 42px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 15, 12, 0.86);
  backdrop-filter: blur(18px);
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: clamp(16px, 3vw, 42px);
  right: clamp(16px, 3vw, 42px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(204, 0, 102, 0) 0%, rgba(204, 0, 102, 0.86) 22%, rgba(255, 255, 255, 0.46) 52%, rgba(204, 0, 102, 0) 100%);
  opacity: 0.78;
  pointer-events: none;
}

.header-menu {
  display: contents;
}

.site-header.is-scrolled,
.subpage .site-header,
.reader-body .site-header {
  background: rgba(18, 15, 12, 0.93);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 13px;
  min-width: 0;
  color: inherit;
  font-size: 16px;
  font-weight: 800;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand span {
  max-width: 180px;
  color: currentColor;
  font-size: 13px;
  line-height: 1.05;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  grid-column: 2;
  gap: clamp(24px, 2.8vw, 38px);
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
  color: inherit;
  font-size: 15px;
  font-weight: 800;
}

.site-nav a,
.footer-links a {
  position: relative;
  white-space: nowrap;
}

.site-nav a {
  padding: 13px 0;
  color: rgba(255, 255, 255, 0.86);
  transition: color 180ms ease;
}

.site-nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: var(--magenta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav a.is-current {
  color: var(--white);
}

.site-nav a.is-current::after {
  transform: scaleX(1);
}

.subpage .site-nav,
.site-header.is-scrolled .site-nav,
.reader-body .site-nav {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.header-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.header-contact-action svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-contact-action:hover,
.header-contact-action:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(204, 0, 102, 0.95);
  background: var(--magenta);
  box-shadow: 0 18px 42px rgba(204, 0, 102, 0.3);
}

.menu-toggle {
  display: none;
  justify-self: end;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.menu-toggle i,
.menu-toggle i::before,
.menu-toggle i::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle i {
  position: relative;
}

.menu-toggle i::before,
.menu-toggle i::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle i::before {
  top: -7px;
}

.menu-toggle i::after {
  top: 7px;
}

.site-header.is-menu-open .menu-toggle {
  border-color: rgba(204, 0, 102, 0.85);
  background: var(--magenta);
}

.site-header.is-menu-open .menu-toggle i {
  transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle i::before {
  transform: translateY(7px) rotate(90deg);
}

.site-header.is-menu-open .menu-toggle i::after {
  opacity: 0;
}

.header-action,
.button,
.primary-button,
.secondary-button,
.small-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  white-space: nowrap;
  transition: transform 180ms ease, background-position 360ms cubic-bezier(0.22, 1, 0.36, 1), border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.header-action {
  flex: 0 0 148px;
  width: 148px;
  min-height: 54px;
  padding: 15px 22px;
  color: var(--white);
  font-size: 15px;
}

.header-action-primary,
.header-action-secondary {
  background: linear-gradient(90deg, var(--magenta-dark) 0 50%, var(--magenta) 50% 100%);
  background-size: 220% 100%;
  background-position: right center;
}

.header-action-secondary {
  background: linear-gradient(90deg, var(--magenta-dark) 0 50%, var(--magenta) 50% 100%);
  background-size: 220% 100%;
  background-position: right center;
  border-color: rgba(255, 255, 255, 0.18);
}

.button-primary,
.primary-button {
  background: linear-gradient(90deg, var(--magenta-dark) 0 50%, var(--magenta) 50% 100%);
  background-size: 220% 100%;
  background-position: right center;
  color: var(--white);
  box-shadow: 0 18px 42px rgba(204, 0, 102, 0.2);
}

.button-secondary,
.secondary-button,
.small-button {
  background: linear-gradient(90deg, var(--magenta) 0 50%, transparent 50% 100%);
  background-size: 220% 100%;
  background-position: right center;
  color: inherit;
  border-color: currentColor;
}

.header-action:hover,
.header-action:focus-visible,
.button:hover,
.button:focus-visible,
.primary-button:hover,
.primary-button:focus-visible,
.secondary-button:hover,
.secondary-button:focus-visible,
.small-button:hover,
.small-button:focus-visible {
  transform: translateY(-2px);
}

.header-action:hover,
.header-action:focus-visible,
.button-primary:hover,
.button-primary:focus-visible,
.primary-button:hover,
.primary-button:focus-visible {
  background-position: left center;
  box-shadow: 0 22px 52px rgba(204, 0, 102, 0.34);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.secondary-button:hover,
.secondary-button:focus-visible,
.small-button:hover,
.small-button:focus-visible {
  background-position: left center;
  color: var(--white);
  border-color: var(--magenta);
  box-shadow: 0 18px 42px rgba(204, 0, 102, 0.24);
}

.button:disabled,
.primary-button:disabled,
.secondary-button:disabled,
.small-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  animation: hero-breathe 20s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 15, 12, 0.9) 0%, rgba(18, 15, 12, 0.72) 38%, rgba(18, 15, 12, 0.2) 75%, rgba(18, 15, 12, 0.34) 100%),
    linear-gradient(180deg, rgba(18, 15, 12, 0.25) 0%, rgba(18, 15, 12, 0.08) 45%, rgba(18, 15, 12, 0.58) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: calc(var(--header-height) + 78px) 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(250px, 330px);
  justify-content: space-between;
  align-items: end;
  gap: clamp(38px, 7vw, 96px);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--magenta);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--magenta-soft);
}

.eyebrow span,
.section-kicker::before {
  content: "";
  display: inline-block;
  width: 46px;
  height: 2px;
  background: currentColor;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  color: var(--heading);
  max-width: 760px;
  margin-bottom: 28px;
  font-size: 76px;
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
}

.two-line-title span {
  display: block;
  white-space: nowrap;
}

.two-line-heading span {
  display: block;
  max-width: 100%;
  white-space: normal;
  text-wrap: balance;
}

h2.two-line-title span {
  max-width: 100%;
  white-space: normal;
  text-wrap: balance;
}

h2 {
  color: var(--heading);
  max-width: 850px;
  margin-bottom: 22px;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

h3 {
  color: var(--heading);
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
}

h4 {
  margin: 24px 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-subline {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.5;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.section-actions {
  margin-top: 30px;
}

.spaced-actions {
  margin-top: 38px;
}

.hero-actions .button {
  width: auto;
  min-width: 284px;
  min-height: 56px;
}

.section-actions .button {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  min-height: 56px;
}

.hero-note {
  max-width: 330px;
  padding-left: 22px;
  border-left: 3px solid var(--magenta);
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.45;
}

.hero-note p {
  margin-bottom: 0;
}

.section {
  padding: clamp(76px, 8vw, 112px) 0;
}

.intro,
.story-links,
.offer {
  background: var(--paper);
}

.image-led,
.magazine-section,
.order-section {
  background: var(--paper-deep);
}

.story-scene {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.entry-router {
  background: var(--paper);
}

.entry-router-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.entry-router-grid a {
  min-height: 220px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.entry-router-grid a:hover,
.entry-router-grid a:focus-visible {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-3px);
}

.entry-router-grid span {
  color: var(--magenta);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.entry-router-grid strong {
  max-width: 260px;
  font-size: 22px;
  line-height: 1.12;
}

.journey-strip {
  padding: 18px 0;
  background: rgba(245, 243, 238, 0.96);
  border-bottom: 1px solid var(--line);
}

.journey-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.journey-strip a {
  min-height: 64px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.journey-strip span {
  color: var(--magenta);
  font-size: 12px;
}

.journey-strip a.is-current {
  background: var(--dark);
  color: var(--white);
}

.journey-strip a.is-current span {
  color: var(--magenta-soft);
}

.intro-grid,
.image-grid,
.split-grid,
.magazine-grid,
.offer-grid,
.proof-grid,
.order-layout,
.subpage-grid,
.story-scene-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: start;
}

.story-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 44px);
  background: var(--paper);
  border-left: 5px solid var(--magenta);
  box-shadow: 0 24px 70px rgba(38, 35, 31, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.story-panel::before,
.contrast-card::before,
.package-include-grid article::before,
.package-detail-grid article::before,
.cost-reality-list div::before,
.package-price-card::before,
.calc-result-panel::before,
.video-channel-card::before,
.choice-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--magenta), var(--magenta-soft), rgba(204, 0, 102, 0));
  transform: scaleX(0.18);
  transform-origin: left;
  opacity: 0.88;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
}

.story-panel:hover,
.story-panel:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 30px 80px rgba(38, 35, 31, 0.12);
}

.story-panel:hover::before,
.story-panel:focus-within::before,
.contrast-card:hover::before,
.contrast-card:focus-within::before,
.package-include-grid article:hover::before,
.package-include-grid article:focus-within::before,
.package-detail-grid article:hover::before,
.package-detail-grid article:focus-within::before,
.cost-reality-list div:hover::before,
.cost-reality-list div:focus-within::before,
.package-price-card:hover::before,
.package-price-card:focus-within::before,
.calc-result-panel:hover::before,
.calc-result-panel:focus-within::before,
.video-channel-card:hover::before,
.video-channel-card:focus-visible::before,
.choice-card:hover::before,
.choice-card:focus-within::before {
  transform: scaleX(1);
  opacity: 1;
}

.story-panel > *,
.contrast-card > *,
.package-include-grid article > *,
.package-detail-grid article > *,
.cost-reality-list div > *,
.package-price-card > *,
.calc-result-panel > *,
.video-channel-card > *,
.choice-card > * {
  position: relative;
  z-index: 1;
}

.story-panel p {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.58;
}

.story-panel p + p {
  margin-top: 18px;
  color: var(--muted);
}

.intro-text,
.section-copy,
.split-copy,
.magazine-copy,
.offer-copy,
.proof-copy,
.subpage-copy {
  max-width: 610px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.intro-text p:last-child,
.section-copy p:last-child,
.split-copy p:last-child,
.magazine-copy p:last-child,
.offer-copy p:last-child,
.proof-copy p:last-child {
  margin-bottom: 0;
}

.cost-reality-list {
  margin: 26px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.cost-reality-list div {
  position: relative;
  overflow: hidden;
  min-height: 156px;
  padding: 20px 20px 22px;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(216, 209, 199, 0.74);
  border-radius: 8px;
  box-shadow: 0 18px 56px rgba(38, 35, 31, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.84);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.cost-reality-list div:hover,
.cost-reality-list div:focus-within {
  transform: translateY(-3px);
  border-color: rgba(204, 0, 102, 0.3);
  box-shadow: 0 24px 66px rgba(38, 35, 31, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.cost-reality-list span {
  display: block;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cost-reality-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.next-hook {
  margin-top: 26px;
  padding-left: 18px;
  border-left: 3px solid var(--magenta);
  color: var(--ink);
  font-weight: 800;
}

.section-intro {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.section-intro.narrow {
  max-width: 680px;
}

.section-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.section-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section-image.tall img {
  aspect-ratio: 4 / 5;
}

.definition-list {
  margin: 34px 0 0;
  border-top: 1px solid var(--line);
}

.definition-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.definition-list dt {
  color: var(--ink);
  font-weight: 800;
}

.definition-list dd {
  margin: 0;
}

.dark-band {
  background: var(--dark);
  color: var(--white);
}

.dark-band h2,
.dark-band h3,
.subpage-hero h1,
.hero h1 {
  color: var(--white);
}

.dark-band .section-kicker {
  color: var(--magenta-soft);
}

.band-head {
  max-width: 900px;
}

.band-head p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.62;
}

.contrast-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 56px;
  background: rgba(255, 255, 255, 0.16);
}

.contrast-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 26px;
  background: var(--dark-2);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.contrast-card:hover,
.contrast-card:focus-within {
  transform: translateY(-3px);
  background: #292621;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.contrast-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--magenta-soft);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.contrast-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.42;
}

.index-list {
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.index-row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.index-row h3 {
  margin-bottom: 8px;
  font-size: 28px;
}

.index-row p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.number {
  color: var(--magenta);
  font-weight: 800;
}

.arrow-link {
  color: var(--magenta);
  font-weight: 800;
}

.signal-list {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.signal-list p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.signal-list strong {
  color: var(--ink);
}

.magazine-cover {
  position: relative;
  width: min(430px, 100%);
  justify-self: center;
  display: block;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(38, 35, 31, 0.16);
  transform: rotate(-1deg);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.magazine-cover:hover,
.magazine-cover:focus-visible {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 36px 90px rgba(38, 35, 31, 0.22);
}

.magazine-cover img {
  width: 100%;
  aspect-ratio: 0.707 / 1;
  object-fit: cover;
  object-position: top;
}

.magazine-cover span {
  position: absolute;
  right: 28px;
  bottom: 28px;
  padding: 11px 14px;
  background: var(--magenta);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.offer-panel {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(26px, 4vw, 40px);
}

.price-label {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  color: var(--magenta);
  font-size: clamp(76px, 7vw, 112px);
  line-height: 0.86;
  font-weight: 800;
}

.price span {
  white-space: nowrap;
}

.price small {
  max-width: 120px;
  margin-bottom: 4px;
  color: var(--magenta);
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 1;
  font-weight: 800;
}

.price-value-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 0;
  border: 1px solid var(--ink);
}

.price-month-note {
  margin: 0;
  padding: 18px 20px;
  background: var(--ink);
  color: var(--white);
}

.price-month-note span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-month-note strong {
  display: block;
  color: var(--white);
  font-size: clamp(20px, 1.8vw, 25px);
  line-height: 1.1;
  font-weight: 800;
}

.price-month-note p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.35;
}

.fineprint {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.price-includes {
  margin: 0;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1fr;
  background: rgba(207, 21, 99, 0.08);
  color: var(--ink);
  border-left: 1px solid var(--ink);
}

.price-includes p {
  margin: 0 0 10px;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-includes span {
  display: flex;
  align-items: center;
  min-height: 28px;
  border-top: 1px solid rgba(38, 35, 31, 0.14);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
}

.offer-panel ul {
  margin: 24px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.offer-panel li + li {
  margin-top: 8px;
}

.conditions {
  margin-top: 46px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.conditions h3 {
  font-size: 30px;
}

.condition-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.condition-grid p {
  min-height: 150px;
  margin: 0;
  padding: 22px;
  background: var(--white);
  color: var(--muted);
  font-weight: 700;
}

.offer-next {
  margin-top: 42px;
  padding-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.offer-next p {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 800;
}

.offer-next .button {
  flex: 0 0 240px;
}

.offer-next-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.offer-check-steps {
  max-width: 860px;
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.offer-check-steps span {
  min-height: 66px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 800;
}

.decision-note {
  margin-top: 30px;
  max-width: 560px;
  padding: 22px 24px;
  background: var(--paper);
  border-left: 5px solid var(--magenta);
}

.decision-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--heading);
  font-size: 20px;
  line-height: 1.2;
}

.decision-note p {
  margin: 0;
  color: var(--muted);
}

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

.offer-choice {
  display: grid;
  align-content: space-between;
  min-height: 440px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 26px 70px rgba(34, 32, 29, 0.08);
}

.offer-choice strong {
  display: block;
  max-width: 520px;
  margin: 14px 0 18px;
  color: var(--heading);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.03;
  letter-spacing: 0;
}

.offer-choice p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.offer-choice-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 34px;
}

.offer-choice-list span {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}

.offer-choice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.starter-decision-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: stretch;
}

.starter-decision-main {
  min-height: 560px;
  padding: clamp(32px, 5vw, 58px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 26px 70px rgba(34, 32, 29, 0.08);
}

.starter-decision-main h2 {
  max-width: 760px;
  margin-bottom: 30px;
}

.starter-condition-stack {
  max-width: 780px;
  margin-bottom: 38px;
}

.starter-condition-stack span {
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.34;
}

.starter-decision-side {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(26px, 4vw, 38px);
  background: var(--dark-2);
  color: var(--white);
}

.starter-decision-side .section-kicker {
  color: var(--magenta-soft);
}

.starter-decision-side strong {
  display: block;
  color: var(--white);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.08;
}

.starter-decision-side p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.starter-decision-side .button {
  margin-top: 10px;
}

.offer-contact-band {
  background: var(--dark-2);
  color: var(--white);
}

.offer-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: end;
}

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

.contact-route {
  display: grid;
  gap: 18px;
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.contact-route span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--magenta);
  color: var(--white);
}

.contact-route svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-route strong {
  display: block;
  font-size: 23px;
  line-height: 1.12;
}

.contact-route p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.contact-route .button {
  align-self: end;
  width: 100%;
  color: var(--white);
}

.package-price-section {
  background: var(--paper-deep);
}

.package-price-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
}

.package-price-card {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 54px);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 8px solid var(--magenta);
  box-shadow: 0 26px 80px rgba(38, 35, 31, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.package-price-card:hover,
.package-price-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(204, 0, 102, 0.34);
  box-shadow: 0 34px 92px rgba(38, 35, 31, 0.16);
}

.package-copy {
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.package-copy h2 {
  color: var(--heading);
  font-weight: 800;
}

.subpage-hero h1.compact-hero-title {
  max-width: 880px;
  font-size: 50px;
  line-height: 1.04;
}

.package-includes {
  background: var(--paper);
}

.package-include-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.package-detail-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.package-include-grid article,
.package-detail-grid article {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.package-include-grid article:hover,
.package-include-grid article:focus-within,
.package-detail-grid article:hover,
.package-detail-grid article:focus-within {
  transform: translateY(-3px);
  background: #fffdf9;
  box-shadow: 0 24px 70px rgba(38, 35, 31, 0.1);
}

.package-include-grid span,
.package-detail-grid span {
  margin-bottom: 44px;
  color: var(--magenta);
  font-size: 13px;
  font-weight: 800;
}

.package-include-grid h3,
.package-detail-grid h3 {
  font-size: 25px;
}

.package-include-grid p,
.package-detail-grid p {
  margin-top: auto;
  color: var(--muted);
}

.package-boundaries {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.package-boundaries-grid,
.package-after-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
}

.package-condition-list {
  display: grid;
  gap: 1px;
  margin-top: 26px;
  background: var(--line);
  border: 1px solid var(--line);
}

.package-condition-list p {
  min-height: 92px;
  margin: 0;
  padding: 20px 58px 20px 72px;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.42;
}

.package-condition-list p::before {
  content: "✓";
  position: absolute;
  left: 24px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  background: var(--magenta);
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
}

.package-condition-list p::after {
  content: "?";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(112, 107, 100, 0.45);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.package-after {
  background: var(--paper-deep);
}

.package-after-copy {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.package-after-copy p:last-child {
  margin-bottom: 0;
}

.final-decision-grid {
  max-width: 860px;
  margin: 42px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.final-decision-grid div {
  min-height: 150px;
  padding: 24px 26px;
  display: grid;
  align-content: start;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.final-decision-grid span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--magenta);
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
}

.final-decision-grid strong {
  color: var(--white);
  font-size: 19px;
  line-height: 1.25;
}

.final-decision-grid p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.45;
}

.video-proof {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.video-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
}

.video-proof-copy {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.video-channel-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--dark);
  box-shadow: 0 30px 90px rgba(38, 35, 31, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.video-channel-card:hover,
.video-channel-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 38px 110px rgba(38, 35, 31, 0.22);
}

.video-channel-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.magazine-card {
  background: var(--paper);
}

.magazine-card img {
  aspect-ratio: 3 / 4;
  padding: clamp(16px, 3vw, 30px);
  object-fit: contain;
  background: var(--paper);
}

.magazine-action {
  width: min(520px, 100%);
}

.video-channel-card span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 11px 14px;
  background: var(--magenta);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.guide-access {
  background: var(--paper-deep);
}

.guide-access-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.82fr);
  column-gap: clamp(34px, 5vw, 72px);
  row-gap: clamp(38px, 5vw, 68px);
  align-items: start;
}

.guide-access-copy {
  position: static;
}

.guide-access-copy p:not(.section-kicker) {
  max-width: 660px;
  color: var(--muted);
  font-size: 20px;
}

.guide-story-points {
  display: grid;
  gap: 1px;
  margin: 26px 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.guide-story-points div {
  margin: 0;
  padding: 20px 22px;
  background: var(--paper);
  color: var(--ink);
}

.guide-story-points p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.48;
}

.guide-story-points strong {
  display: block;
  color: var(--magenta);
  font-size: 19px;
  line-height: 1.18;
  font-weight: 850;
}

.guide-cta-panel {
  display: grid;
  gap: 12px;
  align-items: start;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.guide-cta-panel .button {
  width: 100%;
  min-height: 58px;
}

.guide-cta-panel p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.guide-preview {
  display: grid;
  gap: 14px;
}

.guide-preview-main,
.guide-preview-strip button {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  cursor: pointer;
  box-shadow: 0 22px 54px rgba(38, 35, 31, 0.12);
}

.guide-preview-main {
  min-height: 460px;
}

.guide-preview-main img,
.guide-preview-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.guide-preview-main img {
  object-position: top center;
}

.guide-preview-main span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 13px;
  background: rgba(18, 15, 12, 0.86);
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.guide-preview-main:hover img,
.guide-preview-main:focus-visible img,
.guide-preview-strip button:hover img,
.guide-preview-strip button:focus-visible img {
  transform: scale(1.035);
}

.guide-preview-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.guide-preview-strip button {
  aspect-ratio: 1.42;
  min-height: 0;
  box-shadow: none;
}

.guide-form {
  justify-self: stretch;
  width: min(880px, 100%);
  display: grid;
  gap: 20px;
  padding: clamp(26px, 4vw, 44px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(38, 35, 31, 0.12);
}

.guide-form-head {
  display: grid;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.guide-form-head .section-kicker {
  margin-bottom: 0;
}

.guide-form-head h3 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.08;
}

.guide-form-head p:not(.section-kicker) {
  margin: 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
}

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

.guide-field-grid label,
.guide-consent {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.guide-field-grid input {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
  text-transform: none;
}

.guide-field-grid input:focus,
.guide-consent input:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 2px;
}

.guide-consent {
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  line-height: 1.45;
  text-transform: none;
  font-size: 14px;
}

.guide-consent input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--magenta);
}

.butler-check {
  display: grid;
  gap: 14px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.butler-check-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
}

.butler-check-head strong {
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.butler-check-head span {
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

.butler-track {
  position: relative;
  height: 58px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(204, 0, 102, 0.1), rgba(204, 0, 102, 0.025)),
    var(--white);
  border: 1px solid var(--line);
}

.butler-track::after {
  content: "Ziel";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: rgba(38, 35, 31, 0.38);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.butler-track.is-complete {
  border-color: var(--magenta);
  background:
    linear-gradient(90deg, rgba(204, 0, 102, 0.16), rgba(204, 0, 102, 0.05)),
    var(--white);
}

.butler-piece {
  position: absolute;
  top: 6px;
  left: 7px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 0;
  background: rgba(204, 0, 102, 0.16);
  color: var(--white);
  cursor: grab;
  padding: 6px;
  box-shadow: 0 14px 30px rgba(204, 0, 102, 0.18);
  touch-action: none;
  transition: box-shadow 160ms ease, background 160ms ease;
}

.butler-piece img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.butler-piece:active {
  cursor: grabbing;
  box-shadow: 0 18px 36px rgba(204, 0, 102, 0.36);
}

.butler-track.is-complete .butler-piece {
  background: rgba(204, 0, 102, 0.22);
}

.guide-privacy {
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.guide-privacy a {
  color: var(--magenta);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.guide-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 78px 18px 28px;
  background: rgba(18, 15, 12, 0.86);
}

.guide-lightbox[hidden] {
  display: none;
}

.guide-lightbox figure {
  width: min(1120px, 100%);
  max-height: calc(100svh - 130px);
  margin: 0;
  display: grid;
  gap: 12px;
}

.guide-lightbox img {
  width: 100%;
  max-height: calc(100svh - 174px);
  object-fit: contain;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

.guide-lightbox figcaption {
  color: var(--white);
  font-weight: 850;
  text-align: center;
}

.guide-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  min-height: 46px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  background: var(--magenta);
  color: var(--white);
  cursor: pointer;
  font-weight: 850;
}

.portal-hero .subpage-hero-image {
  object-position: 62% center;
}

.portal-access-section {
  background: var(--paper-deep);
}

.portal-access-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(540px, 1fr);
  gap: clamp(34px, 4.6vw, 58px);
  align-items: start;
}

.portal-access-copy {
  display: grid;
  gap: 18px;
}

.portal-access-copy h2 {
  max-width: 560px;
  margin-bottom: 14px;
  font-size: clamp(38px, 4vw, 44px);
  line-height: 1.05;
}

.portal-access-copy p:not(.section-kicker) {
  max-width: 590px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.portal-note {
  display: grid;
  gap: 6px;
  max-width: 560px;
  margin-top: 12px;
  padding: 18px 20px;
  border-left: 4px solid var(--magenta);
  background: var(--white);
}

.portal-note strong {
  color: var(--ink);
  font-size: 15px;
  text-transform: uppercase;
}

.portal-note span {
  color: var(--muted);
}

.calculator-teaser {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.calculator-teaser-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  align-items: center;
  gap: clamp(38px, 7vw, 88px);
}

.calculator-snapshot {
  min-height: 320px;
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--dark);
  color: var(--white);
  border-left: 6px solid var(--magenta);
  box-shadow: 0 34px 90px rgba(38, 35, 31, 0.2);
}

.calculator-snapshot span {
  margin-bottom: auto;
  color: var(--magenta-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calculator-snapshot strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 0.98;
}

.calculator-snapshot p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.calculator-section {
  background: linear-gradient(180deg, rgba(245, 243, 238, 0.96), rgba(236, 230, 220, 0.92));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.start-calculator {
  margin-top: 34px;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(38, 35, 31, 0.1);
  backdrop-filter: blur(14px);
}

.level-chooser {
  margin: 0;
  padding: 0 0 26px;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.level-chooser legend {
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
}

.level-chooser p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.level-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 6px;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.level-toggle label {
  min-height: 64px;
  display: grid;
  place-items: center;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
}

.level-toggle input {
  position: absolute;
  opacity: 0;
}

.level-toggle span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--ink);
  border-radius: 6px;
  font-size: 18px;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease;
}

.level-toggle input:checked + span {
  background: var(--magenta);
  color: var(--white);
}

.case-matrix {
  margin-top: 28px;
  display: grid;
  gap: 10px;
  background: transparent;
}

.case-row {
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) minmax(130px, 0.55fr) minmax(130px, 0.55fr);
  gap: 10px;
  background: transparent;
}

.case-row > span,
.case-row input {
  min-width: 0;
  display: flex;
  align-items: center;
  background: rgba(245, 243, 238, 0.9);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.case-row > span {
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 800;
}

.case-row-head {
  min-height: 38px;
}

.case-row-head > span {
  background: transparent;
  border-color: transparent;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.case-row input {
  width: 100%;
  padding: 18px 20px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  text-align: center;
}

.case-row input:focus {
  border-color: var(--magenta);
  outline: 3px solid var(--magenta-soft);
  outline-offset: 0;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.calc-grid fieldset {
  min-width: 0;
  margin: 0;
  padding: 22px;
  border: 0;
  background: var(--paper);
}

.calc-grid legend {
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 800;
}

.calc-grid label {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
}

.calc-grid input,
.case-planner input {
  accent-color: var(--magenta);
}

.single-case-grid {
  margin-top: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-target {
  margin: 0 0 28px;
  padding: 0 0 26px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: end;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.case-target legend {
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
}

.case-target label {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.case-target input {
  width: 100%;
  min-height: 58px;
  padding: 12px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
}

.case-target p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.case-planner {
  margin-top: 26px;
  padding-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  border-top: 1px solid var(--line);
}

.case-planner label {
  display: grid;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
}

.case-planner input[type="range"] {
  width: 100%;
}

.case-planner-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
}

.case-planner-row input {
  width: 112px;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 10px 12px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

.calc-results {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  background: transparent;
}

.single-results,
.workload-results {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.calc-results article {
  min-height: 190px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(38, 35, 31, 0.07);
}

.calc-results span {
  display: block;
  min-height: 32px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.calc-results strong {
  display: block;
  margin: 18px 0 12px;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 0.98;
}

.calc-results p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.package-result {
  background: var(--dark) !important;
  color: var(--white);
  border-color: var(--dark) !important;
  border-bottom: 6px solid var(--magenta);
}

.package-result strong {
  color: var(--white);
}

.package-result span,
.package-result p {
  color: rgba(255, 255, 255, 0.72);
}

.package-result p span {
  display: inline;
  min-height: 0;
  color: var(--magenta-soft);
  font-size: inherit;
  letter-spacing: 0;
  line-height: inherit;
  text-transform: none;
}

.calc-explain {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: transparent;
}

.calc-explain.single-note {
  grid-template-columns: minmax(0, 1fr);
}

.calc-explain > div {
  padding: clamp(24px, 4vw, 38px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  background: rgba(245, 243, 238, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.calc-explain h3 {
  margin-bottom: 14px;
  font-size: 30px;
}

.calc-explain p {
  max-width: 620px;
  color: var(--muted);
}

.calc-workbench,
.portfolio-workbench {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.82fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
}

.calc-workbench .start-calculator,
.portfolio-workbench .start-calculator {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: clamp(26px, 4vw, 46px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.66));
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(38, 35, 31, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.calc-workbench .start-calculator::before,
.portfolio-workbench .start-calculator::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--magenta), var(--magenta-soft), rgba(204, 0, 102, 0));
  transform: scaleX(0.16);
  transform-origin: left;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.calc-workbench .start-calculator:focus-within,
.portfolio-workbench .start-calculator:focus-within {
  border-color: rgba(204, 0, 102, 0.32);
  box-shadow: 0 34px 96px rgba(38, 35, 31, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.calc-workbench .start-calculator:focus-within::before,
.portfolio-workbench .start-calculator:focus-within::before {
  transform: scaleX(1);
}

.calc-workbench .level-chooser,
.portfolio-workbench .case-target {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 18px;
}

.calc-workbench .level-chooser legend,
.portfolio-workbench .case-target legend {
  font-size: clamp(19px, 1.8vw, 23px);
  line-height: 1.08;
}

.calc-workbench .level-chooser p,
.portfolio-workbench .case-target p {
  max-width: 620px;
  font-weight: 500;
}

.calc-workbench .level-toggle {
  margin-top: 8px;
  max-width: 320px;
  border-radius: 8px;
  background: rgba(245, 243, 238, 0.78);
  box-shadow: inset 0 0 0 1px rgba(216, 209, 199, 0.68);
}

.calc-workbench .level-toggle label {
  min-height: 52px;
}

.calc-workbench .level-toggle span {
  font-size: 15px;
}

.calc-workbench .level-toggle label,
.calc-workbench .level-toggle span {
  border-radius: 6px;
}

.calc-workbench .calc-grid {
  gap: clamp(18px, 3vw, 28px);
  background: transparent;
}

.calc-workbench .calc-grid fieldset {
  padding: 0;
  background: transparent;
}

.calc-workbench .calc-grid legend {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.calc-workbench .calc-grid label {
  position: relative;
  min-height: 74px;
  margin-top: 10px;
  padding: 15px 16px 15px 44px;
  display: flex;
  align-items: center;
  background: rgba(245, 243, 238, 0.64);
  border: 1px solid rgba(216, 209, 199, 0.68);
  border-radius: 6px;
  color: var(--ink);
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.calc-workbench .calc-grid label:has(input:checked) {
  background: rgba(253, 240, 245, 0.92);
  border-color: var(--magenta);
  box-shadow: 0 16px 34px rgba(204, 0, 102, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.calc-workbench .calc-grid label:hover {
  transform: translateY(-1px);
}

.calc-workbench .calc-grid label input {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.calc-workbench .calc-grid label span {
  font-size: 16px;
  line-height: 1.22;
}

.calc-result-panel,
.portfolio-summary {
  min-height: 100%;
  padding: clamp(26px, 4vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(145deg, #171717, #24211f);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 38px 110px rgba(38, 35, 31, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.calc-result-panel > span,
.portfolio-summary > span,
.result-mini-grid span,
.summary-stack span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
}

.calc-result-panel > strong,
.portfolio-summary > strong {
  display: block;
  margin: 18px 0 14px;
  color: var(--white);
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.94;
}

.calc-result-panel p,
.portfolio-summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
}

.result-mini-grid,
.summary-stack {
  margin-top: 34px;
  padding-top: 22px;
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.result-mini-grid {
  grid-template-columns: 1fr 1fr;
}

.result-mini-grid div,
.summary-stack div {
  min-width: 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  backdrop-filter: blur(10px);
}

.result-mini-grid strong,
.summary-stack strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.02;
}

.portfolio-workbench {
  grid-template-columns: minmax(0, 1.34fr) minmax(320px, 0.62fr);
  align-items: start;
}

.money-story-panel {
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(216, 209, 199, 0.78);
  border: 1px solid rgba(216, 209, 199, 0.78);
}

.money-story-panel div {
  min-height: 132px;
  padding: clamp(20px, 3vw, 28px);
  display: grid;
  align-content: space-between;
  gap: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.money-story-panel span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
}

.money-story-panel p {
  margin: 0;
  max-width: 480px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.35;
}

.money-story-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

.portfolio-summary {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  min-height: 460px;
}

.portfolio-summary .target-note {
  margin-top: 10px;
  color: var(--magenta-soft);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.portfolio-summary .summary-verdict {
  margin-top: 22px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 17px;
  line-height: 1.55;
}

.portfolio-workbench .case-target input {
  border-radius: 0;
  background: transparent;
  border: 0;
  font-size: clamp(52px, 6vw, 76px);
  line-height: 0.95;
  box-shadow: none;
}

.portfolio-workbench .money-display {
  width: 100%;
  min-height: 90px;
  padding: 12px 0 10px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(48, 45, 41, 0.28);
  border-radius: 0;
  box-shadow: none;
}

.portfolio-workbench .money-display input {
  min-width: 0;
  padding: 0;
  color: var(--heading);
  font-weight: 850;
}

.portfolio-workbench .money-display:focus-within {
  border-color: var(--magenta);
}

.portfolio-workbench .money-display span {
  color: var(--muted);
  font-size: 20px;
  font-weight: 850;
  white-space: nowrap;
}

.portfolio-workbench .case-matrix {
  margin-top: 34px;
  display: grid;
  gap: 10px;
  border: 0;
  background: transparent;
}

.portfolio-workbench .case-row {
  min-height: 74px;
  grid-template-columns: minmax(220px, 1fr) minmax(126px, 0.48fr) minmax(126px, 0.48fr);
  gap: 10px;
}

.portfolio-workbench .case-row > span,
.portfolio-workbench .case-row input {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(216, 209, 199, 0.78);
  border-radius: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.portfolio-workbench .case-row > span {
  padding: 20px 22px 20px 24px;
  border-left: 4px solid rgba(204, 0, 102, 0.72);
  line-height: 1.22;
}

.portfolio-workbench .case-row input {
  min-height: 74px;
  font-size: 28px;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.portfolio-workbench .case-row-head {
  min-height: 42px;
  gap: 10px;
}

.portfolio-workbench .case-row-head > span {
  padding: 12px 18px;
  background: transparent;
  border-color: transparent;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0;
  box-shadow: none;
}

.portfolio-workbench .case-row input:focus {
  background: #fdf0f5;
  box-shadow: inset 0 0 0 2px var(--magenta);
  transform: translateY(-1px);
}

.portfolio-summary > strong {
  font-size: clamp(38px, 4vw, 58px);
  white-space: nowrap;
}

.portfolio-summary .gap-amount {
  color: var(--magenta-soft);
  font-size: clamp(34px, 3.6vw, 46px);
}

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

.portfolio-summary .summary-stack div {
  min-height: 86px;
}

.portfolio-summary .summary-stack strong {
  font-size: clamp(20px, 1.45vw, 26px);
  white-space: nowrap;
}

.portfolio-workbench .case-target {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 12px;
  padding: 0 0 32px;
  border-bottom: 1px solid rgba(216, 209, 199, 0.88);
}

.portfolio-workbench .case-target legend {
  max-width: 720px;
  align-self: start;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.04;
}

.portfolio-workbench .target-editorial {
  width: min(520px, 100%);
  display: grid;
  gap: 6px;
  margin: 0;
}

.portfolio-workbench .target-caption,
.portfolio-workbench .target-help {
  display: block;
  color: var(--muted);
}

.portfolio-workbench .target-caption {
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.portfolio-workbench .target-help {
  max-width: 460px;
  font-size: 15px;
  line-height: 1.45;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.workload-story {
  margin-top: 34px;
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  gap: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(245, 243, 238, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(38, 35, 31, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.workload-story h3 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(28px, 2.7vw, 38px);
}

.workload-story p {
  max-width: 980px;
  color: var(--muted);
  font-size: 18px;
}

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

.workload-grid article {
  min-height: 196px;
  padding: 22px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(216, 209, 199, 0.72);
  border-radius: 0;
}

.workload-grid span {
  color: var(--magenta);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.workload-grid strong {
  display: block;
  margin: 10px 0 12px;
  color: var(--ink);
  font-size: clamp(42px, 3.7vw, 58px);
  line-height: 0.95;
}

.workload-grid p,
.workload-note {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.workload-note {
  max-width: none;
  padding: 20px 24px;
  background: rgba(253, 240, 245, 0.72);
  border-left: 4px solid var(--magenta);
  font-weight: 700;
}

.final-band {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.42fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
}

.final-band > div:first-child {
  max-width: 860px;
}

.final-band h2 {
  max-width: 900px;
}

.final-title span {
  display: block;
}

.final-title span:last-child {
  white-space: nowrap;
}

.final-band p {
  max-width: 820px;
}

.final-next-list {
  padding: 24px;
  display: grid;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 5px solid var(--magenta);
}

.final-next-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--magenta-soft);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.final-next-list p {
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
}

.final-actions {
  grid-column: 1 / -1;
  margin-top: 4px;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 330px));
  gap: 12px;
}

.final-actions .button {
  width: 100%;
  min-height: 64px;
  padding-inline: 24px;
}

.workload-detail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.workload-detail div {
  min-height: 150px;
  padding: 18px;
  background: rgba(245, 243, 238, 0.7);
  border: 1px solid rgba(216, 209, 199, 0.72);
  border-radius: 0;
}

.workload-detail span {
  display: block;
  margin-bottom: 10px;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.workload-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.portfolio-workbench input[type="number"] {
  appearance: textfield;
}

.portfolio-workbench input[type="number"]::-webkit-outer-spin-button,
.portfolio-workbench input[type="number"]::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.order-layout {
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
}

.order-intro {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.order-form {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 22px 70px rgba(38, 35, 31, 0.1);
  padding: clamp(22px, 4vw, 36px);
}

.order-form::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--magenta), var(--magenta-soft), rgba(204, 0, 102, 0));
}

.stepper {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.stepper button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 0;
  background: var(--paper-deep);
  color: var(--muted);
  font-weight: 800;
}

.stepper button.is-active,
.stepper button.is-complete {
  background: var(--magenta);
  color: var(--white);
}

.stepper button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.stepper span {
  height: 2px;
  background: var(--line);
}

.step-label {
  margin: 0 0 24px;
  color: var(--magenta);
  text-align: center;
  font-weight: 800;
}

.form-page {
  display: none;
}

.form-page.is-active {
  display: block;
}

.form-page .lead {
  max-width: 720px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 17px;
}

.order-form label,
.order-form fieldset {
  display: block;
  margin: 0 0 16px;
}

.order-form legend {
  margin-bottom: 12px;
  font-weight: 800;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 13px;
  border: 1.5px solid #c9c2b8;
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  outline: 3px solid rgba(204, 0, 102, 0.18);
  border-color: var(--magenta);
}

.order-form input[type="checkbox"],
.order-form input[type="radio"] {
  width: auto;
  margin: 0 9px 0 0;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field-grid.thirds {
  grid-template-columns: 0.8fr 1fr 1fr;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 26px;
}

.choice-card {
  position: relative;
  overflow: hidden;
  min-height: 148px;
  padding: 20px;
  border: 2px solid #c9c2b8;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.choice-card:hover,
.choice-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(204, 0, 102, 0.46);
}

.choice-card:has(input:checked) {
  border-color: var(--magenta);
  background: #fdf0f5;
}

.choice-card strong,
.choice-card span {
  display: block;
}

.choice-card strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

.check-group,
.radio-group {
  padding: 20px;
  border: 1px solid var(--line);
}

.check-group label,
.radio-group label,
.checkline {
  color: var(--muted);
}

.users-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.users-head p {
  margin: 0;
  color: var(--muted);
}

.user-card {
  margin: 18px 0;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.user-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.error-box {
  margin-bottom: 22px;
  padding: 16px 18px;
  border: 1.5px solid var(--danger);
  background: #fff3f3;
  color: var(--danger);
  font-weight: 700;
}

.price-box,
.summary {
  margin: 22px 0;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.price-line,
.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.price-line:last-child,
.summary-line:last-child {
  border-bottom: 0;
}

.site-footer {
  padding: 34px 0;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.78);
}

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

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.subpage .site-header {
  position: sticky;
}

.subpage-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--header-height));
  padding: calc(var(--header-height) + 58px) 0 74px;
  display: grid;
  align-items: center;
  background: var(--dark);
  color: var(--white);
  border-bottom: 1px solid var(--line);
}

.subpage-hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background:
    linear-gradient(90deg, rgba(204, 0, 102, 0) 0%, rgba(204, 0, 102, 0.96) 13%, var(--magenta) 30%, rgba(204, 0, 102, 0.62) 50%, rgba(255, 255, 255, 0.88) 74%, rgba(245, 243, 238, 0) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.92) 46%, rgba(255, 255, 255, 0) 64%);
  background-size: 100% 100%, 42% 100%;
  background-position: 0 0, -48% 0;
  box-shadow: 0 -24px 70px rgba(204, 0, 102, 0.22);
  animation: hero-line-run 8s linear infinite;
  pointer-events: none;
}

@keyframes hero-line-run {
  from {
    background-position: 0 0, -48% 0;
  }

  to {
    background-position: 0 0, 148% 0;
  }
}

.subpage-hero-image,
.subpage-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.subpage-hero-image {
  object-fit: cover;
  object-position: center;
  animation: hero-breathe 20s ease-in-out infinite alternate;
}

.start-hero .subpage-hero-image {
  object-position: 62% center;
}

.first-case-hero .subpage-hero-image {
  object-position: 58% center;
}

.calculator-hero .subpage-hero-image {
  object-position: 64% center;
}

.software-hero .subpage-hero-image {
  object-position: 58% center;
}

.package-hero .subpage-hero-image {
  object-position: 52% center;
}

@keyframes hero-breathe {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.035);
  }
}

.subpage-hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 15, 12, 0.86) 0%, rgba(18, 15, 12, 0.62) 44%, rgba(18, 15, 12, 0.16) 100%),
    linear-gradient(180deg, rgba(18, 15, 12, 0.14) 0%, rgba(18, 15, 12, 0.1) 50%, rgba(18, 15, 12, 0.5) 100%);
}

.subpage-hero .container {
  position: relative;
  z-index: 3;
  width: min(1240px, calc(100% - 48px));
}

.subpage-hero h1 {
  max-width: 760px;
  color: var(--white);
  font-size: 58px;
  line-height: 1.06;
}

.subpage-hero h1.two-line-title {
  max-width: 940px;
  font-size: 56px;
  line-height: 1.06;
}

.subpage-hero .lead {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.62;
}

.hero-subline-lines {
  display: block;
}

.hero-subline-lines span {
  display: block;
  max-width: max-content;
  white-space: nowrap !important;
}

.subpage-hero .hero-actions {
  margin-top: 30px;
}

.subpage-copy .hero-actions,
.band-head .hero-actions {
  margin-top: 42px;
}

.subpage-hero .hero-actions .button {
  width: auto;
  min-width: 284px;
}

.subpage-band {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.subpage-list {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.subpage-list p {
  margin: 0;
  padding: 22px;
  background: var(--paper);
  color: var(--muted);
  font-size: 18px;
}

.reader-body {
  min-height: 100svh;
  background: var(--paper);
}

.reader-main {
  min-height: 100svh;
  padding: calc(var(--header-height) + 28px) 20px 44px;
}

.reader-top {
  width: min(1280px, 100%);
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
}

.reader-top h1 {
  margin-bottom: 8px;
  color: var(--heading);
  font-size: 58px;
}

.reader-top p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.magazine-tools {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  background: var(--white);
}

.magazine-tools button {
  min-width: 42px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

.pageflip-shell {
  width: min(1280px, 100%);
  min-height: 68svh;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 34px);
  display: grid;
  place-items: center;
  overflow: auto;
  background: var(--paper-deep);
  border: 1px solid var(--line);
}

.magazine-book {
  transition: transform 180ms ease;
  transform-origin: center top;
}

.magazine-page {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(38, 35, 31, 0.18);
}

.magazine-page img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--white);
}

.magazine-close {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--magenta);
  font-weight: 800;
}

.magazine-build {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 8;
  margin: 0;
  padding: 9px 12px;
  background: var(--magenta-soft);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.reader-fallback {
  width: min(900px, 100%);
  margin: 22px auto 0;
  color: var(--muted);
  text-align: center;
}

.reader-fallback a {
  color: var(--magenta);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .hero-image,
  .subpage-hero-image,
  .subpage-hero::after {
    animation: none !important;
  }
}

@media (max-width: 1440px) {
  .intro-grid,
  .image-grid,
  .split-grid,
  .magazine-grid,
  .offer-grid,
  .proof-grid,
  .order-layout,
  .subpage-grid,
  .story-scene-grid {
    gap: clamp(40px, 5vw, 72px);
  }

  h2 {
    font-size: 44px;
  }
}

@media (max-width: 1280px) {
  .intro-grid,
  .image-grid,
  .split-grid,
  .magazine-grid,
  .offer-grid,
  .proof-grid,
  .order-layout,
  .subpage-grid,
  .story-scene-grid {
    gap: clamp(40px, 5vw, 72px);
  }

  .subpage-hero h1.two-line-title {
    font-size: 50px;
    max-width: 860px;
  }
}

@media (max-width: 1180px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    position: fixed;
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: stretch;
    gap: 14px;
    min-height: var(--header-height);
    padding: 10px 16px;
    background: rgba(18, 15, 12, 0.94);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-menu {
    position: absolute;
    top: calc(100% - 1px);
    right: 14px;
    left: 14px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
    background: rgba(18, 15, 12, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .site-header.is-menu-open .header-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav {
    grid-column: auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 0;
    overflow: visible;
    font-size: 17px;
  }

  .header-actions {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
  }

  .site-nav a {
    display: flex;
    min-height: 48px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav a::after {
    bottom: -1px;
  }

  .header-action {
    width: 100%;
    flex: 1 1 auto;
  }

  .header-contact-action {
    width: 52px;
    height: 52px;
  }

  .two-line-heading span {
    white-space: normal;
  }

  .hero-inner,
  .intro-grid,
  .image-grid,
  .split-grid,
  .magazine-grid,
  .offer-grid,
  .package-price-grid,
  .video-proof-grid,
  .guide-access-grid,
  .guide-form-head,
  .portal-access-grid,
  .offer-contact-grid,
  .starter-decision-grid,
  .package-boundaries-grid,
  .package-after-grid,
  .calculator-teaser-grid,
  .proof-grid,
  .order-layout,
  .subpage-grid,
  .story-scene-grid,
  .calc-workbench,
  .portfolio-workbench {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    width: min(var(--container), calc(100% - 32px));
    min-height: calc(100svh - 110px);
    padding-top: 90px;
  }

  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 42px;
  }

  h3,
  .index-row h3 {
    font-size: 28px;
  }

  .reader-top h1 {
    font-size: 48px;
  }

  .subpage-hero {
    min-height: calc(100svh - var(--header-height));
  }

  .subpage-hero h1 {
    font-size: 46px;
    max-width: 760px;
  }

  .subpage-hero h1.two-line-title {
    font-size: 44px;
  }

  .subpage-hero h1.compact-hero-title {
    max-width: 760px;
    font-size: 42px;
  }


  .order-intro {
    position: static;
  }

  .condition-grid,
  .contrast-grid,
  .offer-choice-grid,
  .package-include-grid,
  .package-detail-grid,
  .calc-grid,
  .calc-results,
  .level-chooser,
  .case-target,
  .calc-explain,
  .entry-router-grid,
  .journey-strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .calc-explain > div {
    grid-template-columns: 1fr;
  }

  .level-chooser,
  .case-target {
    grid-template-columns: 1fr;
  }

  .portfolio-workbench .case-target {
    grid-template-columns: 1fr;
  }

  .portfolio-workbench .target-editorial {
    justify-self: start;
  }

  .cost-reality-list {
    grid-template-columns: 1fr;
  }

  .offer-next {
    align-items: stretch;
    flex-direction: column;
  }

  .offer-next .button,
  .offer-next-actions {
    flex-basis: auto;
    width: 100%;
  }

  .offer-next-actions {
    flex-direction: column;
  }

  .offer-check-steps {
    grid-template-columns: 1fr;
  }

  .final-decision-grid {
    grid-template-columns: 1fr;
  }

  .reader-top {
    grid-template-columns: 1fr;
  }

  .portfolio-summary {
    position: static;
    min-height: 420px;
  }

  .money-story-panel {
    grid-template-columns: 1fr;
  }

  .money-story-panel div {
    min-height: 128px;
  }

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

  .final-band {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .final-title span:last-child {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
  }

  .hero-inner {
    min-height: calc(100svh - var(--header-height));
    padding: 48px 0 42px;
  }

  .site-header {
    gap: 12px;
    padding: 8px 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand span {
    font-size: 11px;
  }

  .menu-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .menu-toggle {
    width: 48px;
    justify-content: center;
    padding: 0;
  }

  .header-menu {
    right: 10px;
    left: 10px;
    padding: 16px;
  }

  .site-nav {
    font-size: 16px;
  }

  .header-action {
    min-height: 46px;
    padding: 13px 14px;
    font-size: 14px;
  }

  .header-contact-action {
    width: 48px;
    height: 48px;
  }

  .subpage-hero {
    min-height: calc(100svh - var(--header-height));
    padding: 42px 0 56px;
  }

  .start-hero .subpage-hero-image {
    object-position: 70% center;
  }

  .first-case-hero .subpage-hero-image {
    object-position: 64% center;
  }

  .calculator-hero .subpage-hero-image {
    object-position: 70% center;
  }

  .software-hero .subpage-hero-image {
    object-position: 62% center;
  }

  .package-hero .subpage-hero-image {
    object-position: 58% center;
  }

  .subpage-hero::after {
    height: 8px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.02;
  }

  h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  h3,
  .index-row h3,
  .conditions h3 {
    font-size: 28px;
  }

  .hero-subline,
  .subpage-hero .lead {
    font-size: 17px;
  }

  .hero-subline-lines span {
    max-width: none;
    white-space: normal !important;
  }

  .reader-top h1 {
    font-size: 42px;
  }

  .subpage-hero h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .subpage-hero h1.two-line-title {
    font-size: 33px;
  }

  .subpage-hero h1.compact-hero-title {
    font-size: 32px;
    line-height: 1.08;
  }


  .price {
    font-size: 62px;
  }

  .price small {
    font-size: 24px;
  }

  .price-value-grid {
    grid-template-columns: 1fr;
  }

  .price-includes {
    border-left: 0;
    border-top: 1px solid var(--ink);
  }

  .two-line-title span {
    white-space: normal;
  }

  .hero-actions .button,
  .button,
  .primary-button,
  .secondary-button,
  .small-button {
    width: 100%;
    min-width: 0;
  }

  .hero-actions,
  .section-actions {
    flex-wrap: wrap;
  }

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

  .section {
    padding: 62px 0;
  }

  .definition-list div,
  .index-row,
  .field-grid,
  .field-grid.thirds,
  .choice-grid,
  .condition-grid,
  .contrast-grid,
  .package-include-grid,
  .package-detail-grid,
  .calc-grid,
  .calc-results,
  .calc-explain,
  .workload-grid,
  .contact-route-grid,
  .level-chooser,
  .case-target,
  .entry-router-grid,
  .journey-strip-inner,
  .case-planner,
  .guide-field-grid {
    grid-template-columns: 1fr;
  }

  .guide-access-copy p:not(.section-kicker) {
    font-size: 18px;
  }

  .guide-preview-main {
    min-height: 360px;
  }

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

  .guide-form {
    padding: 20px 16px;
  }

  .guide-form-head h3 {
    font-size: 30px;
  }

  .guide-consent {
    padding: 15px;
  }

  .butler-check-head {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

  .butler-check-head span {
    text-align: left;
  }

  .entry-router-grid a {
    min-height: 170px;
  }

  .case-row,
  .case-row-head {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-workbench .case-row,
  .portfolio-workbench .case-row-head {
    grid-template-columns: 1fr 1fr;
  }

  .case-row > span:first-child {
    grid-column: 1 / -1;
  }

  .portfolio-workbench .case-row > span:first-child {
    grid-column: 1 / -1;
    border-left: 0;
    border-bottom: 1px solid rgba(216, 209, 199, 0.8);
  }

  .case-row-head > span:first-child {
    display: none;
  }

  .portfolio-workbench .case-row input {
    min-height: 66px;
    font-size: 24px;
  }

  .portfolio-summary .summary-stack,
  .workload-detail,
  .final-actions {
    grid-template-columns: 1fr;
  }

  .calc-result-panel,
  .portfolio-summary {
    min-height: auto;
  }

  .result-mini-grid {
    grid-template-columns: 1fr;
  }

  .calculator-snapshot {
    min-height: 260px;
  }

  .index-row {
    gap: 10px;
  }

  .arrow-link {
    justify-self: start;
  }

  .form-actions,
  .users-head,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .price-line,
  .summary-line {
    flex-direction: column;
    gap: 4px;
  }

  .magazine-tools {
    flex-wrap: wrap;
  }

  .magazine-build {
    position: static;
    width: fit-content;
    margin: 18px auto 0;
  }
}
