:root {
  --bg: #000;
  --fg: #fff;
  --dim: rgba(255, 255, 255, 0.16);
  --muted: rgba(255, 255, 255, 0.62);
  --accent: #f39137;
  --accent-text: #050505;
}

[data-theme="blue"] { --accent: #6879ff; }
[data-theme="green"] { --accent: #95c957; }
[data-theme="white"] { --accent: #fff; }

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, "Trebuchet MS", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button { font: inherit; }
section { scroll-margin-top: 96px; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  display: none;
  opacity: 0;
  background-image:
    radial-gradient(circle, #fff 0 0.7px, transparent 0.8px),
    radial-gradient(circle, #fff 0 0.45px, transparent 0.5px);
  background-size: 19px 19px, 11px 11px;
  mix-blend-mode: screen;
}

.real-estate-page .grain {
  display: none;
}

.real-estate-page main {
  width: 100%;
  box-sizing: border-box;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 190px 1fr auto auto;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  padding: 28px 52px 22px;
  background: linear-gradient(#000 0%, rgba(0, 0, 0, 0.94) 72%, rgba(0, 0, 0, 0) 100%);
}

.logo {
  display: block;
  width: max-content;
  font-family: Inter, "Trebuchet MS", Arial, sans-serif;
  font-style: normal;
  font-size: clamp(22px, 1.65vw, 32px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(34px, 5vw, 88px);
  padding-top: 0;
  font-size: clamp(17px, 1.12vw, 22px);
  font-weight: 700;
}

.desktop-nav a::before {
  content: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 34px;
  border-radius: 999px;
  background: var(--accent);
  color: #050505;
  font-size: clamp(16px, 1.05vw, 21px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.moods {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 0;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 700;
}

.mood,
.menu-toggle i {
  width: 16px;
  height: 16px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.mood:nth-of-type(1), .menu-toggle i { background: #ff453d; }
.mood:nth-of-type(2) { background: #6879ff; }
.mood:nth-of-type(3) { background: #95c957; }
.mood:nth-of-type(4) { background: #fff; }
.mood.active { outline: 1px solid #fff; outline-offset: 3px; }

.menu-toggle {
  display: none;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 12px 22px;
  background: #050505;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 49;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 90px 32px 32px;
  background: var(--accent);
  color: var(--accent-text);
  transform: translateY(-100%);
  transition: transform 500ms cubic-bezier(.77, 0, .18, 1);
}

.menu-open .menu-panel { transform: translateY(0); }
.menu-panel p { font-size: 44px; line-height: 0.94; margin: 0 0 20px; }
.menu-panel a { font-size: 30px; font-weight: 700; }
.menu-close { width: max-content; border: 1px solid #000; border-radius: 99px; background: transparent; padding: 10px 20px; }

.hero {
  position: relative;
  min-height: 810px;
  padding: 158px 52px 76px;
}

.arrow-field {
  position: absolute;
  inset: 88px 52px 185px;
  opacity: 0.44;
  background-image: url("data:image/svg+xml,%3Csvg width='34' height='26' viewBox='0 0 34 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 4 L13 13 L5 22' stroke='%23f39137' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round' opacity='.7'/%3E%3Cpath d='M20 4 L28 13 L20 22' stroke='%23fff' stroke-width='1.3' fill='none' stroke-linecap='round' stroke-linejoin='round' opacity='.22'/%3E%3C/svg%3E");
  background-size: 34px 26px;
  mask-image: linear-gradient(90deg, #000 0 82%, transparent 100%);
}

main#top .arrow-field {
  display: none;
}

.hero-inner {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

h1 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(56px, 5.9vw, 88px);
  line-height: 1;
  font-weight: 500;
}

.materialize-title > span {
  display: block;
  opacity: 0;
  transform: translateY(34px);
  animation: revealWord 820ms cubic-bezier(.2, .7, .2, 1) forwards;
}

.materialize-title > span:nth-child(2) {
  animation-delay: 130ms;
}

.materialize-title > span:nth-child(3) {
  animation-delay: 260ms;
}

.accent-line {
  color: var(--accent);
}

.hero-name {
  margin: 0 0 24px;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1;
  font-family: Inter, "Trebuchet MS", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.hero-subtitle {
  max-width: 720px;
  margin: 28px 0 0;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.12;
}

em {
  font-family: "DM Serif Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.split span {
  display: inline-block;
  opacity: 0;
  transform: translateY(34px);
  animation: revealWord 820ms cubic-bezier(.2, .7, .2, 1) forwards;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(320px, 560px) 1fr;
  align-items: end;
  gap: 80px;
  margin-top: 52px;
}

.hero-offer p {
  margin: 0;
  font-size: 23px;
  line-height: 1.27;
}

.hero-offer {
  display: grid;
  gap: 18px;
  align-items: start;
}

.hero-offer .hero-note {
  max-width: 580px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.34;
}

.hero-cta {
  position: relative;
  width: min(100%, 520px);
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  border: 1px solid color-mix(in srgb, var(--accent), #fff 24%);
  border-radius: 999px;
  background: linear-gradient(110deg, var(--accent), #fff2cf, var(--accent), #ff5639);
  background-size: 260% 100%;
  color: #050505;
  padding: 24px 36px;
  font-size: clamp(22px, 1.95vw, 30px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 18px 48px color-mix(in srgb, var(--accent), transparent 62%);
  overflow: hidden;
  animation: ctaShimmer 3.2s ease-in-out infinite;
  transition: transform 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.hero-cta::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -30%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: skewX(-18deg);
  animation: ctaSweep 2.8s ease-in-out infinite;
}

.hero-cta span {
  position: relative;
  z-index: 1;
}

.hero-cta:hover {
  transform: translateY(-4px) scale(1.015);
  color: #050505;
  box-shadow: 0 24px 64px color-mix(in srgb, var(--accent), transparent 50%);
}

.hero-offer small {
  max-width: 520px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.round-text {
  position: absolute;
  right: -22px;
  bottom: -74px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.round-text svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.round-text text {
  fill: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-visual {
  position: absolute;
  right: 0;
  top: 112px;
  z-index: 1;
  width: min(31vw, 390px);
  min-width: 310px;
}

.photo-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 0.78;
  overflow: visible;
  isolation: isolate;
}

main#top .hero .photo-stage {
  aspect-ratio: 3484 / 3129;
}

main#top .hero .hero-visual {
  width: min(100%, 560px);
}

main#top .hero .photo-stage::after,
main#top .hero .photo-line {
  display: none;
}

.photo-stage::before {
  content: "";
  position: absolute;
  inset: 9% -8% 8% 8%;
  z-index: -2;
  background: var(--accent);
  border-radius: 8px;
  transform: rotate(4deg);
  opacity: 0.95;
}

.photo-stage::after {
  content: "";
  position: absolute;
  inset: -6% -16% auto auto;
  z-index: -1;
  width: 62%;
  aspect-ratio: 1;
  border: 1px dashed rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.photo-stage > .main-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: 8px;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 82% 100%, 0 94%);
  filter: none;
  box-shadow: 0 42px 80px rgba(0, 0, 0, 0.48);
}

main#top .hero .photo-stage > .main-photo {
  object-fit: contain;
  object-position: center;
}

@media (min-width: 981px) {
  main#top .hero .hero-visual {
    width: min(38vw, 520px);
    min-width: 360px;
  }
}

.pet-card {
  position: absolute;
  z-index: 3;
  width: 112px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid #050505;
  border-radius: 8px;
  background: var(--accent);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.pet-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: none;
}

.pet-card-cat {
  left: -42px;
  bottom: 94px;
  transform: rotate(-7deg);
}

.pet-card-dog {
  right: -36px;
  bottom: 18px;
  transform: rotate(6deg);
}

.photo-line {
  position: absolute;
  right: -44px;
  top: 22%;
  z-index: 3;
  width: 122px;
  height: 56px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: skewY(-18deg);
}

.photo-stage.is-empty {
  min-height: 420px;
  background: rgba(255, 255, 255, 0.06);
}

.top-rule {
  height: 1px;
  background: #fff;
  margin: 0 52px;
}

.practice {
  position: relative;
}

.practice-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(76px, 10vw, 118px) clamp(24px, 6vw, 52px) clamp(90px, 12vw, 140px);
}

.practice-head {
  margin-bottom: clamp(46px, 7vw, 72px);
}

.practice h2 {
  margin: 0;
  font-size: clamp(50px, 7vw, 92px);
  line-height: 0.93;
  font-weight: 500;
}

.practice-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.2;
}

.practice-rail-block {
  position: sticky;
  top: 108px;
  z-index: 3;
  margin-bottom: clamp(28px, 5vw, 40px);
  padding: 0 0 20px;
  background:
    linear-gradient(180deg, #000 0%, #000 78%, rgba(0, 0, 0, 0.92) 90%, rgba(0, 0, 0, 0) 100%);
  backdrop-filter: blur(6px);
}

.practice-rail-title {
  margin: 0 0 56px;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.15;
}

.practice-rail {
  position: relative;
  height: 168px;
  --practice-progress: 0%;
  --practice-wave-opacity: 0;
  --practice-y: 0px;
}

.practice-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 62px;
  height: 1px;
  background: rgba(255, 255, 255, 0.82);
}

.practice-wave {
  position: absolute;
  left: 46px;
  right: 56px;
  top: 0;
  width: calc(100% - 102px);
  height: 168px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-dasharray: 4 7;
  opacity: var(--practice-wave-opacity);
  clip-path: inset(0 calc(100% - var(--practice-progress)) 0 0);
}

.practice-arrow {
  position: absolute;
  top: 43px;
  width: 34px;
  height: 34px;
}

.practice-arrow::before,
.practice-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  width: 33px;
  height: 7px;
  border-radius: 2px;
  background: #fff;
  transform-origin: right center;
}

.practice-arrow::before {
  transform: rotate(45deg);
}

.practice-arrow::after {
  transform: rotate(-45deg);
}

.pa-1 { left: 12%; }
.pa-2 { left: 34%; }
.pa-3 { left: 58%; }
.pa-4 { left: 84%; }

.practice-face {
  position: absolute;
  left: calc(var(--practice-progress) - 72px);
  top: -74px;
  width: 150px;
  height: 188px;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  transform: translateY(var(--practice-y));
  transition: left 140ms linear, transform 140ms linear, opacity 180ms ease;
}

.practice-face img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center top;
  filter:
    drop-shadow(0 0 0 #fff)
    drop-shadow(0 0 0 #fff)
    drop-shadow(4px 0 0 #fff)
    drop-shadow(-4px 0 0 #fff)
    drop-shadow(0 4px 0 #fff)
    drop-shadow(0 -4px 0 #fff)
    drop-shadow(3px 3px 0 #fff)
    drop-shadow(-3px 3px 0 #fff)
    drop-shadow(3px -3px 0 #fff)
    drop-shadow(-3px -3px 0 #fff);
}

.practice-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  position: relative;
  z-index: 1;
}

.practice-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: start;
  padding: clamp(28px, 5vw, 48px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.18;
  transition: opacity 220ms ease, transform 220ms ease;
}

.practice-item span {
  color: var(--accent);
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1;
  font-weight: 700;
}

.practice-item p {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.14;
}

.practice-item strong {
  color: var(--accent);
  font-weight: 700;
}

.practice-item-copy {
  display: grid;
  gap: 14px;
}

.practice-item-copy h3 {
  margin: 0;
  color: var(--accent);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.practice-item-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.practice-item-copy li {
  margin: 0;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.16;
}

.practice-item.is-active {
  opacity: 1;
  transform: translateY(-4px);
}

.kicker {
  margin: 0 0 34px;
  font-size: 23px;
  line-height: 1.2;
}

.struggle h2,
.solution h2,
.program h2,
.faq h2 {
  margin: 0;
  font-size: clamp(42px, 4vw, 56px);
  line-height: 1.08;
  font-weight: 500;
}

.struggle-copy {
  display: grid;
  gap: 20px;
  align-content: start;
  font-size: 24px;
  line-height: 1.26;
}

.struggle-copy p { margin: 0; }

.roadmap {
  position: sticky;
  top: 88px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 25px 0 80px;
}

.roadmap h3 {
  margin: 0 0 105px;
  font-size: 24px;
  font-weight: 500;
}

.line-wrap {
  position: relative;
  height: 150px;
}

.flight-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 55px;
  height: 1px;
  background: #fff;
}

.dotted-wave {
  position: absolute;
  left: 50px;
  right: 40px;
  top: 0;
  width: calc(100% - 90px);
  height: 150px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-dasharray: 4 7;
  opacity: var(--wave-opacity, 0);
  clip-path: inset(0 calc(100% - var(--road-progress, 0%)) 0 0);
}

.arrow {
  position: absolute;
  top: 37px;
  width: 34px;
  height: 34px;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  right: 0;
  width: 33px;
  height: 7px;
  border-radius: 2px;
  background: #fff;
  transform-origin: right center;
}

.arrow::before { transform: rotate(45deg); }
.arrow::after { transform: rotate(-45deg); }
.a1 { left: 10%; }
.a2 { left: 49%; }
.a3 { left: 88%; }

.head,
.mini-head {
  position: absolute;
  width: 75px;
  height: 92px;
  border: 5px solid #fff;
  border-radius: 46% 46% 50% 50%;
  background:
    radial-gradient(circle at 34% 36%, #161616 0 4px, transparent 5px),
    radial-gradient(circle at 65% 36%, #161616 0 4px, transparent 5px),
    radial-gradient(ellipse at 50% 72%, #21110b 0 20px, transparent 21px),
    linear-gradient(#bb7b54, #e0a47a);
  box-shadow: 0 0 0 1px #000;
}

.head {
  left: calc(var(--road-progress, 0%) - 36px);
  top: 34px;
  transform: translateY(calc(sin(var(--road-num, 0) * 6.283rad) * 40px));
  transition: left 120ms linear, top 120ms linear;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 76px;
}

.problem {
  opacity: 0.16;
  transition: opacity 250ms ease;
}

.problem.active { opacity: 1; }

.problem i {
  display: block;
  width: 20px;
  height: 14px;
  margin: 0 auto 46px;
  background: #fff;
  clip-path: polygon(50% 0, 100% 80%, 50% 100%, 0 80%);
}

.problem h4 {
  margin: 0 0 22px;
  font-size: 25px;
  line-height: 1.18;
  font-weight: 500;
}

.problem p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.breakthrough {
  max-width: 1120px;
  margin: 60px auto 0;
  padding: 0 52px 60px;
  display: grid;
  grid-template-columns: 90px 1fr 1.4fr auto;
  gap: 28px;
  align-items: center;
}

.mini-head {
  position: relative;
  width: 65px;
  height: 82px;
}

.breakthrough p,
.breakthrough a {
  margin: 0;
  font-size: 27px;
  line-height: 1.18;
}

.breakthrough button {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 30px;
}

.solution {
  padding: 120px 50px;
}

.solution-card {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--accent);
  color: #050505;
  padding: 95px 78px;
}

.pain-story {
  position: relative;
  padding: 0 clamp(22px, 4vw, 50px);
  background: #000;
  color: #fff;
  overflow: clip;
}

.pain-story::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.22) 0 0.7px, transparent 0.8px),
    radial-gradient(circle, rgba(255, 255, 255, 0.14) 0 0.45px, transparent 0.5px);
  background-size: 20px 20px, 12px 12px;
  pointer-events: none;
}

.pain-story::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent 15%, transparent 85%, rgba(255, 255, 255, 0.022));
  pointer-events: none;
}

.pain-hero {
  position: relative;
  z-index: 1;
  max-width: 1340px;
  margin: 0 auto;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(540px, 1.18fr);
  grid-template-areas:
    "eyebrow eyebrow"
    "left right";
  gap: clamp(26px, 3vw, 56px);
  align-items: start;
  padding: clamp(92px, 9vw, 118px) 0 clamp(22px, 3vw, 36px);
}

.pain-hero-left {
  grid-area: left;
  max-width: 640px;
}

.pain-eyebrow {
  grid-area: eyebrow;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4.8vw, 68px);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-wrap: balance;
  max-width: 760px;
}

.pain-title {
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.pain-title strong,
.pain-tab-label strong,
.pain-stage-title strong {
  color: var(--accent);
  font-family: "DM Serif Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.pain-note {
  margin: 18px 0 0;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.3;
}

.pain-hero-right {
  grid-area: right;
  padding-top: 4px;
}

.pain-focus {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(20px, 2.2vw, 28px);
  align-items: stretch;
}

.pain-selector {
  display: grid;
  gap: 6px;
}

.pain-tab {
  width: 100%;
  padding: 8px 0 9px 14px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  display: grid;
  gap: 5px;
  cursor: pointer;
  transition: border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.pain-tab:hover,
.pain-tab:focus-visible,
.pain-tab.is-active {
  border-left-color: var(--accent);
  opacity: 1;
}

.pain-tab:focus-visible {
  outline: none;
}

.pain-tab:not(.is-active) {
  opacity: 0.68;
}

.pain-tab-index {
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.pain-tab-label {
  color: #fff;
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.pain-stage {
  min-height: 100%;
  padding: clamp(20px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.pain-stage-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
}

.pain-stage-title {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 2.45vw, 40px);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.pain-stage-copy {
  margin: 0;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.pain-stage-copy p {
  margin: 0;
}

.pain-stage-copy p + p {
  margin-top: 12px;
}

.consequences {
  background: #000;
  color: #fff;
  padding: 0 20px 110px;
}

.consequences-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px clamp(28px, 7vw, 120px) 40px;
  min-height: auto;
  background: transparent;
  overflow: hidden;
}

.consequences-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.18) 0 0.7px, transparent 0.8px),
    radial-gradient(circle, rgba(255, 255, 255, 0.12) 0 0.45px, transparent 0.5px);
  background-size: 20px 20px, 12px 12px;
  pointer-events: none;
}

.consequences-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.022), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.018));
  pointer-events: none;
}

.consequences-scene {
  position: relative;
  z-index: 1;
  max-width: none;
}

.consequences-scene + .consequences-scene {
  margin-top: 34px;
}

.consequences-title,
.consequences-lead,
.consequences-block-heading p,
.consequences-subhead,
.consequences-bridge,
.consequences-listing li,
.consequences-copyline,
.consequences-quote,
.consequences-accent-stack p {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    filter 0.35s ease;
}

.consequences-title {
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 5.4vw, 76px);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -0.03em;
  max-width: 980px;
}

.consequences-header {
  display: grid;
  gap: 18px;
  max-width: 1000px;
}

.consequences-lead,
.consequences-block-heading p,
.consequences-subhead,
.consequences-bridge,
.consequences-copyline,
.consequences-quote,
.consequences-accent-stack p {
  margin: 0;
}

.consequences-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.12;
}

.consequences-block {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 3.8vw, 58px);
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.consequences-block-heading p {
  color: #fff;
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.03em;
  max-width: 440px;
}

.consequences-block-body {
  display: grid;
  gap: 20px;
  max-width: 780px;
}

.consequences-bridge {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.consequences-subhead {
  color: #fff;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.consequences-listing {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.consequences-listing li {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.consequences-copyline {
  max-width: 760px;
  color: #fff;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.consequences-copyline--accent {
  color: var(--accent);
}

.consequences-quote {
  color: var(--accent);
  font-family: "DM Serif Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 0.98;
}

.consequences-accent-stack {
  display: grid;
  gap: 10px;
}

.consequences-accent-stack p {
  color: #fff;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.consequences-listing-final {
  margin-top: 4px;
}

.whatido {
  background: #000;
  color: #fff;
  padding: 0 clamp(24px, 6vw, 52px) 56px;
}

.whatido-inner {
  max-width: 1340px;
  margin: 0 auto;
  background: var(--accent);
  border-radius: 24px;
  overflow: hidden;
}

.whatido-bar {
  display: none;
}

.whatido-top {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "left left"
    "stress outcome"
    "footer footer";
  gap: clamp(26px, 3vw, 40px);
  align-items: start;
  padding: clamp(72px, 7vw, 104px) clamp(56px, 6vw, 96px);
  background: var(--accent);
  color: #050505;
}

.whatido-left,
.whatido-panel,
.whatido-footer {
  min-width: 0;
}

.whatido-left {
  grid-area: left;
  max-width: 980px;
}

.whatido-eyebrow {
  margin: 0 0 34px;
  color: rgba(5, 5, 5, 0.76);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.1;
  font-weight: 500;
}

.whatido-title {
  margin: 0;
  max-width: 640px;
  font-size: clamp(58px, 6.2vw, 92px);
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #050505;
}

.whatido-title em {
  font-family: "DM Serif Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.whatido-panel {
  display: grid;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(5, 5, 5, 0.18);
}

.whatido-panel-stress {
  grid-area: stress;
}

.whatido-panel-outcome {
  grid-area: outcome;
}

.whatido-panel-kicker {
  margin: 0;
  color: rgba(5, 5, 5, 0.64);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.whatido-panel-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.whatido-panel-list li {
  font-size: clamp(24px, 2.15vw, 32px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.whatido-panel-list-stress li {
  color: rgba(5, 5, 5, 0.92);
}

.whatido-summary {
  margin: 0;
  max-width: 520px;
  color: #050505;
  font-size: clamp(36px, 3.2vw, 52px);
  line-height: 0.98;
  font-weight: 700;
}

.whatido-summary-tail {
  margin: 0;
  max-width: 460px;
  color: rgba(5, 5, 5, 0.86);
  font-size: clamp(22px, 1.9vw, 30px);
  line-height: 1.12;
  font-weight: 600;
}

.whatido-summary-block {
  display: grid;
  gap: 14px;
}

.whatido-panel-list-outcome {
  gap: 12px;
}

.whatido-panel-list-outcome li {
  color: rgba(5, 5, 5, 0.86);
  text-wrap: balance;
}

.whatido-panel-list-outcome li::before {
  content: "▸";
  display: inline-block;
  margin-right: 16px;
  color: rgba(5, 5, 5, 0.5);
  transform: translateY(-1px);
}

.whatido-footer {
  grid-area: footer;
  padding-top: 22px;
  border-top: 1px solid rgba(5, 5, 5, 0.16);
}

.whatido-footer p {
  margin: 0;
  max-width: 840px;
  color: #050505;
  font-size: clamp(28px, 2.35vw, 38px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.whatido-action {
  margin-top: 30px;
  width: min(100%, 760px);
}

.advice-break {
  background: #000;
  color: #fff;
  padding: clamp(64px, 8vw, 116px) clamp(24px, 6vw, 52px);
}

.advice-break-inner {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
}

.advice-break-head {
  max-width: 920px;
  display: grid;
  gap: 18px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.advice-break-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 5.6vw, 88px);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.advice-break-head > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.18;
  font-weight: 600;
}

.advice-break-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 18px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--accent) rgba(255, 255, 255, 0.12);
}

.advice-break-grid article {
  min-width: 240px;
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: stretch;
  gap: 18px;
  padding: 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: #181818;
}

.advice-break-grid h3 {
  margin: 0;
  color: var(--accent);
  font-size: clamp(23px, 1.65vw, 30px);
  line-height: 1.05;
  font-weight: 800;
}

.advice-break-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.28;
  font-weight: 600;
}

@media (min-width: 981px) {
  .advice-break-grid article {
    min-height: 280px;
  }

  .advice-break-grid h3 {
    min-height: 96px;
    display: flex;
    align-items: flex-start;
  }
}

.advice-break-final {
  max-width: 980px;
  margin: clamp(36px, 5vw, 62px) auto 0;
  display: grid;
  justify-items: center;
  gap: 28px;
  text-align: center;
}

.advice-break-final p {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.practice-action {
  margin: clamp(36px, 5vw, 64px) auto 0;
  display: grid;
  justify-items: center;
}

.experience-strip {
  background: #000;
  color: #fff;
  padding: 0 clamp(24px, 6vw, 52px) clamp(76px, 8vw, 122px);
}

.experience-strip-inner {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.experience-strip .cases-eyebrow {
  color: var(--accent);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.experience-grid article {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: 30px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: #171717;
}

.experience-grid strong {
  color: var(--accent);
  font-size: clamp(34px, 3.4vw, 56px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.experience-grid span {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.2;
  font-weight: 600;
}

.cases {
  background: #000;
  color: #fff;
  padding: 0 clamp(24px, 6vw, 52px) 80px;
}

.cases-inner {
  max-width: 1340px;
  margin: 0 auto;
}

.cases-cats-note {
  max-width: 1120px;
  margin: 0 auto 68px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cases-cats-note p {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.2vw, 68px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.cases-cats-note span {
  color: var(--accent);
}

.cats-gallery {
  max-width: 1120px;
  margin: -28px auto 74px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 340px);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding: 0 0 18px;
  scrollbar-color: var(--accent) rgba(255, 255, 255, 0.1);
}

.cats-gallery-card {
  scroll-snap-align: start;
  margin: 0;
  display: grid;
  gap: 16px;
  min-width: 0;
}

.cats-gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  background: rgba(255, 255, 255, 0.06);
}

.cats-gallery-card:nth-child(5) img {
  object-position: center;
  transform: none;
}

.cats-gallery-card figcaption {
  margin: 0;
  color: #fff;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.22;
  font-weight: 600;
}

.cases-head {
  display: grid;
  gap: 18px;
  max-width: 900px;
  margin-bottom: 42px;
}

.cases-eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.cases-title {
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 5.8vw, 86px);
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.cases-title em {
  color: var(--accent);
  font-family: "DM Serif Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.cases-note {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.2;
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.case-card {
  min-height: 0;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 38px 42px 30px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  background: #191919;
  display: grid;
  gap: 12px;
  align-content: start;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.case-card:hover {
  transform: translateY(-2px);
  border-color: rgba(243, 145, 55, 0.22);
  background: #1d1d1d;
}

.cases-total-block {
  max-width: 1120px;
  width: 100%;
  margin: 12px auto 0;
  padding: 46px 42px 42px;
  border: 1px solid rgba(243, 145, 55, 0.26);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(243, 145, 55, 0.16), rgba(255, 255, 255, 0.035)),
    #151515;
  text-align: left;
}

.cases-total-number {
  margin: 0;
  color: var(--accent);
  font-size: clamp(54px, 7.6vw, 112px);
  line-height: 0.92;
  font-weight: 800;
  display: inline-block;
  font-variant-numeric: tabular-nums;
  transform-origin: left center;
  will-change: transform, filter;
}

.cases-total-number.is-counting {
  filter: drop-shadow(0 0 18px rgba(243, 145, 55, 0.26));
}

.cases-total-number.is-complete {
  animation: totalNumberPop 560ms cubic-bezier(.2, .8, .2, 1) both;
}

@keyframes totalNumberPop {
  0% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(243, 145, 55, 0)); }
  42% { transform: scale(1.075); filter: drop-shadow(0 0 34px rgba(243, 145, 55, 0.42)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 16px rgba(243, 145, 55, 0.18)); }
}

.cases-total-text {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(24px, 2.25vw, 36px);
  line-height: 1.08;
  font-weight: 600;
}

.cases-total-action {
  max-width: 1120px;
  width: 100%;
  margin: 18px auto 0;
  display: grid;
  justify-items: center;
}

.cases-growth-cta {
  max-width: 1120px;
  width: 100%;
  margin: 64px auto 0;
  padding: 54px 0 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  justify-items: center;
  text-align: center;
}

.cases-growth-copy h3 {
  margin: 0;
  max-width: 920px;
  color: #fff;
  font-size: clamp(42px, 5.4vw, 86px);
  line-height: 0.98;
  font-weight: 800;
}

.cases-growth-copy p {
  max-width: 820px;
  margin: 28px auto 0;
  color: #fff;
  font-size: clamp(28px, 2.35vw, 40px);
  line-height: 1.34;
  font-weight: 600;
}

.cases-growth-panel {
  width: min(860px, 100%);
  display: grid;
  gap: 28px;
  padding: 34px 0 0;
  border-top: 1px solid rgba(243, 145, 55, 0.4);
  border-radius: 0;
  background: transparent;
  text-align: left;
}

.cases-growth-label {
  margin: 0;
  color: var(--accent);
  font-size: clamp(32px, 2.8vw, 48px);
  line-height: 1.08;
  font-weight: 800;
}

.cases-growth-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cases-growth-panel li {
  position: relative;
  padding: 12px 0 12px 46px;
  border-left: 0;
  border-top: 0;
  color: #fff;
  font-size: clamp(22px, 1.65vw, 28px);
  line-height: 1.22;
  font-weight: 500;
}

.cases-growth-panel li:last-child {
  border-bottom: 0;
}

.cases-growth-panel li::before {
  content: "";
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 24px;
  height: 18px;
  background: var(--accent);
  clip-path: polygon(0 0, 72% 50%, 0 100%, 18% 50%);
  filter: drop-shadow(0 0 12px rgba(243, 145, 55, 0.32));
}

.cases-growth-action {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: 100%;
}

.cases-growth-button {
  position: relative;
  width: min(100%, 520px);
  max-width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
  padding: 24px 36px;
  border: 1px solid color-mix(in srgb, var(--accent), #fff 24%);
  border-radius: 999px;
  background: linear-gradient(110deg, var(--accent), #fff2cf, var(--accent), #ff5639);
  background-size: 260% 100%;
  color: #050505;
  text-decoration: none;
  font-size: clamp(22px, 1.95vw, 30px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 18px 48px color-mix(in srgb, var(--accent), transparent 62%);
  overflow: hidden;
  animation: ctaShimmer 3.2s ease-in-out infinite;
  transition: transform 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.cases-growth-button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -30%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: skewX(-18deg);
  animation: ctaSweep 2.8s ease-in-out infinite;
}

.cases-growth-button:hover {
  transform: translateY(-4px) scale(1.015);
  color: #050505;
  box-shadow: 0 24px 64px color-mix(in srgb, var(--accent), transparent 50%);
}

.cases-growth-note {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 1.7vw, 30px);
  line-height: 1.2;
  font-weight: 600;
}

.home-faq {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(72px, 8vw, 120px) 52px clamp(92px, 10vw, 150px);
}

.home-faq-inner {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
}

.home-faq-eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-faq-title {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.96;
  font-weight: 800;
}

.home-faq-list {
  display: grid;
  gap: 14px;
}

.home-faq-item {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032)),
    rgba(255, 255, 255, 0.04);
  transition: border-color 180ms ease, background 180ms ease;
}

.home-faq-item.is-open {
  border-color: rgba(243, 145, 55, 0.44);
  background:
    radial-gradient(circle at 100% 0, rgba(243, 145, 55, 0.17), transparent 38%),
    rgba(255, 255, 255, 0.06);
}

.home-faq-question {
  width: 100%;
  min-height: clamp(82px, 8vw, 116px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: clamp(24px, 2.2vw, 38px);
  line-height: 1.08;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.home-faq-question i {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(243, 145, 55, 0.2);
  transition: transform 180ms ease;
}

.home-faq-question i::before,
.home-faq-question i::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: #111;
  transform: translate(-50%, -50%);
}

.home-faq-question i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 180ms ease;
}

.home-faq-item.is-open .home-faq-question i {
  transform: rotate(180deg);
}

.home-faq-item.is-open .home-faq-question i::after {
  opacity: 0;
}

.home-faq-answer {
  max-width: 940px;
  padding: 0 clamp(22px, 3vw, 34px) clamp(28px, 3.4vw, 44px);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(21px, 1.65vw, 29px);
  line-height: 1.34;
  font-weight: 520;
}

.home-faq-answer p {
  margin: 0;
}

.home-faq-answer p + p {
  margin-top: 14px;
}

@keyframes cases-growth-button-pulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(243, 145, 55, 0.34);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 0 0 12px rgba(243, 145, 55, 0);
  }
}

@keyframes cases-growth-button-shine {
  0%, 52% {
    left: -42%;
  }
  78%, 100% {
    left: 112%;
  }
}

.case-card-title,
.case-card-metric,
.case-card-sub,
.case-card-person,
.case-card-quote,
.case-card-meta-title,
.case-card-meta-list {
  margin: 0;
}

.case-card-meta {
  display: grid;
  gap: 8px;
}

.case-card-meta-title {
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 600;
}

.case-card-meta-list {
  padding-left: 20px;
  color: #fff;
  font-size: 18px;
  line-height: 1.3;
  display: grid;
  gap: 4px;
}

.case-card-review {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.case-card-review-copy {
  min-width: 0;
  display: grid;
  gap: 6px;
  align-content: center;
}

.case-card-person {
  color: #fff;
  font-size: 18px;
  line-height: 1.12;
  font-weight: 700;
}

.case-card-quote {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.28;
}

.case-card-title {
  color: #fff;
  font-size: clamp(34px, 2.8vw, 52px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.04em;
  max-width: 920px;
}

.case-card-metric {
  color: #ff9f3f;
  font-size: clamp(46px, 4vw, 72px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 0 18px rgba(243, 145, 55, 0.16);
}

.case-card-sub {
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(22px, 1.5vw, 28px);
  line-height: 1.18;
}

.case-card-divider {
  height: 1px;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.case-open {
  align-self: end;
  justify-self: start;
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}

.case-open::after {
  content: " →";
}

.case-modal[hidden] {
  display: none;
}

.case-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
}

.case-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
}

.case-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  margin: 16px auto;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: #111;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1.22fr);
  gap: 18px;
  overflow: hidden;
}

.case-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.case-modal-back {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  font-family: inherit;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.case-modal-back span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  font-size: 18px;
  line-height: 1;
}

.case-modal-back:hover {
  transform: translateX(-2px);
  border-color: rgba(243, 145, 55, 0.34);
  background: rgba(243, 145, 55, 0.1);
  color: #fff;
}

.case-modal-back:focus-visible {
  outline: 2px solid rgba(243, 145, 55, 0.85);
  outline-offset: 3px;
}

.case-modal-copy {
  padding: 18px 8px 18px 8px;
  display: grid;
  align-content: start;
  gap: 16px;
  overflow: auto;
}

.case-modal-story {
  padding: 34px 10px 14px;
  display: grid;
  gap: 72px;
  overflow: visible;
}

.case-modal-kicker,
.case-modal-title,
.case-modal-metric,
.case-modal-sub,
.case-modal-person,
.case-modal-text {
  margin: 0;
}

.case-modal-kicker {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
}

.case-modal-title {
  color: #fff;
  font-size: clamp(36px, 3.4vw, 54px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.case-modal-metric {
  color: var(--accent);
  font-size: clamp(34px, 3vw, 48px);
  line-height: 0.98;
  font-weight: 700;
}

.case-modal-sub {
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.2;
}

.case-modal-quote {
  margin-top: 8px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  gap: 10px;
}

.case-modal-person {
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.case-modal-quote-head {
  display: flex;
  align-items: center;
}

.case-modal-text {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.32;
}

.case-modal-media {
  min-width: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #1b1b1b;
}

.case-modal-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

body.case-modal-open {
  overflow: hidden;
}

body.review-modal-open {
  overflow: hidden;
}

  .case-modal-dialog.story-mode {
    width: min(1340px, calc(100vw - 32px));
    --story-shell-x: 28px;
    --story-shell-bottom: 0px;
    grid-template-columns: 1fr;
    padding: 28px 28px 0;
    overflow: auto;
}

.story-kicker,
.story-title,
.story-expert-name,
.story-expert-role,
.story-problem p,
.story-chip,
.story-lead,
.story-section-kicker,
.story-section-title,
.story-section-copy,
.story-result-label,
.story-result-value,
.story-result-note,
.story-review-copy p,
.story-cta-title,
.story-cta-copy,
.story-consent,
.story-field {
  margin: 0;
}

.story-hero,
.story-section {
  display: grid;
  gap: 22px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    #121212;
}

.story-section--point-a,
.story-section--point-b {
  position: relative;
  overflow: hidden;
}

.story-hero {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "kicker kicker"
    "title visual"
    "chip visual"
    "voice visual"
    "lead lead";
  align-items: start;
  gap: 24px 24px;
  padding: 46px;
  border-color: rgba(243, 145, 55, 0.18);
  background:
    radial-gradient(circle at 100% 0%, rgba(243, 145, 55, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    #101010;
}

.story-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #f39137, rgba(243, 145, 55, 0.2));
}

.story-kicker,
.story-section-kicker {
  color: var(--accent);
  font-size: var(--story-type-kicker);
  line-height: 1;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
}

.story-hero .story-kicker {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #f39137;
  color: #0f0f0f;
  letter-spacing: 0.08em;
}

.case-modal-story {
  --story-type-kicker: 17px;
  --story-type-title: clamp(40px, 4vw, 58px);
  --story-type-subtitle: clamp(28px, 2.15vw, 36px);
  --story-type-body: clamp(22px, 1.65vw, 27px);
  --story-type-body-tight: clamp(20px, 1.45vw, 24px);
}

.story-title {
  color: #fff;
  font-size: clamp(48px, 5vw, 78px);
  line-height: 0.94;
  font-weight: 600;
  letter-spacing: -0.04em;
  max-width: 920px;
}

.story-section-title,
.story-cta-title {
  color: #fff;
  font-size: var(--story-type-title);
  line-height: 0.94;
  font-weight: 600;
  letter-spacing: -0.04em;
  max-width: 920px;
}

.story-title span {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.story-expert {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.story-voice {
  grid-area: voice;
  display: grid;
  justify-items: start;
  gap: 12px;
  max-width: 940px;
}

.story-expert-mark {
  width: 62px;
  height: 62px;
  overflow: hidden;
  border-radius: 999px;
  border: 0;
  background: transparent;
}

.story-expert-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.story-expert-mark .mastermind-expert-avatar {
  object-position: 52% 25%;
  transform: scale(1.7);
  transform-origin: 52% 25%;
}

.real-estate-story .story-expert-mark {
  display: grid;
  place-items: center;
  flex: 0 0 62px;
}

.real-estate-story .story-expert-mark .real-estate-expert-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.42);
  transform-origin: 50% 50%;
}

.story-expert-name {
  color: #fff;
  font-size: var(--story-type-subtitle);
  line-height: 1.04;
  font-weight: 600;
}

.story-expert-role,
.story-section-copy,
.story-lead,
.story-cta-copy,
.story-consent {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--story-type-body);
  line-height: 1.3;
  max-width: 900px;
}

.story-problem {
  max-width: 920px;
  justify-self: start;
  position: relative;
  padding: 28px 30px 30px 32px;
  border: 1px solid rgba(243, 145, 55, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(243, 145, 55, 0.07), rgba(243, 145, 55, 0.02)),
    #141414;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.story-problem::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 36px;
  width: 22px;
  height: 22px;
  background:
    linear-gradient(135deg, rgba(243, 145, 55, 0.07), rgba(243, 145, 55, 0.02)),
    #141414;
  border-left: 1px solid rgba(243, 145, 55, 0.16);
  border-top: 1px solid rgba(243, 145, 55, 0.16);
  transform: rotate(45deg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.story-problem::after {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f39137, rgba(243, 145, 55, 0.24));
}

.story-problem p {
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--story-type-body);
  line-height: 1.36;
  font-weight: 400;
}

.story-chip {
  grid-area: chip;
  justify-self: end;
  align-self: center;
  padding: 15px 20px;
  border-radius: 999px;
  border: 1px solid rgba(243, 145, 55, 0.18);
  background: rgba(243, 145, 55, 0.12);
  color: var(--accent);
  font-size: 16px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 420px;
}

.story-pill-row {
  grid-area: chip;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-self: center;
}

.story-pill-row .story-chip {
  justify-self: auto;
  align-self: auto;
  max-width: none;
}

.story-lead {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 780px;
}

.story-card-grid {
  display: grid;
  gap: 18px;
}

.story-card-grid--start,
.story-card-grid--approach,
.story-card-grid--results {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-mini-card,
.story-approach-card,
.story-step-card {
  position: relative;
  min-height: 150px;
  padding: 28px 26px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    #141414;
  color: #fff;
}

.story-mini-card {
  font-size: var(--story-type-body);
  line-height: 1.26;
  font-weight: 500;
}

.story-mini-card--result {
  min-height: 0;
  background:
    linear-gradient(180deg, rgba(243, 145, 55, 0.09), rgba(243, 145, 55, 0.02)),
    #151312;
  border-color: rgba(243, 145, 55, 0.18);
}

.story-section--start {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 0% 0%, rgba(243, 145, 55, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    #0d0d0d;
}

.story-section--logic {
  border: 1px solid rgba(243, 145, 55, 0.12);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(243, 145, 55, 0.08), rgba(243, 145, 55, 0.02)),
    #0f0f0f;
}

.story-logic-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
}

.story-logic-callout,
.story-logic-lines {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.story-logic-callout {
  padding: 30px 30px 34px;
}

.story-logic-callout p {
  margin: 0;
  color: #fff;
  font-size: var(--story-type-subtitle);
  line-height: 1.25;
  font-weight: 500;
}

.story-logic-lines {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.story-logic-lines p {
  margin: 0;
  padding: 22px 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--story-type-body);
  line-height: 1.28;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.story-logic-lines p:first-child {
  border-top: 0;
}

.story-approach-card {
  min-height: 172px;
  background: rgba(15, 15, 15, 0.08);
  border-color: rgba(15, 15, 15, 0.12);
  color: #0f0f0f;
}

.story-approach-card span,
.story-step-card strong {
  display: block;
  margin: 0 0 18px;
  font-size: var(--story-type-kicker);
  line-height: 1;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
}

.story-approach-card p,
.story-step-card p {
  margin: 0;
  font-size: var(--story-type-body);
  line-height: 1.25;
}

.story-section-kicker--sub {
  margin-top: 10px;
}

.story-section--workflow {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    #0d0d0d;
}

.story-step-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.story-step-card {
  min-height: 0;
  background:
    linear-gradient(180deg, rgba(243, 145, 55, 0.07), rgba(243, 145, 55, 0.02)),
    #131313;
  border-color: rgba(243, 145, 55, 0.14);
}

.story-issues-grid,
.story-done-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.story-done-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.7fr);
  gap: 18px;
  align-items: stretch;
}

.story-done-feature > article {
  min-height: 100%;
  justify-content: center;
}

.story-done-proof {
  min-width: 0;
  margin: 0;
  aspect-ratio: 1273 / 691;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  overflow: hidden;
  background: #f4f4f4;
}

.story-done-proof img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 760px) {
  .story-done-feature {
    grid-template-columns: minmax(0, 1fr);
  }

  .story-done-proof {
    border-radius: 18px;
  }
}

.story-issues-grid article,
.story-done-grid article {
  min-height: 148px;
  position: relative;
  padding: 30px 26px 26px 62px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: #171717;
  color: #fff;
  font-size: var(--story-type-body);
  line-height: 1.2;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  transition:
    transform 320ms ease,
    border-color 320ms ease,
    background 320ms ease,
    box-shadow 320ms ease;
}

.story-issues-grid article strong,
.story-done-grid article strong {
  display: block;
  width: 100%;
  color: inherit;
  font-size: 1em;
  line-height: 1.08;
  font-weight: 600;
}

.story-issues-grid article span,
.story-done-grid article span {
  display: block;
  width: 100%;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78em;
  line-height: 1.22;
  font-weight: 500;
}

.story-issues-grid article::before,
.story-done-grid article::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 24px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(243, 145, 55, 0.14);
  border: 1px solid rgba(243, 145, 55, 0.24);
  box-shadow: inset 0 0 0 6px rgba(243, 145, 55, 0.9);
}

.story-issues-grid article:hover,
.story-done-grid article:hover {
  transform: translateY(-4px);
}

.story-section--point-a {
  padding-left: 52px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    radial-gradient(circle at 0% 0%, rgba(243, 145, 55, 0.09), transparent 34%),
    #111111;
}

.story-section--point-a::before {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 24px;
  width: 1px;
  background: linear-gradient(180deg, rgba(243, 145, 55, 0.92), rgba(243, 145, 55, 0.12));
}

.story-section--point-a .story-section-copy {
  color: rgba(255, 255, 255, 0.78);
}

.story-section--point-a .story-issues-grid article {
  background:
    linear-gradient(180deg, rgba(243, 145, 55, 0.05), rgba(243, 145, 55, 0)),
    #141414;
}

.story-section--point-a .story-issues-grid article:hover {
  border-color: rgba(243, 145, 55, 0.18);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.story-section--point-a .story-issues-grid article::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 62px;
  right: 24px;
  height: 1px;
  background: rgba(243, 145, 55, 0.16);
}

.story-section--point-b {
  border-color: rgba(243, 145, 55, 0.18);
  background:
    linear-gradient(180deg, rgba(243, 145, 55, 0.18), rgba(243, 145, 55, 0.05) 22%, rgba(18, 18, 18, 1) 22%),
    #121212;
}

.story-section--point-b .story-section-kicker {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f39137;
  color: #0f0f0f;
  letter-spacing: 0.08em;
}

.story-section--point-b .story-section-copy {
  color: rgba(255, 255, 255, 0.86);
}

.story-section--point-b .story-done-grid article {
  background:
    linear-gradient(180deg, rgba(243, 145, 55, 0.12), rgba(243, 145, 55, 0.02)),
    #181614;
  border-color: rgba(243, 145, 55, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.story-section--point-b .story-done-grid article:hover {
  border-color: rgba(243, 145, 55, 0.3);
  box-shadow: 0 18px 44px rgba(243, 145, 55, 0.12);
}

.story-section--point-b .story-done-grid article::before {
  content: "✓";
  top: 24px;
  left: 24px;
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  background: #f39137;
  display: grid;
  place-items: center;
  color: #0f0f0f;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}

.story-section--point-b .story-done-grid article::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 62px;
  height: 62px;
  background: radial-gradient(circle, rgba(243, 145, 55, 0.16), transparent 72%);
  pointer-events: none;
}

.story-section--point-b-light,
.story-section.story-section--point-b.story-section--point-b-light {
  background:
    linear-gradient(180deg, rgba(243, 145, 55, 0.08), rgba(243, 145, 55, 0) 14%),
    #f6f1e9 !important;
  border-color: rgba(15, 15, 15, 0.08);
}

.story-section--point-b-light .story-section-title,
.story-section--point-b-light .story-section-copy,
.story-section.story-section--point-b.story-section--point-b-light .story-section-title,
.story-section.story-section--point-b.story-section--point-b-light .story-section-copy {
  color: #0f0f0f !important;
}

.story-section--point-b-light .story-section-kicker,
.story-section.story-section--point-b.story-section--point-b-light .story-section-kicker {
  color: #b35f11 !important;
}

.story-section--point-b-light .story-done-grid article,
.story-section.story-section--point-b.story-section--point-b-light .story-done-grid article {
  color: #0f0f0f !important;
  background: rgba(15, 15, 15, 0.04) !important;
  border-color: rgba(15, 15, 15, 0.08) !important;
  box-shadow: none !important;
}

.story-section--point-b-light .story-done-grid article strong,
.story-section.story-section--point-b.story-section--point-b-light .story-done-grid article strong {
  color: #0f0f0f !important;
}

.story-section--point-b-light .story-done-grid article span,
.story-section.story-section--point-b.story-section--point-b-light .story-done-grid article span {
  color: rgba(15, 15, 15, 0.82) !important;
}

.story-section--point-b-light .story-done-grid article::before,
.story-section.story-section--point-b.story-section--point-b-light .story-done-grid article::before {
  color: #0f0f0f !important;
}

.story-section--point-b-light .story-done-grid article::after,
.story-section.story-section--point-b.story-section--point-b-light .story-done-grid article::after {
  opacity: 0.45 !important;
}

.story-section--proof {
  grid-template-columns: minmax(320px, 0.9fr) minmax(260px, 1fr);
  align-items: center;
  gap: 26px;
  padding: 32px;
  border: 1px solid rgba(243, 145, 55, 0.16);
  background:
    radial-gradient(circle at 0% 0%, rgba(243, 145, 55, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
    #111111;
}

.story-section--next-result {
  grid-template-columns: minmax(320px, 0.96fr) minmax(280px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 32px;
  border: 1px solid rgba(243, 145, 55, 0.16);
  background:
    radial-gradient(circle at 100% 0%, rgba(243, 145, 55, 0.09), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
    #111111;
}

.story-section--next-result .story-proof-title {
  text-transform: none;
}

.story-section--next-result .story-proof-title span {
  color: var(--accent);
}

.story-section--next-result .story-section-copy {
  color: rgba(255, 255, 255, 0.84);
  max-width: 28ch;
}

.story-proof-shot {
  margin: 0;
  padding: 12px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #101010;
}

.story-proof-shot img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.story-proof-copy {
  display: grid;
  gap: 16px;
  align-content: center;
}

.story-proof-title {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  font-weight: 600;
  text-transform: uppercase;
}

.story-shot {
  margin: 0;
  padding: 12px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #101010;
}

.story-shot img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.story-result-card {
  max-width: 1120px;
  padding: 38px 34px;
  border: 1px solid rgba(243, 145, 55, 0.12);
  border-radius: 28px;
  background: #f39137;
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.story-result-label {
  color: rgba(15, 15, 15, 0.72);
  font-size: var(--story-type-kicker);
  line-height: 1.2;
  font-weight: 600;
}

.story-result-value {
  color: #0f0f0f;
  font-size: clamp(64px, 6.6vw, 108px);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.story-result-note {
  color: rgba(15, 15, 15, 0.72);
  font-size: var(--story-type-body-tight);
  line-height: 1.25;
}

.story-review-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(320px, 1fr);
  gap: 22px;
  align-items: start;
}

.story-review-copy {
  padding: 34px 36px;
  border: 1px solid rgba(243, 145, 55, 0.12);
  border-radius: 24px;
  background: rgba(243, 145, 55, 0.06);
}

.story-review-copy p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--story-type-body);
  line-height: 1.34;
}

.story-section--cta {
  padding-top: 10px;
  background: #f39137;
  border-color: rgba(243, 145, 55, 0.18);
}

.story-form {
  max-width: 1120px;
  display: grid;
  gap: 18px;
}

.story-field {
  padding: 28px 30px;
  border: 1px solid rgba(15, 15, 15, 0.14);
  border-radius: 22px;
  background: rgba(15, 15, 15, 0.08);
  color: rgba(15, 15, 15, 0.45);
  font-size: clamp(22px, 1.8vw, 32px);
  line-height: 1.2;
}

.story-field--area {
  min-height: 188px;
}

.story-submit {
  margin-top: 10px;
  padding: 24px 28px;
  border: 0;
  border-radius: 24px;
  background: #0f0f0f;
  color: #fff;
  font-size: clamp(22px, 1.65vw, 28px);
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}

.story-hero > .story-kicker { grid-area: kicker; }
.story-hero > .story-title { grid-area: title; }
.story-hero > .story-lead { grid-area: lead; }
.story-section--cta .story-cta-title,
.story-section--cta .story-cta-copy,
.story-section--cta .story-consent {
  color: #0f0f0f;
}

/* Story modal DNA refresh */
.case-modal-dialog.story-mode {
  --story-shell-x: 28px;
  --story-shell-bottom: 0px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    #040404;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.48);
}

.review-modal[hidden] {
  display: none;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
}

.review-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(12px);
}

.review-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  overflow: auto;
  padding: 34px 34px 30px;
  border-radius: 28px;
  border: 1px solid rgba(243, 145, 55, 0.16);
  background:
    radial-gradient(circle at 100% 0%, rgba(243, 145, 55, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)),
    #101010;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.56);
}

.review-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.review-modal-form {
  display: grid;
  gap: 18px;
}

.review-modal-success[hidden] {
  display: none;
}

.review-modal-success {
  display: grid;
  gap: 18px;
  min-height: min(420px, calc(100vh - 120px));
  align-content: center;
  justify-items: start;
}

.review-modal-title,
.review-modal-subtitle,
.review-modal-consent,
.review-field-label,
.review-field-input,
.review-modal-success-kicker,
.review-modal-success-title,
.review-modal-success-copy {
  margin: 0;
}

.review-modal-title {
  color: #fff;
  font-size: clamp(32px, 3.25vw, 52px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.04em;
  max-width: 18ch;
}

.review-modal-subtitle {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(22px, 1.75vw, 29px);
  line-height: 1.24;
  width: 100%;
  max-width: 100%;
}

.review-modal-success-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(243, 145, 55, 0.14);
  color: #f39137;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.review-modal-success-title {
  color: #fff;
  font-size: clamp(48px, 5vw, 82px);
  line-height: 0.92;
  font-weight: 600;
  letter-spacing: -0.05em;
  max-width: 10ch;
}

.review-modal-success-copy {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(24px, 1.9vw, 32px);
  line-height: 1.2;
  max-width: 22ch;
}

.review-field {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.review-field[hidden] {
  display: none;
}

.review-field-label {
  color: #fff;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-field-input {
  width: 100%;
  min-height: 72px;
  padding: 0 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font: inherit;
  font-size: clamp(20px, 1.55vw, 25px);
  line-height: 1.2;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.review-field-input::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.review-field-input:focus {
  border-color: rgba(243, 145, 55, 0.62);
  box-shadow: 0 0 0 4px rgba(243, 145, 55, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.review-field-textarea {
  min-height: 150px;
  padding: 22px;
  resize: vertical;
}

.review-option-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.review-option {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.15;
}

.review-option input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin: 0;
  accent-color: var(--accent);
}

.review-checkboxes {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

.review-checkbox {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.3;
}

.review-checkbox input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

.consent-link {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(243, 145, 55, 0.92);
  font: inherit;
  line-height: inherit;
  text-align: left;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  cursor: pointer;
}

.consent-link:hover {
  color: #ffad58;
}

.review-field-input:user-invalid {
  border-color: rgba(255, 113, 113, 0.62);
}

.form-submit-error {
  margin: 2px 0 0;
  color: #ffb3a8;
  font-size: 15px;
  line-height: 1.35;
}

.review-modal-submit {
  margin-top: 8px;
  min-height: 76px;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.18), rgba(255,255,255,0) 28%),
    linear-gradient(120deg, #f7b254, #f39137 56%, #ffbc6b);
  color: #0f0f0f;
  font: inherit;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 20px 44px rgba(243, 145, 55, 0.2);
}

.review-modal-submit:disabled,
.marketing-quiz-primary:disabled {
  cursor: wait;
  opacity: 0.72;
}

.review-modal-success-button {
  margin-top: 12px;
  min-height: 72px;
  padding: 0 34px;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.18), rgba(255,255,255,0) 28%),
    linear-gradient(120deg, #f7b254, #f39137 56%, #ffbc6b);
  color: #0f0f0f;
  font: inherit;
  font-size: clamp(20px, 1.65vw, 26px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 20px 44px rgba(243, 145, 55, 0.2);
}

.marketing-quiz-modal[hidden] {
  display: none;
}

.marketing-quiz-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 18px;
}

.marketing-quiz-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(14px);
}

.marketing-quiz-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  overflow: auto;
  padding: 36px 34px 32px;
  border-radius: 28px;
  border: 1px solid rgba(243, 145, 55, 0.18);
  background:
    radial-gradient(circle at 100% 0%, rgba(243, 145, 55, 0.13), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.014)),
    #101010;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.58);
}

.marketing-quiz-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.marketing-quiz-form,
.marketing-quiz-step,
.marketing-quiz-success {
  display: grid;
  gap: 18px;
}

.marketing-quiz-step:not(.is-active),
.marketing-quiz-success[hidden] {
  display: none;
}

.marketing-quiz-kicker,
.marketing-quiz-title,
.marketing-quiz-field span,
.marketing-quiz-success p,
.marketing-quiz-error {
  margin: 0;
}

.marketing-quiz-kicker {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(243, 145, 55, 0.14);
  color: var(--accent);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.marketing-quiz-title {
  color: #fff;
  font-size: clamp(34px, 3.15vw, 52px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.04em;
  max-width: 17ch;
}

.marketing-quiz-field {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
}

.marketing-quiz-field[hidden] {
  display: none;
}

.marketing-quiz-field span {
  color: #fff;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marketing-quiz-field input {
  width: 100%;
  min-height: 72px;
  padding: 0 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  font: inherit;
  font-size: clamp(20px, 1.55vw, 25px);
  line-height: 1.2;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.marketing-quiz-field input::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.marketing-quiz-field input:focus {
  border-color: rgba(243, 145, 55, 0.62);
  box-shadow: 0 0 0 4px rgba(243, 145, 55, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.marketing-quiz-options {
  display: grid;
  gap: 10px;
}

.marketing-quiz-option {
  position: relative;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.16;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.marketing-quiz-option:hover,
.marketing-quiz-option:has(input:checked) {
  border-color: rgba(243, 145, 55, 0.55);
  background: rgba(243, 145, 55, 0.1);
}

.marketing-quiz-option:hover {
  transform: translateY(-1px);
}

.marketing-quiz-option input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--accent);
}

.marketing-quiz-checkboxes {
  display: grid;
  gap: 10px;
}

.marketing-quiz-checkbox {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.3;
}

.marketing-quiz-checkbox input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

.consent-modal-open {
  overflow: hidden;
}

.consent-modal[hidden] {
  display: none;
}

.consent-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 42px);
}

.consent-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.consent-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(82vh, 860px);
  overflow: auto;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(243, 145, 55, 0.26);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(243, 145, 55, 0.16), transparent 32%),
    #101010;
  color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.58);
}

.consent-modal-close {
  position: sticky;
  top: 0;
  float: right;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: -14px -14px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.consent-modal-title {
  margin: 0 0 26px;
  max-width: 760px;
  color: #fff;
  font-family: Inter, "Trebuchet MS", Arial, sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.consent-modal-content {
  display: grid;
  gap: 16px;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.45;
}

.consent-modal-content h4 {
  margin: 20px 0 0;
  color: #fff;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.1;
}

.consent-modal-content p,
.consent-modal-content ul,
.consent-modal-content ol {
  margin: 0;
}

.consent-modal-content ul,
.consent-modal-content ol {
  padding-left: 1.25em;
}

.consent-modal-content li + li {
  margin-top: 6px;
}

.consent-modal-content a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.marketing-quiz-error {
  color: #ff9a7a;
  font-size: 14px;
  line-height: 1.25;
}

.marketing-quiz-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.marketing-quiz-primary,
.marketing-quiz-secondary {
  min-height: 70px;
  padding: 0 30px;
  border-radius: 999px;
  font: inherit;
  font-size: clamp(20px, 1.55vw, 25px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.marketing-quiz-primary {
  border: 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.18), rgba(255,255,255,0) 28%),
    linear-gradient(120deg, #f7b254, #f39137 56%, #ffbc6b);
  color: #101010;
  box-shadow: 0 20px 44px rgba(243, 145, 55, 0.22);
}

.marketing-quiz-secondary {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.78);
}

.marketing-quiz-step > .marketing-quiz-primary,
.marketing-quiz-success > .marketing-quiz-primary {
  justify-self: start;
}

.marketing-quiz-success {
  min-height: min(360px, calc(100vh - 140px));
  align-content: center;
  justify-items: start;
}

.marketing-quiz-success p:not(.marketing-quiz-kicker) {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(22px, 1.7vw, 28px);
  line-height: 1.22;
  max-width: 24ch;
}

.review-modal-consent {
  color: rgba(255, 255, 255, 0.44);
  font-size: 14px;
  line-height: 1.35;
}

.case-modal-story {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  padding: 22px 0 0;
  gap: 88px;
}

.case-modal-story[hidden] {
  display: none !important;
}

.story-hero,
.story-section {
  gap: 26px;
}

.story-hero {
  padding: 10px 0 58px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: transparent;
}

.story-hero::before {
  height: 0;
  background: none;
}

.story-hero::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  width: min(420px, 34vw);
  height: 240px;
  opacity: 0.24;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='34' height='26' viewBox='0 0 34 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 4 L13 13 L5 22' stroke='%23f39137' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round' opacity='.7'/%3E%3Cpath d='M20 4 L28 13 L20 22' stroke='%23fff' stroke-width='1.3' fill='none' stroke-linecap='round' stroke-linejoin='round' opacity='.22'/%3E%3C/svg%3E");
  background-size: 34px 26px;
  mask-image: linear-gradient(90deg, #000 0 72%, transparent 100%);
}

.story-hero .story-kicker {
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  letter-spacing: 0.14em;
}

.story-title {
  max-width: 980px;
  font-size: clamp(48px, 5.2vw, 86px);
  line-height: 0.96;
}

.story-title-handle {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82em;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.story-hero-copybox {
  grid-area: lead;
  display: grid;
  gap: 10px;
  max-width: 720px;
  align-self: end;
}

.story-hero-copybox .story-kicker {
  margin-bottom: 6px;
}

.story-hero-copybox p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--story-type-body);
  line-height: 1.3;
}

.story-hero--neuro {
  grid-template-areas:
    "kicker kicker"
    "title visual"
    "lead visual";
  align-items: start;
}

.story-hero--neuro .story-hero-copybox {
  grid-area: lead;
  max-width: min(720px, 100%);
  align-self: start;
  gap: 12px;
  margin-top: 6px;
  padding: 24px 26px;
  border-radius: 28px;
  background: #f6f1e9;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.18);
}

.story-hero--neuro .story-hero-copybox .story-kicker {
  margin: 0 0 2px;
  color: #0f0f0f;
  letter-spacing: 0.1em;
}

.story-hero--neuro .story-hero-copybox p {
  color: rgba(15, 15, 15, 0.92);
}

.story-hero-visual {
  grid-area: visual;
  margin: 0;
  justify-self: end;
  align-self: start;
  width: min(408px, 32vw);
  margin-top: -18px;
  position: relative;
  z-index: 2;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.story-hero-visual img {
  width: 100%;
  display: block;
  border-radius: 0;
}

.story-expert {
  align-self: start;
  width: max-content;
  max-width: 100%;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.story-problem {
  padding: 28px 32px 30px 34px;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(243, 145, 55, 0.14);
  box-shadow: none;
}

.story-chip {
  justify-self: start;
  align-self: end;
  max-width: 520px;
}

.story-lead {
  max-width: 840px;
  font-size: clamp(22px, 1.9vw, 30px);
}

.story-section {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.story-section-kicker {
  letter-spacing: 0.14em;
}

.story-section-title {
  max-width: 1040px;
  font-size: clamp(40px, 4.3vw, 68px);
}

.story-section-copy {
  max-width: 860px;
  font-size: clamp(21px, 1.85vw, 29px);
}

.story-section--point-a,
.story-section--point-b,
.story-section--results,
.story-section--review-block,
.story-section--cta {
  padding: 42px;
  border-radius: 30px;
}

.story-section--point-a {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 0% 0%, rgba(243, 145, 55, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    #0d0d0d;
}

.story-section--point-a::before {
  left: 22px;
}

.story-section--approach {
  padding: 44px;
  border: 0;
  border-radius: 30px;
  background: var(--accent);
  color: #0f0f0f;
}

.story-section--approach .story-section-kicker,
.story-section--approach .story-section-title,
.story-section--approach .story-section-copy {
  color: #0f0f0f;
}

.story-section--approach .story-shot {
  padding: 14px;
  border-color: rgba(15, 15, 15, 0.12);
  background: rgba(15, 15, 15, 0.08);
  position: relative;
  overflow: visible;
}

.story-section--approach .story-shot::after {
  content: "";
  position: absolute;
  inset: 10% 18%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 68%);
  filter: blur(28px);
  opacity: 0.45;
  z-index: 0;
  animation: approachAura 6.8s ease-in-out infinite;
}

.story-section--approach .story-shot img {
  position: relative;
  z-index: 1;
  animation: approachDiagramFloat 7.2s ease-in-out infinite;
  transform-origin: center center;
}

.story-section--approach .story-funnel-visual {
  width: min(100%, 860px);
  justify-self: start;
  padding: 0;
  border: 1px solid rgba(15, 15, 15, 0.22);
  border-radius: 24px;
  background: #101010;
  overflow: hidden;
}

.story-section--approach .story-funnel-visual::after {
  inset: 12% 22%;
  background: radial-gradient(circle, rgba(243, 145, 55, 0.22), transparent 70%);
}

.story-funnel-visual svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  max-height: 460px;
}

.story-funnel-visual .funnel-body {
  fill: url(#funnel-fill);
  stroke: rgba(243, 145, 55, 0.78);
  stroke-width: 4;
  stroke-linejoin: round;
}

.story-funnel-visual .funnel-level {
  fill: none;
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 2;
}

.story-funnel-visual .funnel-inputs {
  fill: var(--accent);
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
}

.story-funnel-visual .funnel-arrow,
.story-funnel-visual .funnel-output {
  fill: none;
  stroke: var(--accent);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.story-funnel-visual .funnel-arrow-glow {
  fill: none;
  stroke: var(--accent);
  stroke-width: 22;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.34;
  filter: url(#funnel-glow);
}

.story-funnel-visual .funnel-flow-arrow {
  transform-origin: center;
  animation: funnelFlow 3.2s cubic-bezier(0.45, 0, 0.3, 1) infinite;
}

.story-funnel-visual .funnel-output {
  opacity: 0.85;
  animation: funnelOutputPulse 3.2s ease-in-out infinite;
}

@keyframes funnelFlow {
  0% {
    transform: translateY(-34px);
    opacity: 0;
  }
  14% {
    opacity: 1;
  }
  78% {
    opacity: 1;
  }
  100% {
    transform: translateY(220px);
    opacity: 0;
  }
}

@keyframes funnelOutputPulse {
  0%, 70%, 100% {
    opacity: 0.32;
  }
  84% {
    opacity: 1;
  }
}

@media (max-width: 720px) {
  .story-section--approach .story-funnel-visual {
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-funnel-visual .funnel-flow-arrow,
  .story-funnel-visual .funnel-output {
    animation: none;
  }

  .story-funnel-visual .funnel-flow-arrow {
    transform: translateY(108px);
    opacity: 1;
  }
}

.story-section--process {
  padding: 0;
  gap: 18px;
}

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

.story-process-text-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.story-process-card {
  min-height: 228px;
  margin: 0;
  padding: 28px 26px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    #131313;
  display: grid;
  align-content: end;
  gap: 12px;
}

.story-process-card strong {
  color: #fff;
  font-size: clamp(24px, 1.9vw, 34px);
  line-height: 1.02;
  font-weight: 600;
}

.story-process-card span {
  color: rgba(255, 255, 255, 0.74);
  font-size: var(--story-type-body-tight);
  line-height: 1.24;
}

.story-screen-card {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
    #121212;
}

.story-screen-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.story-screen-grid.tripwire-review-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.tripwire-review-grid .story-screen-card {
  grid-column: span 2;
  padding: 6px;
  border-color: rgba(243, 145, 55, 0.22);
  border-radius: 22px;
  background: #f5f5f5;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.tripwire-review-grid .story-screen-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.tripwire-review-grid .story-screen-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.tripwire-review-grid .story-screen-card img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 16px;
}

@media (max-width: 900px) {
  .story-screen-grid.tripwire-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tripwire-review-grid .story-screen-card,
  .tripwire-review-grid .story-screen-card:nth-child(4),
  .tripwire-review-grid .story-screen-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .story-screen-grid.tripwire-review-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.story-screen-card img.mastermind-process-full {
  object-fit: contain;
  background: #a6a6a6;
}

.story-screen-card figcaption {
  margin: 0;
  padding: 16px 18px 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--story-type-body-tight);
  line-height: 1.24;
}

.story-screen-card figcaption span {
  color: rgba(255, 255, 255, 0.68);
}

.story-screen-grid--neuro {
  grid-template-columns: repeat(3, minmax(0, 292px));
  justify-content: center;
}

.story-screen-grid--neuro .story-screen-card:nth-child(4),
.story-screen-grid--neuro .story-screen-card:nth-child(5) {
  grid-column: span 1;
}

.story-screen-card--topcrop img {
  object-position: center 6%;
  object-fit: cover;
  transform: scale(1.22);
  transform-origin: center top;
}

.story-screen-card--chatproof img {
  aspect-ratio: 4 / 3;
  object-position: center 8%;
  object-fit: cover;
  transform: none;
}

.story-screen-grid--neuro .story-screen-card img {
  aspect-ratio: 4 / 3;
}

.mastermind-process-section .story-screen-grid {
  grid-template-columns: repeat(3, minmax(0, 220px));
  justify-content: center;
  gap: 16px;
}

.mastermind-process-section .story-screen-card figcaption {
  padding: 12px 14px 14px;
  font-size: 17px;
}

.mastermind-review-layout {
  grid-template-columns: minmax(0, 1fr);
}

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

.mastermind-review-gallery .story-shot {
  margin: 0;
}

.mastermind-review-gallery .story-shot img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
}

.case-modal-story .mastermind-aligned-section {
  width: 100%;
  margin: 0;
  padding: 40px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 30px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    #121212 !important;
  box-sizing: border-box;
}

.case-modal-story .mastermind-aligned-section::before {
  display: none;
}

.case-modal-story .story-section--free-review.mastermind-aligned-section {
  justify-items: start;
}

.case-modal-story .story-section--free-review.mastermind-aligned-section > .story-section-kicker {
  margin: 0;
  color: var(--accent);
}

.case-modal-story .story-section--free-review.mastermind-aligned-section .story-review-offer-top {
  width: 100%;
  margin: 0;
  padding: 0;
}

.case-modal-story .story-section--free-review.mastermind-aligned-section .story-section-title {
  margin: 0;
  padding: 0;
}

.case-modal-story .story-section--free-review.mastermind-aligned-section .story-review-offer-bottom {
  width: 100%;
  justify-self: stretch;
  justify-items: center;
}

.mastermind-standalone-story {
  --story-shell-x: 28px;
  --story-shell-bottom: 0px;
  --mastermind-content-inset: 42px;
}

.mastermind-standalone-story > .story-hero,
.mastermind-standalone-story > .story-section:not(.story-section--case-footer) {
  padding-right: var(--mastermind-content-inset) !important;
  padding-left: var(--mastermind-content-inset) !important;
  box-sizing: border-box;
}

.mastermind-standalone-story > .story-hero {
  padding-top: 10px !important;
  padding-bottom: 58px !important;
}

.mastermind-standalone-story > .story-section--process {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.mastermind-standalone-story .story-section--case-footer {
  width: auto;
  margin-right: calc(var(--story-shell-x) * -1);
  margin-left: calc(var(--story-shell-x) * -1);
  box-sizing: border-box;
}

.mastermind-standalone-story .story-footer-link,
.mastermind-standalone-story .story-footer-action,
.mastermind-standalone-story .story-footer-book {
  font-family: inherit;
}

.mastermind-page {
  background: #050505;
}

.mastermind-page .grain {
  display: none;
}

.mastermind-page main#top {
  width: 100%;
  padding: 112px 52px 0;
  box-sizing: border-box;
}

.mastermind-page .page-back-link,
.tripwire-page .page-back-link {
  position: fixed;
  z-index: 30;
  top: 82px;
  left: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.mastermind-page .page-back-link span:first-child,
.tripwire-page .page-back-link span:first-child {
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
}

.mastermind-page .page-back-link:hover,
.tripwire-page .page-back-link:hover {
  border-color: rgba(243, 145, 55, 0.42);
  background: rgba(243, 145, 55, 0.12);
}

.tripwire-page .story-hero .story-title {
  max-width: 760px;
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.mastermind-page .mastermind-standalone-story {
  --mastermind-content-inset: 0px;
  --story-type-kicker: 14px;
  --story-type-title: clamp(34px, 3.8vw, 58px);
  --story-type-subtitle: clamp(22px, 1.8vw, 30px);
  --story-type-body: clamp(18px, 1.35vw, 23px);
  --story-type-body-tight: clamp(16px, 1.12vw, 20px);
  width: 100%;
  max-width: 1220px;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  gap: 52px;
}

.mastermind-page .mastermind-standalone-story > .story-hero,
.mastermind-page .mastermind-standalone-story > .story-section:not(.story-section--case-footer) {
  width: 100%;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.mastermind-page .story-hero,
.mastermind-page .story-section {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.mastermind-page .story-hero {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  grid-template-areas:
    "kicker visual"
    "title visual"
    "chip visual"
    "voice visual"
    "lead visual";
  align-items: start;
  gap: 20px 34px;
  min-height: 0;
  padding: 8px 0 52px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  overflow: visible;
}

.mastermind-page .story-hero::before {
  display: none;
}

.mastermind-page .story-hero .story-kicker {
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.16em;
}

.mastermind-page .story-title {
  max-width: 820px;
  font-size: clamp(38px, 4.5vw, 66px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.mastermind-page .story-title span {
  color: var(--accent);
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-weight: 400;
}

.mastermind-page .story-chip {
  justify-self: start;
  max-width: 560px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: clamp(17px, 1.35vw, 24px);
  line-height: 1.14;
  letter-spacing: 0;
}

.mastermind-page .story-hero-visual {
  width: 100%;
  max-width: 360px;
  margin-top: 36px;
  justify-self: start;
  border-radius: 0;
  background: transparent;
}

.mastermind-page .story-hero-visual img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.mastermind-page .story-voice {
  max-width: 760px;
  gap: 10px;
}

.mastermind-page .story-expert,
.mastermind-page .story-problem {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.mastermind-page .story-expert {
  padding: 14px 16px;
}

.mastermind-page .story-problem {
  padding: 22px 24px 24px 28px;
}

.mastermind-page .story-problem::before {
  display: none;
}

.mastermind-page .story-problem::after {
  background: var(--accent);
}

.mastermind-page .story-lead {
  max-width: 720px;
  padding-top: 20px;
  border-top-color: rgba(255, 255, 255, 0.14);
}

.mastermind-page .story-section:not(.story-section--case-footer) {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mastermind-page .story-section-title,
.mastermind-page .story-cta-title {
  max-width: 860px;
  font-size: clamp(32px, 3.3vw, 52px);
  line-height: 1;
  letter-spacing: -0.025em;
}

.mastermind-page .story-section-kicker {
  color: var(--accent);
  letter-spacing: 0.16em;
}

.mastermind-page .story-section--point-a::before {
  display: none;
}

.mastermind-page .story-section--point-a .story-issues-grid article strong {
  font-size: 1.12em;
  line-height: 1.12;
}

.mastermind-page .story-section--point-a .story-issues-grid article span {
  font-size: 0.92em;
  line-height: 1.28;
}

.mastermind-page .story-section--approach {
  background: transparent;
}

.mastermind-page .story-section--approach .story-section-title {
  color: #fff;
}

.mastermind-page .story-section--approach .story-section-title::first-line {
  color: var(--accent);
}

.mastermind-page .story-section--point-b .story-section-kicker {
  display: block;
  width: fit-content;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  margin-left: 18px;
}

.mastermind-page .story-section--point-b {
  padding: 46px !important;
  border: 1px solid rgba(243, 145, 55, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(243, 145, 55, 0.08), rgba(255, 255, 255, 0.025)),
    #101010;
  box-sizing: border-box;
  gap: 28px;
}

.mastermind-page .story-section--point-b .story-section-title {
  display: block;
  width: auto;
  max-width: 860px;
  margin-left: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.mastermind-page .story-section--point-b .story-done-grid {
  margin-top: 8px;
  width: calc(100% - 36px);
  justify-self: center;
}

.mastermind-page .story-section--diagnosis.mastermind-aligned-section,
.mastermind-page .story-section--free-review.mastermind-aligned-section {
  padding: 46px !important;
  gap: 28px;
}

.mastermind-page .story-section--diagnosis.mastermind-aligned-section > .story-section-kicker,
.mastermind-page .story-section--diagnosis.mastermind-aligned-section > .story-section-title,
.mastermind-page .story-section--diagnosis.mastermind-aligned-section > .story-diagnosis-emphasis,
.mastermind-page .story-section--free-review.mastermind-aligned-section > .story-section-kicker,
.mastermind-page .story-section--free-review.mastermind-aligned-section > .story-review-offer-top,
.mastermind-page .story-section--free-review.mastermind-aligned-section > .story-review-offer-bottom {
  width: calc(100% - 36px);
  justify-self: start;
  margin-left: 18px;
  margin-right: 18px;
}

.mastermind-page .story-section--diagnosis .story-diagnosis-emphasis p {
  max-width: 100%;
}

.mastermind-page .story-section-copy,
.mastermind-page .story-results-copy,
.mastermind-page .story-proof-copy,
.mastermind-page .story-review-copy {
  max-width: 780px;
}

.mastermind-page .story-issues-grid,
.mastermind-page .story-done-grid,
.mastermind-page .story-screen-grid {
  width: 100%;
}

.mastermind-page .story-issues-grid article,
.mastermind-page .story-done-grid article,
.mastermind-page .story-result-card,
.mastermind-page .story-screen-card {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    #101010;
}

.mastermind-page .story-section--results .story-result-card {
  border-color: rgba(243, 145, 55, 0.36);
  background: var(--accent);
  color: #0f0f0f;
}

.mastermind-page .story-section--results .story-result-label,
.mastermind-page .story-section--results .story-result-value,
.mastermind-page .story-section--results .story-result-note {
  color: #0f0f0f;
}

.mastermind-page .story-issues-grid article,
.mastermind-page .story-done-grid article {
  min-height: 0;
  padding: 24px 22px 24px 54px;
}

.mastermind-page .story-screen-card figcaption {
  font-size: 16px;
  line-height: 1.22;
}

.mastermind-page .story-shot img,
.mastermind-page .story-proof-shot img {
  max-height: 520px;
  object-fit: contain;
}

.mastermind-page .story-section--process {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.mastermind-page .story-section--case-footer {
  margin-top: 0;
}

@media (max-width: 980px) {
  .mastermind-page main#top {
    padding-right: 24px;
    padding-left: 24px;
  }

  .mastermind-page .page-back-link,
  .tripwire-page .page-back-link {
    left: 24px;
  }

  .mastermind-page .story-hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "title"
      "chip"
      "visual"
      "voice"
      "lead";
    min-height: 0;
    gap: 22px;
  }

  .mastermind-page .story-hero-visual {
    max-width: 520px;
  }

  .mastermind-page .story-title {
    font-size: clamp(38px, 8vw, 62px);
  }
}

@media (max-width: 620px) {
  .mastermind-page main#top {
    padding: 104px 16px 0;
  }

  .mastermind-page .page-back-link,
  .tripwire-page .page-back-link {
    top: 74px;
    left: 16px;
  }

  .mastermind-page .mastermind-standalone-story {
    gap: 52px;
  }

  .mastermind-page .story-hero {
    padding-bottom: 48px !important;
  }

  .mastermind-page .story-section:not(.story-section--case-footer) {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .mastermind-page .story-title {
    font-size: clamp(34px, 10.5vw, 48px);
  }

  .mastermind-page .story-section-title,
  .mastermind-page .story-cta-title {
    font-size: clamp(28px, 8.6vw, 42px);
  }

  .mastermind-page .story-chip {
    font-size: 18px;
  }
}

.real-estate-story .real-estate-hero {
  grid-template-columns: 1fr;
  grid-template-areas:
    "kicker"
    "title"
    "chip"
    "visual";
  align-items: start;
  gap: 18px;
}

.real-estate-story {
  --story-shell-x: 28px;
  --story-shell-bottom: 0px;
  width: 100%;
  max-width: 1220px;
  margin-right: auto;
  margin-left: auto;
}

.real-estate-story .real-estate-hero > * {
  min-width: 0;
}

.real-estate-story .real-estate-hero .story-title {
  width: 100%;
  max-width: 100%;
  font-size: clamp(38px, 3.8vw, 62px);
  overflow-wrap: break-word;
}

.real-estate-story .real-estate-hero .story-title span {
  white-space: nowrap;
}

.real-estate-story .real-estate-hero .story-title .real-estate-title-line {
  color: #fff;
  font-style: normal;
  font-weight: 600;
}

.real-estate-story .real-estate-hero .story-chip {
  width: 100%;
  max-width: 100%;
  margin-top: 4px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.12;
  font-weight: 700;
}

.real-estate-story .real-estate-hero .story-hero-visual {
  width: 100%;
  max-width: 100%;
  margin: 36px 0 0;
  align-self: start;
  justify-self: stretch;
  overflow: hidden;
  border-radius: 0;
}

.real-estate-story .real-estate-hero .story-hero-visual img {
  width: 100%;
  aspect-ratio: 1053 / 550;
  object-fit: cover;
  object-position: center;
}

.real-estate-story .real-estate-task {
  width: 100%;
  max-width: 860px;
  justify-self: start;
  margin-top: 48px;
  gap: 12px;
  padding: 46px 52px !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    #121212;
}

.real-estate-story .real-estate-task .story-section-kicker {
  margin: 0;
  color: var(--accent);
}

.real-estate-story .real-estate-task .story-section-copy {
  margin: 0;
  max-width: 760px;
}

.real-estate-story .story-section--point-a {
  border: 0 !important;
  padding-left: var(--mastermind-content-inset) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.real-estate-story .story-section--point-a::before {
  display: none !important;
}

.real-estate-story .story-section--point-a .story-issues-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.real-estate-story .story-section--point-a .story-issues-grid article {
  grid-column: span 4;
}

.real-estate-story .story-section--point-a .story-issues-grid article:nth-child(4) {
  grid-column: 3 / span 4;
}

.real-estate-story .story-section--point-a .story-issues-grid article:nth-child(5) {
  grid-column: 7 / span 4;
}

.real-estate-story .real-estate-process-section .story-screen-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: stretch;
}

.real-estate-story .real-estate-process-section .story-screen-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.real-estate-story .story-section--proof {
  grid-template-columns: 1fr;
}

.real-estate-story .story-proof-copy {
  max-width: 980px;
}

.real-estate-story .story-proof-eyebrow {
  width: fit-content;
  margin: 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(243, 145, 55, 0.12);
  color: var(--accent);
  font-size: var(--story-type-kicker);
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.real-estate-story .story-proof-highlight {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4.8vw, 76px);
  line-height: 0.96;
  font-weight: 600;
  text-transform: uppercase;
}

.real-estate-story .story-proof-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.real-estate-story .story-proof-facts p {
  margin: 0;
  padding: 22px 20px;
  border: 1px solid rgba(243, 145, 55, 0.2);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.84);
  font-size: var(--story-type-body);
  line-height: 1.18;
  font-weight: 600;
}

.real-estate-story .story-proof-facts span {
  color: var(--accent);
}

.real-estate-story .story-section--review-block .story-review-layout {
  grid-template-columns: minmax(0, 620px);
  justify-content: start;
}

.real-estate-story .story-section--review-block .story-shot {
  width: 100%;
}

.real-estate-story .story-result-card {
  justify-items: start;
  text-align: left;
}

.real-estate-story .story-result-value {
  line-height: 1;
  letter-spacing: 0;
}

.real-estate-story .real-estate-result-title {
  color: var(--accent);
}

.real-estate-story > .story-hero,
.real-estate-story > .story-section:not(.story-section--case-footer) {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.real-estate-story .story-title,
.real-estate-story .story-section-title,
.real-estate-story .story-proof-highlight,
.real-estate-story .story-proof-title {
  line-height: 1.08;
  letter-spacing: 0;
  text-align: left;
}

.real-estate-story .story-section-kicker,
.real-estate-story .story-kicker,
.real-estate-story .story-chip,
.real-estate-story .story-section-copy,
.real-estate-story .story-results-copy,
.real-estate-story .story-proof-copy,
.real-estate-story .story-diagnosis-emphasis,
.real-estate-story .real-estate-self-editorial,
.real-estate-story .real-estate-self-note,
.real-estate-story .real-estate-free-review-intro,
.real-estate-story .real-estate-free-review-list,
.real-estate-story .real-estate-free-review-note {
  justify-self: start;
  text-align: left;
}

.real-estate-story .story-issues-grid,
.real-estate-story .story-done-grid,
.real-estate-story .story-screen-grid,
.real-estate-story .story-review-layout,
.real-estate-story .story-diagnosis-emphasis,
.real-estate-story .real-estate-self-editorial,
.real-estate-story .real-estate-free-review-list,
.real-estate-story .story-review-offer-bottom {
  width: 100%;
}

.real-estate-story .story-issues-grid article strong,
.real-estate-story .story-done-grid article strong,
.real-estate-story .story-screen-card figcaption,
.real-estate-story .story-diagnosis-emphasis p,
.real-estate-story .real-estate-self-lines p,
.real-estate-story .real-estate-free-review-list li {
  line-height: 1.28;
}

.real-estate-story .real-estate-self-section,
.real-estate-story .real-estate-free-review {
  gap: 24px;
}

.real-estate-story .real-estate-self-section {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.real-estate-story .real-estate-self-section .story-section-title,
.real-estate-story .real-estate-free-review .story-section-title {
  color: var(--accent);
}

.real-estate-free-review-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.real-estate-free-review-list li {
  margin: 0;
  padding: 22px 22px;
  border: 1px solid rgba(243, 145, 55, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
  font-size: var(--story-type-body-tight);
  line-height: 1.22;
  font-weight: 600;
}

.real-estate-self-editorial {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1040px;
  padding-top: 8px;
}

.real-estate-self-lines {
  display: grid;
  gap: 16px;
}

.real-estate-self-lines p {
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--story-type-body);
  line-height: 1.24;
  font-weight: 600;
}

.real-estate-self-lines span,
.real-estate-free-review-lead,
.real-estate-free-review-note {
  color: #fff;
}

.real-estate-self-lines span,
.real-estate-free-review-list p {
  color: var(--accent);
}

.real-estate-self-note,
.real-estate-free-review-intro p,
.real-estate-free-review-note,
.real-estate-free-review-list p {
  margin: 0;
  max-width: 980px;
  font-size: var(--story-type-body);
  line-height: 1.28;
}

.real-estate-self-note,
.real-estate-free-review-intro p {
  color: rgba(255, 255, 255, 0.84);
}

.real-estate-free-review-intro,
.real-estate-free-review-list {
  display: grid;
  gap: 12px;
}

.real-estate-free-review-lead {
  font-size: var(--story-type-subtitle) !important;
  line-height: 1.08 !important;
  font-weight: 700;
}

.real-estate-free-review-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.real-estate-free-review-list li {
  position: relative;
  padding-left: 50px;
}

.real-estate-free-review-list li::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 29px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(243, 145, 55, 0.12);
}

@media (max-width: 1100px) {
  .real-estate-story .real-estate-hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "title"
      "chip"
      "visual"
      "voice";
  }

  .real-estate-story .real-estate-hero .story-hero-visual {
    width: 100%;
    margin-top: 8px;
  }

  .real-estate-story .story-section--point-a .story-issues-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .real-estate-story .story-section--point-a .story-issues-grid article {
    grid-column: auto;
  }

  .real-estate-story .story-section--point-a .story-issues-grid article:nth-child(4),
  .real-estate-story .story-section--point-a .story-issues-grid article:nth-child(5) {
    grid-column: auto;
  }

  .real-estate-story .story-proof-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .real-estate-story {
    width: min(100%, calc(100vw - 24px));
  }

  .real-estate-story .story-section--point-a .story-issues-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .real-estate-self-editorial {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .real-estate-free-review-list ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .mastermind-process-section .story-screen-grid {
    grid-template-columns: repeat(2, minmax(0, 180px));
    gap: 12px;
  }

  .mastermind-review-gallery {
    grid-template-columns: 1fr;
  }

  .case-modal-story .mastermind-aligned-section {
    padding: 24px !important;
  }

  .mastermind-standalone-story {
    --story-shell-x: 12px;
    --mastermind-content-inset: 24px;
  }

  .real-estate-story .real-estate-hero .story-hero-visual {
    width: 100%;
  }

  .real-estate-story .real-estate-task {
    margin-top: 24px;
  }
}

@media (max-width: 420px) {
  .mastermind-process-section .story-screen-grid {
    grid-template-columns: minmax(0, 220px);
  }
}

@keyframes approachDiagramFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.012);
  }
}

@keyframes approachAura {
  0%, 100% {
    opacity: 0.35;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.58;
    transform: scale(1.03);
  }
}

.story-section--process .story-section-kicker {
  color: var(--accent);
}

.story-section--process .story-shot {
  padding: 16px;
  border-color: rgba(243, 145, 55, 0.14);
  background:
    linear-gradient(180deg, rgba(243, 145, 55, 0.07), rgba(243, 145, 55, 0)),
    #0d0d0d;
}

.story-section--point-b {
  border: 1px solid rgba(243, 145, 55, 0.18);
  background:
    linear-gradient(180deg, rgba(243, 145, 55, 0.22), rgba(243, 145, 55, 0.06) 18%, rgba(12, 12, 12, 1) 18%),
    #0f0f0f;
}

.story-section--results {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    #0d0d0d;
}

.story-section--results-split {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 28px;
}

.story-results-copy {
  display: grid;
  gap: 18px;
}

.story-results-value {
  margin: 0;
  color: #fff;
  font-size: clamp(50px, 5.2vw, 84px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.story-results-value span {
  color: var(--accent);
}

.story-results-value-secondary {
  display: block;
  white-space: nowrap;
}

.story-section--results .story-shot {
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.story-section--review-block {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    #0d0d0d;
}

.story-copy-flow {
  display: grid;
  gap: 10px;
  max-width: 820px;
}

.story-copy-flow p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: var(--story-type-body);
  line-height: 1.3;
}

.story-section--neuro-cta {
  justify-items: center;
  text-align: center;
  padding-top: 24px;
}

.story-section--neuro-cta .story-section-title {
  max-width: 14ch;
}

.story-section--neuro-cta .story-copy-flow {
  justify-items: center;
  max-width: 760px;
}

.story-section--neuro-cta .story-copy-flow p {
  color: rgba(255, 255, 255, 0.86);
}

.story-copy-flow--wide {
  max-width: 980px;
}

.story-section--neuro-bridge,
.story-section--neuro-guesswork,
.story-section--neuro-review-intro,
.story-section--neuro-review-cards,
.story-section--neuro-review-final {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding-left: 0;
  padding-right: 0;
}

.story-section--neuro-bridge {
  gap: 30px;
}

.story-neuro-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 920px;
}

.story-neuro-pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 60px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: clamp(22px, 1.65vw, 28px);
  line-height: 1.04;
  font-weight: 500;
}

.story-neuro-copy-accent {
  margin: 0;
  color: var(--accent) !important;
  font-size: var(--story-type-subtitle) !important;
  line-height: 1.14 !important;
  font-weight: 600 !important;
}

.story-neuro-copy-strong {
  margin: 0;
  color: #fff !important;
  font-size: var(--story-type-subtitle) !important;
  line-height: 1.14 !important;
  font-weight: 600 !important;
}

.story-section--neuro-bridge .story-section-title,
.story-section--neuro-review-intro .story-section-title,
.story-neuro-guesswork-copy .story-section-title {
  max-width: 13ch;
}

.story-section--neuro-bridge .story-copy-flow--wide,
.story-neuro-guesswork-copy .story-copy-flow--wide,
.story-section--neuro-review-intro .story-copy-flow--wide {
  gap: 14px;
}

.story-section--neuro-bridge .story-copy-flow--wide > p,
.story-neuro-guesswork-copy .story-copy-flow--wide > p,
.story-section--neuro-review-intro .story-copy-flow--wide > p {
  max-width: 860px;
  padding-left: 24px;
  border-left: 2px solid rgba(255, 255, 255, 0.08);
}

.story-neuro-cycle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 4px;
  max-width: 1080px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.025);
}

.story-neuro-cycle span,
.story-neuro-cycle i {
  color: #fff;
  font-size: var(--story-type-body-tight);
  line-height: 1.16;
  font-style: normal;
}

.story-neuro-cycle span {
  font-weight: 500;
}

.story-neuro-cycle i {
  color: rgba(243, 145, 55, 0.9);
}

.story-neuro-guesswork-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.story-section.story-section--neuro-guesswork {
  padding: 34px 34px 36px;
  border: 1px solid rgba(15, 15, 15, 0.08) !important;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(243, 145, 55, 0.08), rgba(243, 145, 55, 0) 16%),
    #f6f1e9 !important;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12) !important;
}

.story-neuro-guesswork-copy {
  display: grid;
  gap: 22px;
}

.story-section--neuro-guesswork .story-section-title {
  color: #0f0f0f;
}

.story-neuro-guesswork-copy .story-copy-flow p,
.story-section--neuro-review-intro .story-copy-flow p {
  color: rgba(255, 255, 255, 0.88);
}

.story-section--neuro-guesswork .story-copy-flow--wide > p {
  border-left-color: rgba(15, 15, 15, 0.1);
}

.story-section--neuro-guesswork .story-neuro-copy-accent {
  color: #b35f11 !important;
}

.story-section--neuro-guesswork .story-neuro-copy-strong {
  color: #0f0f0f !important;
}

.story-section--neuro-guesswork .story-neuro-guesswork-copy .story-copy-flow p {
  color: rgba(15, 15, 15, 0.82);
}

.story-neuro-guesswork-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.025);
}

.story-section--neuro-guesswork .story-neuro-guesswork-card {
  border-color: rgba(15, 15, 15, 0.1);
  background: rgba(15, 15, 15, 0.04);
}

.story-neuro-guesswork-card-title {
  margin: 0;
  color: var(--accent);
  font-size: var(--story-type-subtitle);
  line-height: 1.04;
  font-weight: 600;
}

.story-section--neuro-guesswork .story-neuro-guesswork-card-title {
  color: #b35f11;
}

.story-neuro-guesswork-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.story-neuro-guesswork-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--story-type-body-tight);
  line-height: 1.24;
}

.story-section--neuro-guesswork .story-neuro-guesswork-list li {
  color: rgba(15, 15, 15, 0.86);
}

.story-neuro-guesswork-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.story-section--neuro-review-intro {
  gap: 22px;
}

.story-section--neuro-review-intro .story-section-copy {
  max-width: 1020px;
  color: #fff;
}

.story-section--neuro-review-cards {
  padding-top: 12px;
}

.story-neuro-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.story-neuro-review-grid article {
  display: grid;
  gap: 16px;
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.story-neuro-review-grid strong {
  color: #fff;
  font-size: clamp(24px, 1.85vw, 32px);
  line-height: 1.08;
  font-weight: 600;
}

.story-neuro-review-grid span {
  color: rgba(255, 255, 255, 0.84);
  font-size: var(--story-type-body-tight);
  line-height: 1.28;
}

.story-section--neuro-review-final {
  padding-top: 6px !important;
}

.story-neuro-review-final-card {
  display: grid;
  gap: 22px;
  padding: clamp(32px, 4vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255,255,255,0.015)),
    #131313;
}

.story-neuro-final-points {
  display: grid;
  gap: 6px;
}

.story-neuro-final-points p {
  margin: 0;
  color: #fff;
  font-size: var(--story-type-subtitle);
  line-height: 1.1;
  font-weight: 500;
}

.story-neuro-review-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
}

.story-section--neuro-review-intro .story-section-copy {
  color: rgba(255, 255, 255, 0.94);
  max-width: 900px;
  font-size: clamp(24px, 1.85vw, 31px);
  line-height: 1.16;
}

.story-section--neuro-bridge .story-section-title::after,
.story-neuro-guesswork-copy .story-section-title::after,
.story-section--neuro-review-intro .story-section-title::after {
  content: "";
  display: block;
  width: min(220px, 34vw);
  height: 2px;
  margin-top: 18px;
  background: linear-gradient(90deg, rgba(243,145,55,0.95), rgba(243,145,55,0.18), transparent);
}

.story-section--diagnosis {
  border: 0;
  padding: 10px 0 0;
  background: transparent;
}

.story-diagnosis-copy,
.story-diagnosis-flow,
.story-diagnosis-footer {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.story-diagnosis-copy p,
.story-diagnosis-flow p,
.story-diagnosis-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--story-type-body);
  line-height: 1.32;
}

.story-diagnosis-accent {
  color: var(--accent) !important;
}

.story-diagnosis-emphasis {
  display: grid;
  gap: 8px;
  max-width: 980px;
}

.story-diagnosis-emphasis p {
  margin: 0;
  color: #fff;
  font-size: var(--story-type-subtitle);
  line-height: 1.16;
  font-weight: 500;
}

.tripwire-outcome-list {
  list-style: none;
  margin: 4px 0 14px;
  padding: 0;
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.tripwire-outcome-list li {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  color: #fff;
  font-size: var(--story-type-subtitle);
  line-height: 1.18;
  font-weight: 500;
}

.tripwire-outcome-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.45em;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(243, 145, 55, 0.12);
}

.tripwire-outcome-list strong {
  color: var(--accent);
  font-weight: 700;
}

.tripwire-sea-result {
  margin-top: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 320px);
  gap: 36px;
  align-items: center;
  max-width: 900px;
}

.tripwire-sea-copy {
  display: grid;
  gap: 18px;
}

.tripwire-sea-copy p:first-child {
  color: var(--accent);
  font-weight: 700;
}

.tripwire-sea-photo {
  min-width: 0;
  margin: 0;
  width: min(100%, 320px);
  aspect-ratio: 3 / 4;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(243, 145, 55, 0.28);
  border-radius: 22px;
  background: #151515;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.tripwire-sea-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 760px) {
  .tripwire-sea-result {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .tripwire-sea-photo {
    width: min(100%, 360px);
    justify-self: start;
    border-radius: 18px;
  }
}

.story-diagnosis-list {
  list-style: none;
  margin: 4px 0 8px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.story-diagnosis-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--story-type-body);
  line-height: 1.26;
}

.story-diagnosis-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.story-diagnosis-tags {
  display: grid;
  gap: 8px;
  max-width: 760px;
}

.story-diagnosis-tags span {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-size: var(--story-type-subtitle);
  line-height: 1.22;
  font-weight: 700;
}

.story-diagnosis-list--accent li {
  color: #fff;
  font-weight: 500;
}

.story-section--free-review {
  border: 0 !important;
  border-radius: 0 !important;
  position: relative;
  margin-top: 18px;
  padding: 34px 0 10px !important;
  background: transparent !important;
  box-shadow: none !important;
}

.story-section--free-review::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(220px, 32vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(243, 145, 55, 0.95), rgba(243, 145, 55, 0.18), transparent);
}

.story-section--free-review .story-section-kicker,
.story-section--free-review .story-section-title {
  color: #fff;
}

.tripwire-application-lead {
  max-width: 940px;
  margin: 10px 0 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--story-type-subtitle);
  line-height: 1.36;
}

.tripwire-application-lead strong {
  color: var(--accent);
  font-weight: 700;
}

.tripwire-application-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 22px 0 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #151515;
  font-size: var(--story-type-body-tight);
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
}

.tripwire-application-list {
  list-style: none;
  max-width: 940px;
  margin: 0 0 10px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
}

.tripwire-application-list li {
  position: relative;
  padding-left: 28px;
  color: #fff;
  font-size: var(--story-type-body);
  line-height: 1.42;
  font-weight: 500;
}

.tripwire-application-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
}

.tripwire-application-list strong {
  color: var(--accent);
  font-weight: 700;
}

.tripwire-application .story-review-offer-bottom {
  padding-top: 34px;
}

.tripwire-application .story-review-offer-button {
  letter-spacing: 0;
  line-height: 1.15;
}

.tripwire-application .story-review-offer-meta {
  max-width: 760px;
  margin-top: 16px;
  line-height: 1.45;
}

.tripwire-application-note {
  max-width: 940px;
  margin: 30px auto 0;
  padding: 28px 32px;
  border-left: 5px solid #f39137;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(243, 145, 55, 0.2), rgba(255, 255, 255, 0.055));
  color: #fff;
  font-size: var(--story-type-body);
  font-weight: 600;
  line-height: 1.46;
  text-align: left;
}

@media (max-width: 720px) {
  .tripwire-application-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .tripwire-application .story-review-offer-button {
    padding-inline: 20px;
    font-size: 18px;
  }
}

.story-review-offer-top {
  display: grid;
  gap: 14px;
}

.story-review-offer-grid {
  display: block;
}

.story-review-offer-flow,
.story-review-offer-list {
  display: grid;
  gap: 10px;
  max-width: 920px;
}

.story-review-offer-flow p,
.story-review-offer-list p,
.story-review-offer-meta,
.story-review-offer-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--story-type-body);
  line-height: 1.32;
}

.story-review-offer-accent {
  color: var(--accent) !important;
}

.story-review-offer-label {
  color: #fff !important;
  font-size: var(--story-type-subtitle);
  line-height: 1.08;
  font-weight: 600;
}

.story-review-offer-list ul {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.story-review-offer-list li {
  position: relative;
  min-height: 138px;
  padding: 24px 24px 24px 48px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: var(--story-type-body);
  line-height: 1.16;
  font-weight: 500;
}

.story-review-offer-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(243, 145, 55, 0.12);
}

.story-review-offer-focus {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding-top: 8px;
  max-width: 920px;
}

.story-review-offer-focus-lead,
.story-review-offer-focus-kicker {
  margin: 0;
  color: #fff;
}

.story-review-offer-focus-lead {
  font-size: var(--story-type-body);
  line-height: 1.3;
}

.story-review-offer-focus-kicker {
  color: var(--accent);
  font-size: var(--story-type-subtitle);
  line-height: 1.16;
  font-weight: 600;
}

.story-review-offer-points {
  display: grid;
  gap: 6px;
  max-width: none;
}

.story-review-offer-points p {
  margin: 0;
  color: #fff;
  font-size: var(--story-type-subtitle);
  line-height: 1.14;
  font-weight: 600;
}

.story-review-offer-bottom {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding-top: 10px;
}

.story-review-offer-button {
  position: relative;
  overflow: hidden;
  width: min(100%, 560px);
  justify-content: center;
  padding: 22px 30px;
  border: 1px solid color-mix(in srgb, var(--accent), #fff 24%);
  border-radius: 999px;
  background: linear-gradient(110deg, var(--accent), #fff2cf, var(--accent), #ff5639);
  background-size: 220% 220%;
  color: #0f0f0f;
  font-size: clamp(20px, 1.35vw, 24px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 18px 48px color-mix(in srgb, var(--accent), transparent 62%);
  animation: ctaShimmer 3.2s ease-in-out infinite;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.story-review-offer-button::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -38%;
  width: 34%;
  height: 140%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.72), transparent);
  transform: rotate(16deg);
  animation: ctaSweep 2.8s ease-in-out infinite;
}

.story-review-offer-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 64px color-mix(in srgb, var(--accent), transparent 50%);
}

.story-review-offer-meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  text-align: center;
}

.story-review-offer-note {
  max-width: none;
  color: rgba(255, 255, 255, 0.74);
}

.story-section--case-footer {
  margin: 0 calc(var(--story-shell-x) * -1) calc(var(--story-shell-bottom) * -1);
  padding: 32px var(--story-shell-x) 26px !important;
  border: 0 !important;
  border-radius: 34px 34px 0 0 !important;
  background: var(--accent) !important;
}

.story-case-closing {
  display: grid;
  justify-items: end;
  gap: 16px;
  padding: 8px 0 30px;
}

.story-case-closing-pretitle {
  margin: 0;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(22px, 1.55vw, 28px);
  line-height: 1.2;
  text-align: right;
}

.story-case-closing-title {
  max-width: 640px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 4.7vw, 72px);
  line-height: 0.96;
  text-align: right;
}

.story-case-closing-title em {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-weight: 400;
}

.story-footer-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(320px, 1fr) minmax(360px, 1.15fr);
  gap: 42px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #111;
}

.story-footer-brand,
.story-footer-meta,
.story-footer-cta {
  min-width: 0;
}

.story-footer-brand {
  display: grid;
  align-content: space-between;
  gap: 30px;
}

.story-footer-brand::after {
  content: "";
  display: none;
  width: clamp(150px, 16vw, 238px);
  aspect-ratio: 1.27;
  border-radius: 22px;
  background: url("footer-daria-orange.png") center / cover no-repeat;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.story-footer-mark {
  margin: 0;
  color: #111;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(42px, 3.8vw, 62px);
  line-height: 0.92;
  letter-spacing: 0.01em;
}

.story-footer-copy {
  margin: 0;
  color: rgba(17, 17, 17, 0.82);
  font-size: 16px;
  line-height: 1.2;
}

.site-footer-email,
.story-footer-email {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.site-footer-email {
  margin-top: 18px;
  color: rgba(17, 17, 17, 0.78);
  font-size: clamp(18px, 1.25vw, 23px);
  line-height: 1.18;
  font-weight: 600;
}

.story-footer-email {
  color: rgba(17, 17, 17, 0.82);
}

.story-footer-meta {
  display: grid;
  gap: 24px;
  align-content: start;
}

.story-footer-block {
  display: grid;
  gap: 8px;
}

.story-footer-label {
  margin: 0 0 2px;
  color: rgba(17, 17, 17, 0.68);
  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.story-footer-value,
.story-footer-link {
  margin: 0;
  color: #111;
  font-size: clamp(24px, 1.7vw, 30px);
  line-height: 1.08;
  text-decoration: none;
  font-weight: 500;
}

button.story-footer-link {
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.story-footer-link:hover {
  opacity: 0.82;
}

.story-footer-cta {
  display: grid;
  align-content: start;
  gap: 22px;
}

.story-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
}

.story-footer-action,
.story-footer-book {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
}

.story-footer-action span {
  font-size: clamp(24px, 1.7vw, 30px);
  line-height: 1.08;
  font-weight: 500;
}

.story-footer-action i,
.story-footer-book i {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1.5px solid rgba(17, 17, 17, 0.52);
  border-radius: 999px;
  font-style: normal;
  font-size: 22px;
  line-height: 1;
}

.story-footer-divider {
  height: 1px;
  background: rgba(17, 17, 17, 0.36);
}

.story-footer-book {
  justify-self: start;
}

.story-footer-book span {
  font-size: clamp(24px, 1.7vw, 30px);
  line-height: 1.08;
  font-weight: 500;
}

.tripwire-page .story-section--case-footer {
  padding: 52px clamp(28px, 5vw, 72px) 44px !important;
}

.tripwire-page .story-footer-panel {
  gap: clamp(34px, 4vw, 64px);
}

.tripwire-page .story-footer-brand,
.tripwire-page .story-footer-meta,
.tripwire-page .story-footer-cta {
  padding: 4px 0;
}

.story-review-copy {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.story-section--cta {
  border-radius: 34px;
  box-shadow: 0 24px 64px rgba(243, 145, 55, 0.14);
}

.reveal-up,
.reveal-left,
.reveal-scale {
  opacity: 0;
  filter: blur(12px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-order, 0) * 70ms);
  will-change: transform, opacity, filter;
}

.reveal-up {
  transform: translateY(34px);
}

.reveal-left {
  transform: translateX(-28px);
}

.reveal-scale {
  transform: translateY(28px) scale(0.965);
}

.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

.black-hole {
  position: absolute;
  top: 15px;
  right: 11%;
  width: min(520px, 42vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #000;
  color: #fff;
  animation: float 5s ease-in-out infinite;
}

.black-hole span {
  position: absolute;
  font-size: 24px;
}

.black-hole span:nth-child(1) { left: 12%; top: 42%; }
.black-hole span:nth-child(2) { right: 13%; top: 35%; }
.black-hole span:nth-child(3) { left: 42%; bottom: 18%; }

.solution-grid {
  position: absolute;
  left: 78px;
  right: 78px;
  bottom: 140px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 70px;
}

.solution-grid p {
  margin: 0;
  font-size: 27px;
  line-height: 1.12;
}

.supercharge {
  position: absolute;
  right: 78px;
  bottom: 68px;
  font-size: 30px;
  line-height: 1.1;
}

.program {
  padding: 20px 52px 130px;
  max-width: 1340px;
  margin: 0 auto;
}

.program h2 {
  max-width: 850px;
  margin-bottom: 70px;
}

.day-stack {
  border-top: 1px solid var(--dim);
}

.day {
  border-bottom: 1px solid var(--dim);
}

.day button {
  width: 100%;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 50px;
  padding: 30px 0;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.day span {
  font-size: 22px;
  color: var(--muted);
}

.day strong {
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.02;
  font-weight: 500;
}

.day-panel {
  padding: 0 0 34px 190px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.day-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.day-panel b {
  display: block;
  color: #fff;
  margin-bottom: 8px;
}

.faq {
  padding: 110px 52px 150px;
  max-width: 1340px;
  margin: 0 auto;
}

.faq h2 { margin-bottom: 45px; }
.faq-list { border-top: 1px solid var(--dim); }

.faq button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid var(--dim);
  background: transparent;
  color: #fff;
  padding: 28px 0;
  font-size: 26px;
  cursor: pointer;
}

.site-footer {
  padding: 30px 52px 56px;
  max-width: 1440px;
  margin: 0 auto;
}

.site-footer-lead {
  display: grid;
  justify-items: end;
  gap: 18px;
  padding: 10px 0 44px;
}

.site-footer-pretitle {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(23px, 1.7vw, 31px);
  line-height: 1.18;
  text-align: right;
}

.site-footer-lead-title {
  max-width: 680px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 5.3vw, 86px);
  line-height: 0.96;
  text-align: right;
}

.site-footer-lead-title em {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-weight: 400;
}

.site-footer-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(460px, 1.25fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  padding: 52px 56px 54px;
  border-radius: 34px;
  background: var(--accent);
  color: #121212;
}

.site-footer-brand,
.site-footer-meta,
.site-footer-cta {
  min-width: 0;
}

.site-footer-brand {
  display: grid;
  align-content: space-between;
  gap: 40px;
}

.site-footer-brand::after {
  content: "";
  display: none;
  width: clamp(160px, 17vw, 260px);
  aspect-ratio: 1.27;
  border-radius: 24px;
  background: url("footer-daria-orange.png") center / cover no-repeat;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.2);
}

.site-footer-mark {
  margin: 0;
  color: #111;
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-size: clamp(44px, 4vw, 72px);
  line-height: 0.88;
}

.site-footer-copy {
  margin: 0;
  color: rgba(18, 18, 18, 0.82);
  font-size: 18px;
  line-height: 1.2;
}

.site-footer-copy-bottom {
  width: 100%;
  max-width: var(--home-shell, 1340px);
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.56);
  text-align: left;
}

.site-footer-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-content: start;
}

.site-footer-block {
  display: grid;
  gap: 8px;
}

.site-footer-label {
  margin: 0 0 4px;
  color: rgba(18, 18, 18, 0.7);
  font-size: 16px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer-value,
.site-footer-link {
  margin: 0;
  color: #111;
  font-size: clamp(24px, 1.9vw, 34px);
  line-height: 1.08;
  text-decoration: none;
}

.site-footer-link {
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-footer-link:hover {
  transform: translateX(2px);
  opacity: 0.82;
}

.site-footer-cta {
  display: grid;
  align-content: start;
  justify-self: end;
  width: min(100%, 720px);
  gap: 26px;
}

.site-footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px 28px;
}

.site-footer-action,
.site-footer-book {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #111;
  text-decoration: none;
}

.site-footer-action span {
  font-size: clamp(28px, 2vw, 40px);
  line-height: 1;
}

.site-footer-action i,
.site-footer-book i {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1.5px solid rgba(17, 17, 17, 0.55);
  border-radius: 999px;
  font-style: normal;
  font-size: 34px;
  line-height: 1;
}

.site-footer-divider {
  height: 1px;
  background: rgba(17, 17, 17, 0.38);
}

.site-footer-cta-copy p {
  margin: 0;
  max-width: 700px;
  color: #111;
  font-size: clamp(36px, 2.9vw, 58px);
  line-height: 1.02;
}

.site-footer-book {
  justify-self: end;
  margin-top: 6px;
}

.site-footer-book span {
  font-size: clamp(36px, 2.8vw, 54px);
  line-height: 1;
}

/* Home alignment and typography pass */
main#top {
  --home-shell: 1340px;
  --home-x: clamp(24px, 6vw, 52px);
}

.pain-story,
.consequences,
.whatido,
.advice-break,
.practice,
.experience-strip,
.cases,
.site-footer {
  padding-left: var(--home-x);
  padding-right: var(--home-x);
}

.pain-hero,
.consequences-inner,
.whatido-inner,
.advice-break-inner,
.practice-inner,
.experience-strip-inner,
.cases-inner,
.site-footer-lead,
.site-footer-panel,
.site-footer-copy-bottom {
  width: 100%;
  max-width: var(--home-shell);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.consequences-inner {
  padding-left: 0;
  padding-right: 0;
}

.pain-title,
.pain-eyebrow,
.pain-stage-title,
.consequences-title,
.consequences-block-heading p,
.consequences-quote,
.whatido-title,
.advice-break-head h2,
.advice-break-final p,
.practice h2,
.cases-cats-note p,
.cases-title,
.cases-growth-copy h3,
.site-footer-pretitle {
  font-family: Inter, "Trebuchet MS", Arial, sans-serif;
  font-style: normal;
  letter-spacing: -0.03em;
}

.pain-title strong,
.pain-tab-label strong,
.pain-stage-title strong,
.consequences-quote,
.whatido-title em,
.cases-title em,
.site-footer-lead-title em,
.materialize-title em {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
}

.practice-head {
  justify-items: center;
  text-align: center;
}

.practice h2 {
  text-align: center;
}

.practice-rail-block,
.practice-list {
  width: 100%;
}

.cases-cats-note,
.cats-gallery,
.cases-head,
.case-card,
.cases-total-block,
.cases-total-action,
.cases-growth-cta {
  max-width: 1120px;
}

.cases-head {
  margin-left: auto;
  margin-right: auto;
}

@keyframes revealWord { to { opacity: 1; transform: translateY(0); } }
@keyframes practiceMaterialize { to { opacity: 1; transform: translateY(0); filter: blur(0); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 50% { transform: translateY(28px) scale(1.02); } }
@keyframes stressLinePulse {
  0%, 100% { transform: translateY(0); opacity: .86; stroke-dashoffset: 0; }
  12% { transform: translateY(-1px); }
  24% { transform: translateY(2px); }
  39% { transform: translateY(-3px); opacity: 1; }
  52% { transform: translateY(1px); stroke-dashoffset: -24; }
  67% { transform: translateY(-4px); }
  82% { transform: translateY(3px); opacity: .78; }
}
@keyframes blipBlink {
  0%, 100% { opacity: .14; transform: scale(.7); }
  34% { opacity: .18; }
  50% { opacity: .96; transform: scale(1); }
  68% { opacity: .22; }
}
@keyframes dependencyPulse {
  0%, 22%, 100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 34px rgba(243,145,55,.75), 0 0 86px rgba(243,145,55,.28);
  }
  54% {
    opacity: .96;
    transform: translate(-50%, -50%) scale(1.12);
  }
  72% {
    opacity: .36;
    transform: translate(-50%, -50%) scale(.92);
    box-shadow: 0 0 8px rgba(243,145,55,.22), 0 0 18px rgba(243,145,55,.08);
  }
  84% {
    opacity: .14;
    transform: translate(-50%, -50%) scale(.78);
    box-shadow: 0 0 0 rgba(243,145,55,0), 0 0 0 rgba(243,145,55,0);
  }
}
@keyframes dependencySignal {
  0%, 26%, 100% { opacity: .94; transform: scale(1); }
  60% { opacity: .72; }
  74% { opacity: .18; transform: scale(.92); }
  84% { opacity: .06; transform: scale(.8); }
}
@keyframes dependencyMask {
  0%, 28%, 100% { opacity: .1; }
  76% { opacity: .34; }
  84% { opacity: .54; }
}
@keyframes noiseCorePulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  62% { transform: translate(-50%, -50%) scale(1.06); }
  82% { transform: translate(-50%, -50%) scale(.9); opacity: .92; }
}
@keyframes noisePressure {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) translate(calc(var(--x) * 1px), calc(var(--y) * 1px)) scale(.4);
  }
  24% {
    opacity: .32;
    transform: translate(-50%, -50%) translate(calc(var(--x) * .86px), calc(var(--y) * .86px)) scale(.58);
  }
  52% {
    opacity: .68;
    transform: translate(-50%, -50%) translate(calc(var(--x) * .64px), calc(var(--y) * .64px)) scale(.92);
  }
  74% {
    opacity: .96;
    transform: translate(-50%, -50%) translate(calc(var(--x) * .34px), calc(var(--y) * .34px)) scale(1.18);
  }
  84% {
    opacity: .12;
    transform: translate(-50%, -50%) translate(calc(var(--x) * .12px), calc(var(--y) * .12px)) scale(.5);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) translate(calc(var(--x) * .02px), calc(var(--y) * .02px)) scale(.28);
  }
}
@keyframes freezeFlash {
  0%, 74%, 100% { opacity: 0; }
  82% { opacity: .74; }
  88% { opacity: 0; }
}
@keyframes rouletteLine {
  0%, 100% { transform: translateY(0); opacity: .88; }
  10% { transform: translateY(-3px); }
  18% { transform: translateY(5px); }
  32% { transform: translateY(-8px); opacity: 1; }
  46% { transform: translateY(7px); }
  58% { transform: translateY(-10px); }
  73% { transform: translateY(4px); opacity: .82; }
  84% { transform: translateY(-6px); }
}
@keyframes sphereBreath {
  0%, 18%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: blur(0);
  }
  48% {
    transform: translate(-50%, -50%) scale(1.06);
    opacity: .98;
  }
  74% {
    transform: translate(-50%, -50%) scale(.98);
    opacity: .72;
    filter: blur(.2px);
  }
  84% {
    transform: translate(-50%, -50%) scale(.94);
    opacity: .44;
    filter: blur(.6px);
  }
}
@keyframes sphereNoise {
  0%, 28%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(1); }
  52% { opacity: .12; }
  74% { opacity: .3; transform: translate(-50%, -50%) scale(1.02); }
  84% { opacity: .48; transform: translate(-50%, -50%) scale(.98); }
}
@keyframes loadGrid {
  0% { opacity: 0; transform: scale(.72) translate3d(0, 0, 0); }
  24% { opacity: .18; transform: scale(.84) translate3d(-2px, 1px, 0); }
  48% { opacity: .38; transform: scale(.94) translate3d(3px, -2px, 0); }
  72% { opacity: .74; transform: scale(1) translate3d(-3px, 2px, 0); }
  100% { opacity: .92; transform: scale(1) translate3d(0, 0, 0); }
}
@keyframes ambientShift {
  0%, 100% { transform: translate3d(-2%, -1%, 0); opacity: .32; }
  50% { transform: translate3d(2%, 2%, 0); opacity: .48; }
}
@keyframes ctaShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes ctaSweep {
  0%, 35% { left: -40%; opacity: 0; }
  50% { opacity: 1; }
  80%, 100% { left: 115%; opacity: 0; }
}

@media (max-width: 980px) {
  .header {
    grid-template-columns: 1fr auto;
    padding: 25px 24px;
  }

  .desktop-nav,
  .moods { display: none; }
  .menu-toggle { display: flex; }

  .hero {
    min-height: 844px;
    padding: 118px 32px 70px;
  }

  .arrow-field {
    inset: 80px 30px 235px;
    opacity: 0.25;
  }

  .hero-bottom,
  .struggle-grid,
  .problem-list,
  .breakthrough,
  .day-panel {
    grid-template-columns: 1fr;
  }

  .hero-bottom {
    gap: 46px;
    margin-top: 46px;
  }

  .hero-visual {
    position: relative;
    right: auto;
    top: auto;
    width: min(100%, 330px);
    min-width: 0;
    margin: 48px auto 0;
  }

  .photo-stage::before {
    inset: 8% 0 8% 0;
    transform: rotate(2deg);
  }

  .photo-stage::after {
    right: 0;
  }

  .round-text {
    right: -8px;
    bottom: -92px;
    width: 156px;
    height: 156px;
  }

  .round-text text { font-size: 24px; }

  .photo-line {
    right: 12px;
    top: 16px;
    width: 76px;
    height: 38px;
  }

  .pet-card {
    width: 86px;
  }

  .pet-card-cat {
    left: 8px;
    bottom: 68px;
  }

  .pet-card-dog {
    right: 8px;
    bottom: 12px;
  }

  .top-rule { margin: 0 32px; }

  .practice-rail-block {
    top: 90px;
    padding-bottom: 14px;
  }

  .struggle { min-height: auto; }
  .struggle-grid { padding: 78px 32px 40px; gap: 42px; }
  .roadmap {
    position: relative;
    top: auto;
    padding: 20px 32px 70px;
  }

  .roadmap h3 { margin-bottom: 70px; }
  .line-wrap { height: 105px; }
  .dotted-wave { display: none; }
  .head { width: 54px; height: 66px; top: 24px; }
  .problem-list { gap: 38px; }
  .problem { opacity: 1; }
  .problem i { margin-left: 0; margin-bottom: 20px; }

  .breakthrough { padding: 0 32px 80px; gap: 22px; }
  .solution { padding: 70px 20px; }
  .pain-story { padding: 0 20px; }
  .pain-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "left"
      "right";
    gap: 28px;
    padding: 90px 0 28px;
  }
  .pain-eyebrow {
    font-size: clamp(28px, 5.8vw, 42px);
  }
  .pain-title {
    font-size: clamp(40px, 7vw, 60px);
  }
  .pain-note {
    font-size: 18px;
    line-height: 1.32;
  }
  .pain-focus {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .pain-selector {
    gap: 8px;
  }
  .pain-tab {
    padding: 8px 0 10px 16px;
  }
  .pain-tab-label {
    font-size: clamp(16px, 2.8vw, 20px);
  }
  .pain-stage {
    min-height: 280px;
    padding: 24px;
  }
  .pain-stage-title {
    font-size: clamp(28px, 5vw, 40px);
  }
  .pain-stage-copy {
    font-size: clamp(19px, 3vw, 24px);
    line-height: 1.18;
  }
  .practice-item-copy h3 {
    font-size: clamp(24px, 4vw, 34px);
  }
  .practice-item-copy li {
    font-size: clamp(20px, 3.2vw, 28px);
    line-height: 1.18;
  }
  .consequences-inner {
    min-height: auto;
    padding: 18px 32px 72px;
  }
  .consequences {
    padding: 0 20px 78px;
  }
  .consequences-scene + .consequences-scene {
    margin-top: 42px;
  }
  .consequences-header {
    gap: 16px;
  }
  .consequences-lead {
    font-size: clamp(22px, 3vw, 30px);
  }
  .consequences-block {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 24px;
  }
  .consequences-block-heading p {
    max-width: 680px;
    font-size: clamp(30px, 5.6vw, 42px);
  }
  .consequences-block-body {
    gap: 14px;
  }
  .consequences-bridge {
    font-size: clamp(21px, 3.2vw, 28px);
  }
  .consequences-subhead {
    font-size: clamp(21px, 3.2vw, 28px);
  }
  .consequences-listing li {
    padding-left: 14px;
    font-size: clamp(21px, 3.2vw, 28px);
  }
  .consequences-copyline {
    font-size: clamp(21px, 3.2vw, 28px);
  }
  .consequences-quote {
    font-size: clamp(30px, 5vw, 40px);
  }
  .consequences-accent-stack p {
    font-size: clamp(21px, 3.2vw, 28px);
  }
  .whatido {
    padding: 0 32px 42px;
  }
  .whatido-bar {
    height: 86px;
    margin-bottom: 28px;
  }
  .whatido-top {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "stress"
      "outcome"
      "footer";
    gap: 26px;
    padding: 56px 28px 62px;
  }
  .whatido-title {
    font-size: clamp(46px, 7vw, 68px);
    max-width: 680px;
  }
  .whatido-eyebrow {
    font-size: 20px;
  }
  .whatido-summary {
    font-size: clamp(30px, 4.6vw, 40px);
  }
  .whatido-summary-tail {
    font-size: clamp(20px, 3vw, 26px);
  }
  .whatido-panel {
    gap: 16px;
    padding-top: 18px;
  }
  .whatido-panel-list li {
    font-size: clamp(24px, 3.6vw, 32px);
  }
  .whatido-footer p {
    font-size: clamp(24px, 3.6vw, 32px);
  }
  .cases {
    padding: 0 32px 64px;
  }
  .cases-head {
    margin-bottom: 32px;
  }
  .cases-grid {
    gap: 18px;
  }
  .case-card {
    padding: 28px 26px 24px;
  }
  .case-card-review {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 14px 14px 12px;
  }
  .case-card-person {
    font-size: 15px;
  }
  .case-card-quote {
    font-size: 15px;
  }
  .case-card-meta-title,
  .case-card-meta-list {
    font-size: 16px;
  }
  .case-card-title {
    font-size: clamp(30px, 4.8vw, 40px);
  }
  .case-card-metric {
    font-size: clamp(42px, 6vw, 56px);
  }
  .case-card-sub {
    font-size: clamp(20px, 3vw, 24px);
  }
  .case-open {
    font-size: 22px;
  }
  .case-modal-dialog {
    width: min(1120px, calc(100vw - 24px));
    grid-template-columns: 1fr;
    max-height: calc(100vh - 24px);
    padding: 18px;
  }
  .case-modal-dialog.story-mode {
    width: min(1240px, calc(100vw - 24px));
    padding: 18px 18px 24px;
  }
  .case-modal-back {
    top: 14px;
    left: 14px;
  }
  .case-modal-copy {
    padding: 10px 4px 0;
  }
  .case-modal-story {
    gap: 52px;
    padding: 28px 4px 6px;
  }
  .story-hero,
  .story-section {
    padding: 28px;
    border-radius: 24px;
  }
  .story-hero .story-kicker {
    min-height: 36px;
    padding: 8px 14px;
  }
  .story-section--point-a {
    padding-left: 40px;
  }
  .story-section--point-a::before {
    left: 20px;
    top: 28px;
    bottom: 28px;
  }
  .story-section--point-b .story-section-kicker {
    min-height: 38px;
    padding: 9px 16px;
  }
  .story-hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "title"
      "visual"
      "chip"
      "voice"
      "lead";
  }
  .story-hero--neuro {
    grid-template-areas:
      "kicker"
      "title"
      "lead"
      "visual";
  }
  .story-hero-visual {
    justify-self: start;
    width: min(380px, 72vw);
    margin-top: 0;
  }
  .story-hero--neuro .story-hero-copybox {
    padding: 22px 20px;
    border-radius: 24px;
  }
  .story-expert {
    padding: 16px 18px;
  }
  .story-title,
  .story-section-title,
  .story-cta-title {
    font-size: clamp(42px, 7vw, 64px);
  }
  .case-modal-story {
    --story-type-kicker: 16px;
    --story-type-title: clamp(38px, 5.8vw, 56px);
    --story-type-subtitle: clamp(26px, 3.2vw, 34px);
    --story-type-body: clamp(21px, 2.25vw, 27px);
    --story-type-body-tight: clamp(18px, 1.9vw, 22px);
  }
  .story-problem {
    padding: 24px;
  }
  .story-pill-row {
    gap: 10px;
  }
  .story-card-grid--start,
  .story-card-grid--approach,
  .story-card-grid--results,
  .story-step-grid,
  .story-screen-grid,
  .story-logic-layout,
  .story-section--proof,
  .story-section--next-result {
    grid-template-columns: 1fr;
  }
  .story-issues-grid,
  .story-done-grid,
  .story-review-layout {
    grid-template-columns: 1fr;
  }
  .story-issues-grid article,
  .story-done-grid article {
    min-height: 0;
    font-size: var(--story-type-body);
  }
  .story-section--point-a .story-issues-grid article::after {
    left: 58px;
  }
  .story-review-copy p {
    font-size: var(--story-type-body);
  }
  .story-result-card {
    padding: 28px 24px;
  }
  .case-modal-media {
    max-height: 52vh;
  }
  .black-hole { top: 180px; right: -45px; width: 320px; }
  .solution-grid {
    left: 28px;
    right: 28px;
    bottom: 135px;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .supercharge { left: 28px; right: auto; bottom: 50px; }

  .program,
  .faq { padding-left: 32px; padding-right: 32px; }
  .site-footer {
    padding-left: 32px;
    padding-right: 32px;
  }
  .site-footer-lead {
    justify-items: start;
    padding-bottom: 34px;
  }
  .site-footer-pretitle,
  .site-footer-lead-title {
    text-align: left;
    max-width: 100%;
  }
  .site-footer-panel {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 36px 32px 34px;
    border-radius: 28px;
  }
  .site-footer-brand {
    gap: 28px;
  }
  .site-footer-cta-copy p {
    max-width: none;
  }
  .day button { grid-template-columns: 1fr; gap: 12px; }
  .day-panel { padding-left: 0; }
}

@media (max-width: 560px) {
  h1 { font-size: 52px; line-height: 1.02; }
  .hero-name { font-size: 24px; }
  .hero-subtitle { font-size: 24px; }
  .hero-offer p { font-size: 22px; }
  .practice h2 { font-size: 54px; }
  .practice-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .practice-item p {
    font-size: 30px;
  }
  .practice-item-copy h3 {
    font-size: clamp(22px, 6vw, 28px);
  }
  .practice-item-copy li {
    font-size: clamp(18px, 5.4vw, 24px);
    line-height: 1.2;
  }
  .pain-story {
    padding: 0 12px;
  }
  .pain-hero {
    padding: 70px 0 18px;
    gap: 22px;
  }
  .pain-eyebrow {
    font-size: clamp(24px, 7vw, 34px);
    line-height: 0.98;
  }
  .pain-title {
    font-size: clamp(34px, 9vw, 44px);
    line-height: 0.95;
  }
  .pain-note {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.34;
  }
  .pain-focus {
    gap: 16px;
  }
  .pain-tab {
    padding: 8px 0 10px 14px;
  }
  .pain-tab-index {
    font-size: 11px;
  }
  .pain-tab-label {
    font-size: clamp(15px, 4.8vw, 18px);
  }
  .pain-stage {
    min-height: 248px;
    padding: 20px;
    border-radius: 18px;
  }
  .pain-stage-title {
    font-size: clamp(24px, 6.6vw, 32px);
    line-height: 0.98;
  }
  .pain-stage-copy {
    font-size: 17px;
    line-height: 1.22;
  }
  .consequences-inner {
    padding: 10px 24px 62px;
  }
  .consequences {
    padding: 0 12px 58px;
  }
  .consequences-title {
    font-size: clamp(34px, 9vw, 46px);
  }
  .consequences-header {
    gap: 14px;
  }
  .consequences-lead {
    font-size: clamp(20px, 5.1vw, 26px);
    line-height: 1.14;
  }
  .consequences-scene + .consequences-scene {
    margin-top: 26px;
  }
  .consequences-block {
    gap: 18px;
    padding-top: 18px;
  }
  .consequences-block-heading p {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1;
  }
  .consequences-block-body {
    gap: 12px;
  }
  .consequences-bridge {
    font-size: clamp(18px, 4.8vw, 22px);
    line-height: 1.14;
  }
  .consequences-subhead {
    font-size: clamp(18px, 4.8vw, 22px);
    line-height: 1.14;
  }
  .consequences-listing {
    gap: 8px;
  }
  .consequences-listing li {
    padding-left: 12px;
    font-size: clamp(18px, 4.8vw, 22px);
    line-height: 1.14;
  }
  .consequences-copyline {
    font-size: clamp(18px, 4.8vw, 22px);
    line-height: 1.14;
  }
  .consequences-quote {
    font-size: clamp(28px, 7vw, 34px);
    line-height: 1;
  }
  .consequences-accent-stack p {
    font-size: clamp(18px, 4.8vw, 22px);
    line-height: 1.14;
  }
  .whatido {
    padding: 0 24px 32px;
  }
  .whatido-bar {
    height: 70px;
    margin-bottom: 22px;
    border-radius: 0 0 18px 18px;
  }
  .whatido-top {
    gap: 24px;
    padding: 44px 22px 48px;
  }
  .whatido-eyebrow {
    margin-bottom: 18px;
    font-size: 17px;
  }
  .whatido-panel {
    gap: 14px;
    padding-top: 16px;
  }
  .whatido-panel-kicker {
    font-size: 15px;
  }
  .whatido-panel-list li {
    font-size: clamp(21px, 5.4vw, 26px);
    line-height: 1.08;
  }
  .whatido-summary {
    font-size: clamp(24px, 6.6vw, 30px);
  }
  .whatido-summary-tail {
    font-size: 18px;
    line-height: 1.16;
  }
  .whatido-panel-list-outcome {
    gap: 10px;
  }
  .whatido-footer {
    padding-top: 16px;
  }
  .whatido-footer p {
    font-size: clamp(20px, 5vw, 24px);
    line-height: 1.12;
  }
  .cases {
    padding: 0 24px 48px;
  }
  .cases-head {
    gap: 14px;
    margin-bottom: 24px;
  }
  .cases-note {
    font-size: 17px;
    line-height: 1.24;
  }
  .cases-grid {
    gap: 14px;
  }
  .case-card {
    padding: 22px 20px 20px;
    border-radius: 18px;
    gap: 12px;
  }
  .case-card-review {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 12px 12px 10px;
    border-radius: 16px;
  }
  .case-card-title {
    font-size: clamp(24px, 6vw, 30px);
    line-height: 1.08;
  }
  .case-card-metric {
    font-size: clamp(34px, 8vw, 42px);
  }
  .case-card-sub {
    font-size: 17px;
  }
  .case-card-person {
    font-size: 14px;
  }
  .case-card-quote {
    font-size: 14px;
    line-height: 1.25;
  }
  .case-card-meta-title,
  .case-card-meta-list {
    font-size: 15px;
  }
  .case-open {
    font-size: 20px;
  }
  .case-modal-dialog {
    width: min(calc(100vw - 16px), 100%);
    margin: 8px auto;
    max-height: calc(100vh - 16px);
    padding: 14px;
    border-radius: 18px;
  }
  .case-modal-dialog.story-mode {
    width: min(calc(100vw - 16px), 100%);
    --story-shell-x: 12px;
    --story-shell-bottom: 0px;
    padding: 12px 12px 0;
  }
  .case-modal-back {
    top: 10px;
    left: 10px;
    gap: 8px;
    padding: 9px 13px 9px 11px;
    font-size: 14px;
  }
  .case-modal-back span:first-child {
    width: 16px;
    font-size: 16px;
  }
  .case-modal-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    font-size: 24px;
  }
  .case-modal-title {
    font-size: clamp(28px, 7vw, 34px);
  }
  .case-modal-metric {
    font-size: clamp(28px, 7vw, 34px);
  }
  .case-modal-sub,
  .case-modal-person,
  .case-modal-text {
    font-size: 16px;
  }
  .case-modal-media {
    max-height: 46vh;
    border-radius: 14px;
  }
  .case-modal-story {
    gap: 38px;
    padding: 34px 0 0;
  }
  .story-hero,
  .story-section {
    padding: 20px;
    border-radius: 18px;
  }
  .case-modal-story {
    --story-type-kicker: 14px;
    --story-type-title: clamp(34px, 7.8vw, 46px);
    --story-type-subtitle: clamp(24px, 5vw, 30px);
    --story-type-body: clamp(18px, 4.3vw, 22px);
    --story-type-body-tight: clamp(16px, 3.8vw, 19px);
  }
  .story-hero .story-kicker {
    min-height: 34px;
    padding: 8px 12px;
    font-size: var(--story-type-kicker);
  }
  .story-hero-visual {
    width: min(300px, 78vw);
    margin-top: 0;
  }
  .story-hero-visual img {
    border-radius: 0;
  }
  .story-pill-row {
    grid-area: auto;
  }
  .story-mini-card,
  .story-approach-card,
  .story-step-card {
    min-height: 0;
    padding: 22px 20px;
  }
  .story-section--proof {
    padding: 24px;
  }
  .story-proof-title {
    font-size: clamp(34px, 7vw, 48px);
  }
  .story-logic-callout,
  .story-logic-lines p {
    padding-left: 20px;
    padding-right: 20px;
  }
  .story-section--point-a {
    padding-left: 30px;
  }
  .story-section--point-a::before {
    left: 14px;
    top: 22px;
    bottom: 22px;
  }
  .story-section--point-b .story-section-kicker {
    min-height: 34px;
    padding: 8px 14px;
    font-size: var(--story-type-kicker);
  }
  .story-title,
  .story-section-title,
  .story-cta-title {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 0.98;
  }
  .story-expert-name {
    font-size: 24px;
  }
  .story-expert {
    padding: 14px 16px;
    border-radius: 18px;
  }
  .story-voice {
    gap: 10px;
  }
  .story-problem {
    padding: 22px 18px 22px 28px;
    border-radius: 20px;
  }
  .story-problem::before {
    top: -10px;
    left: 28px;
    width: 18px;
    height: 18px;
  }
  .story-problem::after {
    top: 16px;
    bottom: 16px;
    width: 3px;
  }
  .story-expert-role,
  .story-section-copy,
  .story-lead,
  .story-cta-copy,
  .story-consent,
  .story-problem p {
    font-size: var(--story-type-body);
  }
  .story-chip {
    padding: 12px 16px;
    font-size: 14px;
    justify-self: start;
    max-width: none;
  }
  .story-screen-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .story-screen-grid--neuro {
    grid-template-columns: 1fr;
  }
  .story-diagnosis-tags {
    gap: 8px;
  }
  .story-diagnosis-tags span {
    font-size: var(--story-type-subtitle);
  }
  .story-review-offer-list ul {
    grid-template-columns: 1fr;
  }
  .story-review-offer-button {
    width: 100%;
    border-radius: 22px;
    text-align: center;
  }
  .review-modal {
    padding: 12px;
  }
  .review-modal-dialog {
    width: min(calc(100vw - 16px), 100%);
    max-height: calc(100vh - 16px);
    padding: 24px 18px 22px;
    border-radius: 22px;
  }
  .review-modal-success {
    min-height: 320px;
  }
  .review-modal-title {
    font-size: clamp(32px, 8vw, 42px);
  }
  .review-modal-subtitle {
    font-size: 18px;
  }
  .review-field-input {
    min-height: 64px;
    font-size: 18px;
  }
  .review-modal-submit {
    min-height: 68px;
    font-size: 20px;
  }
  .review-modal-success-button {
    width: 100%;
    min-height: 68px;
  }
  .story-review-offer-points p {
    font-size: var(--story-type-subtitle);
  }
  .story-case-closing {
    justify-items: start;
    padding-bottom: 26px;
  }
  .story-case-closing-pretitle,
  .story-case-closing-title {
    max-width: 100%;
    text-align: left;
  }
  .story-footer-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 28px 30px;
    border-radius: 24px;
  }
  .story-footer-meta {
    gap: 20px;
  }
  .story-footer-actions {
    display: grid;
    gap: 14px;
  }
  .story-footer-action {
    justify-content: space-between;
  }
  .story-footer-social {
    justify-content: space-between;
    width: 100%;
  }
  .story-footer-book {
    justify-content: space-between;
    width: 100%;
  }
  .story-screen-card {
    border-radius: 18px;
  }
  .story-screen-card figcaption {
    padding: 14px 14px 16px;
    font-size: 16px;
  }
  .story-issues-grid article,
  .story-done-grid article {
    padding: 18px 16px 18px 52px;
    border-radius: 18px;
    font-size: 18px;
  }
  .story-section--point-a .story-issues-grid article::after {
    top: 16px;
    left: 52px;
    right: 18px;
  }
  .story-issues-grid article::before,
  .story-done-grid article::before {
    top: 18px;
    left: 18px;
    width: 18px;
    height: 18px;
    box-shadow: inset 0 0 0 5px rgba(243, 145, 55, 0.9);
  }
  .story-section--point-b .story-done-grid article::before {
    width: 22px;
    height: 22px;
    border-radius: 7px;
    font-size: 14px;
    box-shadow: none;
  }
  .story-section--point-b .story-done-grid article::after {
    width: 48px;
    height: 48px;
  }
  .story-result-card {
    padding: 26px 18px;
    border-radius: 20px;
  }
  .story-result-label,
  .story-result-note {
    font-size: 15px;
  }
  .story-result-value {
    font-size: clamp(42px, 12vw, 64px);
  }
  .story-shot {
    padding: 8px;
    border-radius: 18px;
  }
  .story-shot img {
    border-radius: 12px;
  }
  .story-field {
    padding: 22px 20px;
    border-radius: 18px;
    font-size: 18px;
  }
  .story-field--area {
    min-height: 150px;
  }
  .story-submit {
    border-radius: 18px;
    padding: 20px 18px;
    font-size: 22px;
  }
  .whatido-title {
    font-size: clamp(36px, 10vw, 50px);
    line-height: 0.98;
  }
  .whatido-summary {
    font-size: clamp(24px, 6vw, 30px);
  }
  .whatido-panel-list-outcome li {
    font-size: clamp(20px, 5.8vw, 26px);
    line-height: 1.08;
  }
  .whatido-panel-list-outcome li::before {
    margin-right: 12px;
  }
  .struggle h2,
  .solution h2,
  .program h2,
  .faq h2 { font-size: 42px; }
  .kicker { font-size: 21px; }
  .struggle-copy { font-size: 22px; }
  .arrow { transform: scale(.75); }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 1240px; }
  .faq button { font-size: 21px; }
  .site-footer {
    padding: 18px 20px 36px;
  }
  .site-footer-lead {
    gap: 14px;
    padding-bottom: 24px;
  }
  .site-footer-pretitle {
    font-size: 20px;
    line-height: 1.24;
  }
  .site-footer-lead-title {
    font-size: clamp(38px, 10vw, 54px);
    line-height: 0.98;
  }
  .site-footer-panel {
    gap: 28px;
    padding: 28px 22px 26px;
    border-radius: 24px;
  }
  .site-footer-mark {
    font-size: 46px;
  }
  .site-footer-meta {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .site-footer-value,
  .site-footer-link {
    font-size: 24px;
    line-height: 1.08;
  }
  .site-footer-actions {
    display: grid;
    gap: 14px;
  }
  .site-footer-action {
    justify-content: space-between;
  }
  .site-footer-action span {
    font-size: 24px;
  }
  .site-footer-action i,
  .site-footer-book i {
    width: 58px;
    height: 58px;
    font-size: 28px;
  }
  .site-footer-cta-copy p {
    font-size: 32px;
    line-height: 1.02;
  }
  .site-footer-book {
    justify-content: space-between;
    width: 100%;
  }
  .site-footer-book span {
    font-size: 34px;
  }
  .story-footer-panel {
    padding: 26px 20px 24px;
  }
  .story-footer-mark {
    font-size: 42px;
  }
  .story-footer-value,
  .story-footer-link {
    font-size: 22px;
  }
  .story-footer-action i,
  .story-footer-book i {
    width: 56px;
    height: 56px;
    font-size: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-issues-grid article,
  .story-done-grid article,
  .reveal-up,
  .reveal-left,
  .reveal-scale {
    transition: none;
    animation: none;
  }

  .reveal-up,
  .reveal-left,
  .reveal-scale {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* Unified chronology layout: desktop and mobile share the same content order. */
.header {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: clamp(22px, 4vw, 32px) clamp(24px, 6vw, 52px);
}

.desktop-nav,
.moods {
  display: none;
}

.menu-toggle {
  display: flex;
}

.hero {
  min-height: auto;
  padding: clamp(120px, 13vw, 170px) clamp(24px, 6vw, 52px) clamp(80px, 10vw, 120px);
}

.arrow-field {
  inset: 88px clamp(24px, 6vw, 52px) auto;
  height: min(62vw, 680px);
  opacity: 0.28;
  mask-image: linear-gradient(180deg, #000 0 72%, transparent 100%);
}

.hero-inner {
  display: grid;
  gap: clamp(42px, 7vw, 78px);
  max-width: 900px;
}

.hero-copy,
h1,
.hero-subtitle {
  max-width: 100%;
}

h1 {
  font-size: clamp(48px, 8.5vw, 92px);
}

.hero-name {
  font-size: clamp(24px, 4vw, 38px);
}

.hero-subtitle {
  font-size: clamp(24px, 4.5vw, 38px);
}

.hero-visual {
  position: relative;
  top: auto;
  right: auto;
  z-index: 2;
  width: min(100%, 520px);
  min-width: 0;
  margin: 0 auto;
}

.photo-stage::before {
  inset: 8% 0 8% 0;
  transform: rotate(2deg);
}

.photo-stage::after {
  right: 0;
}

.round-text {
  right: 0;
  bottom: -88px;
  width: clamp(150px, 27vw, 210px);
  height: clamp(150px, 27vw, 210px);
}

.round-text text {
  font-size: 23px;
  letter-spacing: 0.045em;
}

.photo-line {
  right: 12px;
  top: 16px;
  width: 76px;
  height: 38px;
}

.hero-bottom {
  display: block;
  margin-top: 0;
}

.hero-offer {
  max-width: 620px;
}

.hero-cta {
  width: min(100%, 560px);
}

@media (min-width: 981px) {
  .hero {
    min-height: 810px;
  }

  .hero-inner {
    position: relative;
    display: block;
    max-width: 1220px;
    min-height: 620px;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    max-width: 760px;
  }

  .hero-visual {
    position: absolute;
    right: 0;
    top: 96px;
    z-index: 1;
    width: min(31vw, 390px);
    min-width: 310px;
    margin: 0;
  }

  .hero-bottom {
    display: block;
    max-width: 580px;
    margin-top: 44px;
  }

  .round-text {
    right: -42px;
    bottom: -112px;
    width: 215px;
    height: 215px;
  }

  .photo-stage::before {
    inset: 9% -8% 8% 8%;
    transform: rotate(4deg);
  }

  .photo-stage::after {
    right: -16%;
  }

  .photo-line {
    right: -44px;
    top: 22%;
    width: 122px;
    height: 56px;
  }
}

.top-rule {
  margin: 0 clamp(24px, 6vw, 52px);
}

.struggle {
  min-height: auto;
}

.struggle-grid,
.problem-list,
.breakthrough,
.day-panel {
  grid-template-columns: 1fr;
}

.struggle-grid {
  padding: clamp(70px, 10vw, 110px) clamp(24px, 6vw, 52px) 48px;
  gap: clamp(30px, 5vw, 46px);
}

.roadmap {
  position: relative;
  top: auto;
  max-width: 900px;
  padding: 32px clamp(24px, 6vw, 52px) 90px;
}

.roadmap h3 {
  margin-bottom: clamp(52px, 9vw, 86px);
}

.line-wrap {
  height: 120px;
}

.problem-list {
  gap: 42px;
}

.problem {
  opacity: 1;
}

.problem i {
  margin-left: 0;
  margin-bottom: 20px;
}

.breakthrough {
  max-width: 900px;
  padding: 0 clamp(24px, 6vw, 52px) 90px;
  gap: 24px;
}

.solution {
  padding: clamp(70px, 10vw, 120px) clamp(20px, 5vw, 50px);
}

.solution-card {
  min-height: auto;
  padding: clamp(42px, 8vw, 78px) clamp(28px, 7vw, 78px);
  display: grid;
  gap: clamp(44px, 7vw, 70px);
}

.black-hole,
.solution-grid,
.supercharge {
  position: relative;
  inset: auto;
}

.black-hole {
  width: min(100%, 360px);
  justify-self: center;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.supercharge {
  font-size: clamp(26px, 4vw, 34px);
}

.program,
.faq {
  max-width: 900px;
  padding-left: clamp(24px, 6vw, 52px);
  padding-right: clamp(24px, 6vw, 52px);
}

.practice-inner {
  max-width: 900px;
  padding-left: clamp(24px, 6vw, 52px);
  padding-right: clamp(24px, 6vw, 52px);
}

.practice-head,
.practice-rail-block {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(10px);
}

body.is-ready .practice-head,
body.is-ready .practice-rail-block {
  animation: practiceMaterialize 680ms cubic-bezier(.2, .7, .2, 1) forwards;
}

body.is-ready .practice-rail-block {
  animation-delay: 120ms;
}

.day button {
  grid-template-columns: 1fr;
  gap: 14px;
}

.day-panel {
  padding-left: 0;
}

@media (max-width: 1100px) {
  .story-process-text-grid,
  .story-issues-grid,
  .story-done-grid,
  .story-screen-grid,
  .story-section--results-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-neuro-guesswork-grid,
  .story-neuro-review-grid {
    grid-template-columns: 1fr;
  }

  .story-neuro-review-grid article {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .story-process-text-grid,
  .story-issues-grid,
  .story-done-grid,
  .story-screen-grid,
  .story-section--results-split {
    grid-template-columns: 1fr;
  }

  .story-section--neuro-interest,
  .story-section--point-b-light,
  .story-section--results-split {
    padding-left: 24px;
    padding-right: 24px;
  }

  .story-process-card {
    min-height: 0;
  }

  .story-neuro-pill-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .story-neuro-pill-list span {
    width: 100%;
    justify-content: flex-start;
  }

  .story-neuro-cycle {
    display: grid;
    gap: 10px;
  }

  .story-neuro-cycle i {
    justify-self: start;
  }

  .story-neuro-review-final-card {
    padding: 28px 22px;
  }
}

/* Final home page consistency overrides */
main#top .pain-story,
main#top .consequences,
main#top .whatido,
main#top .practice,
main#top .cases,
main#top .site-footer {
  padding-left: var(--home-x);
  padding-right: var(--home-x);
}

main#top .pain-hero,
main#top .consequences-inner,
main#top .whatido-inner,
main#top .practice-inner,
main#top .cases-inner,
main#top .site-footer-lead,
main#top .site-footer-panel {
  max-width: var(--home-shell);
  margin-left: auto;
  margin-right: auto;
}

main#top .practice-inner {
  padding-left: 0;
  padding-right: 0;
}

main#top .practice-head {
  justify-items: center;
  text-align: center;
}

main#top .practice h2,
main#top .pain-title,
main#top .pain-eyebrow,
main#top .pain-stage-title,
main#top .consequences-title,
main#top .consequences-block-heading p,
main#top .consequences-quote,
main#top .whatido-title,
main#top .cases-cats-note p,
main#top .cases-title,
main#top .cases-growth-copy h3,
main#top .site-footer-pretitle {
  font-family: Inter, "Trebuchet MS", Arial, sans-serif;
}

main#top .pain-title strong,
main#top .pain-tab-label strong,
main#top .pain-stage-title strong,
main#top .consequences-quote,
main#top .whatido-title em,
main#top .cases-title em,
main#top .materialize-title em {
  font-family: inherit;
  font-style: normal;
}

main#top .hero {
  min-height: 720px;
  padding-bottom: 34px;
}

main#top .pain-hero {
  min-height: 0;
  padding-top: clamp(44px, 5vw, 72px);
  grid-template-columns: 1fr;
  grid-template-areas:
    "eyebrow"
    "right";
}

main#top .pain-hero-left {
  display: none;
}

main#top .pain-hero-right {
  width: min(100%, 1120px);
  margin: 0 auto;
}

main#top .pain-focus {
  grid-template-columns: minmax(300px, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(24px, 3vw, 42px);
}

main#top .pain-tab {
  padding-top: 12px;
  padding-bottom: 13px;
}

main#top .pain-tab-index {
  font-size: clamp(13px, 1vw, 16px);
}

main#top .pain-tab-label {
  font-size: clamp(21px, 1.55vw, 28px);
  line-height: 1.08;
}

