*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  --site-header-height: 5.25rem;
  --hero-home-reveal: 0;
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(91, 116, 140, 0.1), transparent 28%),
    radial-gradient(circle at bottom left, rgba(201, 120, 92, 0.06), transparent 28%),
    var(--color-surface);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body[data-page="home"],
body[data-page="uebermich"] {
  --home-edge-gutter: max(1rem, calc((100vw - var(--container-lg)) / 2));
  --home-blue-surface:
    radial-gradient(circle at 16% 28%, rgba(105, 131, 164, 0.18), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.08), transparent 18%),
    radial-gradient(circle at 88% 82%, rgba(88, 113, 142, 0.22), transparent 24%),
    linear-gradient(130deg, #152436 0%, #1d3048 42%, #14253b 74%, #0d1b2d 100%);
  background: var(--home-blue-surface);
  background-attachment: fixed;
}

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

body[data-page="home"] .hero-float--portrait img,
body[data-page="home"] .hero-final-portrait img,
body[data-page="home"] .portrait-card img {
  filter: grayscale(1);
}

body[data-page="home"] .portrait-card--color img {
  filter: none;
}

body[data-page="uebermich"] .site-brand__name,
body[data-page="uebermich"] .site-nav a {
  color: #f8fbff;
}

body[data-page="uebermich"] .site-brand__subline {
  color: rgba(248, 251, 255, 0.74);
}

body[data-page="uebermich"] .site-header__cta {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(255, 255, 255, 0.98);
  color: #152436;
}

body[data-page="uebermich"] .site-header__cta:hover,
body[data-page="uebermich"] .site-header__cta:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  color: #152436;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -10rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.site-shell,
.site-main,
.section__inner,
.site-header__inner,
.site-footer__inner {
  width: min(100% - 2rem, var(--container-lg));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  isolation: isolate;
  backdrop-filter: none;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background var(--transition-base),
    border-color var(--transition-base),
    backdrop-filter var(--transition-base);
}

body[data-page="home"] .site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: rgba(248, 251, 255, calc(var(--hero-home-reveal, 0) * 0.08));
  backdrop-filter: blur(calc(var(--hero-home-reveal, 0) * 16px));
}

body[data-page="home"] .site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--home-blue-surface);
  opacity: var(--hero-home-reveal, 0);
  transition: opacity var(--transition-base);
  pointer-events: none;
}

body[data-page="home"] .site-header__inner {
  position: relative;
  z-index: 1;
}

body[data-page="home"] .site-brand__name,
body[data-page="home"] .site-nav a {
  color: rgb(
    calc(29 + (248 - 29) * var(--hero-home-reveal, 0))
    calc(48 + (251 - 48) * var(--hero-home-reveal, 0))
    calc(72 + (255 - 72) * var(--hero-home-reveal, 0))
  );
}

body[data-page="home"] .site-brand__subline {
  color: rgb(
    calc(91 + (248 - 91) * var(--hero-home-reveal, 0))
    calc(116 + (251 - 116) * var(--hero-home-reveal, 0))
    calc(140 + (255 - 140) * var(--hero-home-reveal, 0))
  );
}

body[data-page="home"] .site-header__cta {
  background: rgb(
    calc(91 + (255 - 91) * var(--hero-home-reveal, 0))
    calc(116 + (255 - 116) * var(--hero-home-reveal, 0))
    calc(140 + (255 - 140) * var(--hero-home-reveal, 0))
  );
  border-color: rgb(
    calc(91 + (255 - 91) * var(--hero-home-reveal, 0))
    calc(116 + (255 - 116) * var(--hero-home-reveal, 0))
    calc(140 + (255 - 140) * var(--hero-home-reveal, 0))
  );
  color: rgb(
    calc(255 + (21 - 255) * var(--hero-home-reveal, 0))
    calc(255 + (36 - 255) * var(--hero-home-reveal, 0))
    calc(255 + (54 - 255) * var(--hero-home-reveal, 0))
  );
}

body[data-page="home"] .site-header__cta:hover,
body[data-page="home"] .site-header__cta:focus-visible {
  background: rgb(
    calc(85 + (248 - 85) * var(--hero-home-reveal, 0))
    calc(107 + (251 - 107) * var(--hero-home-reveal, 0))
    calc(130 + (255 - 130) * var(--hero-home-reveal, 0))
  );
  border-color: rgb(
    calc(85 + (248 - 85) * var(--hero-home-reveal, 0))
    calc(107 + (251 - 107) * var(--hero-home-reveal, 0))
    calc(130 + (255 - 130) * var(--hero-home-reveal, 0))
  );
  color: rgb(
    calc(255 + (21 - 255) * var(--hero-home-reveal, 0))
    calc(255 + (36 - 255) * var(--hero-home-reveal, 0))
    calc(255 + (54 - 255) * var(--hero-home-reveal, 0))
  );
}

.site-header[data-scrolled="true"] {
  backdrop-filter: blur(16px);
  background: var(--home-blue-surface);
  border-bottom-color: rgba(248, 251, 255, 0.08);
}

body[data-page="home"] .site-header[data-scrolled="true"] {
  background: transparent;
  border-bottom-color: rgba(248, 251, 255, calc(var(--hero-home-reveal, 0) * 0.08));
  backdrop-filter: blur(calc(var(--hero-home-reveal, 0) * 16px));
}

