:root {
  /* DreamWorkshop — warm editorial product palette (tokens) */
  --dw-page-cream: #faf0e6;
  --dw-page-cream-deep: #ecdbc8;
  --dw-ink: #25231f;
  --dw-ink-soft: #2e2923;
  --dw-coffee: #9B6F47;
  --dw-coffee-soft: #BB8A5E;
  --dw-muted: #a59b90;
  --dw-sage: #4E7C67;
  --dw-sage-deep: #3a6050;
  --dw-peach: #E5C7B1;
  --dw-line: rgba(37, 35, 31, 0.16);
  --dw-light-line: rgba(250, 240, 230, 0.16);
  --dw-emerald: #1A271A;
  --dw-eucalyptus: #8CA18C;
  --dw-cream: #F8F3ED;
  --dw-pottery: #DCD0B9;
  --dw-tiki: #C4673D;
  --dw-cream-rgb: 248, 243, 237;
  --dw-pottery-rgb: 220, 208, 185;
  --dw-emerald-shadow: rgba(8, 28, 18, 0.34);
  --dw-line-light: rgba(248, 243, 237, 0.22);

  /* practical aliases (existing selectors) */
  --cream: var(--dw-page-cream);
  --cream-soft: #fdf6ee;
  --sage: var(--dw-sage);
  --coffee: var(--dw-coffee-soft);
  --text: var(--dw-ink-soft);
  --text-muted: var(--dw-muted);
  --line: var(--dw-line);
  --shadow: 0 32px 64px rgba(25, 22, 18, 0.1);
  --shadow-soft: 0 20px 48px rgba(25, 22, 18, 0.08);
  --radius: 20px;
  --max: 1320px;
  --max-wide: 1520px;
  --topbar-height: 78px;
  color-scheme: light;
  scroll-padding-top: 96px;
  --font-display: "Playfair Display", "PingFang SC", "Microsoft YaHei", Georgia, serif;
  --font-body: "DM Sans", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 0;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  padding-top: var(--topbar-height);
  overflow-x: clip;
  color: var(--text);
  background: var(--dw-emerald);
  font-family:
    "DM Sans",
    "PingFang SC",
    "Microsoft YaHei",
    "Noto Sans CJK SC",
    system-ui,
    sans-serif;
  line-height: 1.56;
  -webkit-font-smoothing: antialiased;
}

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

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

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

section[id] {
  scroll-margin-top: 96px;
}

#feature-showcase {
  scroll-margin-top: calc(var(--topbar-height) - 96px);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background:
    linear-gradient(180deg, rgba(220, 208, 185, 0.96), rgba(207, 193, 171, 0.94));
  border-bottom: 1px solid rgba(26, 39, 26, 0.12);
  color: var(--dw-emerald);
  backdrop-filter: blur(10px);
  box-shadow:
    0 14px 34px rgba(8, 28, 18, 0.12),
    inset 0 -1px 0 rgba(248, 243, 237, 0.32);
}

.topbar__inner {
  min-height: var(--topbar-height);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 760;
  justify-self: start;
}

.brand__logo-wrap {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  overflow: hidden;
  background: #1e2b3c;
}

.brand__logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__name {
  white-space: nowrap;
  color: var(--dw-emerald);
}

.nav,
.actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.actions {
  justify-self: end;
}

.nav {
  justify-self: center;
  padding: 8px;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid rgba(26, 39, 26, 0.14);
  background:
    linear-gradient(180deg, rgba(248, 243, 237, 0.42), rgba(248, 243, 237, 0.22)),
    rgba(140, 161, 140, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(248, 243, 237, 0.5),
    0 12px 28px rgba(8, 28, 18, 0.10);
}

.nav a,
.nav .product-dropdown__trigger,
.btn,
.lang-dropdown__trigger {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 14px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all 180ms ease;
}

.nav a,
.nav .product-dropdown__trigger {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 20px;
  font: inherit;
  font-size: 15px;
  font-weight: 760;
  line-height: 1;
  cursor: pointer;
  color: rgba(26, 39, 26, 0.78);
  background: transparent;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.nav a:hover,
.nav .product-dropdown__trigger:hover {
  color: var(--dw-emerald);
  background: rgba(248, 243, 237, 0.72);
  border-color: rgba(26, 39, 26, 0.10);
  transform: translateY(-1px);
}

.nav .product-dropdown__trigger {
  background: rgba(140, 161, 140, 0.22);
  border-color: rgba(26, 39, 26, 0.12);
}

.nav .product-dropdown__trigger:hover {
  background: rgba(140, 161, 140, 0.42);
  color: var(--dw-emerald);
}

.btn {
  padding: 0 18px;
}

.btn--lg {
  min-height: 50px;
  padding-inline: 24px;
  border-radius: 16px;
}

.btn--primary {
  color: #fff9ef;
  background: linear-gradient(180deg, #4E7C67, var(--dw-sage-deep));
  border-color: rgba(30, 70, 52, 0.35);
  box-shadow: 0 12px 28px rgba(15, 45, 30, 0.28);
}

.btn--surface,
.btn--ghost,
.lang-dropdown__trigger {
  color: var(--dw-emerald);
  background:
    linear-gradient(180deg, rgba(248, 243, 237, 0.44), rgba(248, 243, 237, 0.22));
  border-color: rgba(26, 39, 26, 0.16);
}

.btn:hover,
.lang-dropdown__trigger:hover {
  transform: translateY(-1px);
}

.btn--ghost:hover,
.lang-dropdown__trigger:hover {
  color: var(--dw-emerald);
  background: rgba(248, 243, 237, 0.68);
  border-color: rgba(26, 39, 26, 0.18);
}

.product-dropdown,
.lang-dropdown {
  position: relative;
}

.nav .product-dropdown__trigger::after,
.download-dropdown__trigger::after,
.lang-dropdown__trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.7;
}

.lang-dropdown__trigger::after {
  border-color: currentColor;
  opacity: 1;
}

.product-dropdown__menu,
.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 12px);
  z-index: 60;
  min-width: 230px;
  display: none;
  list-style: none;
  margin: 0;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(26, 39, 26, 0.12);
  background:
    linear-gradient(180deg, rgba(220, 208, 185, 0.98), rgba(207, 193, 171, 0.98));
  box-shadow:
    0 22px 62px rgba(8, 28, 18, 0.24),
    inset 0 1px 0 rgba(248, 243, 237, 0.48);
  backdrop-filter: blur(16px);
}