main#top .pain-eyebrow {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 720px) {
  main#top .pain-focus {
    grid-template-columns: 1fr;
  }
}

/* Main page modular grid: keep section content on one shared column. */
main#top {
  --home-shell: 1340px;
  --home-x: clamp(24px, 6vw, 52px);
  --section-gap: 48px;
  --section-inner-y: clamp(52px, 6vw, 72px);
  --heading-gap: clamp(24px, 3vw, 40px);
  --card-gap: clamp(24px, 2.5vw, 32px);
  width: 100%;
  max-width: none;
  overflow-x: hidden;
}

main#top > section:not(.hero) {
  margin-top: var(--section-gap);
}

main#top > section {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
}

main#top .pain-hero,
main#top .consequences-inner,
main#top .whatido-top,
main#top .advice-break,
main#top .practice-inner,
main#top .experience-strip-inner,
main#top .cases,
main#top .home-faq {
  padding-top: var(--section-inner-y);
  padding-bottom: var(--section-inner-y);
}

main#top .hero-inner,
main#top .pain-hero,
main#top .consequences-inner,
main#top .whatido-inner,
main#top .advice-break-inner,
main#top .practice-inner,
main#top .experience-strip-inner,
main#top .cases-inner,
main#top .home-faq,
main#top .site-footer-lead,
main#top .site-footer-panel,
main#top .site-footer-copy-bottom {
  width: 100%;
  max-width: var(--home-shell);
  margin-left: auto;
  margin-right: auto;
}