body[data-page="home"] .site-header[data-scrolled="true"] .site-brand__name,
body[data-page="home"] .site-header[data-scrolled="true"] .site-nav a {
  color: rgb(
    calc(29 + (248 - 29) * var(--hero-home-reveal, 0))
    calc(48 + (251 - 48) * var(--hero-home-reveal, 0))
    calc(72 + (255 - 72) * var(--hero-home-reveal, 0))
  );
}

body[data-page="home"] .site-header[data-scrolled="true"] .site-brand__subline {
  color: rgb(
    calc(91 + (248 - 91) * var(--hero-home-reveal, 0))
    calc(116 + (251 - 116) * var(--hero-home-reveal, 0))
    calc(140 + (255 - 140) * var(--hero-home-reveal, 0))
  );
}

body[data-page="home"] .site-header[data-scrolled="true"] .site-header__cta {
  background: rgb(
    calc(91 + (255 - 91) * var(--hero-home-reveal, 0))
    calc(116 + (255 - 116) * var(--hero-home-reveal, 0))
    calc(140 + (255 - 140) * var(--hero-home-reveal, 0))
  );
  border-color: rgb(
    calc(91 + (255 - 91) * var(--hero-home-reveal, 0))
    calc(116 + (255 - 116) * var(--hero-home-reveal, 0))
    calc(140 + (255 - 140) * var(--hero-home-reveal, 0))
  );
  color: rgb(
    calc(255 + (21 - 255) * var(--hero-home-reveal, 0))
    calc(255 + (36 - 255) * var(--hero-home-reveal, 0))
    calc(255 + (54 - 255) * var(--hero-home-reveal, 0))
  );
}

body[data-page="home"] .site-header[data-scrolled="true"] .site-header__cta:hover,
body[data-page="home"] .site-header[data-scrolled="true"] .site-header__cta:focus-visible {
  background: rgb(
    calc(85 + (248 - 85) * var(--hero-home-reveal, 0))
    calc(107 + (251 - 107) * var(--hero-home-reveal, 0))
    calc(130 + (255 - 130) * var(--hero-home-reveal, 0))
  );
  border-color: rgb(
    calc(85 + (248 - 85) * var(--hero-home-reveal, 0))
    calc(107 + (251 - 107) * var(--hero-home-reveal, 0))
    calc(130 + (255 - 130) * var(--hero-home-reveal, 0))
  );
  color: rgb(
    calc(255 + (21 - 255) * var(--hero-home-reveal, 0))
    calc(255 + (36 - 255) * var(--hero-home-reveal, 0))
    calc(255 + (54 - 255) * var(--hero-home-reveal, 0))
  );
}

.site-header[data-scrolled="true"] .site-brand__name,
.site-header[data-scrolled="true"] .site-nav a {
  color: #f8fbff;
}

.site-header[data-scrolled="true"] .site-brand__subline {
  color: rgba(248, 251, 255, 0.74);
}

.site-header[data-scrolled="true"] .site-header__toggle {
  border-color: rgba(255, 255, 255, 0.98);
  background: rgba(255, 255, 255, 0.98);
  color: #152436;
}

.site-header[data-scrolled="true"] .site-header__cta {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(255, 255, 255, 0.98);
  color: #152436;
}

.site-header[data-scrolled="true"] .site-header__cta:hover,
.site-header[data-scrolled="true"] .site-header__cta:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  color: #152436;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: var(--site-header-height);
}

.site-brand {
  display: grid;
  gap: 0.15rem;
  text-decoration: none;
}

.site-brand__name {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.1;
  transition: color var(--transition-base);
}

.site-brand__subline {
  color: var(--color-text-soft);
  font-size: 0.94rem;
  transition: color var(--transition-base);
}

.site-header__toggle {
  display: none;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  padding: 0.65rem 0.95rem;
  color: #fff;
}

.site-nav__list,
.footer-links,
.hero__chip-row,
.hero__cta-row,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__list {
  align-items: center;
  gap: 1rem;
}

.site-nav a,
.footer-links a {
  color: var(--color-text-soft);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

.site-header[data-scrolled="true"] .site-nav a:hover,
.site-header[data-scrolled="true"] .site-nav a:focus-visible {
  color: rgba(255, 255, 255, 0.82);
}

.site-header__cta {
  margin-left: var(--space-sm);
  transition:
    color var(--transition-base),
    background-color var(--transition-base),
    border-color var(--transition-base);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-accent);
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  background: var(--color-accent-strong);
  border-color: var(--color-accent-strong);
  transform: translateY(-1px);
}

.button--secondary {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: var(--color-accent-strong);
  border-color: var(--color-accent-strong);
}

.button--ghost {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.button--text {
  background: transparent;
  color: var(--color-primary);
  padding-inline: 0;
  border: 0;
}

.button,
.site-header__toggle,
.site-nav,
.hero__chip,
.hero__title-chip,
.hero__shape,
.hero__portrait,
.hero__note,
.hero-chaos__canvas::before,
.hero-chaos__canvas::after,
.hero-float--term,
.hero-panel,
.hero-final-portrait,
.hero-shape--orb,
.hero-shape--ring,
.hero-shape--bar,
.hero-shape--capsule,
.metric-card,
.card,
.contact-card,
.freebie-panel,
.status-card,
.legal-card,
.option-card__body,
.email-field input,
.inline-hacks article,
.faq-list details,
.portrait-card,
.noscript-card,
.icon-badge,
.problem-card::before,
.offer-card li::before,
.process-step__index {
  border-radius: 0 !important;
}

.eyebrow {
  margin: 0 0 var(--space-sm);
  color: var(--color-accent);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding-block: var(--space-2xl);
}

.section--hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  min-height: 240vh;
  padding-block: 0;
  background: transparent;
}

