:root {
  --ink: #111112;
  --muted: #4f4e53;
  --paper: #fbfbfa;
  --card: rgba(255, 255, 255, 0.94);
  --line: rgba(17, 17, 18, 0.14);
  --brand-red: #e60000;
  --red: #c91812;
  --red-dark: #a70e09;
  --red-deep: #b7110c;
  --red-soft: #fff0ef;
  --red-soft-strong: #ffd9d6;
  --radius: 20px;
  --shadow: 0 20px 52px rgba(17, 17, 18, 0.085);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-fast: 160ms;
  --motion-ui: 220ms;
  --motion-panel: 360ms;
  --motion-enter: 580ms;
  --wrap: min(1180px, calc(100% - 40px));
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: page-out 140ms ease both;
}

::view-transition-new(root) {
  animation: page-in 380ms var(--ease-out) both;
}

::view-transition-group(root) {
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  interpolate-size: allow-keywords;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  isolation: isolate;
}

body::before {
  display: none;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

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

::selection {
  background: var(--red);
  color: #fff;
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.button-red:focus-visible {
  outline-color: var(--ink);
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 16px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 650;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 300;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left center;
  background: var(--red);
  pointer-events: none;
  will-change: transform;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  padding: 12px 0 0;
  transition: padding var(--motion-ui) var(--ease);
  view-transition-name: site-header;
}

.site-header.is-scrolled {
  padding-top: 7px;
}

.nav-shell {
  position: relative;
  width: var(--wrap);
  margin: 0 auto;
}

.nav-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 62px;
  padding: 8px 10px 8px 12px;
  border: 1px solid rgba(17, 17, 18, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 26px rgba(17, 17, 18, 0.06);
  backdrop-filter: blur(12px) saturate(1.15);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  transition: min-height var(--motion-ui) var(--ease), background-color var(--motion-ui) ease, box-shadow var(--motion-ui) ease;
}

.site-header.is-scrolled .nav-bar {
  min-height: 58px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(17, 17, 18, 0.09);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.035em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.nav-link {
  position: relative;
  padding: 10px 13px;
  border-radius: 999px;
  color: #3f3e42;
  font-size: 14px;
  font-weight: 560;
  transition: color var(--motion-fast) ease;
}

.nav-link::after {
  position: absolute;
  right: 13px;
  bottom: 5px;
  left: 13px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right center;
  background: var(--brand-red);
  content: "";
  transition: transform var(--motion-ui) var(--ease-out);
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--ink);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 680;
  letter-spacing: -0.01em;
  transition: transform var(--motion-ui) var(--ease), background-color var(--motion-fast) ease, box-shadow var(--motion-ui) ease;
}

.nav-cta {
  min-height: 46px;
  padding-inline: 18px;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
  background: #29292b;
  box-shadow: 0 12px 26px rgba(17, 17, 18, 0.16);
}

.nav-cta:active,
.button:active {
  transform: translateY(0) scale(0.985);
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.button-light {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.button-light:hover {
  background: #fff;
}

.button-red {
  background: var(--red);
}

.button-red:hover {
  background: var(--red-dark);
}

.button .arrow,
.text-link .arrow,
.card-link .arrow {
  transition: transform 220ms var(--ease);
}

.button:hover .arrow,
.text-link:hover .arrow,
.card-link:hover .arrow {
  transform: translateX(4px);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 13px;
  background: var(--ink);
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 17px;
  height: 1.5px;
  border-radius: 2px;
  background: #fff;
  content: "";
  transition: transform 220ms var(--ease), opacity 180ms ease;
}

.menu-lines::before {
  transform: translateY(-5px);
}

.menu-lines::after {
  transform: translateY(3.5px);
}

.menu-toggle[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-lines::before {
  transform: translateY(0) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines::after {
  transform: translateY(-1.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.section {
  padding-block: clamp(76px, 9vw, 116px);
}

.section-compact {
  padding-block: clamp(52px, 6.5vw, 80px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  min-height: min(760px, calc(100svh - 74px));
  gap: clamp(42px, 7vw, 86px);
  padding-top: clamp(44px, 5vw, 66px);
  padding-bottom: clamp(52px, 6vw, 78px);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  margin-bottom: 28px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #363539;
  font-size: 12px;
  font-weight: 680;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-dot {
  position: relative;
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
}

.status-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(201, 24, 18, 0.45);
  border-radius: inherit;
  animation: status-pulse 2.6s var(--ease) infinite;
  content: "";
}

.display-title,
.page-title,
.section-title {
  margin-bottom: 0;
  font-weight: 630;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.display-title {
  max-width: 800px;
  font-size: clamp(3.25rem, 6.4vw, 6rem);
  line-height: 0.94;
}

.page-title {
  max-width: 920px;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
}

.section-title {
  max-width: 820px;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 0.98;
}

.muted-title {
  color: var(--ink);
}

.display-title .muted-title,
.page-title .muted-title,
#journey-title .muted-title {
  background: linear-gradient(transparent 72%, var(--red-soft-strong) 72% 93%, transparent 93%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.lede {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  transform: translate3d(0, var(--scroll-y, 0px), 0);
}

.hero-visual::before {
  position: absolute;
  inset: 5% 4% 1% 7%;
  border: 1px solid rgba(230, 0, 0, 0.18);
  border-radius: 24px 24px 96px 24px;
  background: var(--red-soft);
  transform: rotate(-2deg);
  content: "";
}

.signal-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(17, 17, 18, 0.16);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) rotateZ(0.8deg);
  transform-style: preserve-3d;
  transition: transform var(--motion-panel) var(--ease-out), box-shadow 300ms ease;
}

.signal-card.is-tilting {
  transition: transform 100ms linear, box-shadow 300ms ease;
}

.signal-card:hover {
  box-shadow: 0 26px 68px rgba(17, 17, 18, 0.13);
}

.signal-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  transform: scaleY(0);
  transform-origin: top;
  background: var(--brand-red);
  animation: signal-rail-in 800ms 180ms var(--ease-out) forwards;
  content: "";
}

.signal-card::after {
  position: absolute;
  right: -14%;
  bottom: -28%;
  width: 66%;
  aspect-ratio: 1;
  border: 1px solid rgba(230, 0, 0, 0.14);
  border-radius: 50% 0 0 50%;
  background: var(--red-soft);
  transform: translate3d(var(--scroll-x, 0px), 0, 0);
  content: "";
}

.signal-top,
.signal-panels,
.signal-controls,
.signal-card .catalyst-track {
  position: relative;
  z-index: 1;
}

.signal-top {
  order: 0;
}

.signal-panels {
  order: 1;
}

.signal-controls {
  order: 2;
}

.signal-card .catalyst-track {
  order: 3;
}

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

.signal-logo {
  width: 72px;
  height: 72px;
  border-radius: 7px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(201, 24, 18, 0.18);
}

.live-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.signal-panels {
  display: flex;
  align-items: center;
  min-height: 240px;
  flex: 1;
  margin: 0;
  padding-block: 28px;
}

.signal-panel {
  width: 100%;
}

.signal-step,
.stage-kicker,
.need-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-panel p {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 650;
  letter-spacing: -0.052em;
  line-height: 1.02;
  text-wrap: balance;
}

.signal-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.signal-controls button {
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 720;
  transition: border-color var(--motion-ui) ease, background-color var(--motion-ui) ease, color var(--motion-ui) ease, transform var(--motion-ui) var(--ease-out);
}

.signal-controls button:hover {
  border-color: rgba(17, 17, 18, 0.28);
  color: var(--ink);
}

.signal-controls button[aria-selected="true"] {
  border-color: var(--red);
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.catalyst-track {
  position: relative;
  height: 14px;
  margin: 0 6px;
}

.catalyst-track::before,
.catalyst-track-fill {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 2px;
  transform: translateY(-50%);
  background: rgba(17, 17, 18, 0.16);
  content: "";
}

.catalyst-track-fill {
  transform: translateY(-50%) scaleX(var(--tab-progress, 0));
  transform-origin: left center;
  background: var(--brand-red);
  transition: transform var(--motion-panel) var(--ease-out);
}

.catalyst-track-marker {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: calc(var(--tab-position, 0) * 100%);
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  border: 3px solid #fff;
  border-radius: 3px;
  background: var(--brand-red);
  box-shadow: 0 0 0 1px var(--brand-red);
  transition: left var(--motion-panel) var(--ease-out), transform var(--motion-ui) var(--ease-out);
}

[data-tabs]:has([role="tab"]:focus-visible) .catalyst-track-marker {
  transform: translate(-50%, -50%) rotate(45deg) scale(1.12);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-fact {
  min-width: 0;
  padding: 30px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.quick-fact:first-child {
  padding-left: 0;
}

.quick-fact:last-child {
  padding-right: 0;
  border-right: 0;
}

.quick-fact dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-fact dd {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 650;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  align-items: end;
  gap: 36px;
  margin-bottom: 42px;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-label::before {
  width: 24px;
  height: 2px;
  background: currentColor;
  content: "";
}

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

.journey-card,
.offer-card,
.metric-card,
.soft-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 10px 30px rgba(17, 17, 18, 0.04);
  transition: transform 300ms var(--ease-out), border-color var(--motion-ui) ease, box-shadow 300ms ease;
}

.journey-card:hover,
.offer-card:hover,
.metric-card:hover,
.soft-card:hover {
  border-color: rgba(17, 17, 18, 0.23);
  box-shadow: 0 18px 50px rgba(17, 17, 18, 0.085);
  transform: translateY(-3px);
}

.journey-card {
  min-height: 282px;
  padding: clamp(26px, 3vw, 38px);
}

.journey-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 54px;
  height: 3px;
  background: var(--red);
  content: "";
  transition: width 420ms var(--ease-out);
}

.journey-card:hover::before {
  width: 100%;
}

.card-number {
  color: var(--red);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.journey-card h3,
.offer-card h2,
.offer-card h3,
.metric-card h2,
.metric-card h3,
.soft-card h2,
.soft-card h3 {
  margin: 56px 0 14px;
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  font-weight: 630;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.journey-card p,
.offer-card p,
.metric-card p,
.soft-card p {
  position: relative;
  z-index: 1;
  max-width: 32rem;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 680;
}

.proof-path {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.proof-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #f5f5f3;
}

.proof-tab {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1px 14px;
  min-height: 112px;
  padding: 24px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: background-color var(--motion-ui) ease, transform var(--motion-ui) var(--ease-out);
}

.proof-tab:last-child {
  border-right: 0;
}

.proof-tab::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--brand-red);
  content: "";
  transition: transform var(--motion-panel) var(--ease-out);
}

.proof-tab:hover {
  background: rgba(255, 255, 255, 0.7);
}

.proof-tab[aria-selected="true"] {
  background: #fff;
}

.proof-tab[aria-selected="true"]::before {
  transform: scaleX(1);
}

.proof-tab > span {
  grid-row: 1 / 3;
  color: var(--red);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.proof-tab strong {
  font-size: 18px;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.proof-tab small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.catalyst-track-wide {
  margin: 16px 30px 0;
}

.proof-panels {
  min-height: 330px;
}

.proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  min-height: 330px;
}

.proof-statement {
  align-self: center;
  padding: clamp(32px, 5vw, 58px);
}

.proof-statement h3 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2.35rem, 4.7vw, 4.6rem);
  font-weight: 640;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.proof-statement p {
  max-width: 31rem;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.proof-details {
  display: grid;
  align-content: center;
  gap: 0;
  margin: 18px 18px 18px 0;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
}

.proof-details > div {
  padding-block: 23px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.proof-details > div:last-child {
  border-bottom: 0;
}

.proof-details dt {
  margin-bottom: 7px;
  color: #ff827e;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.proof-details dd {
  max-width: 31rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.55;
}

.demo-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  min-height: 520px;
  overflow: hidden;
  padding: clamp(34px, 6vw, 76px);
  border-radius: 24px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 28px 70px rgba(17, 17, 18, 0.18);
}

.demo-card::before {
  position: absolute;
  top: -32%;
  bottom: -32%;
  left: -28%;
  width: 42%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(230, 0, 0, 0.44), rgba(230, 0, 0, 0) 70%);
  opacity: 0.7;
  will-change: transform;
  content: "";
}

.demo-card:has(.demo-stage.is-in-view)::before {
  animation: demo-spotlight 10s ease-in-out infinite;
}

.demo-copy {
  position: relative;
  z-index: 2;
}

.demo-copy .section-label {
  color: #ff716c;
}

.demo-copy h2 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  font-weight: 620;
  letter-spacing: -0.052em;
  line-height: 0.94;
}

.demo-copy p {
  max-width: 580px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.65;
}

.demo-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.demo-facts span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 620;
}

.demo-copy .button {
  margin-top: 36px;
  background: #fff;
  color: var(--ink);
}

.demo-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr) auto;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(430px, 100%);
  min-height: 330px;
  margin-left: auto;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  transform: translate3d(0, var(--scroll-y, 0px), 0);
}

.demo-stage-start,
.demo-stage-end {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.demo-stage-start strong,
.demo-stage-end strong {
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.demo-stage-start span,
.demo-stage-end span {
  max-width: 7rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-stage-end {
  align-items: flex-end;
  text-align: right;
}

.demo-stage-end strong {
  color: #ff7772;
}

.week-rail {
  position: relative;
  height: 34px;
  overflow: hidden;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0 3px, transparent 3px calc(100% / 15));
}

.week-rail::before,
.week-rail > span {
  position: absolute;
  top: 16px;
  right: 0;
  left: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
  content: "";
}

.week-rail > span {
  transform: scaleX(0);
  transform-origin: left;
  background: var(--brand-red);
}

.demo-stage.is-in-view .week-rail > span {
  animation: week-rail-in 1100ms 180ms var(--ease-out) forwards;
}

.demo-stage-mark {
  grid-column: 1 / -1;
  justify-self: center;
  width: 88px;
  height: 88px;
  padding: 8px;
  transform: translateY(14px) scale(0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  opacity: 0;
}

.demo-stage.is-in-view .demo-stage-mark {
  animation: demo-mark-in 700ms 760ms var(--ease-out) forwards;
}

.demo-stage-mark img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.contact-section {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(50px, 9vw, 120px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-copy .section-title {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.contact-copy > p:last-child {
  max-width: 460px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.contact-form {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.form-legend {
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 680;
}

.mode-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.mode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mode-card {
  position: relative;
  display: block;
  min-height: 98px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  cursor: pointer;
  transition: background-color 200ms ease, border-color 200ms ease, transform 200ms var(--ease);
}

.mode-card:hover {
  transform: translateY(-2px);
}

.mode-card:has(input:checked) {
  border-color: var(--red);
  background: rgba(201, 24, 18, 0.055);
}

.mode-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mode-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.mode-copy {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.identity-shell {
  max-height: 110px;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition: max-height var(--motion-panel) var(--ease-out), opacity 220ms ease, transform var(--motion-panel) var(--ease-out), margin-bottom var(--motion-panel) var(--ease-out);
}

.identity-shell.is-collapsed {
  max-height: 0;
  margin-bottom: -16px;
  opacity: 0;
  transform: translateY(-8px);
}

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

.field-full {
  grid-column: 1 / -1;
}

.field-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 660;
}

.field {
  width: 100%;
  min-height: 51px;
  padding: 13px 14px;
  border: 1px solid rgba(17, 17, 18, 0.15);
  border-radius: 14px;
  outline: 0;
  background: #fbfbf9;
  color: var(--ink);
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

textarea.field {
  min-height: 148px;
  resize: vertical;
}

.field::placeholder {
  color: #727176;
}

.field:hover {
  border-color: rgba(17, 17, 18, 0.28);
}

.field:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 24, 18, 0.1);
}

.anonymous-note {
  margin: 16px 0 0;
  padding: 14px 15px;
  border-radius: 14px;
  background: var(--red-soft);
  color: #4f3331;
  font-size: 13px;
  line-height: 1.55;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status[data-state="success"] {
  color: #176a3a;
}

.form-status[data-state="error"] {
  color: #a00d09;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.site-footer {
  padding-block: 32px;
  border-top: 1px solid var(--line);
  background: rgba(246, 245, 243, 0.9);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 700;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  border-radius: 5px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px 20px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links a {
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--ink);
}

.subpage-hero {
  padding-top: clamp(84px, 10vw, 132px);
  padding-bottom: clamp(58px, 7vw, 88px);
}

.subpage-hero .lede {
  max-width: 650px;
}

.subpage-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}

.meta-pill {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #3e3d41;
  font-size: 13px;
  font-weight: 630;
}

.outcome-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 44px rgba(17, 17, 18, 0.05);
}

.outcome-strip::before,
.outcome-strip::after {
  position: absolute;
  z-index: 3;
  top: clamp(38px, calc(3.5vw + 14px), 50px);
  right: 11%;
  left: 11%;
  height: 2px;
  background: rgba(17, 17, 18, 0.14);
  content: "";
}

.outcome-strip::after {
  transform: scaleX(0);
  transform-origin: left;
  background: var(--brand-red);
}

.outcome-strip.is-visible::after {
  transform: scaleX(1);
  transition: transform 900ms 180ms var(--ease-out);
}

.outcome {
  position: relative;
  min-width: 0;
  padding: clamp(24px, 3.5vw, 36px);
  border-right: 1px solid var(--line);
  background: #fff;
}

.outcome:last-child {
  border-right: 0;
}

.outcome-number {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 34px;
  border: 2px solid #fff;
  border-radius: 5px;
  background: var(--ink);
  box-shadow: 0 0 0 1px rgba(17, 17, 18, 0.28);
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 760;
  transition: background-color var(--motion-ui) ease, transform var(--motion-ui) var(--ease-out);
}

.outcome:hover .outcome-number {
  background: var(--brand-red);
  transform: rotate(4deg) translateY(-2px);
}

.outcome strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  letter-spacing: -0.04em;
}

.outcome span {
  color: var(--muted);
  font-size: 14px;
}

.rhythm-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.rhythm-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(132px, 1fr));
  gap: 0;
  overflow-x: auto;
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: #f5f5f3;
  scrollbar-width: none;
}

.rhythm-tabs::-webkit-scrollbar {
  display: none;
}

.rhythm-tab {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 78px;
  padding: 17px 18px 15px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  transition: color var(--motion-fast) ease, background-color var(--motion-fast) ease, transform var(--motion-ui) var(--ease-out);
}

.rhythm-tab:last-child {
  border-right: 0;
}

.rhythm-tab::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--brand-red);
  content: "";
  transition: transform var(--motion-panel) var(--ease-out);
}

.rhythm-tab span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 720;
}

.rhythm-tab small {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rhythm-tab:hover {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.rhythm-tab[aria-selected="true"] {
  background: #fff;
  color: var(--red-deep);
}

.rhythm-tab[aria-selected="true"]::before {
  transform: scaleX(1);
}

.rhythm-track {
  margin: 16px 30px 0;
}

.rhythm-panel {
  display: grid;
  grid-template-columns: minmax(210px, 0.42fr) minmax(0, 0.58fr);
  min-height: 340px;
}

.rhythm-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 300px;
  background: var(--red-soft);
}

.rhythm-visual::before,
.rhythm-visual::after {
  position: absolute;
  border: 1px solid rgba(17, 17, 18, 0.12);
  border-radius: 50%;
  content: "";
  transition: transform var(--motion-panel) var(--ease-out), border-color var(--motion-panel) ease;
}

.rhythm-visual::before {
  width: 280px;
  height: 280px;
}

.rhythm-visual::after {
  width: 180px;
  height: 180px;
}

.rhythm-shell.is-in-view .rhythm-panel:not([hidden]) .rhythm-visual::before {
  animation: rhythm-ring 7s ease-in-out infinite;
}

.rhythm-shell.is-in-view .rhythm-panel:not([hidden]) .rhythm-visual::after {
  animation: rhythm-ring 7s 900ms ease-in-out infinite reverse;
}

.rhythm-number {
  position: relative;
  z-index: 1;
  font-size: clamp(5rem, 11vw, 9rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
  color: var(--red-deep);
}

.rhythm-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vw, 72px);
}

.rhythm-content h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 630;
  letter-spacing: -0.055em;
  line-height: 1;
}

.rhythm-content p {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.rhythm-kicker {
  margin-bottom: 14px !important;
  color: var(--red) !important;
  font-size: 12px !important;
  font-weight: 740;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rhythm-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, 520px);
  margin-top: 30px;
  padding: 15px 17px;
  border-left: 4px solid var(--brand-red);
  background: var(--ink);
  color: #fff;
}

.rhythm-result span {
  color: #ff8b87;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rhythm-result strong {
  font-size: 14px;
  text-align: right;
}

.rhythm-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px 18px 26px;
  border-top: 1px solid var(--line);
  background: #f5f5f3;
}

.rhythm-footer p {
  margin: 0;
  color: #353438;
  font-size: 14px;
  font-weight: 640;
}

.rhythm-navigation {
  display: flex;
  align-items: center;
  gap: 9px;
}

.rhythm-navigation button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 17px;
  transition: border-color var(--motion-ui) ease, background-color var(--motion-ui) ease, color var(--motion-ui) ease, transform var(--motion-ui) var(--ease-out);
}

.rhythm-navigation button:hover:not(:disabled) {
  border-color: var(--ink);
  transform: translateX(2px);
}

.rhythm-navigation button:first-child:hover:not(:disabled) {
  transform: translateX(-2px);
}

.rhythm-navigation button:disabled {
  opacity: 0.35;
  cursor: default;
}

.rhythm-navigation span {
  min-width: 78px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.monthly-grid,
.contract-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.soft-card {
  min-height: 240px;
  padding: clamp(28px, 4vw, 44px);
}

.soft-card h2,
.soft-card h3 {
  margin-top: 42px;
}

.soft-card-dark {
  background: var(--ink);
  color: #fff;
}

.soft-card-dark p {
  color: rgba(255, 255, 255, 0.86);
}

.soft-card-dark .card-number {
  color: #ff7772;
}

.soft-card-red {
  border-color: var(--red-deep);
  background: var(--red-deep);
  color: #fff;
}

.soft-card-red .card-number,
.soft-card-red p {
  color: #fff;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.offer-card {
  grid-column: span 3;
  min-height: 270px;
  padding: clamp(27px, 4vw, 42px);
}

.offer-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: var(--red-soft);
  color: var(--red-deep);
  font-size: 19px;
  font-weight: 740;
}

.offer-card h2,
.offer-card h3 {
  margin-top: 46px;
}

.contract-grid .soft-card {
  min-height: 290px;
}

.plain-list {
  display: grid;
  gap: 14px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
}

.plain-list li::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.soft-card-dark .plain-list li {
  color: rgba(255, 255, 255, 0.9);
}

.soft-card-red .plain-list li,
.soft-card-red .card-number {
  color: #fff;
}

.soft-card-red .plain-list li::before {
  background: #fff;
}

.offer-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  align-items: end;
  gap: 30px 44px;
  margin-bottom: 38px;
}

.offer-question .section-label {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.offer-question .section-copy {
  align-self: end;
  padding-bottom: 5px;
}

.need-explorer {
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.need-tabs {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  background: #f5f5f3;
}

.need-tab {
  position: relative;
  display: grid;
  grid-template-columns: 26px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  gap: 5px 13px;
  min-height: 108px;
  padding: 20px 22px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: background-color var(--motion-ui) ease, color var(--motion-ui) ease, transform var(--motion-ui) var(--ease-out);
}

.need-tab:last-child {
  border-bottom: 0;
}

.need-tab::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  transform: scaleY(0);
  transform-origin: top;
  background: var(--brand-red);
  content: "";
  transition: transform var(--motion-panel) var(--ease-out);
}

.need-tab > span {
  grid-row: 1 / 3;
  color: var(--red);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.need-tab strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.need-tab small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 680;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.need-tab:hover {
  background: rgba(255, 255, 255, 0.75);
}

.need-tab[aria-selected="true"] {
  background: var(--ink);
  color: #fff;
}

.need-tab[aria-selected="true"]::before {
  transform: scaleY(1);
}

.need-tab[aria-selected="true"] > span,
.need-tab[aria-selected="true"] small {
  color: #ff8b87;
}

.need-answer {
  display: flex;
  min-width: 0;
  min-height: 500px;
  flex-direction: column;
  padding: clamp(28px, 4.5vw, 54px);
}

.need-track {
  margin: 0 6px 34px;
}

.need-panel {
  flex: 1;
}

.need-panel h3 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.25rem, 4.6vw, 4.4rem);
  font-weight: 640;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.need-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 40px;
}

.need-detail-grid > div {
  min-height: 136px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfbfa;
}

.need-detail-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.need-detail-grid p {
  margin: 0;
  color: #454449;
  font-size: 14px;
  line-height: 1.55;
}

.need-detail-grid .need-result {
  grid-column: 1 / -1;
  min-height: 0;
  border-color: var(--ink);
  border-left: 5px solid var(--brand-red);
  background: var(--ink);
  color: #fff;
}

.need-result span {
  color: #ff8b87;
}

.need-result p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 610;
}

.offer-honesty {
  margin: 28px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--brand-red);
  background: var(--red-soft);
  color: #453231;
  font-size: 13px;
  line-height: 1.55;
}