main#top .pain-hero-right,
main#top .pain-eyebrow,
main#top .cases-cats-note,
main#top .cats-gallery,
main#top .cases-head,
main#top .case-card,
main#top .cases-total-block,
main#top .cases-total-action,
main#top .cases-growth-cta {
  width: 100%;
  max-width: var(--home-shell);
  margin-left: auto;
  margin-right: auto;
}

main#top .cases-head,
main#top .advice-break-head {
  justify-self: stretch;
}

main#top .case-card,
main#top .cases-total-block {
  justify-self: stretch;
}

main#top .home-faq {
  box-sizing: border-box;
}

main#top .home-faq-inner,
main#top .home-faq-list {
  width: 100%;
}

main#top .cases-head,
main#top .advice-break-head,
main#top .consequences-header,
main#top .practice-head,
main#top .home-faq-inner,
main#top .whatido-left {
  gap: var(--heading-gap);
}

main#top .whatido-left {
  display: grid;
}

main#top .pain-focus,
main#top .whatido-top,
main#top .advice-break-grid,
main#top .experience-grid,
main#top .cats-gallery,
main#top .cases-grid,
main#top .home-faq-list {
  gap: var(--card-gap);
}

main#top .cats-gallery {
  margin-top: 0;
  margin-bottom: clamp(112px, 9vw, 148px) !important;
}

