@font-face {
  font-family: "Source Han Sans Xuexi";
  src: url("assets/fonts/SourceHanSansSC-Xuexi-Regular.woff2") format("woff2");
  font-weight: 300 599;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Han Sans Xuexi";
  src: url("assets/fonts/SourceHanSansSC-Xuexi-Bold.woff2") format("woff2");
  font-weight: 600 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #fafbf8;
  --surface: #f0f2ed;
  --surface-strong: #e7ebe3;
  --ink: #080d1e;
  --ink-soft: #38414c;
  --muted: #6b746f;
  --line: rgba(8, 13, 30, 0.13);
  --green: #6b8e6b;
  --green-deep: #365f47;
  --green-soft: #dfe9dc;
  --orange: #f28a2b;
  --orange-soft: #fff0df;
  --red: #df4b3f;
  --red-soft: #fee9e5;
  --white: #ffffff;
  --font: "Source Han Sans Xuexi", "HarmonyOS Sans SC", "MiSans", "PingFang SC", "Microsoft YaHei UI", sans-serif;
  --mono: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  --shell: min(1180px, calc(100vw - 48px));
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.modal-open,
body.success-open {
  overflow: hidden;
}

button,
input,
a {
  font: inherit;
}

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

button {
  border: 0;
}

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

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

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

.section {
  padding-block: clamp(84px, 10vw, 144px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 12px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  padding-block: clamp(48px, 7vw, 92px);
  background: var(--bg);
  isolation: isolate;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 83% 18%, rgba(242, 138, 43, 0.15), transparent 26%),
    radial-gradient(circle at 73% 72%, rgba(107, 142, 107, 0.17), transparent 32%),
    linear-gradient(112deg, transparent 0 61%, rgba(223, 75, 63, 0.045) 61% 100%);
}

.hero-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(8, 13, 30, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 13, 30, 0.11) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent 0 43%, #000 68%, transparent 100%);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(430px, 0.8fr);
  gap: clamp(48px, 4.2vw, 64px);
  align-items: center;
}

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

.brand-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 740;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 12px 12px 12px 4px;
  font-size: 19px;
  font-weight: 860;
  box-shadow: 0 12px 28px rgba(54, 95, 71, 0.16);
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 760;
  line-height: 1.13;
  letter-spacing: -0.055em;
}

.hero h1 strong {
  color: var(--red);
  font-weight: 840;
}