.next-page {
  border-top: 1px solid var(--line);
}

.next-link {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-block: clamp(54px, 7vw, 82px);
}

.next-link small {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.next-link strong {
  display: block;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 620;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.next-arrow {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(72px, 9vw, 112px);
  height: clamp(72px, 9vw, 112px);
  flex: 0 0 auto;
  border-radius: 16px;
  background: var(--red);
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  transition: transform 300ms var(--ease), background-color 180ms ease;
}

.next-arrow::before {
  position: absolute;
  right: calc(100% + 12px);
  width: 0;
  height: 2px;
  background: var(--brand-red);
  content: "";
  transition: width 360ms var(--ease-out);
}

.next-link:hover .next-arrow {
  background: var(--red-dark);
  transform: translateX(8px) rotate(-3deg);
}

.next-link:hover .next-arrow::before {
  width: clamp(24px, 5vw, 56px);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(60px, 10vw, 140px);
}

.faq-intro {
  position: sticky;
  top: 128px;
}

.faq-intro .page-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
}

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

.faq-item {
  position: relative;
  padding-left: 18px;
  border-bottom: 1px solid var(--line);
}

.faq-item::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 4px;
  transform: scaleY(0);
  transform-origin: top;
  border-radius: 2px;
  background: var(--brand-red);
  content: "";
  transition: transform var(--motion-panel) var(--ease-out);
}