.section--hero::before {
  content: none;
}

.section--hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 16%, rgba(201, 120, 92, 0.18), transparent 24%),
    radial-gradient(circle at 84% 11%, rgba(216, 227, 236, 0.96), transparent 22%),
    linear-gradient(180deg, #e4ebf1 0%, #ebf0f4 48%, #f4efe7 100%);
  opacity: calc(1 - var(--hero-home-reveal, 0));
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.section--band {
  background: var(--gradient-band);
}

.section__intro {
  max-width: none;
  margin-bottom: 0;
}

body[data-page="home"] .section-panel,
body[data-page="uebermich"] .section-panel {
  position: relative;
  z-index: 0;
}

body[data-page="home"] .section-panel--intro,
body[data-page="uebermich"] .section-panel--intro {
  display: grid;
  gap: 0.72rem;
  width: 100%;
  justify-items: center;
  text-align: center;
  padding: 0;
}

body[data-page="home"] .section-panel--intro::before,
body[data-page="uebermich"] .section-panel--intro::before {
  content: none;
}

body[data-page="home"] .section-panel--content,
body[data-page="uebermich"] .section-panel--content {
  position: relative;
  display: block;
  width: min(100%, 74rem);
  margin-inline: auto;
  padding: 0;
}

body[data-page="home"] .section-panel--content::before,
body[data-page="uebermich"] .section-panel--content::before {
  content: none;
}

body[data-page="home"] .section-panel--intro .section-title,
body[data-page="home"] .section-panel--intro .section-copy,
body[data-page="uebermich"] .section-panel--intro .section-title,
body[data-page="uebermich"] .section-panel--intro .section-copy {
  display: block;
  width: fit-content;
  max-width: 100%;
  box-shadow: none;
}

body[data-page="home"] .section-panel--intro .section-title,
body[data-page="uebermich"] .section-panel--intro .section-title {
  padding: 0.14em 0.3em 0.2em;
  background: rgba(255, 255, 255, 0.98);
  color: var(--color-text);
  text-align: center;
  box-shadow: 0 16px 36px rgba(7, 17, 30, 0.12);
}

body[data-page="home"] .section-panel--intro .section-title {
  width: min(100%, 60rem);
  padding: 0;
  background: transparent;
  color: #f8fbff;
  box-shadow: none;
}

body[data-page="home"] .section-panel--intro .section-copy,
body[data-page="uebermich"] .section-panel--intro .section-copy {
  margin-top: 0.3rem;
  padding: 0;
  background: transparent;
  color: rgba(248, 251, 255, 0.86);
  width: min(100%, 60rem);
  text-align: center;
}

body[data-page="home"] .section-panel--intro .eyebrow,
body[data-page="uebermich"] .section-panel--intro .eyebrow {
  display: none;
}

.section-title,
.hero__title,
.contact-card__title,
.freebie-panel__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.08;
}

.section-copy,
.hero__copy {
  margin: var(--space-md) 0 0;
  color: var(--color-text-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
}

.hero__grid,
.freebie__grid,
.contact-grid,
.experience-grid {
  display: grid;
  gap: var(--space-xl);
}

.hero-stage {
  position: sticky;
  top: 0;
  z-index: 1;
  isolation: isolate;
  display: flex;
  align-items: stretch;
  min-height: 100vh;
  padding-block: clamp(5.3rem, 7vw, 6.9rem) var(--space-2xl);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/hero-ordered-background.jpg") center top / 100% auto no-repeat;
  opacity: var(--hero-home-reveal, 0);
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: block;
  min-height: calc(100vh - clamp(5.3rem, 7vw, 6.9rem));
}

.hero-copy-block {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  width: min(100%, 58rem);
  min-height: calc(100vh - clamp(5.3rem, 7vw, 6.9rem));
  padding-top: clamp(37rem, 74vh, 47rem);
  padding-bottom: 0;
  margin-left: 0;
  margin-right: auto;
}

.hero__title {
  display: grid;
  place-items: start;
  justify-items: start;
  max-width: none;
  font-size: clamp(1.75rem, 4.5vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-align: left;
}

.hero__title-state {
  grid-area: 1 / 1;
  display: grid;
  justify-items: start;
  gap: 0.42rem;
  transition:
    opacity 160ms linear,
    filter 160ms linear;
}

.hero__title-state--ordered {
  width: max-content;
  opacity: var(--hero-title-progress, 0);
  filter: blur(calc((1 - var(--hero-title-progress, 0)) * 1.5px));
  transform: none;
  pointer-events: none;
}

.hero__title-line {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-inline: 0;
  text-align: left;
}

.hero__title-chip {
  display: inline-block;
  padding: 0.08em 0.16em 0.15em;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 16px 36px rgba(70, 95, 118, 0.14);
  white-space: nowrap;
  color: var(--color-text);
}

.hero__title-chip--ordered {
  padding: 0.08em 0.16em 0.15em;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 16px 36px rgba(70, 95, 118, 0.14);
  color: var(--color-text);
  font-size: 1em;
  line-height: 0.92;
}

.hero__title-ordered-band {
  position: relative;
  display: grid;
  justify-items: start;
  gap: 0.42rem;
  width: auto;
  padding: 0;
}

.hero__title-ordered-band::before {
  content: none;
}

.hero__title-state--ordered .hero__title-line {
  position: relative;
  z-index: 1;
}

.hero-chaos {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 100%;
  pointer-events: auto;
}

.hero-chaos__canvas {
  position: relative;
  width: 100%;
  height: min(88vh, 58rem);
  min-height: 46rem;
  --hero-final-word-size: clamp(1.6rem, 0.98rem + 0.88vw, 2.24rem);
  --hero-final-word-weight: 500;
  --hero-final-word-line-height: 1.1;
  --hero-final-word-tracking: -0.04em;
}

.hero-chaos__canvas::before,
.hero-chaos__canvas::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
  pointer-events: none;
}

.hero-chaos__canvas::before {
  width: 20rem;
  height: 20rem;
  top: 2%;
  right: 3%;
  background: rgba(255, 255, 255, 0.42);
  filter: blur(18px);
  opacity: calc(0.44 - 0.44 * var(--hero-progress, 0));
}

.hero-chaos__canvas::after {
  inset: 60% 0 2% 0;
  width: auto;
  height: auto;
  border-radius: 2.4rem;
  border: 1px solid rgba(91, 116, 140, calc(0.02 + var(--hero-progress, 0) * 0.12));
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 100%),
    linear-gradient(rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 100%);
  background-size: 20% 100%, 100% 20%;
  opacity: calc((1 - var(--hero-progress, 0)) * 0.22);
}