main#top .cases-head {
  padding-top: 0;
}

@media (min-width: 981px) {
  main#top .pain-stage {
    padding: clamp(34px, 3vw, 48px);
  }

  main#top .pain-stage-title {
    font-size: clamp(38px, 3vw, 54px);
    line-height: 1;
  }

  main#top .pain-stage-copy {
    max-width: 620px;
    font-size: clamp(26px, 1.9vw, 34px);
    line-height: 1.18;
  }
}

main#top .consequences-listing {
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

main#top .consequences-listing li {
  position: relative;
  padding: 9px 0 10px 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: clamp(22px, 1.65vw, 28px);
  line-height: 1.22;
  font-weight: 500;
}

main#top .consequences-listing li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
}

main#top .consequences-listing-final li {
  font-size: clamp(22px, 1.65vw, 28px);
}

main#top .round-text {
  right: -22px;
  bottom: -74px;
  width: 150px;
  height: 150px;
}

main#top .round-text text {
  font-size: 18px;
  letter-spacing: 0.02em;
}

main#top .whatido-top {
  grid-template-columns: 1fr;
  grid-template-areas:
    "left"
    "outcome"
    "footer";
  justify-items: stretch;
}

main#top .whatido-left {
  max-width: none;
  width: 100%;
}

main#top .whatido-title {
  max-width: 100%;
  width: 100%;
}