.product-dropdown__menu {
  left: 0;
}

.actions .product-dropdown__menu,
.lang-dropdown__menu {
  left: auto;
  right: 0;
}

.product-dropdown.is-open .product-dropdown__menu,
.lang-dropdown.is-open .lang-dropdown__menu {
  display: block;
}

.product-dropdown__menu a,
.lang-dropdown__menu button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 13px;
  border: 0;
  border-radius: 12px;
  color: rgba(26, 39, 26, 0.82);
  background: transparent;
  font: inherit;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition:
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.product-dropdown__menu a:hover,
.lang-dropdown__menu button:hover {
  color: var(--dw-emerald);
  background: rgba(248, 243, 237, 0.58);
  transform: translateX(2px);
}

.product-dropdown__soon {
  color: var(--dw-tiki);
  font-size: 12px;
  font-weight: 800;
}

.product-dropdown__available {
  color: var(--dw-sage-deep);
  font-size: 12px;
  font-weight: 800;
}

.hero {
  --hero-rhythm-gap: 0px;
  --hero-rhythm-gap-sm: clamp(7px, 0.62vw, 10px);
  --hero-balance-gap: clamp(20px, 2.4svh, 28px);
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: calc(100svh - var(--topbar-height));
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: var(--hero-balance-gap) 0 var(--hero-balance-gap);
  background:
    linear-gradient(168deg, #2b2723 0%, #25231f 42%, #1e1d1a 100%);
  color: var(--dw-page-cream);
  border-bottom: 1px solid var(--dw-line);
}

.hero .container.hero__inner {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  max-width: min(var(--max-wide), calc(100% - 48px));
  margin-inline: auto;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(78, 124, 103, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 45% at 100% 40%, rgba(229, 199, 177, 0.13), transparent 50%);
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto auto auto auto;
  align-items: stretch;
  align-content: start;
  gap: var(--hero-rhythm-gap);
  min-height: 0;
}

.hero__inner > .hero__copy {
  align-self: start;
}

.hero__inner > .hero__meta {
  align-self: stretch;
  max-width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.hero__prepricing {
  width: min(840px, 92vw);
  margin: clamp(10px, 1vw, 14px) auto 0;
  color: rgba(232, 222, 211, 0.96);
  font-size: clamp(15px, 0.95vw, 17px);
  line-height: 1.36;
  text-align: center;
}

.hero__language-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: fit-content;
  max-width: min(100%, 92vw);
  margin: var(--hero-balance-gap) auto 0;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(248, 243, 237, 0.18);
  color: rgba(248, 243, 237, 0.88);
  background: rgba(78, 124, 103, 0.24);
  box-shadow: inset 0 1px 0 rgba(248, 243, 237, 0.08);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  opacity: 0.82;
}

.hero__prepricing br {
  display: block;
  content: "";
  margin-top: 5px;
}

.hero__pricing {
  width: min(1200px, 92vw);
  margin: var(--hero-balance-gap) auto 0;
}

.hero__pricing .pricing-grid-2 {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  gap: clamp(16px, 2vw, 26px);
}

.hero__pricing .downloadcard,
.hero__pricing .pricecard {
  min-height: 172px;
  padding: clamp(12px, 1vw, 15px) clamp(20px, 1.65vw, 26px);
}

.hero__pricing .downloadcard h3,
.hero__pricing .pricecard h3 {
  font-size: 21px;
}

.hero__pricing .cardbullets,
.hero__pricing .pricecard ul {
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.32;
}

.hero__pricing .cardbullets li,
.hero__pricing .pricecard li {
  margin: 3px 0;
}

.hero__pricing .pro-price {
  font-size: clamp(28px, 2.35vw, 38px);
}

.hero__copy {
  max-width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero .container {
  width: min(var(--max-wide), calc(100% - 48px));
}

.hero .eyebrow {
  color: var(--dw-sage);
  justify-content: center;
  margin: 0 auto var(--hero-rhythm-gap-sm);
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 16px;
  color: var(--dw-sage-deep);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 99px;
  background: var(--dw-sage);
}

.hero__title,
h2 {
  margin: 0;
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero__title {
  font-size: clamp(52px, 5.05vw, 84px);
  max-width: 16ch;
  margin-inline: auto;
  line-height: 1.02;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
  color: var(--dw-page-cream);
  font-weight: 800;
  font-family: var(--font-display);
}

@media (min-width: 761px) {
  html[lang="en"] .hero__title {
    font-size: clamp(42px, 3.65vw, 58px);
    line-height: 0.96;
  }
}

.hero-title__line {
  display: block;
}

.hero-title__bridge {
  display: block;
  width: 100%;
  text-align: center;
  font-family: inherit;
  font-size: 0.48em;
  line-height: 0.9;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-style: italic;
  opacity: 0.9;
  margin: 0.06em 0 0.02em;
}

.hero__title .line-wrap + .line-wrap {
  margin-top: 0.22em;
}

.hero__subtitle {
  margin: 0;
  max-width: 680px;
  text-align: left;
  color: rgba(230, 224, 216, 0.94);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.78;
}

.hero__actions {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
}

.hero__conversion {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: stretch;
  justify-self: stretch;
  min-width: 0;
  padding: clamp(16px, 1.5vw, 22px);
  border-radius: 22px;
  border: 1px solid rgba(246, 241, 234, 0.12);
  background:
    linear-gradient(180deg, rgba(246, 241, 234, 0.055), rgba(0, 0, 0, 0.13)),
    rgba(0, 0, 0, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(246, 241, 234, 0.06),
    0 22px 60px rgba(0, 0, 0, 0.18);
}

.hero__visual {
  --hero-visual-pad-x: clamp(8px, 1.2vw, 14px);
  --hero-visual-pad-y: clamp(8px, 1.2vw, 14px);
  width: min(1200px, 92vw);
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  max-height: min(56svh, 580px);
  height: auto;
  justify-self: center;
  align-self: start;
  margin: var(--hero-balance-gap) 0 0;
  padding: var(--hero-visual-pad-y) var(--hero-visual-pad-x);
  border-radius: 15px;
  border: 1px solid rgba(246, 241, 234, 0.08);
  overflow: hidden;
  display: grid;
  place-items: stretch;
  box-sizing: border-box;
  background:
    radial-gradient(ellipse 80% 70% at 50% 35%, rgba(78, 124, 103, 0.18), transparent 62%),
    linear-gradient(145deg, rgba(15, 63, 43, 0.30), rgba(37, 35, 31, 0.72) 48%, rgba(187, 138, 94, 0.10) 100%);
  box-shadow:
    inset 0 1px 0 rgba(246, 241, 234, 0.05),
    0 28px 82px rgba(0, 0, 0, 0.30);
  transition: transform 260ms ease, box-shadow 260ms ease;
  position: relative;
  z-index: 1;
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  opacity: 0.28;
  background:
    linear-gradient(90deg, rgba(15, 48, 36, 1) 0%, rgba(15, 48, 36, 0) 20%),
    linear-gradient(270deg, rgba(15, 48, 36, 1) 0%, rgba(15, 48, 36, 0) 20%),
    linear-gradient(180deg, rgba(28, 26, 23, 0.85) 0%, rgba(28, 26, 23, 0) 16%),
    linear-gradient(0deg, rgba(28, 26, 23, 0.85) 0%, rgba(28, 26, 23, 0) 16%);
}

.hero__visual:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(246, 241, 234, 0.05),
    0 36px 96px rgba(0, 0, 0, 0.34);
}

.hero__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  min-width: 0;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 11px;
  box-shadow: none;
  -webkit-mask-image: radial-gradient(
    ellipse 100% 100% at 50% 50%,
    #000 0%,
    #000 76%,
    #000 82%,
    rgba(0, 0, 0, 0.45) 92%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 100% 100% at 50% 50%,
    #000 0%,
    #000 76%,
    #000 82%,
    rgba(0, 0, 0, 0.45) 92%,
    transparent 100%
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.hero__slogan {
  position: absolute;
  z-index: 3;
  left: clamp(22px, 4vw, 56px);
  bottom: clamp(18px, 3vw, 42px);
  max-width: min(520px, 46%);
  margin: 0;
  padding: 0;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 38px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(250, 240, 230, 0.94);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.45),
    0 8px 28px rgba(0, 0, 0, 0.36);
  pointer-events: none;
}

.hero__slogan::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: clamp(-14px, -2vw, -8px);
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(
    ellipse 120% 100% at 0% 110%,
    rgba(0, 0, 0, 0.24),
    transparent 62%
  );
}

.hero__meta {
  margin-top: clamp(18px, 2vw, 28px);
  width: min(1120px, 86vw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.hero__text-link {
  margin-top: 0;
  font-size: 13px;
  font-weight: 700;
  opacity: 0.78;
  color: rgba(210, 204, 196, 0.9);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-align: center;
  align-self: center;
  border-bottom: none;
  padding-bottom: 0;
  transition: opacity 0.16s ease, color 0.16s ease;
}

.hero__text-link:hover {
  color: var(--dw-page-cream);
  opacity: 1;
}

.hero__conversion-note {
  margin: 4px 0 0;
  max-width: none;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: rgba(190, 178, 166, 0.94);
}

.hero .btn--primary {
  color: #fffdf8;
  background: linear-gradient(180deg, #5d9478 0%, #4E7C67 40%, #3a6050 100%);
  border-color: rgba(200, 220, 205, 0.2);
  box-shadow: 0 12px 32px rgba(20, 32, 22, 0.35);
}

.hero .btn--primary:hover {
  background: linear-gradient(180deg, #739678 0%, #5e8065 100%);
}

.hero .btn--secondary {
  color: var(--dw-page-cream);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(246, 241, 234, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  font-weight: 720;
}

.hero .btn--secondary:hover {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(168, 138, 115, 0.45);
}

.reveal-stage {
  position: relative;
  z-index: 1;
  padding: 0;
  background: var(--dw-ink-soft);
  isolation: isolate;
}

.reveal-stage__backdrop {
  --stage-safe-top: clamp(72px, 8vh, 104px);
  --stage-safe-bottom: clamp(72px, 8vh, 104px);
  --stage-title-block-height: clamp(108px, 12vh, 150px);
  --stage-title-to-media-gap: 56px;
  --stage-media-to-lead-gap: clamp(34px, 3.8vh, 48px);
  --stage-lead-block-height: clamp(48px, 5vh, 70px);
  --stage-media-width: min(1120px, 75vw);
  --stage-media-height: min(634px, 42.46875vw);
  --stage-media-frame-pad: 8px;
  --stage-content-group-height: calc(
    var(--stage-title-block-height) +
    var(--stage-title-to-media-gap) +
    var(--stage-media-height) +
    var(--stage-media-to-lead-gap) +
    var(--stage-lead-block-height)
  );
  --stage-content-group-top: clamp(
    var(--stage-safe-top),
    calc((100svh - var(--stage-content-group-height)) / 2),
    calc(100svh - var(--stage-safe-bottom) - var(--stage-content-group-height))
  );
  --stage-copy-top: var(--stage-content-group-top);
  --stage-media-top: calc(var(--stage-copy-top) + var(--stage-title-block-height) + var(--stage-title-to-media-gap));
  position: absolute;
  inset: 0 0 auto;
  height: 100vh;
  height: 100svh;
  z-index: 0;
  overflow: hidden;
  box-sizing: border-box;
  pointer-events: none;
  opacity: 0;
}

.reveal-stage.is-backdrop-fixed .reveal-stage__backdrop {
  position: fixed;
  inset: 0;
  height: 100vh;
  height: 100svh;
  opacity: 1;
}

.reveal-stage.is-backdrop-after .reveal-stage__backdrop {
  position: absolute;
  inset: auto 0 0;
  height: 100vh;
  height: 100svh;
  opacity: 1;
}

.reveal-stage__backdrop .media-placeholder--stage {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(120deg, rgba(78, 124, 103, 0.22), rgba(30, 28, 25, 0) 50%, rgba(229, 199, 177, 0.14) 100%),
    linear-gradient(180deg, #2e2a26, #181716);
  box-shadow: none;
}

.reveal-stage__spacer {
  height: 82vh;
  height: 82svh;
  pointer-events: none;
}

/* Pain reveal: foreground curtain scrolls over a sticky backdrop. */
.pain-reveal {
  position: relative;
  z-index: 3;
  padding: 0;
  background: transparent;
  color: var(--dw-page-cream);
  isolation: auto;
}

.pain-reveal.section-reveal,
.pain-reveal.section-reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.pain .container,
.features .container,
.download-section .container,
.pain-reveal__inner {
  width: min(var(--max-wide), calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.pain-reveal__curtain {
  position: relative;
  z-index: 2;
  margin-top: 0;
  width: 100%;
  box-sizing: border-box;
  background:
    linear-gradient(
      180deg,
      rgba(20, 18, 16, 0.98) 0%,
      rgba(20, 18, 16, 0.94) 62%,
      rgba(20, 18, 16, 0.78) 100%
    );
  border-top: 1px solid var(--dw-line);
  border-bottom: 1px solid var(--dw-line);
}

.pain-reveal__inner {
  width: min(var(--max-wide), calc(100% - 48px));
  margin: 0 auto;
  box-sizing: border-box;
  padding: clamp(24px, 3.4vh, 42px) 0 clamp(34px, 4.5vh, 58px);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.7vw, 24px);
}

.pain__head {
  width: fit-content;
  max-width: min(980px, 100%);
  margin-inline: auto;
  text-align: left;
}

.pain__head .eyebrow {
  color: var(--dw-sage);
  justify-content: flex-start;
  margin-left: 0;
  margin-right: 0;
}

.pain__head .eyebrow::before {
  background: var(--dw-sage);
}

.pain__head h2 {
  color: var(--dw-page-cream);
  font-size: clamp(32px, 3.1vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 800;
  font-family: var(--font-display);
  text-align: left;
  white-space: nowrap;
}

h2 {
  font-size: clamp(32px, 3.6vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--dw-ink-soft);
  font-family: var(--font-display);
}

.pain__lead {
  margin: 14px auto 0;
  color: rgba(210, 204, 196, 0.88);
  font-size: clamp(15px, 1.2vw, 18px);
  max-width: none;
  line-height: 1.55;
  text-align: left;
}

.pain__columns {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 16px);
  align-items: stretch;
}

.pain__col {
  margin: 0;
  padding: clamp(12px, 1vw, 16px) clamp(10px, 1vw, 14px);
  border: 1px solid rgba(246, 241, 234, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(246, 241, 234, 0.055), rgba(0, 0, 0, 0.08)),
    rgba(34, 31, 28, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(246, 241, 234, 0.055),
    0 16px 36px rgba(0, 0, 0, 0.18);
  min-height: 0;
}

.pain__num {
  display: block;
  margin-bottom: 8px;
  color: rgba(136, 174, 151, 0.98);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.pain__col p {
  margin: 0;
  font-size: 14px;
  line-height: 1.42;
  color: rgba(246, 241, 234, 0.94);
}

.pain__strip {
  width: 100%;
}

.media-placeholder,
.media-placeholder--wide {
  border-radius: 14px;
  border: 1px solid var(--dw-line);
  background:
    linear-gradient(105deg, rgba(78, 124, 103, 0.22), rgba(37, 35, 31, 0) 50%, rgba(229, 199, 177, 0.14) 100%),
    linear-gradient(180deg, #2a2622, #1e1c1a);
  min-height: 120px;
  box-shadow: var(--shadow-soft);
}

.media-placeholder--wide {
  min-height: clamp(100px, 14vh, 160px);
  border-radius: 12px;
  opacity: 0.9;
}

.media-placeholder--debug-image {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(20, 18, 16, 0.45), rgba(20, 18, 16, 0.72)),
    #1e1c1a;
}

.media-placeholder--debug-image img,
.media-placeholder--debug-image video {
  width: min(1180px, 86vw);
  max-height: 76vh;
  object-fit: contain;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(246, 241, 234, 0.18);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.reveal-stage__backdrop .media-placeholder--stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(34px, 4.4vw, 70px);
  box-sizing: border-box;
  overflow: hidden;
}

.reveal-stage__backdrop .media-placeholder--stage::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: calc(var(--stage-media-top) - var(--stage-media-frame-pad));
  width: calc(var(--stage-media-width) + (var(--stage-media-frame-pad) * 2));
  height: calc(var(--stage-media-height) + (var(--stage-media-frame-pad) * 2));
  aspect-ratio: auto;
  transform: translateX(-50%);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(24, 32, 26, 0.36));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.reveal-stage__backdrop .media-placeholder--stage img,
.reveal-stage__backdrop .media-placeholder--stage video {
  width: var(--stage-media-width);
  height: var(--stage-media-height);
  max-height: none;
  object-fit: contain;
  object-position: center center;
  display: block;
  position: absolute;
  left: 50%;
  top: var(--stage-media-top);
  transform: translateX(-50%);
  border-radius: 24px;
  border: 1px solid rgba(246, 241, 234, 0.14);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(246, 241, 234, 0.06);
}

.reveal-stage__backdrop .media-placeholder--stage video {
  box-sizing: border-box;
  z-index: 1;
  aspect-ratio: 1600 / 906;
  object-fit: contain;
  object-position: center center;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: transparent;
  box-shadow: none;
}

.stage-emotion-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: rgba(246, 241, 234, 0.96);
  opacity: 1;
  pointer-events: none;
  transition: opacity 1100ms ease;
}

.stage-emotion-copy__top,
.stage-emotion-copy__bottom {
  position: absolute;
}

.stage-emotion-copy__top {
  left: clamp(72px, 8vw, 150px);
  top: calc(var(--stage-media-top) - var(--stage-media-to-lead-gap));
  transform: translateY(-100%);
  max-width: min(1380px, calc(100vw - clamp(144px, 16vw, 300px)));
}

.stage-emotion-copy__bottom {
  right: clamp(72px, 8vw, 150px);
  top: calc(var(--stage-media-top) + var(--stage-media-height) + var(--stage-media-to-lead-gap));
  bottom: auto;
  max-width: min(740px, 46vw);
  text-align: left;
}

.stage-emotion-copy__top::before,
.stage-emotion-copy__bottom::before {
  content: "";
  position: absolute;
  inset: -28px -36px;
  z-index: -1;
  border-radius: 28px;
  background: radial-gradient(ellipse at 20% 50%, rgba(0, 0, 0, 0.34), transparent 70%);
  filter: blur(2px);
}

.stage-emotion-copy__eyebrow {
  margin: 0 0 14px;
  color: var(--dw-sage);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stage-emotion-copy__title {
  margin: 0;
  font-size: clamp(42px, 4.05vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: rgba(250, 245, 237, 0.98);
  max-width: min(1180px, calc(100vw - clamp(120px, 14vw, 260px)));
  white-space: normal;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.stage-emotion-copy__title .stage-copy-line {
  display: inline;
}

.stage-emotion-copy__title .stage-copy-line + .stage-copy-line::before {
  content: " ";
}

.stage-emotion-copy__title .stage-copy-line > span {
  opacity: 1;
  white-space: normal;
  transform: none;
  transition: none;
}

.stage-emotion-copy__lead {
  margin: 0;
  font-size: clamp(16px, 1.16vw, 20px);
  line-height: 1.62;
  color: rgba(224, 216, 205, 0.9);
}

.stage-emotion-copy__lead .stage-copy-line > span {
  opacity: 1;
  transform: none;
  transition: none;
}

.stage-copy-line {
  display: block;
  overflow: hidden;
}

.stage-copy-line > span,
.stage-emotion-copy__eyebrow > span {
  display: inline-block;
  opacity: 1;
  transform: none;
  transition:
    opacity 1500ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.stage-emotion-copy__eyebrow > span {
  transform: none;
}

.reveal-stage.is-backdrop-fixed.is-stage-copy-visible:not(.is-backdrop-after) .stage-emotion-copy__eyebrow > span,
.reveal-stage.is-backdrop-fixed.is-stage-copy-visible:not(.is-backdrop-after) .stage-copy-line > span {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stage.is-backdrop-fixed.is-stage-copy-visible:not(.is-backdrop-after) .stage-emotion-copy__title .stage-copy-line > span {
  opacity: 1;
  transform: none;
}

.reveal-stage.is-backdrop-fixed.is-stage-copy-visible:not(.is-backdrop-after) .stage-emotion-copy__lead .stage-copy-line > span {
  opacity: 1;
  transform: none;
}

.reveal-stage.is-backdrop-fixed.is-stage-copy-visible:not(.is-backdrop-after) .stage-emotion-copy {
  opacity: 1;
}

.reveal-stage.is-backdrop-after .stage-emotion-copy,
.reveal-stage:not(.is-backdrop-fixed) .stage-emotion-copy {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .stage-copy-line > span,
  .stage-emotion-copy__eyebrow > span {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.features {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding: clamp(64px, 7vw, 112px) 0;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--dw-page-cream);
  color: var(--dw-ink);
  border-top: none;
  box-shadow: 0 -28px 90px rgba(0, 0, 0, 0.18);
}

.features.section-reveal,
.features.section-reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.features .eyebrow {
  color: var(--dw-coffee);
}

.features .eyebrow::before {
  background: var(--dw-coffee-soft);
}

.features .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.features .container > .eyebrow,
.features .container > h2 {
  width: 100%;
}

.features .container > h2 {
  max-width: min(980px, 100%);
  margin-bottom: clamp(28px, 3.5vw, 48px);
  color: var(--dw-ink);
  white-space: nowrap;
}

.feature-row {
  --fr-pad: clamp(28px, 4vw, 56px);
  padding: var(--fr-pad) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 1.04fr);
  gap: clamp(28px, 4.5vw, 72px);
  align-items: center;
  border: none;
  background: transparent;
  border-top: 1px solid var(--dw-line);
  min-height: 0;
  border-radius: 0;
}

article.feature-row:nth-child(2n + 4) {
  direction: rtl;
}

article.feature-row:nth-child(2n + 4) > * {
  direction: ltr;
}

.feature-row__index {
  margin: 0 0 10px;
  color: var(--dw-coffee);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.feature-row h3 {
  margin: 0;
  font-size: clamp(28px, 2.6vw, 48px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--dw-ink);
  font-weight: 800;
  font-family: var(--font-display);
}

.feature-row__copy p:last-child {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
  max-width: 40ch;
}

.feature-row__media {
  margin: 0;
  padding: 12px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--dw-cream) 0%, #F2E8DB 100%);
  border: none;
  outline: 1px solid rgba(196, 103, 61, 0.15);
  box-shadow:
    inset 0 0 0 1.5px rgba(26, 39, 26, 0.08),
    inset 0 2px 3px rgba(255, 255, 255, 0.8),
    0 14px 28px -18px rgba(13, 20, 13, 0.46),
    0 6px 12px -8px rgba(13, 20, 13, 0.24);
  position: relative;
  isolation: isolate;
}

.feature-row__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.feature-row__media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-height: min(62vh, 640px);
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
  filter: brightness(0.98) contrast(1.02);
}

.download-section {
  border-top: 1px solid var(--dw-line);
  background: linear-gradient(175deg, #2f2b27 0%, #25231f 55%, #1e1c1a 100%);
  color: var(--dw-page-cream);
}

.post-reveal-section {
  position: relative;
  z-index: 4;
  border-top: 1px solid var(--dw-line);
  background: linear-gradient(175deg, #2f2b27 0%, #25231f 55%, #1e1c1a 100%);
  color: var(--dw-page-cream);
}

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

.closing-section {
  min-height: auto;
  display: flex;
  align-items: center;
  padding-block: clamp(32px, 3.6vw, 58px) clamp(64px, 6.5vw, 104px);
}

.closing-section .container {
  width: min(1520px, calc(100% - 48px));
}

.closing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 4.4vw, 64px);
  align-items: stretch;
}

.closing-pricing {
  display: grid;
  gap: clamp(20px, 2.2vw, 32px);
}

.download-grid {
  display: grid;
  align-items: center;
  gap: clamp(28px, 3vw, 44px);
}

.pricing-grid-2 {
  width: min(920px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
  align-items: stretch;
}

.downloadcard,
.pricecard {
  min-width: 0;
  min-height: 280px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(246, 241, 234, 0.16);
  background:
    linear-gradient(180deg, rgba(246, 241, 234, 0.055), rgba(0, 0, 0, 0.08)),
    rgba(34, 31, 28, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(246, 241, 234, 0.055),
    0 10px 22px -16px rgba(0, 0, 0, 0.42),
    0 4px 10px -8px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
}

.pricecard--featured {
  background:
    linear-gradient(180deg, rgba(246, 241, 234, 0.07), rgba(0, 0, 0, 0.10)),
    rgba(34, 31, 28, 0.78);
  border-color: rgba(136, 174, 151, 0.32);
}

.downloadcard h3,
.pricecard h3 {
  margin: 0;
  font-size: 24px;
  color: var(--dw-page-cream);
}

.cardbullets,
.pricecard ul {
  margin: 18px 0 22px;
  padding-left: 18px;
  color: rgba(210, 204, 196, 0.92);
}

.cardbullets li,
.pricecard li {
  margin: 8px 0;
}

.downloadcard .btn,
.pricecard .btn {
  width: 100%;
  margin-top: auto;
}

.platform-downloads {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
}

.platform-downloads .btn {
  min-height: 44px;
  margin-top: 0;
  padding-inline: 12px;
  border-radius: 14px;
  font-size: 13px;
  white-space: normal;
  text-align: center;
}

.pricecard .pro-license-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 10px) / 2);
  min-height: 44px;
  margin: auto auto 0;
  padding-inline: 12px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  color: #fffdf8;
  background: #5C856C;
  border-color: rgba(200, 220, 205, 0.2);
  box-shadow: 0 12px 32px rgba(20, 32, 22, 0.35);
}

.pricecard .pro-license-button:hover,
.pricecard .pro-license-button:active {
  background: #4E7C67;
}

.license-platform-note {
  margin: 10px 0 0;
  color: rgba(210, 204, 196, 0.78);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.pro-mid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.pro-price {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1;
  color: var(--dw-peach);
}

.product-selection h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(210, 204, 196, 0.85);
}

.closing-pricing .product-selection {
  border-top: 1px solid var(--dw-line);
  padding-top: 20px;
}

.product-section .product-selection {
  width: min(1160px, 100%);
  margin-inline: auto;
}

.product-roadmap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.2vw, 34px);
}

.product-tile {
  min-height: 118px;
  padding: clamp(16px, 1.2vw, 20px) clamp(16px, 1.35vw, 22px);
  border-radius: 14px;
  border: 1px solid rgba(246, 241, 234, 0.16);
  background:
    linear-gradient(180deg, rgba(246, 241, 234, 0.055), rgba(0, 0, 0, 0.08)),
    rgba(34, 31, 28, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(246, 241, 234, 0.055),
    0 9px 20px -16px rgba(0, 0, 0, 0.4),
    0 4px 9px -8px rgba(0, 0, 0, 0.26);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-tile span {
  display: block;
  font-size: 12px;
  color: rgba(136, 174, 151, 0.98);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-tile strong {
  color: var(--dw-coffee-soft);
  font-size: 13px;
  font-weight: 800;
}

.product-tile .product-status-available {
  color: rgba(136, 174, 151, 0.98);
}

.closing-support {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  align-self: stretch;
}

.closing-support h2#faq-title {
  color: var(--dw-page-cream);
  font-size: clamp(28px, 2.6vw, 44px);
  margin-top: 4px;
}

.closing-support .eyebrow {
  color: var(--dw-sage);
}

.closing-support .eyebrow::before {
  background: var(--dw-sage);
}

#faq {
  scroll-margin-top: 96px;
}

.faq-side-text,
.legal-note {
  margin: 16px 0 0;
  color: rgba(210, 204, 196, 0.88);
}

.faq-side-text a {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--dw-peach);
}

.legal-note {
  font-size: 14px;
}

.faq details {
  margin-bottom: 10px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid var(--dw-line);
  background: rgba(0, 0, 0, 0.22);
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--dw-page-cream);
}

.faq p {
  margin: 12px 0 0;
  color: rgba(210, 204, 196, 0.9);
}

.footer {
  padding: 24px 0 32px;
  border-top: 1px solid var(--dw-line);
  background: #1a1917;
  color: rgba(210, 204, 196, 0.8);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer a {
  color: rgba(210, 204, 196, 0.75);
  transition: color 160ms ease;
}

.footer a:hover {
  color: var(--dw-page-cream);
}

.muted {
  font-size: 13px;
  color: rgba(210, 204, 196, 0.7);
}

.legal-page-main {
  min-height: calc(100svh - var(--topbar-height));
  padding: clamp(72px, 8vw, 118px) 0 clamp(64px, 7vw, 104px);
  background: linear-gradient(175deg, #2f2b27 0%, #25231f 55%, #1e1c1a 100%);
  color: var(--dw-page-cream);
}

.legal-hero__inner,
.legal-content,
.legal-actions {
  width: min(var(--max-wide), calc(100% - 48px));
  margin-inline: auto;
}

.legal-hero h1 {
  margin: 0;
  color: var(--dw-page-cream);
  font-size: clamp(40px, 4.7vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.legal-hero__lead {
  max-width: 820px;
  margin-top: clamp(16px, 2vw, 24px);
  color: rgba(210, 204, 196, 0.88);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.7;
}

.legal-content {
  margin-top: clamp(34px, 4vw, 60px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.legal-card {
  padding: clamp(22px, 2vw, 30px);
  border-radius: 18px;
  border: 1px solid rgba(246, 241, 234, 0.16);
  background:
    linear-gradient(180deg, rgba(246, 241, 234, 0.055), rgba(0, 0, 0, 0.08)),
    rgba(34, 31, 28, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(246, 241, 234, 0.055),
    0 16px 36px rgba(0, 0, 0, 0.18);
}

.legal-card h2 {
  margin: 0 0 14px;
  color: var(--dw-page-cream);
  font-size: clamp(22px, 1.8vw, 30px);
}

.legal-card p {
  margin: 0;
  color: rgba(210, 204, 196, 0.88);
  font-size: 15px;
  line-height: 1.7;
}

.legal-card p + p {
  margin-top: 12px;
}

.legal-card__note {
  color: rgba(229, 199, 177, 0.9);
}

.legal-card__source a {
  color: rgba(136, 174, 151, 0.98);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-actions {
  margin-top: clamp(28px, 4vw, 48px);
}

.section-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

/* ── Line-by-line text reveal ── */
.line-wrap {
  display: block;
  overflow: hidden;
}

.line-inner {
  display: block;
  transform: translateY(100%);
  opacity: 0;
  transition:
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 480ms ease;
}

.line-inner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/* stagger delays for siblings */
.line-wrap:nth-child(1) .line-inner { transition-delay: 0ms; }
.line-wrap:nth-child(2) .line-inner { transition-delay: 90ms; }
.line-wrap:nth-child(3) .line-inner { transition-delay: 170ms; }
.line-wrap:nth-child(4) .line-inner { transition-delay: 240ms; }
.line-wrap:nth-child(5) .line-inner { transition-delay: 300ms; }
.line-wrap:nth-child(6) .line-inner { transition-delay: 350ms; }

/* eyebrow + subtitle 用更轻的上移 */
.text-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 600ms ease,
    transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.text-reveal:nth-child(1) { transition-delay: 0ms; }
.text-reveal:nth-child(2) { transition-delay: 80ms; }
.text-reveal:nth-child(3) { transition-delay: 160ms; }
.text-reveal:nth-child(4) { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }

  .section-reveal,
  .line-inner,
  .text-reveal {
    opacity: 1;
    transform: none;
    transition: none !important;
  }
}

@media (max-width: 1120px) {
  :root {
    --topbar-height: 118px;
  }

  .topbar__inner {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .hero__inner,
  .feature-row {
    grid-template-columns: 1fr;
  }

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

  article.feature-row:nth-child(2n + 4) {
    direction: ltr;
  }

  .features {
    min-height: 100svh;
  }

  .pain .container,
  .features .container,
  .closing-section .container {
    width: min(1520px, calc(100% - 40px));
  }

  .closing-grid {
    gap: clamp(24px, 4vw, 38px);
  }

  .closing-support {
    grid-template-columns: 1fr;
    gap: clamp(20px, 3vw, 30px);
  }

  .features .container {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: calc(100svh - var(--topbar-height));
    padding: clamp(22px, 3vw, 34px) 0 clamp(16px, 2vw, 26px);
  }

  .hero .container,
  .hero .container.hero__inner {
    width: min(1520px, calc(100% - 40px));
  }

  .hero__inner {
    grid-template-rows: auto auto auto auto auto;
    gap: clamp(5px, 0.8vw, 10px);
  }

  .hero__title {
    font-size: clamp(48px, 6.4vw, 80px);
    max-width: 12ch;
  }

  .hero__visual {
    --hero-visual-pad-x: clamp(8px, 1.2vw, 14px);
    --hero-visual-pad-y: clamp(8px, 1.2vw, 14px);
    width: min(920px, 100%);
    max-height: min(30svh, 300px);
  }

  .hero__pricing {
    width: min(920px, 100%);
  }

  .hero__meta {
    width: min(1120px, calc(100% - 40px));
  }
}

@media (max-width: 760px) {
  :root {
    --topbar-height: 132px;
  }

  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .legal-hero__inner,
  .legal-content,
  .legal-actions {
    width: min(var(--max), calc(100% - 28px));
  }

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

  .btn,
  .lang-dropdown__trigger {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 13px;
  }

  .lang-dropdown__trigger {
    min-width: 58px;
  }

  .hero {
    min-height: calc(100svh - var(--topbar-height));
    padding: clamp(28px, 5vw, 44px) 0 clamp(16px, 2vw, 24px);
  }

  .hero .container,
  .hero .container.hero__inner {
    width: min(var(--max), calc(100% - 28px));
  }

  .hero__inner {
    grid-template-rows: auto auto auto auto auto;
    gap: clamp(8px, 1.2vw, 16px);
  }

  .hero__visual {
    --hero-visual-pad-x: clamp(8px, 1.2vw, 14px);
    --hero-visual-pad-y: clamp(8px, 1.2vw, 14px);
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    max-height: none;
    border-radius: 18px;
  }

  .hero__visual img {
    border-radius: 14px;
  }

  .hero__slogan {
    display: none;
  }

  .features,
  .closing-section {
    min-height: auto;
    display: block;
    align-items: initial;
  }

  .reveal-stage__backdrop {
    position: relative;
    inset: auto;
    top: auto;
    height: 48vh;
    min-height: 280px;
    opacity: 1;
  }

  .reveal-stage.is-backdrop-fixed .reveal-stage__backdrop,
  .reveal-stage.is-backdrop-after .reveal-stage__backdrop {
    position: relative;
    inset: auto;
    height: 48vh;
    min-height: 280px;
  }

  .reveal-stage__spacer {
    height: 0;
  }

  .pain-reveal__curtain {
    margin-top: 0;
  }

  .pain-reveal__inner {
    padding: clamp(40px, 8vw, 64px) 0 clamp(32px, 7vw, 52px);
  }

  .features {
    margin-top: 0;
    box-shadow: none;
    padding: clamp(48px, 8vw, 88px) 0;
  }

  .pain .container,
  .pain-reveal__inner,
  .features .container,
  .closing-section .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .features .container > h2 {
    white-space: normal;
  }

  .hero__title {
    font-size: clamp(40px, 9.8vw, 58px);
    max-width: 9.6ch;
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .hero__actions .btn {
    flex: 1 1 140px;
    min-width: min(100%, 160px);
  }

  .hero__meta {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: min(1120px, 100%);
    gap: 18px;
  }

  .hero__prepricing {
    width: 100%;
    margin: clamp(6px, 1vw, 10px) auto 0;
    text-align: center;
  }

  .hero__pricing {
    width: 100%;
  }

  .stage-emotion-copy {
    max-width: none;
  }

  .stage-emotion-copy__top {
    left: 22px;
    right: 22px;
    top: 72px;
    transform: none;
    max-width: none;
  }

  .stage-emotion-copy__bottom {
    left: 22px;
    right: 22px;
    bottom: 44px;
    max-width: none;
  }

  .stage-emotion-copy__title {
    font-size: clamp(34px, 11vw, 52px);
  }

  .hero__subtitle {
    max-width: none;
  }

  .hero__conversion {
    align-items: stretch;
    width: 100%;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .hero__text-link {
    text-align: left;
    align-self: flex-start;
  }

  .hero__conversion-note {
    margin-left: 0;
    max-width: none;
    text-align: left;
  }

  .media-placeholder {
    min-height: 260px;
  }

  .pricing-grid-2,
  .product-roadmap,
  .features .container {
    grid-template-columns: 1fr;
  }

  .closing-grid,
  .closing-support,
  .closing-pricing {
    gap: 18px;
  }

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

  .feature-row {
    min-height: auto;
  }

  .hero__pricing .pricecard {
    gap: 0;
  }

  .hero__pricing .pricecard .pro-mid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
    margin: 0;
  }

  .hero__pricing .pricecard ul {
    margin: 0;
  }

  .hero__pricing .pricecard .pro-price {
    margin: 0;
    font-size: clamp(28px, 7.4vw, 32px);
    line-height: 1;
  }

  .hero__pricing .pricecard .btn {
    margin-top: 30px;
  }

  .hero__pricing .pricecard .pro-license-button {
    margin: 30px auto 0;
  }

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

  .hero {
    min-height: auto;
    padding-top: clamp(28px, 6vw, 44px);
    padding-bottom: clamp(28px, 7vw, 46px);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
    min-height: 0;
    gap: 14px;
    align-content: start;
  }

  .hero__title {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.06;
  }

  h2,
  .pain__head h2,
  .features .container > h2,
  .stage-emotion-copy__title {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(28px, 8.6vw, 42px);
    line-height: 1.08;
  }

  .reveal-stage {
    display: block;
  }

  .reveal-stage__spacer {
    display: none;
    height: 0;
    min-height: 0;
  }

  .reveal-stage__backdrop,
  .reveal-stage.is-backdrop-fixed .reveal-stage__backdrop,
  .reveal-stage.is-backdrop-after .reveal-stage__backdrop {
    position: relative;
    inset: auto;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    opacity: 1;
    transform: none;
  }

  .media-placeholder--stage,
  .reveal-stage__backdrop .media-placeholder--stage {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1600 / 906;
    padding: 6px;
    display: block;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(24, 32, 26, 0.36));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
      0 18px 42px rgba(0, 0, 0, 0.20),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  .reveal-stage__backdrop .media-placeholder--stage::after {
    content: none;
  }

  .reveal-stage__backdrop .media-placeholder--stage img,
  .reveal-stage__backdrop .media-placeholder--stage video {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 1600 / 906;
    object-fit: contain;
    object-position: center center;
    transform: none;
    border-radius: 16px;
    border: 0;
    box-shadow: none;
  }

  .reveal-stage__backdrop .media-placeholder--stage video {
    display: block;
    padding: 0;
    background: transparent;
  }

  .stage-emotion-copy {
    position: relative;
    inset: auto;
    opacity: 1;
    transform: none;
    padding: clamp(26px, 7vw, 42px) 14px clamp(32px, 8vw, 48px);
    pointer-events: none;
  }

  .stage-emotion-copy__top,
  .stage-emotion-copy__bottom {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    max-width: 100%;
    margin: 0;
    transform: none;
  }

  .stage-emotion-copy__bottom {
    top: auto;
    bottom: auto;
    margin-top: 18px;
  }

  .stage-emotion-copy__top::before,
  .stage-emotion-copy__bottom::before {
    content: none;
  }

  .stage-emotion-copy__title {
    font-size: clamp(28px, 8.8vw, 40px);
    line-height: 1.08;
    white-space: normal;
    text-wrap: balance;
    overflow-wrap: break-word;
  }

  .stage-copy-line,
  .stage-copy-line > span,
  .stage-emotion-copy__eyebrow > span,
  .stage-emotion-copy__title .stage-copy-line > span,
  .stage-emotion-copy__lead .stage-copy-line > span {
    white-space: normal;
    opacity: 1;
    transform: none;
    translate: none;
  }

  .pain-reveal__curtain {
    margin-top: 0;
  }

  .pain-reveal__inner {
    padding: clamp(30px, 7vw, 46px) 0 clamp(28px, 7vw, 44px);
    gap: 18px;
  }

  .pain__head {
    width: 100%;
    max-width: 100%;
  }

  .pain__head h2 {
    font-size: clamp(28px, 8.8vw, 40px);
    line-height: 1.08;
  }

  .pricing-grid-2,
  .product-roadmap,
  .closing-support {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .downloadcard,
  .pricecard,
  .product-tile {
    min-height: auto;
    padding: 18px;
  }

  .faq details {
    min-height: auto;
    padding: 14px 16px;
  }

  .text-reveal,
  .line-reveal,
  .section-reveal,
  .line-inner,
  .text-reveal .line-inner {
    visibility: visible;
    opacity: 1;
    transform: none;
    translate: none;
    transition-delay: 0ms;
    animation-delay: 0ms;
    white-space: normal;
  }

  .reveal-stage .stage-emotion-copy,
  .reveal-stage.is-stage-copy-visible .stage-emotion-copy,
  .reveal-stage:not(.is-backdrop-fixed) .stage-emotion-copy,
  .reveal-stage.is-backdrop-after .stage-emotion-copy {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .reveal-stage .stage-emotion-copy .stage-copy-line,
  .reveal-stage .stage-emotion-copy .stage-copy-line > span,
  .reveal-stage .stage-emotion-copy__eyebrow > span,
  .reveal-stage .stage-emotion-copy__title .stage-copy-line > span,
  .reveal-stage .stage-emotion-copy__lead .stage-copy-line > span {
    visibility: visible;
    opacity: 1;
    transform: none;
    translate: none;
    transition: none;
    white-space: normal;
  }

  :root {
    --topbar-height: 152px;
  }

  .topbar__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    grid-template-areas:
      "brand actions"
      "nav nav";
    align-items: center;
    gap: 10px 8px;
    padding: 10px 0 12px;
    max-width: 100%;
  }

  .brand {
    grid-area: brand;
    width: 100%;
    min-width: 0;
    gap: 8px;
    overflow: hidden;
  }

  .brand__logo-wrap {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    flex: 0 0 auto;
  }

  .brand__name {
    display: block;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: clamp(15px, 4vw, 17px);
  }

  .actions {
    grid-area: actions;
    display: flex;
    flex-wrap: nowrap;
    flex: 0 1 auto;
    justify-self: end;
    gap: 6px;
    min-width: 0;
    max-width: min(54vw, 196px);
    overflow: visible;
  }

  .actions .btn,
  .lang-dropdown {
    flex: 0 1 auto;
    width: auto;
    min-width: 0;
  }

  .actions .btn,
  .lang-dropdown__trigger {
    width: auto;
    min-width: clamp(62px, 17vw, 74px);
    min-height: 36px;
    padding-inline: clamp(9px, 2.6vw, 12px);
    font-size: 13px;
    box-sizing: border-box;
    white-space: nowrap;
  }

  .lang-dropdown__trigger {
    justify-content: center;
  }

  .nav {
    grid-area: nav;
    width: 100%;
    min-width: 0;
    justify-content: center;
    justify-content: safe center;
    gap: 8px;
    padding: 7px 8px;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav .product-dropdown {
    flex: 0 0 auto;
  }

  .nav a,
  .nav .product-dropdown__trigger {
    flex: 0 0 auto;
    min-height: 42px;
    padding-inline: clamp(10px, 3vw, 16px);
    font-size: clamp(13px, 3.4vw, 14px);
    line-height: 1.08;
    text-align: center;
    white-space: nowrap;
  }

  .nav .product-dropdown__trigger {
    max-width: none;
  }
}