.hero-float {
  position: absolute;
  left: 0;
  top: 0;
  will-change: transform;
  transform-origin: center;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.hero-float--light {
  --term-rgb: 255, 255, 255;
  --term-alpha: 0.82;
  background: rgba(255, 255, 255, 0.82);
}

.hero-float--accent {
  --term-rgb: 243, 221, 212;
  --term-alpha: 0.85;
  background: rgba(243, 221, 212, 0.85);
}

.hero-float--deep {
  --term-rgb: 216, 227, 236;
  --term-alpha: 0.92;
  background: rgba(216, 227, 236, 0.92);
}

.hero-float--term {
  position: absolute;
  pointer-events: none;
  transform-origin: top left;
  font-family:
    ui-monospace,
    "SFMono-Regular",
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #1d3048;
  font-size: 0.94rem;
  font-weight: 675;
  letter-spacing: 0.005em;
  line-height: 1.12;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  transition:
    opacity 140ms linear,
    color 140ms linear,
    font-size 140ms linear,
    font-weight 140ms linear,
    letter-spacing 140ms linear,
    line-height 140ms linear;
}

.hero-float--primary {
  z-index: 4;
}

.hero-float--echo {
  z-index: 2;
  filter: blur(0.12px);
}

.hero-panel {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border: 1px solid rgba(91, 116, 140, 0.16);
  border-radius: 1.8rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 246, 241, 0.96));
  box-shadow: 0 20px 52px rgba(70, 95, 118, 0.14);
  pointer-events: none;
}

.hero-panel--left {
  width: clamp(26rem, 38vw, 38rem);
  min-height: 13rem;
}

.hero-panel--right {
  width: clamp(34rem, 48vw, 50rem);
  min-height: 14rem;
}

.hero-final-cards {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-final-surface {
  position: absolute;
  left: var(--hero-final-surface-left, 0px);
  top: var(--hero-final-surface-top, clamp(10.5rem, 22vh, 14rem));
  width: var(--hero-final-surface-width, 100vw);
  min-height: min(14rem, 24vw);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding:
    clamp(1.15rem, 2vw, 1.75rem)
    clamp(1rem, 2.8vw, 2.4rem)
    clamp(1.15rem, 2vw, 1.7rem)
    0;
  overflow: hidden;
  pointer-events: none;
  transform: none;
  transform-origin: left center;
  transition: opacity var(--transition-base);
}

.hero-final-surface::before {
  content: none;
}

.hero-final-cluster {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(1rem, 2vw, 1.6rem);
  width: min(100%, 58rem);
  max-width: none;
  min-height: 0;
  margin-left: var(--hero-final-cluster-offset, 0px);
  opacity: clamp(0, calc((var(--hero-final-progress, 0) - 0.34) / 0.22), 1);
  z-index: 1;
}

.hero-final-stack {
  position: relative;
  flex: 0 1 auto;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 0;
  width: auto;
  max-width: none;
}

.hero-final-row {
  display: grid;
  align-items: start;
  justify-content: flex-start;
  justify-items: start;
  gap: 0.8rem;
  width: max-content;
  max-width: none;
  white-space: nowrap;
}

.hero-final-actions {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  flex-wrap: wrap;
}

.hero-final-line {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.44rem;
  width: max-content;
  max-width: none;
  white-space: nowrap;
}

.hero-final-chip {
  display: inline-grid;
  align-items: start;
  justify-items: start;
  gap: 0.16em;
  width: max-content;
  max-width: none;
  padding: 0.24em 0.56em 0.32em;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 16px 36px rgba(70, 95, 118, 0.14);
}

.hero-final-chip-line {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.34rem;
  width: max-content;
  max-width: none;
  white-space: nowrap;
}

.hero-final-anchor-word {
  display: inline-block;
  color: var(--color-text);
  opacity: var(--hero-font-progress, 0);
  font-family: var(--font-heading);
  font-size: clamp(1.42rem, 0.96rem + 1.02vw, 2.48rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.032em;
  user-select: none;
  white-space: nowrap;
  transition: opacity 140ms linear;
}

.hero-final-copy__button {
  min-width: 10.6rem;
  align-self: start;
  min-height: 0;
  padding: 0.56rem 0.96rem;
  color: #152436;
  font-size: 0.92rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(255, 255, 255, 0.98);
  opacity: clamp(0, calc((var(--hero-card-reveal, 0) - 0.5) / 0.3), 1);
  transform: translateY(calc((1 - clamp(0, calc((var(--hero-card-reveal, 0) - 0.5) / 0.3), 1)) * 1rem));
  pointer-events: auto;
}

.hero-final-copy__button:hover,
.hero-final-copy__button:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  color: #152436;
}

.hero-final-portrait {
  display: none;
}

.hero-final-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float--cta {
  z-index: 5;
  opacity: 1;
  box-shadow: var(--shadow-md);
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(255, 255, 255, 0.98);
  color: #152436;
}

.hero-float--cta-secondary {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 1);
  color: #152436;
}