main#top .whatido-panel-stress {
  display: none;
}

main#top .whatido-panel-outcome {
  width: min(100%, 900px);
  margin: 0 auto;
  justify-items: center;
  text-align: center;
  padding-top: clamp(32px, 4vw, 52px);
}

main#top .whatido-summary-tail {
  max-width: 100%;
  color: #050505;
  font-size: clamp(34px, 3.1vw, 52px);
  line-height: 1.02;
  font-weight: 800;
}

main#top .whatido-panel-list-outcome {
  width: min(100%, 760px);
  text-align: left;
  gap: 14px;
}

main#top .whatido-panel-list-outcome li {
  font-size: clamp(26px, 2vw, 34px);
  line-height: 1.12;
}

main#top .whatido-footer {
  display: grid;
  justify-items: center;
  text-align: center;
}

main#top .whatido-footer p {
  max-width: 920px;
}

main#top .whatido-action {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.03) 42%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(135deg, #4b4945 0%, #34322f 58%, #272522 100%);
  background-size: auto;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -1px 0 rgba(0, 0, 0, 0.34),
    0 0 34px rgba(255, 242, 207, 0.34),
    0 0 58px color-mix(in srgb, var(--accent), transparent 46%),
    0 16px 34px rgba(36, 32, 28, 0.28),
    0 3px 0 rgba(0, 0, 0, 0.18);
  animation: ctaShimmer 3.2s ease-in-out infinite;
}