.faq-item[open]::before {
  transform: scaleY(1);
}

.faq-item summary {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 42px;
  align-items: center;
  gap: 18px;
  min-height: 86px;
  padding: 20px 0;
  cursor: pointer;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  list-style: none;
  transition: color var(--motion-fast) ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 9px;
  content: "+";
  font-size: 20px;
  font-weight: 400;
  transition: transform 280ms var(--ease), background-color 180ms ease, color 180ms ease;
}

.faq-item[open] summary::after {
  background: var(--red);
  color: #fff;
  content: "−";
  transform: rotate(180deg);
}

.faq-item[open] summary {
  color: var(--red-dark);
}

.faq-answer {
  max-width: 650px;
  padding: 0 58px 28px 0;
  color: var(--muted);
  line-height: 1.68;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 260ms ease, transform 340ms var(--ease-out);
}

.faq-item[open] .faq-answer {
  opacity: 1;
  transform: none;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

@supports selector(::details-content) {
  .faq-item::details-content {
    height: 0;
    overflow: clip;
    transition: height 340ms var(--ease), content-visibility 340ms allow-discrete;
  }

  .faq-item[open]::details-content {
    height: auto;
  }
}

.faq-contact {
  margin-top: 48px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--red-soft);
}

.faq-contact p {
  margin-bottom: 18px;
  color: #4f3331;
}