.hero-float--cta:hover,
.hero-float--cta:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  color: #152436;
}

.hero-shape {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  box-shadow: none;
}

.hero-shape--mist {
  background: rgba(255, 255, 255, 0.56);
}

.hero-shape--light {
  background: rgba(255, 255, 255, 0.72);
}

.hero-shape--accent {
  background: rgba(243, 221, 212, 0.58);
}

.hero-shape--accent-soft {
  background: rgba(243, 221, 212, 0.42);
}

.hero-shape--deep {
  background: rgba(216, 227, 236, 0.56);
  border-color: rgba(91, 116, 140, 0.18);
}

.hero-shape--orb {
  width: clamp(5rem, 8vw, 8.5rem);
  aspect-ratio: 1;
  border-radius: 50%;
}

.hero-shape--ring {
  width: clamp(5rem, 9vw, 8rem);
  aspect-ratio: 1;
  border: 1px solid rgba(91, 116, 140, 0.16);
  border-radius: 50%;
  background: transparent;
}

.hero-shape--bar {
  width: clamp(8rem, 13vw, 11rem);
  height: 0.95rem;
  border-radius: var(--radius-pill);
}

.hero-shape--capsule {
  width: clamp(3.8rem, 7vw, 5.5rem);
  height: clamp(2rem, 3vw, 2.8rem);
  border-radius: 999px;
}

.section--hero.is-ordered .hero-float--term {
  padding: 0;
  border-color: transparent;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: none;
  color: var(--color-text);
}

.section--hero.is-ordered .hero-float--target-left {
  color: var(--color-text);
}

.section--hero.is-ordered .hero-float--target-right {
  color: var(--color-text);
}

.section--hero.is-ordered .hero__title-state--default {
  opacity: calc(1 - var(--hero-title-progress, 0));
  filter: blur(calc(var(--hero-title-progress, 0) * 1.5px));
  transform: none;
  pointer-events: none;
}

.section--hero.is-ordered .hero__title-state--ordered {
  opacity: var(--hero-title-progress, 0);
  filter: blur(calc((1 - var(--hero-title-progress, 0)) * 1.5px));
  transform: none;
}

.section--hero.is-ordered .hero-float--term[data-anchor-id] {
  opacity: calc(1 - var(--hero-font-progress, 0)) !important;
  font-size: calc(0.94rem + 1.54rem * var(--hero-type-progress, 0));
  font-weight: calc(675 - 75 * var(--hero-type-progress, 0));
  line-height: calc(1.12 - 0.1 * var(--hero-type-progress, 0));
  letter-spacing: calc(0.005em - 0.037em * var(--hero-type-progress, 0));
}

.section--hero.is-ordered .hero-float--echo {
  filter: none;
  opacity: 0 !important;
}

.section--hero.is-ordered .hero-chaos__canvas::before,
.section--hero.is-ordered .hero-chaos__canvas::after {
  opacity: 0;
}

.metric-card,
.card,
.contact-card,
.freebie-panel,
.status-card,
.legal-card {
  border: 1px solid rgba(32, 48, 46, 0.09);
  border-radius: var(--radius-md);
  background: var(--color-surface-card-strong);
  box-shadow: var(--shadow-sm);
}

body[data-page="home"] .card,
body[data-page="home"] .contact-card,
body[data-page="home"] .freebie-panel,
body[data-page="home"] .status-card,
body[data-page="home"] .faq-list details,
body[data-page="uebermich"] .card,
body[data-page="uebermich"] .contact-card,
body[data-page="uebermich"] .freebie-panel,
body[data-page="uebermich"] .status-card,
body[data-page="uebermich"] .faq-list details {
  box-shadow: none;
}

body[data-page="home"] .site-footer,
body[data-page="uebermich"] .site-footer {
  background: transparent;
  border-top-color: rgba(248, 251, 255, 0.12);
}

body[data-page="home"] .site-footer__meta strong,
body[data-page="home"] .site-footer__meta p,
body[data-page="home"] .site-footer a,
body[data-page="uebermich"] .site-footer__meta strong,
body[data-page="uebermich"] .site-footer__meta p,
body[data-page="uebermich"] .site-footer a {
  color: rgba(248, 251, 255, 0.86);
}

.grid {
  display: grid;
  gap: var(--space-md);
}

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

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

.card {
  padding: 1.45rem;
}

.card h3,
.card h4,
.freebie-preview__title,
.contact-card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.2;
}

.card p,
.contact-card p,
.status-card p {
  margin: 0;
  color: var(--color-text-soft);
}