main#top .whatido-action::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
}

main#top .whatido-action:hover {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.04) 44%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(135deg, #54514d 0%, #3a3835 58%, #2b2926 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.36),
    0 0 42px rgba(255, 242, 207, 0.42),
    0 0 72px color-mix(in srgb, var(--accent), transparent 38%),
    0 20px 42px rgba(36, 32, 28, 0.34),
    0 3px 0 rgba(0, 0, 0, 0.2);
}

/* Final top navigation override */
@media (min-width: 981px) {
  .header {
    grid-template-columns: minmax(180px, 0.7fr) 1fr auto;
    align-items: center;
    padding: 28px 52px 22px;
  }

  .desktop-nav {
    display: flex;
  }

  .moods {
    display: none;
  }

  .header-cta {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }
}

@media (max-width: 980px) {
  .logo {
    font-size: 27px;
  }

  .header-cta {
    display: none;
  }
}

/* Keep section links visible in the top bar instead of the menu button */
@media (max-width: 980px) {
  .header {
    grid-template-columns: 1fr;
    padding: 18px 22px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.94);
  }

  .logo,
  .moods,
  .header-cta,
  .menu-toggle {
    display: none;
  }

  .desktop-nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 14px;
    font-size: clamp(14px, 3.7vw, 18px);
    text-transform: uppercase;
  }
}