.legal-wrap {
  max-width: 780px;
}

.legal-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 18px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.legal-grid {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 10px 28px;
  margin: 0;
}

.legal-grid dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-grid dd {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 680;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--motion-enter) var(--ease-out), transform var(--motion-enter) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready [data-reveal="scale"] {
  transform: translateY(12px) scale(0.985);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.reveal-ready [data-reveal] .section-label::before {
  transform: scaleX(0);
  transform-origin: left;
}

.reveal-ready [data-reveal].is-visible .section-label::before {
  transform: scaleX(1);
  transition: transform 520ms 160ms var(--ease-out);
}

[data-reveal-delay="1"] {
  --reveal-delay: 60ms;
}

[data-reveal-delay="2"] {
  --reveal-delay: 120ms;
}

[data-reveal-delay="3"] {
  --reveal-delay: 180ms;
}

@keyframes status-pulse {
  from {
    opacity: 0.8;
    transform: scale(0.55);
  }
  to {
    opacity: 0;
    transform: scale(2.2);
  }
}

@keyframes signal-rail-in {
  to {
    transform: scaleY(1);
  }
}

@keyframes week-rail-in {
  to {
    transform: scaleX(1);
  }
}

@keyframes demo-mark-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes demo-spotlight {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(290%);
  }
}