.card ul {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  color: var(--color-text-soft);
}

.card li + li {
  margin-top: 0.35rem;
}

.section-card__meta,
.process-step__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.section-card__label {
  color: var(--color-text-soft);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(91, 116, 140, 0.14);
  background: rgba(251, 246, 239, 0.9);
  color: var(--color-primary);
  flex: 0 0 auto;
  overflow: hidden;
  line-height: 0;
}

.icon-badge svg,
.icon-badge__glyph {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  max-width: none;
  flex: none;
}

.problem-shell {
  display: grid;
  gap: 1.2rem;
}

.problem-intro {
  max-width: none;
}

.problem-grid {
  position: relative;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  width: min(100%, 44rem);
  margin-left: auto;
  z-index: 1;
}

.problem-card {
  position: relative;
  display: grid;
  gap: 0.65rem;
  padding: 1.15rem 1.35rem;
  background: var(--color-surface-card-strong);
}

.problem-card::before {
  content: none;
}

.problem-card .icon-badge {
  color: var(--color-accent);
  background: rgba(255, 247, 242, 0.95);
}

.problem-card__header {
  display: block;
  align-items: center;
}

.problem-card__header h3 {
  margin: 0;
}

.problem-stage {
  position: relative;
  min-height: 32rem;
}

.problem-stage__media {
  position: absolute;
  left: 0;
  top: 0.3rem;
  bottom: 0.3rem;
  width: min(32vw, 24rem);
  overflow: hidden;
  z-index: 0;
}

.problem-stage__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.audience-shell,
.offer-shell,
.journey-shell {
  display: grid;
  gap: var(--space-xl);
}

.audience-head,
.offer-intro,
.journey-intro {
  max-width: none;
}

.audience-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.audience-card {
  min-height: 100%;
  background: rgba(251, 246, 239, 0.8);
}

.audience-card--wide {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(251, 246, 239, 0.92), rgba(216, 227, 236, 0.84));
}

.audience-card:nth-child(2) {
  background: rgba(216, 227, 236, 0.82);
}

.audience-card:nth-child(3) {
  background: rgba(251, 246, 239, 0.88);
}

.audience-card:nth-child(4) {
  background: rgba(243, 221, 212, 0.45);
}

.offer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.offer-card {
  min-height: 100%;
  background: var(--color-surface-card-strong);
}

.offer-card ul {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 0;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding-left: 1.05rem;
}

.offer-card li::before {
  content: "";
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 50%;
  background: var(--color-accent);
}

.section--journey {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
}

.journey-grid {
  position: relative;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journey-grid::before {
  content: "";
  position: absolute;
  top: 2.2rem;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background:
    linear-gradient(90deg, rgba(91, 116, 140, 0.14), rgba(91, 116, 140, 0.32), rgba(91, 116, 140, 0.14));
}

.process-step {
  position: relative;
  background: rgba(251, 246, 239, 0.9);
}

.process-step__meta {
  justify-content: space-between;
}

.process-step__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.process-step .icon-badge {
  background: rgba(216, 227, 236, 0.86);
}

.freebie-section {
  display: grid;
  align-items: start;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  grid-template-columns: 1fr;
}

.freebie-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.freebie-section__intro {
  max-width: none;
}

.freebie-panel {
  padding: 1.6rem;
  min-height: 100%;
}

.freebie-panel__header {
  display: grid;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
}

.freebie-panel__title {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.freebie-panel__copy {
  margin: 0;
  color: var(--color-text-soft);
}

.freebie-photo-card {
  overflow: hidden;
  min-height: 100%;
  background: rgba(253, 248, 241, 0.92);
}

.freebie-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.progress {
  display: grid;
  gap: 0.55rem;
  margin-bottom: var(--space-lg);
}

.progress__row {
  display: grid;
  gap: 0.45rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.progress__dot {
  height: 0.45rem;
  border-radius: var(--radius-pill);
  background: rgba(91, 116, 140, 0.14);
}

.progress__dot.is-active {
  background: var(--color-accent);
}

.progress__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.85rem;
  color: var(--color-text-soft);
  font-size: 0.94rem;
}

.progress__labels span.is-active {
  color: var(--color-primary);
  font-weight: 700;
}

.form-step {
  display: grid;
  gap: var(--space-md);
}

.form-step__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.45rem;
}

.form-step__copy {
  margin: 0;
  color: var(--color-text-soft);
}

.option-grid {
  display: grid;
  gap: 0.8rem;
}

.option-card {
  display: block;
  cursor: pointer;
}

.option-card input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
}

.option-card__body {
  display: block;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(91, 116, 140, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(251, 246, 239, 0.72);
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast),
    transform var(--transition-fast);
}

.option-card input:checked + .option-card__body,
.option-card input:focus-visible + .option-card__body {
  border-color: rgba(201, 120, 92, 0.9);
  background: rgba(243, 221, 212, 0.55);
  transform: translateY(-1px);
}

.email-field,
.consent {
  display: grid;
  gap: 0.45rem;
}

.email-field label,
.consent label {
  color: var(--color-text-soft);
  font-size: 0.97rem;
}

.email-field input {
  min-height: 3rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(91, 116, 140, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(251, 246, 239, 0.9);
}

.consent {
  grid-template-columns: 1.2rem 1fr;
  align-items: start;
}

.form-note,
.status-card__kicker,
.legal-note,
.contact-note {
  color: var(--color-text-soft);
  font-size: 0.96rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-sm);
}