/* Compact navigation style */
.desktop-nav {
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  font-size: clamp(14px, 0.95vw, 17px);
  line-height: 1;
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.desktop-nav a::before {
  content: "▸";
  display: inline-block;
  color: var(--accent);
  font-size: 10px;
  line-height: 1;
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .header {
    padding: 14px 18px 13px;
  }

  .desktop-nav {
    justify-content: center;
    gap: clamp(18px, 7vw, 42px);
    font-size: clamp(12px, 3.2vw, 15px);
    letter-spacing: 0;
    text-transform: none;
  }

  .desktop-nav a {
    gap: 8px;
  }

  .desktop-nav a::before {
    font-size: 8px;
  }
}

/* Target ads standalone page */
.ads-page {
  background: #000;
}

.ads-page .grain {
  opacity: 0.1;
}

.ads-shell {
  width: min(1340px, calc(100vw - clamp(40px, 8vw, 104px)));
  margin: 0 auto;
}

.ads-hero {
  position: relative;
  min-height: 760px;
  padding: clamp(140px, 14vw, 190px) 0 clamp(72px, 8vw, 110px);
  overflow: hidden;
}

.ads-hero .arrow-field {
  opacity: 0.34;
}

.ads-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(30px, 4.5vw, 72px);
  align-items: start;
}

.ads-kicker {
  margin: 0 0 30px;
  color: var(--accent);
  font-size: clamp(18px, 1.35vw, 26px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ads-hero h1,
.ads-section h2,
.ads-cta h2,
.ads-questions h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.ads-hero h1 {
  max-width: 900px;
}

.ads-hero h1 span,
.ads-section-lead {
  color: var(--accent);
}

.ads-hero-subtitle {
  max-width: 780px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(24px, 2.15vw, 38px);
  line-height: 1.16;
  font-weight: 600;
}

.ads-platforms {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.2;
}

.ads-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 62px;
  margin-top: 34px;
  padding: 0 34px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #070707;
  font: inherit;
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 18px 48px rgba(243, 145, 55, 0.2);
}

.ads-hero-card {
  display: grid;
  gap: 8px;
  padding: 34px;
  border: 1px solid rgba(243, 145, 55, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(243, 145, 55, 0.18), transparent 42%),
    rgba(255, 255, 255, 0.045);
}

.ads-hero-card p,
.ads-hero-card span {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 22px;
  line-height: 1.1;
}

.ads-hero-card strong {
  color: var(--accent);
  font-size: clamp(82px, 9vw, 142px);
  line-height: 0.85;
}

.ads-hero-photo {
  align-self: start;
  min-height: 430px;
  margin: clamp(50px, 4vw, 64px) 0 0;
  overflow: hidden;
  border: 1px solid rgba(243, 145, 55, 0.24);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.ads-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 58% 50%;
}

.ads-section,
.ads-brief,
.ads-cta,
.ads-faq,
.ads-questions {
  padding: clamp(74px, 8vw, 120px) 0;
}

.ads-section h2,
.ads-cta h2,
.ads-faq h2,
.ads-questions h2 {
  max-width: 1080px;
  font-size: clamp(38px, 5.2vw, 82px);
}

.ads-section-lead {
  max-width: 780px;
  margin: 24px 0 0;
  font-size: clamp(24px, 2.1vw, 36px);
  line-height: 1.12;
  font-weight: 700;
}

.ads-role-grid,
.ads-case-grid,
.ads-trust-grid,
.ads-review-grid,
.ads-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.ads-role-grid article,
.ads-case-grid article,
.ads-trust-grid article,
.ads-review-grid article,
.ads-price-grid article {
  min-height: 100%;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.045);
}

.ads-role-grid h3,
.ads-trust-grid h3,
.ads-price-grid h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 2.6vw, 44px);
  line-height: 1;
}

.ads-role-grid p,
.ads-trust-grid p,
.ads-price-grid p,
.ads-review-grid p,
.ads-case-grid p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(19px, 1.55vw, 26px);
  line-height: 1.26;
}

.ads-steps {
  display: grid;
  gap: 0;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.ads-steps li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ads-steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ads-steps span,
.ads-trust-grid span {
  color: var(--accent);
  font-weight: 800;
}

.ads-steps p {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.18;
  font-weight: 650;
}

.consultation-hero {
  min-height: 720px;
}

.consultation-hero .arrow-field {
  z-index: 0;
  pointer-events: none;
}

.consultation-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 460px);
  gap: clamp(30px, 4.5vw, 72px);
  align-items: start;
}

.consultation-hero .ads-hero-copy {
  max-width: 820px;
}

.consultation-hero-photo {
  align-self: start;
  width: 100%;
  margin: clamp(56px, 5vw, 76px) 0 0;
  overflow: hidden;
  border: 1px solid rgba(243, 145, 55, 0.32);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.consultation-hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1.32 / 1;
  object-fit: cover;
  object-position: center;
}

.consultation-step-list li {
  grid-template-columns: 92px minmax(0, 1fr);
}

.consultation-step-list h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 2.15vw, 36px);
  line-height: 1.12;
}

.consultation-step-list p {
  max-width: 980px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(19px, 1.45vw, 25px);
  line-height: 1.34;
  font-weight: 520;
}

.consultation-inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: clamp(34px, 5vw, 70px);
  padding: clamp(30px, 4vw, 56px);
  border: 1px solid rgba(243, 145, 55, 0.24);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0, rgba(243, 145, 55, 0.2), transparent 42%),
    rgba(255, 255, 255, 0.055);
}

.consultation-inline-cta p {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.4vw, 56px);
  line-height: 1.03;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.consultation-columns,
.consultation-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(34px, 5vw, 62px);
}

.consultation-column,
.consultation-price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(28px, 3.5vw, 50px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
}

.consultation-price-card {
  display: grid;
  grid-template-rows: auto auto auto minmax(44px, 1fr) auto;
}

.consultation-price-card h3 {
  grid-row: 1;
}

.consultation-price-card ul {
  grid-row: 2;
}

.consultation-price-card .consultation-price {
  grid-row: 3;
}

.consultation-price-card .consultation-price-note {
  grid-row: 4;
}

.consultation-price-card .ads-button {
  grid-row: 5;
  justify-self: start;
  margin-top: clamp(34px, 4vw, 52px);
}

.consultation-column h3,
.consultation-price-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 2.2vw, 38px);
  line-height: 1.06;
  font-weight: 850;
}

.consultation-column h3 + ul,
.consultation-price-card h3 + ul {
  margin-top: 24px;
}

.consultation-column ul,
.consultation-price-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.consultation-column ul + h3 {
  margin-top: clamp(34px, 4vw, 56px);
}