@keyframes rhythm-ring {
  0%,
  100% {
    transform: scale(0.96);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes intro-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
}

@keyframes visual-in {
  from {
    opacity: 0;
    filter: blur(5px);
  }
}

@keyframes page-out {
  to {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes page-in {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > *,
  .subpage-hero > *,
  .faq-intro > * {
    animation: intro-up 620ms var(--ease-out) both;
  }

  .hero-copy > :nth-child(2),
  .subpage-hero > :nth-child(2),
  .faq-intro > :nth-child(2) {
    animation-delay: 70ms;
  }

  .hero-copy > :nth-child(3),
  .subpage-hero > :nth-child(3),
  .faq-intro > :nth-child(3) {
    animation-delay: 140ms;
  }

  .hero-copy > :nth-child(4),
  .subpage-hero > :nth-child(4),
  .faq-intro > :nth-child(4) {
    animation-delay: 210ms;
  }

  .hero-visual {
    animation: visual-in 720ms 180ms var(--ease-out) both;
  }
}

@media (max-width: 980px) {
  :root {
    --wrap: min(100% - 32px, 760px);
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .nav-bar {
    grid-template-columns: 1fr auto;
  }

  .js .menu-toggle {
    display: grid;
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    left: 0;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(250, 249, 246, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transform-origin: top;
    visibility: visible;
  }

  .js .mobile-nav {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    visibility: hidden;
    transition: opacity 220ms ease, transform 320ms var(--ease), visibility 0s 320ms;
  }

  .js .mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
    transition-delay: 0s;
  }

  .mobile-nav a {
    position: relative;
    padding: 13px 15px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 630;
  }

  .mobile-nav a[aria-current="page"]::before {
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 4px;
    width: 3px;
    border-radius: 2px;
    background: var(--brand-red);
    content: "";
  }

  .mobile-nav a:hover,
  .mobile-nav a[aria-current="page"] {
    background: rgba(17, 17, 18, 0.06);
  }

  .mobile-nav .mobile-contact {
    margin-top: 4px;
    background: var(--ink);
    color: #fff;
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 100px;
  }

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

  .hero-visual {
    width: min(100%, 620px);
    min-height: 480px;
    margin-inline: auto;
  }

  .section-head {
    grid-template-columns: 1fr;
  }

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

  .proof-details {
    margin: 0 18px 18px;
  }

  .journey-grid {
    grid-template-columns: 1fr;
  }

  .journey-card {
    min-height: 260px;
  }

  .journey-card h3 {
    margin-top: 46px;
  }

  .demo-card {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .demo-stage {
    margin: 0 auto;
  }

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

  .contact-copy,
  .faq-intro {
    position: static;
  }

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

  .offer-question .section-copy {
    max-width: 500px;
  }

  .need-explorer {
    grid-template-columns: 1fr;
  }

  .need-tabs {
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    grid-template-rows: auto;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .need-tabs::-webkit-scrollbar {
    display: none;
  }

  .need-tab {
    min-height: 106px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .need-tab:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .need-tab::before {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
  }

  .need-tab[aria-selected="true"]::before {
    transform: scaleX(1);
  }

  .need-answer {
    min-height: 0;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --wrap: min(100% - 24px, 620px);
    --radius: 18px;
  }

  .site-header {
    padding-top: 8px;
  }

  .nav-bar {
    min-height: 58px;
    padding: 6px 7px 6px 10px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .display-title,
  .page-title,
  .section-title {
    letter-spacing: -0.045em;
  }

  .display-title {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .hero {
    gap: 50px;
    padding-top: 72px;
  }

  .hero-visual {
    min-height: 410px;
  }

  .signal-card {
    padding: 24px;
    border-radius: 18px;
  }

  .signal-logo {
    width: 58px;
    height: 58px;
    border-radius: 6px;
  }

  .signal-panels {
    min-height: 215px;
  }

  .signal-panel p {
    font-size: clamp(1.8rem, 9vw, 3rem);
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .quick-fact,
  .quick-fact:first-child,
  .quick-fact:nth-child(3) {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-fact:last-child {
    border-bottom: 0;
  }

  .demo-card {
    min-height: auto;
    padding: 34px 24px 42px;
    border-radius: 22px;
  }

  .demo-stage {
    gap: 14px;
    min-height: 270px;
    padding: 24px 18px;
  }

  .demo-stage-start strong,
  .demo-stage-end strong {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .mode-grid,
  .form-grid,
  .monthly-grid,
  .contract-grid,
  .outcome-strip {
    grid-template-columns: 1fr;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .button {
    width: 100%;
  }

  .outcome {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 4px 17px;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .outcome:last-child {
    border-bottom: 0;
  }

  .outcome-strip::before,
  .outcome-strip::after {
    top: 37px;
    right: auto;
    bottom: 37px;
    left: 37px;
    width: 2px;
    height: auto;
  }

  .outcome-strip::after {
    transform: scaleY(0);
    transform-origin: top;
  }

  .outcome-strip.is-visible::after {
    transform: scaleY(1);
  }

  .outcome-number {
    grid-row: 1 / 3;
    margin-bottom: 0;
  }

  .outcome strong,
  .outcome > span:last-child {
    grid-column: 2;
  }

  .proof-tabs {
    grid-template-columns: repeat(3, minmax(190px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .proof-tabs::-webkit-scrollbar {
    display: none;
  }

  .proof-tab {
    min-height: 104px;
    scroll-snap-align: start;
  }

  .proof-statement {
    padding: 34px 24px;
  }

  .proof-details {
    margin: 0 12px 12px;
    padding: 22px;
  }

  .catalyst-track-wide,
  .rhythm-track {
    margin-inline: 20px;
  }

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

  .rhythm-visual {
    min-height: 250px;
  }

  .rhythm-tabs {
    grid-template-columns: repeat(5, minmax(128px, 1fr));
    scroll-snap-type: x proximity;
  }

  .rhythm-tab {
    min-height: 74px;
    scroll-snap-align: center;
  }

  .rhythm-content {
    padding: 32px 24px;
  }

  .rhythm-result {
    align-items: flex-start;
    flex-direction: column;
  }

  .rhythm-result strong {
    text-align: left;
  }

  .rhythm-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .rhythm-navigation {
    width: 100%;
    justify-content: space-between;
  }

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

  .offer-card {
    grid-column: auto;
    min-height: 250px;
  }

  .need-tabs {
    grid-template-columns: repeat(2, minmax(146px, 1fr));
    overflow: visible;
  }

  .need-tab,
  .need-tab:last-child {
    min-height: 108px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .need-tab:nth-child(even) {
    border-right: 0;
  }

  .need-answer {
    padding: 26px 20px 22px;
  }

  .need-panel h3 {
    font-size: clamp(2.15rem, 11vw, 3.25rem);
  }

  .need-detail-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .need-detail-grid .need-result {
    grid-column: auto;
  }

  .identity-shell {
    max-height: 190px;
  }

  .identity-shell.is-collapsed {
    max-height: 0;
  }

  .identity-grid {
    grid-template-columns: 1fr;
  }

  .next-link {
    align-items: center;
  }

  .next-arrow {
    width: 64px;
    height: 64px;
    border-radius: 13px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-visual {
    transform: none;
  }

  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none !important;
  }

  ::view-transition-group(site-header),
  ::view-transition-old(site-header),
  ::view-transition-new(site-header) {
    animation: none !important;
  }

  .signal-card::before,
  .outcome-strip::after,
  .week-rail > span {
    transform: scale(1);
  }

  .demo-stage-mark {
    opacity: 1;
    transform: none;
  }

  .rhythm-visual::before,
  .rhythm-visual::after {
    animation: none !important;
  }
}