.status-card {
  padding: 1.15rem;
}

.status-card--success {
  border-color: rgba(47, 109, 85, 0.24);
  background: rgba(227, 241, 233, 0.85);
}

.status-card--error {
  border-color: rgba(162, 72, 53, 0.22);
  background: rgba(250, 237, 233, 0.9);
}

.status-card--notice {
  border-color: rgba(201, 120, 92, 0.22);
  background: rgba(255, 247, 242, 0.92);
}

.status-card h4 {
  margin: 0 0 0.45rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
}

.inline-hacks {
  display: grid;
  gap: 0.85rem;
  margin-top: var(--space-md);
}

.inline-hacks article {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(251, 246, 239, 0.82);
  border: 1px solid rgba(32, 48, 46, 0.08);
}

.inline-hacks h5 {
  margin: 0 0 0.35rem;
  color: var(--color-primary);
  font-size: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-shell,
.contact-shell,
.about-shell {
  display: grid;
  gap: var(--space-xl);
}

.faq-list details {
  border: 1px solid rgba(91, 116, 140, 0.1);
  border-radius: var(--radius-sm);
  background: var(--color-surface-card-strong);
  padding: 1rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--color-primary);
}

.faq-list p {
  margin: 0.75rem 0 0;
  color: var(--color-text-soft);
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
}

.contact-intro {
  max-width: none;
}

.contact-card {
  padding: 1.5rem;
}

.contact-card--primary {
  display: grid;
}

.contact-card__stack {
  display: grid;
  gap: 1.35rem;
  height: 100%;
  align-content: space-between;
}

.contact-card__copy {
  display: grid;
  gap: 0.85rem;
}

.contact-card__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.contact-card__lead {
  margin: 0;
  color: var(--color-text-soft);
}

.contact-card__profile {
  display: grid;
  gap: 0.5rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(91, 116, 140, 0.12);
}

.contact-card__profile h4 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.22rem;
  line-height: 1.2;
}

.contact-card__profile p {
  margin: 0;
  color: var(--color-text-soft);
}

.contact-points {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-points li {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(91, 116, 140, 0.12);
  color: var(--color-text-soft);
}

.portrait-card {
  overflow: hidden;
  padding: 0;
}

.portrait-card img {
  aspect-ratio: 0.85;
  width: 100%;
  object-fit: cover;
}

.contact-portrait-card img {
  height: 100%;
  aspect-ratio: 0.78;
  object-position: center top;
}

.portrait-card__body {
  padding: 1rem 1.2rem 1.25rem;
}

.about-split {
  display: grid;
  align-items: stretch;
  gap: var(--space-md);
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
}

.about-split--reverse {
  grid-template-columns: minmax(18rem, 0.95fr) minmax(0, 1.05fr);
}

.about-card {
  min-height: 100%;
}

.about-portrait-card img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center top;
}

.about-portrait-card {
  display: flex;
  align-self: stretch;
  min-height: 100%;
}

.about-card__group,
.about-card__groups {
  display: grid;
  gap: 0.65rem;
}

.about-card__group h3,
.about-card__groups h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.2;
}

.about-card__group p,
.about-card__groups p {
  margin: 0;
  color: var(--color-text-soft);
}

.about-card__groups {
  gap: 1rem;
}

.about-card__group--feature {
  padding-top: 0.15rem;
  border-top: 1px solid rgba(91, 116, 140, 0.12);
}

.site-footer {
  padding-block: 1.35rem;
  border-top: 1px solid rgba(91, 116, 140, 0.08);
  background: rgba(255, 255, 255, 0.34);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-md);
}

.site-footer__meta {
  display: grid;
  gap: 0.2rem;
}

.site-footer__meta strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.site-footer__meta p {
  margin: 0;
  color: var(--color-text-soft);
}

.legal-page {
  padding-block: var(--space-2xl);
}

.legal-main {
  width: min(100% - 2rem, var(--container-sm));
  margin-inline: auto;
  display: grid;
  gap: var(--space-lg);
}

.legal-card {
  padding: 1.5rem;
}

.legal-card h1,
.legal-card h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-heading);
  line-height: 1.15;
}

.legal-card h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-card h2 {
  font-size: 1.45rem;
}

.legal-card p,
.legal-card li,
.legal-card dd {
  color: var(--color-text-soft);
}

.legal-card p:last-child,
.legal-card ul:last-child,
.legal-card dl:last-child {
  margin-bottom: 0;
}

.legal-list {
  display: grid;
  grid-template-columns: minmax(7.5rem, 12rem) 1fr;
  gap: 0.55rem 1rem;
  margin: 0;
}

.legal-list dt {
  color: var(--color-primary);
  font-weight: 700;
}

.legal-list dd {
  margin: 0;
}

.noscript-shell {
  width: min(100% - 2rem, var(--container-sm));
  margin: 0 auto;
  padding-block: var(--space-2xl);
}