.hero-lead {
  max-width: 600px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: 14px;
  font-weight: 780;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button-primary {
  min-width: 150px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 16px 34px rgba(8, 13, 30, 0.16);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #182131;
  box-shadow: 0 18px 38px rgba(8, 13, 30, 0.21);
}

.button-accent {
  width: 100%;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 30px rgba(223, 75, 63, 0.2);
}

.button-accent:hover,
.button-accent:focus-visible {
  background: #c83e34;
  box-shadow: 0 17px 36px rgba(223, 75, 63, 0.27);
}

.hero-price {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 3px 10px;
}

.hero-price del {
  color: #919994;
  font-size: 12px;
}

.hero-price strong {
  color: var(--red);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.hero-price span {
  grid-column: 1 / 3;
  color: var(--muted);
  font-size: 11px;
}

.hero-purchase-meta {
  display: grid;
  gap: 8px;
}

.offer-countdown {
  width: max-content;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 7px 10px;
  color: #88433d;
  background: rgba(223, 75, 63, 0.08);
  border: 1px solid rgba(223, 75, 63, 0.2);
  border-radius: 10px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.offer-countdown span {
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0;
}

.offer-countdown strong {
  color: var(--red);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.channel-map {
  position: relative;
  min-height: 590px;
  display: flex;
  flex-direction: column;
  padding: 44px 38px 30px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(8, 13, 30, 0.11);
  border-radius: 24px;
  box-shadow: 0 34px 80px rgba(54, 95, 71, 0.11);
  overflow: hidden;
}

.channel-map::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  left: -190px;
  top: -180px;
  border: 62px solid rgba(107, 142, 107, 0.08);
  border-radius: 50%;
}

.channel-map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.21;
  background-image:
    linear-gradient(rgba(8, 13, 30, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 13, 30, 0.1) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, #000, transparent 78%);
}

.channel-intro,
.channel-routes,
.channel-caption {
  position: relative;
  z-index: 2;
}

.channel-intro {
  max-width: 360px;
}

.channel-intro p {
  margin: 0;
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.06em;
}

.channel-intro > strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(25px, 2.3vw, 32px);
  font-weight: 790;
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.channel-intro > small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.channel-routes {
  display: grid;
  gap: 13px;
  margin-top: 28px;
}

.channel-route {
  min-height: 94px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 15px 17px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-left-width: 5px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(8, 13, 30, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.channel-route:hover {
  transform: translateX(4px);
  box-shadow: 0 16px 34px rgba(8, 13, 30, 0.09);
}

.channel-route-fast {
  border-left: 5px solid var(--orange);
}

.channel-route-deep {
  border-left: 5px solid var(--green);
}

.channel-route-business {
  border-left: 5px solid var(--red);
}

.channel-time {
  font-size: 12px;
  font-weight: 800;
}

.channel-route-fast .channel-time,
.channel-route-fast .channel-result {
  color: #b65f16;
}

.channel-route-deep .channel-time,
.channel-route-deep .channel-result {
  color: var(--green-deep);
}

.channel-route-business .channel-time,
.channel-route-business .channel-result {
  color: var(--red);
}

.channel-route-copy strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 790;
}

.channel-route-copy small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.channel-result {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 780;
  white-space: nowrap;
}

.channel-result::after {
  content: "→";
  font-size: 17px;
  line-height: 1;
}

.channel-caption {
  margin: auto 0 0;
  padding-top: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.65;
}

.marketing-funnel {
  background:
    radial-gradient(circle at 7% 30%, rgba(223, 75, 63, 0.075), transparent 27%),
    linear-gradient(180deg, var(--bg), #f4f6f1);
  overflow: clip;
}

.funnel-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(72px, 10vw, 150px);
  align-items: start;
}

.funnel-intro {
  position: sticky;
  top: clamp(76px, 13vh, 126px);
  padding-top: 8px;
}

.section-heading h2,
.bundle-copy h2,
.final-layout h2 {
  margin: 0;
  font-size: clamp(39px, 5vw, 68px);
  font-weight: 780;
  line-height: 1.14;
  letter-spacing: -0.05em;
}

.funnel-intro h2 {
  margin: 0;
  font-size: clamp(42px, 4.3vw, 60px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.055em;
}

.funnel-intro > p {
  max-width: 430px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

.funnel-steps {
  display: grid;
}

.funnel-step {
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(58px, 7vw, 94px);
  border-bottom: 1px solid var(--line);
}

.funnel-step:first-child {
  border-top: 1px solid var(--line);
}

.funnel-step h3 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(31px, 3.25vw, 48px);
  font-weight: 790;
  line-height: 1.25;
  letter-spacing: -0.045em;
}

.funnel-step p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.85;
}

.funnel-step:nth-child(2) h3 {
  color: var(--red);
}

.funnel-step:nth-child(3) h3 {
  color: #b65f16;
}

.funnel-step-final {
  border-bottom: 0;
}

.funnel-step-final h3,
.funnel-step-final strong {
  color: var(--green-deep);
}

.paths {
  background: linear-gradient(180deg, #f0f3ee 0%, #edf1eb 100%);
}

.section-heading {
  max-width: 780px;
  display: grid;
  gap: 22px;
  margin-bottom: clamp(44px, 6vw, 72px);
}

.section-heading > p,
.bundle-copy > p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.path-list {
  display: grid;
  gap: 18px;
}

.path-card {
  position: relative;
  display: grid;
  grid-template-columns: 130px minmax(210px, 0.55fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 230px;
  padding: clamp(28px, 4vw, 46px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}

.path-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
}

.path-card-fast::before {
  background: var(--orange);
}

.path-card-deep::before {
  background: var(--green);
}

.path-card-business::before {
  background: var(--red);
}

.path-card-business {
  background: linear-gradient(110deg, var(--white), var(--red-soft));
}

.path-time {
  display: flex;
  align-items: flex-end;
  gap: 7px;
}

.path-time strong {
  color: var(--ink);
  font-size: 64px;
  line-height: 0.85;
  letter-spacing: -0.08em;
}

.path-time span {
  padding-bottom: 3px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.path-copy > p:first-child {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
}

.path-copy h3 {
  margin: 8px 0 10px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.path-copy > p:last-child {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.path-flow {
  display: flex;
  align-items: stretch;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.path-flow li {
  position: relative;
  min-width: 112px;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 18px;
  background: var(--surface);
  border-radius: 14px;
}

.path-flow li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -19px;
  top: 50%;
  color: #8a938e;
  font-size: 17px;
  transform: translateY(-50%);
}

.path-flow span {
  color: var(--muted);
  font-size: 10px;
}

.path-flow strong {
  font-size: 14px;
  line-height: 1.35;
}

.path-card-fast .path-result {
  color: #8d440e;
  background: var(--orange-soft);
}

.path-card-deep .path-result {
  color: var(--green-deep);
  background: var(--green-soft);
}

.path-card-business .path-result {
  color: #9d3028;
  background: #ffd9d3;
}

.income-note {
  max-width: 780px;
  margin: 24px 0 0 auto;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
  text-align: right;
}

.module-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(250px, auto));
  gap: 16px;
}

.module {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 4vw, 46px);
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
}

.module-foundation {
  grid-row: 1 / 3;
  min-height: 520px;
  color: var(--white);
  background: var(--ink);
}

.module-foundation::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -145px;
  width: 340px;
  height: 340px;
  border: 58px solid rgba(107, 142, 107, 0.33);
  border-radius: 50%;
}

.module-workflow {
  background: var(--green-soft);
}

.module-income {
  background: var(--orange-soft);
}

.module-growth {
  grid-column: 1 / 3;
  min-height: 250px;
  color: #752820;
  background: var(--red-soft);
}

.module-number {
  color: var(--muted);
  font: 700 12px/1 var(--mono);
}

.module-foundation .module-number {
  color: #9fb7a2;
}

.module h3 {
  max-width: 520px;
  margin: 28px 0 16px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.module > p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.module-foundation > p {
  color: rgba(255, 255, 255, 0.63);
}

.module ul {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: auto 0 0;
  padding: 30px 0 0;
  list-style: none;
}

.module li {
  padding: 10px 13px;
  color: #dce8de;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-size: 11px;
}

.bundle {
  background: linear-gradient(180deg, #f2f4ef 0%, var(--bg) 100%);
}

.bundle-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr) 340px;
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}

.bundle-copy {
  display: grid;
  gap: 26px;
}

.bundle-copy h2 {
  font-size: clamp(38px, 4vw, 56px);
}

.bundle-items {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.bundle-items article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 82px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.bundle-items span {
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 750;
}

.bundle-items strong {
  font-size: 15px;
  line-height: 1.45;
}

.purchase-panel {
  position: sticky;
  top: 24px;
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(223, 75, 63, 0.22);
  border-radius: 20px;
  box-shadow: 0 22px 56px rgba(223, 75, 63, 0.1);
}

.purchase-panel > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.purchase-price {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-top: 12px;
}

.purchase-price del {
  padding-bottom: 9px;
  color: #9aa19d;
  font-size: 12px;
}

.purchase-price strong {
  color: var(--red);
  font-size: 62px;
  line-height: 1;
  letter-spacing: -0.07em;
}

.purchase-price strong span {
  font-size: 0.38em;
}

.purchase-panel ul {
  display: grid;
  gap: 12px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 12px;
}

.purchase-panel li {
  position: relative;
  padding-left: 17px;
}

.purchase-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-deep);
  font-weight: 800;
}

.purchase-panel > small {
  display: block;
  margin-top: 13px;
  color: #8c625d;
  font-size: 10px;
  text-align: center;
}

.faq {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.faq .section-heading {
  position: sticky;
  top: 30px;
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary span {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.faq-item summary span::before,
.faq-item summary span::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 3px;
  width: 16px;
  height: 2px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.faq-item summary span::after {
  transform: rotate(90deg);
}

.faq-item[open] summary span::after {
  transform: rotate(0);
}

.faq-item > p {
  max-width: 700px;
  margin: -2px 0 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.hero-buttons,
.purchase-actions,
.final-actions {
  display: flex;
  gap: 10px;
}

.hero-buttons .button,
.purchase-actions .button {
  flex: 1;
}

.button-contact {
  min-width: 104px;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(8, 13, 30, 0.24);
  box-shadow: none;
}

.button-contact:hover,
.button-contact:focus-visible {
  color: var(--green-deep);
  background: rgba(107, 142, 107, 0.09);
  border-color: rgba(54, 95, 71, 0.48);
}

.button-details {
  min-width: 104px;
  color: var(--green-deep);
  background: rgba(107, 142, 107, 0.12);
  border: 1px solid rgba(54, 95, 71, 0.24);
  text-decoration: none;
  box-shadow: none;
}

.button-details:hover,
.button-details:focus-visible {
  color: var(--white);
  background: var(--green-deep);
}

.purchase-actions .button {
  width: auto;
  padding-inline: 18px;
}

.contact-modal-card {
  width: min(440px, 100%);
  text-align: center;
}

.auth-modal-bridge {
  position: fixed;
  inset: 0;
  z-index: 1800;
  background: transparent;
}

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

.auth-modal-bridge iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

.contact-modal-kicker {
  margin: 0;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.06em;
}

.contact-modal-card h2 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.contact-modal-copy {
  margin: 15px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.contact-modal-qr {
  width: min(280px, 100%);
  margin: 22px auto 0;
  padding: 9px;
  background: #eaf4ff;
  border-radius: 16px;
}

.contact-modal-qr img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 11px;
}

.testimonials {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  overflow: clip;
  background:
    radial-gradient(circle at 9% 18%, rgba(242, 138, 43, 0.13), transparent 26%),
    radial-gradient(circle at 63% 86%, rgba(107, 142, 107, 0.13), transparent 30%),
    linear-gradient(180deg, #f5f7f2 0%, #edf1eb 100%);
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(8, 13, 30, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 13, 30, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000, transparent 58%);
}

.testimonials-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: center;
}

.testimonials-collage {
  position: relative;
  min-width: 0;
  min-height: 680px;
}

.testimonials-heading {
  position: relative;
  z-index: 30;
  max-width: 540px;
  padding-top: 4px;
}

.testimonials-heading p {
  margin: 0 0 13px;
  color: var(--red);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.testimonials-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(58px, 6.7vw, 92px);
  font-weight: 820;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.testimonials-heading span {
  display: block;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.chat-collage {
  position: absolute;
  inset: 0;
}

.chat-shot {
  position: absolute;
  z-index: 2;
  margin: 0;
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(8, 13, 30, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(8, 13, 30, 0.11);
  transition: z-index 0s, transform 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms ease;
}

.chat-shot:hover {
  z-index: 40;
  transform: rotate(0deg) translateY(-8px) scale(1.04);
  box-shadow: 0 24px 58px rgba(8, 13, 30, 0.18);
}

.chat-shot img {
  width: 100%;
  height: auto;
  border-radius: 7px;
}

.chat-shot-1 { top: 190px; left: 0; width: 46%; transform: rotate(-4deg); }
.chat-shot-2 { top: 270px; right: 2%; width: 62%; transform: rotate(2deg); }
.chat-shot-3 { top: 362px; left: 1%; z-index: 4; width: 55%; transform: rotate(3deg); }
.chat-shot-4 { top: 480px; right: 7%; z-index: 5; width: 52%; transform: rotate(-3deg); }
.chat-shot-5 { top: 148px; right: 0; z-index: 3; width: 36%; transform: rotate(5deg); }
.chat-shot-6 { top: 365px; right: 0; width: 38%; transform: rotate(-4deg); }
.chat-shot-7 { bottom: 60px; left: 4%; z-index: 6; width: 38%; transform: rotate(-2deg); }
.chat-shot-8 { right: 22%; bottom: 4px; z-index: 7; width: 40%; transform: rotate(2deg); }
.chat-shot-9 { right: 0; bottom: -8px; width: 34%; transform: rotate(4deg); }
.chat-shot-10 { bottom: 42px; left: 31%; z-index: 8; width: 35%; transform: rotate(-3deg); }

.chat-shot.is-randomized {
  top: var(--shot-top);
  right: auto;
  bottom: auto;
  left: var(--shot-left);
  z-index: var(--shot-z);
  width: var(--shot-width);
  transform: rotate(var(--shot-rotate));
}

.chat-shot.is-randomized:hover {
  z-index: 40;
  transform: rotate(0deg) translateY(-8px) scale(1.04);
}

.testimonial-stream {
  position: relative;
  min-width: 0;
  height: 680px;
  overflow: hidden;
  padding: 34px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 10%, rgba(242, 138, 43, 0.18), transparent 28%),
    #101620;
  box-shadow: 0 30px 80px rgba(8, 13, 30, 0.2);
}

.testimonial-stream-heading {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.testimonial-stream-heading > span {
  color: #efb070;
  font: 700 10px/1 var(--mono);
  letter-spacing: 0.16em;
}

.testimonial-stream-heading > strong {
  font-size: clamp(26px, 2.5vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.045em;
  text-align: right;
}

.testimonial-viewport {
  position: relative;
  height: 518px;
  margin-top: 22px;
  overflow: hidden;
  mask-image: linear-gradient(180deg, transparent 0, #000 7%, #000 91%, transparent 100%);
}

.testimonial-track {
  display: flex;
  flex-direction: column;
  animation: testimonial-roll 38s linear infinite;
  will-change: transform;
}

.testimonial-viewport:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-group {
  display: grid;
  flex: none;
  gap: 12px;
  padding-bottom: 12px;
}

.testimonial-card {
  padding: 19px 20px 17px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.065);
}

.testimonial-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.75;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
}

.testimonial-card strong {
  color: #ffffff;
  font-size: 12px;
  font-weight: 720;
}

.testimonial-card span {
  flex: 0 0 auto;
  padding: 5px 8px;
  color: #bcd0ba;
  border: 1px solid rgba(188, 208, 186, 0.24);
  border-radius: 999px;
  font-size: 9px;
}

@keyframes testimonial-roll {
  to { transform: translateY(-50%); }
}

.final-cta {
  padding-bottom: 148px;
  background: linear-gradient(115deg, var(--orange-soft), var(--red-soft));
}

.final-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: center;
}

.final-layout > div:first-child > p {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 730;
}

.final-layout h2 {
  font-size: clamp(40px, 5vw, 64px);
}

.final-buy {
  display: flex;
  align-items: center;
  gap: 28px;
}

.final-offer-meta {
  display: grid;
  gap: 8px;
}

.final-price {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 2px 10px;
}

.final-price del {
  color: #a4837e;
  font-size: 11px;
}

.final-price strong {
  color: var(--red);
  font-size: 40px;
  letter-spacing: -0.05em;
}

.final-price span {
  grid-column: 1 / 3;
  color: #755f5a;
  font-size: 10px;
}

.final-buy .button {
  width: auto;
  min-width: 150px;
}

.floating-offer {
  position: fixed;
  left: 50%;
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 90;
  width: min(900px, calc(100vw - 32px));
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 9px 10px 9px 22px;
  color: var(--white);
  background: rgba(8, 13, 30, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 20px 54px rgba(8, 13, 30, 0.22);
  backdrop-filter: blur(18px);
  transform: translate(-50%, 120px);
  opacity: 0;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), opacity 240ms ease;
}

.floating-offer.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.floating-message {
  min-width: 0;
  flex: 1;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.floating-message span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.offer-countdown-floating {
  flex: 0 0 auto;
  padding: 6px 9px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 126, 87, 0.1);
  border-color: rgba(255, 156, 117, 0.3);
}

.offer-countdown-floating strong {
  color: #ff9c75;
  font-size: 14px;
}

.floating-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.floating-price del {
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
}

.floating-price strong {
  color: #ff9c75;
  font-size: 20px;
}

.floating-offer > button {
  min-height: 48px;
  padding: 0 24px;
  color: var(--white);
  background: var(--red);
  border-radius: 12px;
  font-weight: 780;
  white-space: nowrap;
  cursor: pointer;
}

.floating-offer > .floating-contact {
  padding-inline: 18px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.floating-offer > .floating-contact:hover,
.floating-offer > .floating-contact:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.floating-offer.is-member .floating-price {
  display: none;
}

.modal[hidden],
.success-view[hidden],
.toast[hidden],
.modal-state[hidden] {
  display: none !important;
}

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

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 13, 30, 0.58);
  backdrop-filter: blur(9px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(500px, 100%);
  max-height: calc(100dvh - 40px);
  padding: clamp(30px, 5vw, 44px);
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 22px;
  box-shadow: 0 35px 100px rgba(8, 13, 30, 0.3);
  overflow: auto;
  animation: modal-in 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  background: var(--surface-strong);
  border-radius: 12px;
  font-size: 22px;
  cursor: pointer;
}

.modal-state {
  display: flex;
  flex-direction: column;
}

.modal-state h2 {
  margin: 12px 0 14px;
  font-size: clamp(29px, 5vw, 38px);
  font-weight: 780;
  line-height: 1.22;
  letter-spacing: -0.04em;
}

.modal-state > p:not(.modal-kicker, .modal-fineprint, .order-error, .waiting-status) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.modal-loader {
  display: flex;
  gap: 7px;
  height: 26px;
  align-items: center;
}

.modal-loader span {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 3px;
  animation: loading-bars 900ms ease-in-out infinite;
}

.modal-loader span:nth-child(2) {
  animation-delay: 120ms;
}

.modal-loader span:nth-child(3) {
  animation-delay: 240ms;
}

@keyframes loading-bars {
  0%, 100% { transform: translateY(0); opacity: 0.45; }
  50% { transform: translateY(-6px); opacity: 1; }
}

.modal-icon {
  width: max-content;
  min-width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  padding-inline: 12px;
  color: var(--white);
  background: var(--green);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 780;
}

.modal-icon-error {
  color: #8a2922;
  background: #f8cbc6;
  font-size: 22px;
}

.modal-kicker,
.success-kicker {
  margin: 0;
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 760;
}

.modal-primary {
  width: 100%;
  margin-top: 26px;
  color: var(--white);
  background: var(--ink);
  border-radius: 14px;
}

.modal-primary:hover,
.modal-primary:focus-visible {
  color: var(--white);
  background: #182131;
}

.modal-primary[disabled] {
  opacity: 0.55;
  cursor: wait;
  transform: none;
}

.modal-secondary {
  min-height: 42px;
  margin-top: 8px;
  color: var(--muted);
  background: transparent;
  font-size: 12px;
  cursor: pointer;
}

.payment-decision-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

.payment-decision-actions .modal-secondary {
  width: 100%;
  margin-top: 0;
  padding: 11px 12px;
  border: 1px solid rgba(8, 13, 30, 0.16);
  border-radius: 12px;
}

.payment-decision-actions .payment-paid-button {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.modal-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-product {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 15px;
  align-items: center;
  margin-top: 24px;
  padding: 18px;
  background: var(--surface);
  border-radius: 16px;
}

.order-product-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 14px;
  font-size: 15px;
  font-weight: 820;
}

.order-product strong {
  font-size: 14px;
}

.order-product p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.order-includes {
  display: grid;
  gap: 11px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 12px;
}

.order-includes li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.order-includes span {
  color: var(--green-deep);
  font-weight: 800;
}

.order-total,
.waiting-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.order-total > span,
.waiting-order span {
  color: var(--muted);
  font-size: 12px;
}

.order-total > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.order-total del {
  color: #a1a6a2;
  font-size: 10px;
}

.order-total strong,
.waiting-order strong {
  color: var(--red);
  font-size: 25px;
  letter-spacing: -0.04em;
}

.payment-method-field {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  color: #4c574f;
  font-size: 14px;
  font-weight: 700;
}

.payment-method-field select {
  width: 100%;
  border: 1px solid #dce5df;
  border-radius: 12px;
  background: #f7faf8;
  padding: 12px 14px;
  color: #17231b;
  font: inherit;
}

.modal-fineprint,
.waiting-status {
  margin: 13px 0 0;
  color: #838d87;
  font-size: 10px;
  line-height: 1.6;
  text-align: center;
}

.order-error {
  margin: 0 0 -12px;
  padding: 10px 12px;
  color: #8e3029;
  background: var(--red-soft);
  border-radius: 10px;
  font-size: 11px;
  line-height: 1.5;
}

.payment-pulse {
  position: relative;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background: var(--green-soft);
  border-radius: 16px;
}

.payment-pulse::before,
.payment-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--green);
  border-radius: 16px;
  animation: pulse 2s ease-out infinite;
}

.payment-pulse::after {
  animation-delay: 0.7s;
}

.payment-pulse span {
  width: 14px;
  height: 14px;
  background: var(--green-deep);
  border-radius: 4px;
}

@keyframes pulse {
  from { opacity: 0.6; transform: scale(0.9); }
  to { opacity: 0; transform: scale(1.55); }
}

.waiting-order {
  margin-top: 24px;
  padding: 18px;
  background: var(--surface);
  border: 0;
  border-radius: 14px;
}

.waiting-status.is-error {
  color: var(--red);
}

.success-view {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 50px 24px;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 18%, rgba(242, 138, 43, 0.18), transparent 25%),
    radial-gradient(circle at 15% 84%, rgba(107, 142, 107, 0.18), transparent 30%),
    var(--bg);
  overflow: auto;
}

.success-close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 24px;
  cursor: pointer;
}

.success-inner {
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(50px, 8vw, 100px);
  align-items: center;
}

.success-check {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--green);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(54, 95, 71, 0.18);
  font-size: 34px;
  font-weight: 800;
}

.success-copy h2 {
  margin: 16px 0 22px;
  font-size: clamp(45px, 6vw, 70px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.success-copy > p:not(.success-kicker) {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.success-steps {
  display: grid;
  max-width: 560px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.success-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.success-steps li > span {
  color: var(--red);
  font: 700 12px/1.6 var(--mono);
}

.success-steps strong {
  font-size: 13px;
}

.success-steps p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.qr-card {
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(54, 95, 71, 0.14);
  text-align: center;
}

.qr-card > p {
  margin: 0 0 17px;
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 750;
}

.qr-frame {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 13px;
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
}

.qr-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 39%;
  border-radius: 11px;
}

.qr-card > strong {
  display: block;
  margin-top: 19px;
  font-size: 20px;
}

.qr-card > small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
}

.qr-card > a {
  display: inline-block;
  margin-top: 17px;
  padding-bottom: 3px;
  color: var(--green-deep);
  border-bottom: 1px solid rgba(54, 95, 71, 0.34);
  font-size: 10px;
  font-weight: 700;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 100px;
  z-index: 1400;
  max-width: min(420px, calc(100vw - 32px));
  padding: 12px 17px;
  color: var(--white);
  background: rgba(8, 13, 30, 0.95);
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(8, 13, 30, 0.22);
  font-size: 12px;
  transform: translateX(-50%);
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1100px) {
  .testimonials-layout {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.9fr);
    gap: 38px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
    gap: 45px;
  }

  .hero h1 {
    font-size: 57px;
  }

  .path-card {
    grid-template-columns: 105px minmax(180px, 0.45fr) minmax(0, 1fr);
    gap: 28px;
  }

  .path-flow {
    gap: 17px;
  }

  .path-flow li {
    min-width: 90px;
    padding: 14px;
  }

  .bundle-layout {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .purchase-panel {
    position: static;
    grid-column: 1 / 3;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px 30px;
  }

  .purchase-panel ul {
    grid-column: 1;
  }

  .purchase-actions,
  .purchase-panel > small {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 680px);
  }

  .hero {
    min-height: auto;
    padding-block: 58px 84px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
  }

  .testimonials {
    min-height: auto;
  }

  .testimonials-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .testimonials-collage {
    min-height: 680px;
  }

  .testimonial-stream {
    width: min(600px, 100%);
    margin-inline: auto;
  }

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

  .hero h1 {
    font-size: clamp(47px, 9vw, 65px);
  }

  .channel-map {
    min-height: auto;
  }

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

  .funnel-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .funnel-intro {
    position: static;
    max-width: 680px;
    padding-top: 0;
  }

  .funnel-intro > p {
    max-width: 560px;
  }

  .path-card {
    grid-template-columns: 100px 1fr;
  }

  .path-flow {
    grid-column: 1 / 3;
  }

  .module-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .module-foundation,
  .module-growth {
    grid-row: auto;
    grid-column: auto;
  }

  .module-foundation {
    min-height: 460px;
  }

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

  .purchase-panel {
    grid-column: auto;
  }

  .faq .section-heading {
    position: static;
  }

  .final-buy {
    justify-content: space-between;
  }

  .success-inner {
    grid-template-columns: 1fr;
    padding-block: 36px;
  }

  .qr-card {
    width: min(390px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .section {
    padding-block: 78px;
  }

  .testimonials-layout {
    gap: 40px;
  }

  .testimonials-collage {
    min-height: 620px;
  }

  .testimonials-heading h2 {
    font-size: clamp(53px, 17vw, 72px);
  }

  .testimonials-heading span {
    margin-top: 18px;
    font-size: 13px;
  }

  .chat-shot {
    padding: 5px;
    border-radius: 9px;
  }

  .chat-shot-1 { top: 172px; width: 58%; }
  .chat-shot-2 { top: 244px; width: 76%; }
  .chat-shot-3 { top: 328px; width: 66%; }
  .chat-shot-4 { top: 440px; width: 64%; }
  .chat-shot-5 { top: 145px; width: 43%; }
  .chat-shot-6 { top: 354px; width: 45%; }
  .chat-shot-7 { bottom: 50px; width: 46%; }
  .chat-shot-8 { right: 18%; bottom: 2px; width: 48%; }
  .chat-shot-9 { width: 39%; }
  .chat-shot-10 { bottom: 34px; left: 27%; width: 43%; }

  .testimonial-stream {
    height: 620px;
    padding: 25px 20px;
    border-radius: 22px;
  }

  .testimonial-stream-heading {
    gap: 18px;
    padding-bottom: 20px;
  }

  .testimonial-stream-heading > strong {
    font-size: 25px;
  }

  .testimonial-viewport {
    height: 476px;
    margin-top: 18px;
  }

  .testimonial-card {
    padding: 17px 16px 15px;
  }

  .testimonial-card p {
    font-size: 13px;
  }

  .brand-line {
    margin-bottom: 23px;
  }

  .hero h1 {
    font-size: clamp(30px, 9.2vw, 40px);
    letter-spacing: -0.06em;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    margin-top: 28px;
  }

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

  .hero-buttons .button {
    width: 100%;
    min-width: 0;
    padding-inline: 12px;
  }

  .hero-buttons .button-primary {
    grid-column: 1 / -1;
  }

  .button-primary {
    width: 100%;
  }

  .hero-price {
    grid-template-columns: auto auto 1fr;
    align-items: center;
    width: 100%;
  }

  .hero-price span {
    grid-column: auto;
    margin-left: auto;
  }

  .hero-purchase-meta {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 10px;
  }

  .hero-purchase-meta .hero-price {
    width: 100%;
    grid-template-columns: auto auto;
    justify-content: start;
  }

  .hero-purchase-meta .hero-price span {
    grid-column: 1 / 3;
    margin-left: 0;
  }

  .offer-countdown-hero {
    width: 100%;
    justify-content: center;
  }

  .channel-map {
    min-height: auto;
    padding: 32px 22px 24px;
    border-radius: 20px;
  }

  .channel-intro > strong {
    font-size: 26px;
  }

  .channel-routes {
    margin-top: 24px;
  }

  .channel-route {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    padding: 15px;
  }

  .section-heading h2,
  .bundle-copy h2,
  .final-layout h2 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .channel-result {
    grid-column: 2;
    justify-self: start;
  }

  .channel-caption {
    margin-top: 24px;
  }

  .funnel-layout {
    gap: 26px;
  }

  .funnel-intro h2 {
    font-size: clamp(34px, 9.4vw, 42px);
  }

  .funnel-intro > p {
    margin-top: 20px;
    font-size: 16px;
  }

  .funnel-step {
    min-height: 60dvh;
    padding-block: 70px;
  }

  .funnel-step h3 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .funnel-step p {
    margin-top: 19px;
    font-size: 16px;
  }

  .path-card {
    grid-template-columns: 82px 1fr;
    padding: 28px 22px;
  }

  .path-time strong {
    font-size: 48px;
  }

  .path-flow {
    grid-column: 1 / 3;
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

  .path-flow li {
    min-width: 0;
  }

  .path-flow li:not(:last-child)::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -18px;
    transform: translateX(-50%) rotate(90deg);
  }

  .income-note {
    text-align: left;
  }

  .module {
    min-height: 290px;
    padding: 30px 24px;
  }

  .module-foundation {
    min-height: 430px;
  }

  .purchase-panel {
    display: block;
    padding: 26px 22px;
  }

  .purchase-actions,
  .purchase-panel > small {
    grid-column: auto;
  }

  .hero-buttons,
  .purchase-actions,
  .final-actions {
    width: 100%;
  }

  .final-actions .button {
    min-width: 0;
    flex: 1;
  }

  .final-buy {
    align-items: stretch;
    flex-direction: column;
  }

  .final-offer-meta {
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .final-buy .button {
    width: 100%;
  }

  .floating-offer {
    min-height: 104px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 9px 10px max(9px, env(safe-area-inset-bottom));
  }

  .floating-message {
    display: none;
  }

  .offer-countdown-floating {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    padding-block: 5px;
  }

  .floating-price {
    display: none;
  }

  .floating-offer > button {
    width: 100%;
    min-height: 42px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .modal {
    align-items: end;
    padding: 0;
  }

  .modal-card {
    width: 100%;
    max-height: 92dvh;
    padding: 34px 22px max(24px, env(safe-area-inset-bottom));
    border-radius: 22px 22px 0 0;
  }

  .success-view {
    display: block;
    padding: 30px 16px;
  }

  .success-copy h2 {
    font-size: 47px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