@media (min-width: 901px) {
  .consultation-column > ul:first-of-type {
    min-height: clamp(360px, 22vw, 430px);
  }

  .consultation-price-card h3 {
    min-height: clamp(84px, 6vw, 118px);
  }

  .consultation-price-card ul {
    min-height: clamp(230px, 15vw, 300px);
  }
}

.consultation-column li,
.consultation-price-card li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.34;
}

.consultation-column li::before,
.consultation-price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.consultation-check-list li::before {
  content: "✓";
  top: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font-weight: 900;
}

.consultation-column .ads-button,
.consultation-price-card .ads-button {
  margin-top: auto;
  align-self: flex-start;
}

.consultation-price-card .ads-button {
  margin-top: clamp(34px, 4vw, 52px);
  align-self: end;
}

.consultation-column .consultation-check-list {
  padding-bottom: clamp(34px, 4vw, 52px);
}

.consultation-price-card ul {
  margin-bottom: clamp(30px, 4vw, 54px);
}

.consultation-price {
  margin: 0;
  color: var(--accent);
  font-size: clamp(34px, 3.4vw, 58px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.consultation-price-note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.25;
}

.ads-case-grid article strong {
  display: block;
  color: var(--accent);
  font-size: clamp(54px, 5.8vw, 92px);
  line-height: 0.92;
}

.ads-case-grid article span {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.05;
  font-weight: 700;
}

.ads-case-list article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ads-case-list {
  display: flex;
  grid-template-columns: none;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 18px;
  scroll-padding-left: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(243, 145, 55, 0.72) rgba(255, 255, 255, 0.08);
}

.ads-case-list::-webkit-scrollbar {
  height: 8px;
}

.ads-case-list::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.ads-case-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--accent);
}

.ads-case-list article {
  flex: 0 0 clamp(300px, 30vw, 390px);
  aspect-ratio: 1 / 1;
  scroll-snap-align: start;
}

.ads-case-list p {
  margin: 0;
  color: #fff;
  font-size: clamp(21px, 1.62vw, 30px);
  line-height: 1.08;
  font-weight: 700;
}

.ads-case-list article strong {
  display: inline;
  color: var(--accent);
  font-size: inherit;
  line-height: inherit;
  font-weight: 900;
}

.ads-case-more {
  margin-top: auto;
  padding: 28px 0 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  font: inherit;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1;
  font-weight: 700;
  text-transform: none;
  cursor: pointer;
}

.ads-case-more::after {
  content: " →";
}

.ads-case-modal[hidden] {
  display: none;
}

.ads-case-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  padding: 18px;
}

.ads-case-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(14px);
}

.ads-case-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: calc(100vh - 36px);
  margin: 0 auto;
  overflow: auto;
  padding: clamp(28px, 4vw, 58px);
  border: 1px solid rgba(243, 145, 55, 0.28);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0, rgba(243, 145, 55, 0.2), transparent 40%),
    #0d0d0d;
  color: #fff;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.55);
}

.ads-case-modal-close {
  position: sticky;
  top: 0;
  float: right;
  display: grid;
  width: 46px;
  height: 46px;
  margin: -10px -10px 8px 18px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.ads-case-modal-kicker {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ads-case-modal-title {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.4vw, 68px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.ads-case-modal-content {
  display: grid;
  gap: clamp(24px, 3vw, 38px);
  margin-top: clamp(34px, 4vw, 54px);
}

.ads-case-modal-section {
  padding-top: clamp(22px, 2.6vw, 34px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ads-case-modal-section h4 {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}

.ads-case-modal-section p,
.ads-case-modal-section li,
.ads-case-modal-note {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(19px, 1.45vw, 25px);
  line-height: 1.34;
  font-weight: 520;
}

.ads-case-modal-section p {
  margin: 0;
}

.ads-case-modal-section ul,
.ads-case-modal-section ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 1.1em;
}

.ads-case-modal-note {
  margin: 0;
  padding: clamp(20px, 2.6vw, 34px);
  border-radius: 24px;
  background: var(--accent);
  color: #050505;
  font-weight: 900;
  text-transform: uppercase;
}

.ads-case-modal-note-spaced {
  margin-top: clamp(24px, 3vw, 42px);
}

.ads-case-modal-note-before-separated {
  margin-bottom: clamp(48px, 6vw, 88px);
}

.ads-case-modal-note-separated {
  margin-top: clamp(64px, 7vw, 110px);
}

.ads-case-modal-creatives {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.ads-case-modal-creatives img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.ads-case-modal-creatives--portrait {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ads-case-modal-creatives--portrait img {
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
}

.ads-case-modal-creatives--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin-inline: auto;
  justify-items: center;
}

.ads-case-modal-results {
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
  padding-top: clamp(22px, 2.6vw, 34px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ads-case-modal-results h4 {
  margin: 0;
  color: var(--accent);
  font-size: clamp(26px, 2.6vw, 44px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.ads-case-modal-roi {
  padding: clamp(22px, 3vw, 38px);
  border-radius: 28px;
  background: var(--accent);
  color: #050505;
}

.ads-case-modal-roi span {
  display: block;
  font-size: clamp(54px, 8vw, 116px);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.ads-case-modal-roi p {
  margin: 14px 0 0;
  font-size: clamp(20px, 1.7vw, 30px);
  line-height: 1.12;
  font-weight: 800;
  text-transform: uppercase;
}

.ads-case-modal-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.ads-case-modal-stats-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ads-case-modal-stats--center-tail {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.ads-case-modal-stats--center-tail div {
  grid-column: span 2;
}

.ads-case-modal-stats--center-tail div:nth-last-child(2) {
  grid-column: 2 / span 2;
}

.ads-case-modal-stats--center-tail div:last-child {
  grid-column: 4 / span 2;
}

.ads-case-modal-stats div {
  min-height: 132px;
  padding: clamp(16px, 2vw, 24px);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ads-case-modal-stats dt {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.16;
  font-weight: 700;
  text-transform: uppercase;
}

.ads-case-modal-stats dd {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 2.2vw, 40px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.ads-case-modal-copy-block {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 2.4vw, 30px);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ads-case-modal-copy-block p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(19px, 1.45vw, 25px);
  line-height: 1.34;
  font-weight: 520;
}

.ads-case-modal-livedune {
  display: grid;
  gap: 14px;
  margin: 0;
}

.ads-case-modal-livedune figcaption {
  color: var(--accent);
  font-size: clamp(20px, 1.7vw, 30px);
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}

.ads-case-modal-livedune img {
  display: block;
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.ads-case-modal-image-centered {
  justify-items: center;
}

.ads-case-modal-image-centered img {
  width: min(50%, 360px);
}

.ads-case-modal-client-review {
  margin-top: clamp(46px, 5.5vw, 84px);
}

.ads-case-modal-client-review img {
  width: 50%;
  max-width: 100%;
  margin-inline: auto;
}

.ads-case-modal-tripwire-proof img {
  width: 67%;
  max-width: 100%;
  margin-inline: auto;
}

.ads-case-modal-creative-single img {
  width: min(620px, 100%);
  margin-inline: auto;
}

.ads-case-modal-account-before-after {
  margin-top: clamp(56px, 6.5vw, 96px);
}

.ads-case-modal-outcome {
  margin-top: clamp(42px, 5vw, 72px);
}

.ads-case-modal-recommendations {
  margin-top: clamp(36px, 4.8vw, 72px);
}

.ads-case-modal-recommendations figcaption {
  max-width: 820px;
  line-height: 1.22;
}

.ads-case-modal-summary {
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
  padding-top: clamp(22px, 2.6vw, 34px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ads-case-modal-summary h4 {
  margin: 0;
  color: var(--accent);
  font-size: clamp(28px, 3vw, 52px);
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.ads-case-modal-summary ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 1.2em;
}

.ads-case-modal-summary li {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(19px, 1.45vw, 25px);
  line-height: 1.34;
  font-weight: 520;
}

.ads-case-modal-summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(19px, 1.45vw, 25px);
  line-height: 1.34;
  font-weight: 520;
}

.ads-case-modal-summary p.ads-case-modal-cta-note {
  padding: clamp(20px, 2.8vw, 36px);
  border-radius: 26px;
  background: var(--accent);
  color: #050505;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.16;
  font-weight: 900;
}

.ads-case-modal-cta {
  justify-self: start;
  min-height: 64px;
  padding: 0 clamp(28px, 4vw, 54px);
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #050505;
  font: inherit;
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 18px 48px rgba(243, 145, 55, 0.26);
}

.ads-review-scroll {
  display: flex;
  grid-template-columns: none;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 18px;
  scroll-padding-left: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(243, 145, 55, 0.72) rgba(255, 255, 255, 0.08);
}

.ads-review-scroll::-webkit-scrollbar {
  height: 8px;
}

.ads-review-scroll::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.ads-review-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--accent);
}

.ads-review-scroll article {
  flex: 0 0 clamp(340px, 38vw, 540px);
  height: clamp(260px, 28vw, 380px);
  display: grid;
  place-items: center;
  padding: 14px;
  overflow: hidden;
  scroll-snap-align: start;
}

.ads-review-scroll img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
}

.target-review-scroll article {
  flex-basis: clamp(380px, 42vw, 580px);
  height: clamp(280px, 30vw, 410px);
  padding: 16px;
  border-color: rgba(243, 145, 55, 0.16);
  background: #fff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

.target-review-scroll img {
  border-radius: 14px;
  object-fit: contain;
}

.consultation-review-scroll article {
  flex-basis: clamp(380px, 42vw, 580px);
  height: clamp(280px, 30vw, 410px);
  padding: 16px;
  border-color: rgba(243, 145, 55, 0.16);
  background: #fff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

.consultation-review-scroll img {
  border-radius: 14px;
  object-fit: contain;
}

.ads-price-plan {
  width: min(100%, 600px);
  margin: 42px auto 0;
  overflow: hidden;
  border-radius: 30px;
  background: #f6f3ed;
  color: #050505;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.ads-price-plan-head {
  padding: clamp(22px, 2.8vw, 32px) clamp(16px, 2.5vw, 28px) 20px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}

.ads-price-plan-head h3 {
  margin: 0;
  color: #050505;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.ads-price-plan-head p {
  margin: 12px 0 0;
  color: #050505;
  font-size: clamp(18px, 1.9vw, 26px);
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}

.ads-price-plan-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(86px, 150px);
  gap: 24px;
  align-items: end;
  padding: clamp(18px, 2.2vw, 28px) clamp(16px, 2.5vw, 28px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}

.ads-price-plan-row p {
  margin: 0;
  color: #050505;
  font-size: clamp(17px, 1.35vw, 23px);
  line-height: 1.18;
  font-weight: 550;
  text-transform: uppercase;
}

.ads-price-plan-row p + p {
  margin-top: 18px;
}

.ads-price-plan-row span {
  color: rgba(5, 5, 5, 0.68);
  font-size: clamp(18px, 1.55vw, 26px);
  line-height: 1;
  font-weight: 550;
  text-align: right;
  text-transform: uppercase;
}

.ads-price-plan-note {
  padding: 24px clamp(18px, 3vw, 34px) 0;
  color: #050505;
  font-size: clamp(20px, 1.7vw, 30px);
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
}

.ads-price-plan-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: clamp(28px, 4vw, 48px) auto clamp(30px, 4vw, 52px);
  background: var(--accent);
}

.ads-faq-list {
  display: grid;
  gap: 14px;
  margin-top: clamp(28px, 4vw, 54px);
}

.ads-faq-item {
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 180ms ease, background 180ms ease;
}

.ads-faq-item.is-open {
  border-color: rgba(243, 145, 55, 0.42);
  background:
    radial-gradient(circle at 100% 0, rgba(243, 145, 55, 0.16), transparent 40%),
    rgba(255, 255, 255, 0.06);
}

.ads-faq-question {
  width: 100%;
  min-height: clamp(82px, 8vw, 116px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: clamp(23px, 2.2vw, 36px);
  line-height: 1.08;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.ads-faq-question i {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(243, 145, 55, 0.2);
  transition: transform 180ms ease;
}

.ads-faq-question i::before,
.ads-faq-question i::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: #111;
  transform: translate(-50%, -50%);
}

.ads-faq-question i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 180ms ease;
}

.ads-faq-item.is-open .ads-faq-question i {
  transform: rotate(180deg);
}

.ads-faq-item.is-open .ads-faq-question i::after {
  opacity: 0;
}

.ads-faq-answer {
  max-width: 980px;
  padding: 0 clamp(22px, 3vw, 34px) clamp(28px, 3.4vw, 44px);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(20px, 1.55vw, 27px);
  line-height: 1.34;
}

.ads-faq-answer p,
.ads-faq-answer ul {
  margin: 0;
}

.ads-faq-answer p + p,
.ads-faq-answer p + ul {
  margin-top: 14px;
}

.ads-faq-answer ul {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.ads-faq-answer li {
  position: relative;
  padding-left: 22px;
}

.ads-faq-answer li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.ads-brief-card,
.ads-cta .ads-shell,
.ads-questions .ads-shell {
  padding: clamp(34px, 5vw, 68px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0, rgba(243, 145, 55, 0.22), transparent 42%),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(243, 145, 55, 0.24);
}

.ads-brief-card p {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.4vw, 58px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.ads-cta h2,
.ads-questions h2 {
  max-width: 1000px;
}

.ads-questions h2 {
  line-height: 1.08;
}

.ads-page .site-footer {
  padding-top: 60px;
}

@media (max-width: 900px) {
  .advice-break-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 78vw);
  }

  .experience-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ads-shell {
    width: min(100% - 36px, 760px);
  }

  .ads-hero-grid,
  .consultation-columns,
  .consultation-price-grid,
  .ads-role-grid,
  .ads-case-grid,
  .ads-trust-grid,
  .ads-review-grid,
  .ads-price-grid {
    grid-template-columns: 1fr;
  }

  .ads-hero {
    min-height: 0;
    padding-top: 110px;
  }

  .ads-hero-card {
    padding: 26px;
  }

  .ads-hero-photo {
    min-height: 380px;
    margin-top: 0;
  }

  .consultation-hero-photo {
    max-width: none;
    margin-top: 52px;
  }

  .ads-steps li {
    grid-template-columns: 56px 1fr;
  }

  .consultation-inline-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 900px) and (min-width: 641px) {
  .consultation-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
    gap: 24px;
    align-items: start;
  }

  .consultation-hero .ads-hero-copy {
    max-width: 100%;
  }

  .consultation-hero .ads-hero-subtitle {
    max-width: 100%;
    font-size: clamp(20px, 2.4vw, 26px);
  }

  .consultation-hero .ads-hero-copy h1 {
    font-size: clamp(42px, 6vw, 62px);
    line-height: 0.98;
  }

  .consultation-hero-photo {
    margin-top: 54px;
  }
}

@media (max-width: 640px) {
  .whatido-action,
  .practice-action .cases-growth-button,
  .cases-total-action .cases-growth-button,
  .advice-break-final .cases-growth-button {
    width: 100%;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .experience-grid article {
    min-height: 150px;
  }

  .consultation-hero-grid {
    grid-template-columns: minmax(0, 1fr) clamp(128px, 34vw, 210px);
    gap: 14px;
    align-items: start;
  }

  .consultation-hero-photo {
    max-width: none;
    margin-top: 50px;
    border-radius: 18px;
  }

  .consultation-hero .ads-hero-copy h1 {
    font-size: clamp(34px, 10vw, 52px);
    line-height: 1;
  }

  .consultation-hero .ads-hero-subtitle {
    max-width: 100%;
    font-size: clamp(18px, 5vw, 23px);
  }

  .home-faq {
    padding-left: 24px;
    padding-right: 24px;
  }

  .home-faq-question {
    grid-template-columns: 1fr 38px;
  }

  .home-faq-question i {
    width: 38px;
    height: 38px;
  }

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

@media (max-width: 560px) {
  .ads-hero-photo {
    min-height: 320px;
    border-radius: 24px;
  }

  .consultation-hero-photo {
    border-radius: 24px;
  }

  .ads-hero-photo img {
    object-position: 56% 50%;
  }

  .ads-button {
    width: 100%;
    padding: 0 18px;
  }

  .ads-role-grid article,
  .consultation-column,
  .consultation-price-card,
  .ads-case-grid article,
  .ads-trust-grid article,
  .ads-review-grid article,
  .ads-price-grid article {
    border-radius: 22px;
  }

  .ads-case-list article {
    flex-basis: min(82vw, 340px);
  }

  .ads-case-list p {
    font-size: 20px;
  }

  .ads-case-more {
    font-size: 20px;
  }

  .ads-case-modal-creatives {
    grid-template-columns: 1fr;
  }

  .ads-case-modal-stats {
    grid-template-columns: 1fr;
  }

  .ads-case-modal-stats--center-tail div,
  .ads-case-modal-stats--center-tail div:nth-last-child(2),
  .ads-case-modal-stats--center-tail div:last-child {
    grid-column: auto;
  }

  .ads-case-modal-stats div {
    min-height: auto;
  }

  .ads-price-plan-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ads-price-plan-row span {
    text-align: left;
  }

  .ads-price-plan-button {
    width: calc(100% - 44px);
  }
}

/* Remove the decorative chevron background pattern site-wide. */
.arrow-field,
.story-hero::after {
  display: none !important;
  background-image: none !important;
}

main#top > .hero .arrow-field {
  display: block !important;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg width='34' height='26' viewBox='0 0 34 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 4 L13 13 L5 22' stroke='%23f39137' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round' opacity='.45'/%3E%3Cpath d='M20 4 L28 13 L20 22' stroke='%23fff' stroke-width='1.3' fill='none' stroke-linecap='round' stroke-linejoin='round' opacity='.12'/%3E%3C/svg%3E") !important;
}

@media (min-width: 981px) {
  main#top > .hero .hero-copy,
  main#top > .hero h1 {
    max-width: 620px;
  }

  main#top > .hero .hero-name {
    margin-bottom: 44px;
  }

  main#top > .hero h1 {
    font-size: clamp(64px, 6.4vw, 116px);
  }

  main#top > .hero .hero-visual {
    position: absolute;
    right: clamp(8px, 2vw, 28px);
    top: 118px;
    width: min(35vw, 500px);
    min-width: 350px;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  main#top > .hero .hero-copy,
  main#top > .hero h1 {
    max-width: 520px;
  }

  main#top > .hero h1 {
    font-size: clamp(54px, 5.6vw, 72px);
  }

  main#top > .hero .hero-visual {
    width: min(32vw, 380px);
    min-width: 300px;
  }
}

@media (max-width: 680px) {
  .marketing-quiz-modal {
    padding: 10px;
  }

  .marketing-quiz-dialog {
    width: min(calc(100vw - 16px), 100%);
    max-height: calc(100vh - 16px);
    padding: 24px 18px 22px;
    border-radius: 22px;
  }

  .marketing-quiz-title {
    font-size: clamp(31px, 8vw, 42px);
  }

  .marketing-quiz-field input {
    min-height: 64px;
    font-size: 18px;
  }

  .marketing-quiz-option {
    min-height: 58px;
    font-size: 17px;
  }

  .marketing-quiz-actions {
    grid-template-columns: 1fr;
  }

  .marketing-quiz-secondary {
    order: 2;
  }

  .marketing-quiz-primary,
  .marketing-quiz-secondary,
  .marketing-quiz-step > .marketing-quiz-primary,
  .marketing-quiz-success > .marketing-quiz-primary {
    width: 100%;
    min-height: 66px;
    justify-self: stretch;
  }
}

/* Main page heading typography: align with "Вы наверняка уже пробовали". */
main#top .materialize-title,
main#top .pain-title,
main#top .pain-stage-title,
main#top .advice-break-head h2,
main#top .advice-break-grid h3,
main#top .advice-break-final p,
main#top .whatido-title,
main#top .practice h2,
main#top .practice-item-copy h3,
main#top .experience-kicker,
main#top .experience-card strong,
main#top .cases-title,
main#top .cases-grid h3,
main#top .cases-total-number,
main#top .cases-growth-copy h3,
main#top .cases-growth-label,
main#top .home-faq-title,
main#top .site-footer-lead-title,
main#top .case-modal-title,
main#top .story-title,
main#top .story-section-title,
main#top .marketing-quiz-title,
main#top .review-modal-title,
main#top .review-modal-success-title {
  font-family: Inter, "Trebuchet MS", Arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.04em;
}

main#top .materialize-title em,
main#top .pain-title strong,
main#top .pain-stage-title strong,
main#top .whatido-title em,
main#top .cases-title em,
main#top .site-footer-lead-title em,
main#top .story-title span {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
}

main#top .experience-strip .cases-eyebrow {
  color: #fff;
  font-family: Inter, "Trebuchet MS", Arial, sans-serif;
  font-size: clamp(38px, 4.8vw, 68px);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: none;
  max-width: 760px;
  margin-bottom: clamp(30px, 4vw, 52px);
}

main#top .pain-eyebrow {
  font-family: Inter, "Trebuchet MS", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
}

/* Responsive QA fixes: keep long hero/story text inside its column on narrow screens. */
.ads-hero h1,
.consultation-hero .ads-hero-copy h1,
.story-title,
.story-section-title,
.story-cta-title {
  overflow-wrap: break-word;
}

@media (max-width: 1180px) {
  .ads-hero h1 {
    font-size: clamp(46px, 6.5vw, 78px);
    line-height: 0.98;
  }

  .consultation-hero .ads-hero-copy h1 {
    font-size: clamp(40px, 5.8vw, 66px);
    line-height: 0.98;
  }
}

@media (max-width: 760px) {
  .header .desktop-nav {
    display: none;
  }

  .case-modal-story {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }

  .case-modal-story .story-hero,
  .case-modal-story .story-section {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
    box-sizing: border-box;
  }

  .case-modal-story .story-title,
  .case-modal-story .story-section-title,
  .case-modal-story .story-cta-title,
  .case-modal-story .story-voice,
  .case-modal-story .story-problem,
  .case-modal-story .story-hero-visual,
  .case-modal-story .story-chip,
  .case-modal-story .story-lead {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .case-modal-story .story-title {
    font-size: clamp(34px, 8vw, 50px);
    line-height: 1;
  }

  .story-footer-cta,
  .story-footer-panel,
  .story-footer-actions,
  .story-footer-action,
  .story-footer-book {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .story-footer-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .story-footer-panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .story-footer-action,
  .story-footer-book {
    justify-content: space-between;
  }

  .story-footer-action span,
  .story-footer-book span {
    min-width: 0;
    overflow-wrap: break-word;
  }

  .ads-hero h1,
  .consultation-hero .ads-hero-copy h1 {
    font-size: clamp(36px, 9vw, 54px);
    line-height: 1;
  }
}

/* Mobile header visibility override */
@media (max-width: 980px) {
  .header {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding: 14px 14px 12px;
    background: linear-gradient(#000 0%, rgba(0, 0, 0, 0.96) 76%, rgba(0, 0, 0, 0.78) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header .logo {
    display: block;
    width: max-content;
    max-width: 100%;
    font-size: clamp(19px, 5vw, 27px);
    line-height: 1;
    text-align: center;
  }

  .header .desktop-nav {
    display: flex !important;
    width: min(100%, 560px);
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 16px;
    font-size: clamp(11px, 3vw, 14px);
    line-height: 1.15;
    text-transform: none;
  }

  .header .desktop-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: normal;
    text-align: center;
  }

  .header .desktop-nav a::before {
    font-size: 7px;
    transform: none;
  }

  .header .header-cta,
  .header .menu-toggle,
  .header .moods {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .header {
    gap: 10px;
    padding-inline: 12px;
  }

  .header .desktop-nav {
    gap: 7px 12px;
    font-size: 11px;
  }
}