.noscript-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.25rem);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-layout,
  .problem-shell,
  .problem-stage,
  .problem-grid,
  .audience-grid,
  .offer-grid,
  .journey-grid,
  .freebie-section,
  .freebie-layout,
  .contact-grid,
  .about-split,
  .experience-grid,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .grid--3,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section--hero {
    min-height: 214vh;
  }

  .hero-stage {
    min-height: 100svh;
  }

  .hero-copy-block,
  .problem-intro,
  .audience-head,
  .offer-intro,
  .journey-intro {
    max-width: none;
  }

  .hero-copy-block {
    width: min(100%, 44rem);
    min-height: calc(100vh - clamp(5.3rem, 7vw, 6.9rem));
    padding-top: clamp(31rem, 64vh, 39rem);
    padding-bottom: 0;
  }

  .hero-chaos__canvas {
    height: min(80vh, 48rem);
    min-height: 36rem;
    --hero-final-word-size: clamp(1.25rem, 0.98rem + 0.85vw, 1.8rem);
  }

  .audience-card--wide,
  .offer-card--feature {
    grid-column: span 1;
  }

  .problem-card:nth-child(2),
  .problem-card:nth-child(3) {
    margin-top: 0;
  }

  .problem-stage {
    min-height: 0;
  }

  .problem-stage__media {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    width: 100%;
    height: 18rem;
    margin-bottom: 1rem;
  }

  .problem-grid {
    width: 100%;
  }

  .freebie-photo-card {
    min-height: 18rem;
  }

  .journey-grid::before {
    display: none;
  }

  .experience-card--wide,
  .freebie-section__intro {
    max-width: none;
  }
}

@media (max-width: 760px) {
  body {
    --site-header-height: 4.7rem;
    font-size: 1rem;
  }

  .site-header__inner {
    min-height: var(--site-header-height);
  }

  .site-header__toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 0.5rem) 1rem auto 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(91, 116, 140, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition:
      opacity var(--transition-fast),
      transform var(--transition-fast);
  }

  .site-header[data-nav-open="true"] .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header__cta {
    display: none;
  }

  .section--hero {
    min-height: 202vh;
  }

  .hero-stage {
    align-items: start;
    padding-top: 5.5rem;
  }

  .hero-copy-block {
    width: 100%;
    min-height: calc(100svh - 5.5rem);
    padding-top: clamp(27rem, 61vh, 33rem);
    padding-bottom: 0;
  }

  .hero__title {
    gap: 0.3rem;
    font-size: clamp(0.82rem, 3.85vw, 1.35rem);
    letter-spacing: -0.03em;
  }

  .hero__title-chip--ordered {
    font-size: 1em;
  }

  .hero__title-chip {
    padding: 0.12em 0.18em 0.18em;
  }

  .hero__cta-row {
    margin-top: 4.9rem;
  }

  .hero-chaos__canvas {
    width: 100%;
    height: min(72vh, 36rem);
    min-height: 30rem;
    --hero-final-word-size: clamp(1.02rem, 0.8rem + 0.78vw, 1.38rem);
  }

  .hero-float--term {
    padding: 0;
    font-size: 0.72rem;
    border-radius: 0;
  }

  .hero-float--portrait {
    width: min(8.4rem, 31vw);
  }

  .hero-float--cta {
    min-height: 2.7rem;
    padding: 0.68rem 0.92rem;
    font-size: 0.88rem;
  }

  .hero-final-cluster {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.95rem;
  }

  .hero-final-surface {
    top: clamp(8.5rem, 18vh, 11rem);
    padding:
      1rem
      clamp(0.8rem, 3vw, 1.2rem)
      1rem
      0;
  }

  .hero-final-stack {
    justify-items: start;
    max-width: min(92vw, 30rem);
    gap: 0.72rem;
  }

  .hero-final-row {
    gap: 0.56rem;
  }

  .hero-final-portrait {
    width: min(11.5rem, 36vw);
  }

  .hero-final-chip {
    padding-inline: 0.58em;
  }

  .hero-final-copy__button {
    min-width: 9.9rem;
  }

  .hero-panel--left,
  .hero-panel--right {
    width: min(82vw, 25rem);
    min-height: 8.8rem;
  }

  .hero-shape--orb {
    width: clamp(3.2rem, 9vw, 5rem);
  }

  .hero-shape--ring {
    width: clamp(3rem, 8.5vw, 4.8rem);
  }

  .hero-shape--bar {
    width: clamp(5.4rem, 16vw, 7rem);
  }

  .hero-shape--capsule {
    width: clamp(2.6rem, 9vw, 4rem);
    height: clamp(1.25rem, 4vw, 2rem);
  }

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

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

@media (max-width: 520px) {
  .section--hero {
    min-height: 196vh;
  }

  .hero__title {
    font-size: clamp(0.78rem, 3.7vw, 1rem);
  }

  .hero__title-chip--ordered {
    font-size: 1em;
  }

  .hero-copy-block {
    min-height: calc(100svh - 5.5rem);
    padding-top: clamp(24rem, 58vh, 29rem);
    padding-bottom: 0;
  }

  .hero__cta-row {
    margin-top: 4.1rem;
    gap: 0.55rem;
  }

  .hero-float--term {
    padding: 0;
    font-size: 0.64rem;
  }

  .hero-final-cluster {
    gap: 0.8rem;
  }

  .hero-final-surface {
    top: clamp(8rem, 17vh, 10rem);
    padding: 0.92rem 0.8rem 1rem 0;
  }

  .hero-final-stack {
    max-width: min(92vw, 20.5rem);
  }

  .hero-final-portrait {
    width: min(10rem, 46vw);
  }

  .hero-final-chip {
    padding-inline: 0.52em;
  }

  .hero-final-copy__button {
    min-width: 9.25rem;
    font-size: 0.8rem;
  }

  .hero-panel--left,
  .hero-panel--right {
    width: min(86vw, 21rem);
    min-height: 8rem;
  }

  .hero-chaos__canvas {
    --hero-final-word-size: 0.98rem;
  }
}
