.landing-page {
  overflow-x: hidden;
}

.landing-page::before {
  opacity: .55;
}

.landing-page .site-header {
  border-bottom-color: color-mix(in srgb,var(--line) 68%,transparent);
  background: color-mix(in srgb,var(--bg) 72%,transparent);
}

.landing-page .site-header .main-nav {
  margin-inline: auto;
}

.landing-page .site-header .main-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  padding: 0 4px;
}

.landing-header-login,
.landing-header-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0 14px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 680;
}

.landing-header-login {
  color: var(--muted);
}

.landing-header-login:hover {
  color: var(--text);
}

.landing-header-cta {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 22px rgba(249,115,22,.2);
}

.landing-header-cta:hover {
  background: var(--orange-bright);
  transform: translateY(-1px);
}

.landing-header-login:focus-visible,
.landing-header-cta:focus-visible,
.landing-page .main-nav a:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--orange-soft);
}

.landing-scroll-progress {
  position: fixed;
  z-index: 150;
  top: 67px;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.landing-scroll-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,var(--orange),#ffb15c);
  box-shadow: 0 0 12px rgba(249,115,22,.55);
  transform: scaleX(0);
  transform-origin: left;
}

.landing-hero {
  position: relative;
  width: min(1440px,calc(100% - 64px));
  min-height: calc(100svh - 68px);
  display: grid;
  grid-template-columns: minmax(0,.88fr) minmax(540px,1.12fr);
  align-items: center;
  gap: clamp(38px,6vw,104px);
  margin: 0 auto;
  padding: clamp(70px,9vh,126px) 0 92px;
}

.landing-hero-glow {
  position: absolute;
  z-index: -1;
  top: 7%;
  right: -12%;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(249,115,22,.16),rgba(249,115,22,.05) 35%,transparent 68%);
  filter: blur(15px);
  transform: translate3d(calc(var(--landing-pointer-x,0) * 18px),calc(var(--landing-pointer-y,0) * 18px),0);
}

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

.landing-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(58px,7.15vw,112px);
  line-height: .88;
  letter-spacing: -.077em;
  text-wrap: balance;
}

.landing-hero-copy > p {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(18px,1.75vw,25px);
  line-height: 1.42;
  letter-spacing: -.02em;
}

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

.landing-button {
  min-height: 52px;
  border-radius: 16px;
  padding-inline: 22px;
  font-size: 15px;
}

.landing-button span {
  transition: transform .18s;
}

.landing-button:hover span {
  transform: translateX(3px);
}

.landing-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 25px;
  color: var(--faint);
  font-size: 11px;
  font-weight: 580;
}

.landing-hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.landing-hero-facts span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(249,115,22,.65);
}

.landing-hero-product {
  min-width: 0;
  margin: 0;
  transform: perspective(1500px) rotateY(calc(-5deg + var(--landing-pointer-x,0) * 1.2deg)) rotateX(calc(var(--landing-pointer-y,0) * -1deg)) translateY(calc(var(--landing-scroll,0) * -22px));
  transform-origin: center;
  transition: transform .2s ease-out;
}

.landing-product-window {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: clamp(22px,2.5vw,36px);
  background: color-mix(in srgb,var(--panel-solid) 92%,transparent);
  box-shadow: 0 44px 130px rgba(0,0,0,.44),inset 0 1px rgba(255,255,255,.065);
  backdrop-filter: blur(30px) saturate(135%);
}

.landing-product-window::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025);
  pointer-events: none;
}

.landing-window-bar {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  padding: 0 20px;
  color: var(--faint);
  font-size: 10px;
  font-weight: 650;
}

.landing-window-bar i,
.landing-demo-framebar > span i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(118,118,128,.42);
}

.landing-window-bar i:first-child,
.landing-demo-framebar > span i:first-child { background: #ff5f57; }
.landing-window-bar i:nth-child(2),
.landing-demo-framebar > span i:nth-child(2) { background: #febc2e; }
.landing-window-bar i:nth-child(3),
.landing-demo-framebar > span i:nth-child(3) { background: #28c840; }

.landing-window-bar span {
  margin-left: auto;
  margin-right: auto;
  transform: translateX(-22px);
}

.landing-builder-canvas {
  position: relative;
  min-height: clamp(430px,43vw,610px);
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.022) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.022) 1px,transparent 1px),
    radial-gradient(circle at 50% 22%,rgba(249,115,22,.075),transparent 38%),
    var(--bg-soft);
  background-size: 38px 38px,38px 38px,auto,auto;
}

[data-theme="light"] .landing-builder-canvas {
  background:
    linear-gradient(rgba(0,0,0,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(0,0,0,.035) 1px,transparent 1px),
    radial-gradient(circle at 50% 22%,rgba(249,115,22,.08),transparent 38%),
    #f7f7f9;
  background-size: 38px 38px,38px 38px,auto,auto;
}

.landing-builder-canvas svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.landing-builder-canvas path {
  fill: none;
  stroke: rgba(249,115,22,.74);
  stroke-width: 2.4;
  filter: drop-shadow(0 0 7px rgba(249,115,22,.35));
  stroke-dasharray: 7 8;
  animation: landing-line-flow 8s linear infinite;
}

.landing-builder-canvas circle {
  fill: var(--orange);
  filter: drop-shadow(0 0 8px var(--orange));
  animation: landing-path-dot 3.2s ease-in-out infinite;
}

.landing-builder-canvas circle:nth-of-type(2) { animation-delay: -1s; }
.landing-builder-canvas circle:nth-of-type(3) { animation-delay: -2s; }

.landing-demo-node {
  position: absolute;
  display: grid;
  border: 1px solid var(--line-strong);
  border-radius: 19px;
  padding: 16px;
  background: color-mix(in srgb,var(--panel-solid) 94%,transparent);
  color: var(--text);
  box-shadow: 0 18px 52px rgba(0,0,0,.24),inset 0 1px rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
  animation: landing-node-float 6s ease-in-out infinite;
}

.landing-demo-node small {
  color: var(--orange);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.landing-demo-node strong {
  margin-top: 8px;
  font-size: clamp(11px,1vw,14px);
  line-height: 1.35;
}

.landing-demo-start {
  top: 40%;
  left: 7%;
  width: 112px;
  place-items: center;
}

.landing-demo-start b {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 13px;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 24px rgba(249,115,22,.28);
}

.landing-demo-start span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 9px;
}

.landing-demo-question {
  top: 12%;
  left: 38%;
  width: 190px;
}

.landing-question-actions {
  display: flex;
  gap: 5px;
  margin-top: 17px;
}

.landing-route-answer {
  flex: 1;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 7px;
  background: rgba(118,118,128,.11);
  color: var(--muted);
  font-size: 8px;
  font-weight: 650;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .18s ease,background .18s ease,color .18s ease,box-shadow .18s ease,transform .18s ease;
}

.landing-route-answer:hover,
.landing-route-answer:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.landing-route-answer.is-yes:hover,
.landing-route-answer.is-yes:focus-visible {
  border-color: rgba(52,199,89,.38);
  background: rgba(52,199,89,.13);
  box-shadow: 0 5px 16px rgba(52,199,89,.11);
}

.landing-route-answer.is-no:hover,
.landing-route-answer.is-no:focus-visible {
  border-color: rgba(249,115,22,.42);
  background: rgba(249,115,22,.13);
  box-shadow: 0 5px 16px rgba(249,115,22,.12);
}

.landing-route-answer:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--orange-soft);
}

.landing-builder-canvas:has(.landing-route-answer.is-yes:is(:hover,:focus-visible)) path[data-landing-route="yes"],
.landing-builder-canvas:has(.landing-route-answer.is-no:is(:hover,:focus-visible)) path[data-landing-route="no"] {
  stroke-width: 3.4;
  filter: drop-shadow(0 0 11px rgba(249,115,22,.72));
}

.landing-demo-result {
  right: 6%;
  width: 160px;
}

.landing-demo-result.is-success {
  top: 6%;
  border-color: rgba(52,199,89,.28);
  animation-delay: -1.8s;
}

.landing-demo-result.is-review {
  top: 58%;
  border-color: rgba(255,159,10,.3);
  animation-delay: -3.5s;
}

.landing-hero-product figcaption {
  margin-top: 16px;
  color: var(--faint);
  font-size: 11px;
  text-align: center;
}

.landing-scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--faint);
  text-decoration: none;
  font-size: 10px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.landing-scroll-cue i {
  position: relative;
  width: 19px;
  height: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}

.landing-scroll-cue i::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
  transform: translateX(-50%);
  animation: landing-scroll-dot 2s ease-in-out infinite;
}

.landing-section-heading {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.landing-section-heading h2 {
  margin: 0;
  font-size: clamp(44px,6.3vw,88px);
  line-height: .98;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.landing-section-heading > p {
  max-width: 690px;
  margin: 23px auto 0;
  color: var(--muted);
  font-size: clamp(16px,1.6vw,20px);
  line-height: 1.55;
}

.landing-story {
  width: min(1260px,calc(100% - 64px));
  margin: 0 auto;
  padding: 150px 0 170px;
  scroll-margin-top: 68px;
}

.landing-story-layout {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(330px,.7fr);
  gap: clamp(54px,8vw,122px);
  margin-top: 110px;
}

.landing-story-stage {
  position: sticky;
  top: calc(50vh - 260px);
  height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: linear-gradient(145deg,rgba(255,255,255,.045),transparent 42%),var(--panel);
  box-shadow: var(--shadow),inset 0 1px rgba(255,255,255,.05);
  backdrop-filter: blur(32px) saturate(135%);
}

.landing-stage-orb {
  position: absolute;
  right: -24%;
  bottom: -42%;
  width: 84%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(249,115,22,.24),transparent 65%);
  filter: blur(18px);
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}

.landing-story-stage[data-active="refine"] .landing-stage-orb { transform: translate(-55%,-42%) scale(.75); }
.landing-story-stage[data-active="share"] .landing-stage-orb { transform: translate(-12%,-68%) scale(.9); }
.landing-story-stage[data-active="learn"] .landing-stage-orb { transform: translate(-68%,-4%) scale(.7); }

.landing-stage-panel {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 44px;
  opacity: 0;
  transform: translateY(30px) scale(.97);
  transition: opacity .55s ease,transform .7s cubic-bezier(.2,.8,.2,1);
}

.landing-stage-panel.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.landing-stage-panel > strong {
  position: absolute;
  right: 36px;
  bottom: 31px;
  left: 36px;
  font-size: clamp(20px,2.3vw,32px);
  letter-spacing: -.04em;
  text-align: center;
}

.landing-stage-toolbar {
  position: absolute;
  top: 27px;
  right: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--faint);
  font-size: 9px;
}

.landing-stage-toolbar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(118,118,128,.4);
}

.landing-stage-toolbar b {
  margin-left: auto;
  font-weight: 600;
}

.landing-stage-nodes {
  position: relative;
  width: min(520px,85%);
  height: 210px;
}

.stage-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: var(--panel-solid);
  color: var(--orange);
  box-shadow: 0 16px 42px rgba(0,0,0,.24);
  font-size: 28px;
  font-style: normal;
  font-weight: 750;
}

.stage-node-a { top: 72px; left: 0; width: 84px; height: 72px; }
.stage-node-b { top: 24px; left: calc(50% - 52px); width: 104px; height: 104px; }
.stage-node-c { right: 0; bottom: 5px; width: 90px; height: 82px; color: var(--success); }

.stage-line {
  position: absolute;
  z-index: 1;
  height: 2px;
  background: linear-gradient(90deg,var(--orange),rgba(249,115,22,.2));
  box-shadow: 0 0 10px rgba(249,115,22,.3);
  transform-origin: left;
}

.stage-line-a { top: 106px; left: 82px; width: calc(50% - 112px); transform: rotate(-13deg); }
.stage-line-b { top: 102px; left: 50%; width: calc(50% - 88px); transform: rotate(22deg); }

.landing-version-stack {
  position: relative;
  width: 260px;
  height: 210px;
}

.landing-version-stack i {
  position: absolute;
  inset: 20px 0 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: var(--panel-solid);
  box-shadow: 0 20px 50px rgba(0,0,0,.22);
  color: var(--muted);
  font-size: 24px;
  font-style: normal;
  font-weight: 750;
}

.landing-version-stack i:first-child { transform: translate(-42px,18px) rotate(-9deg); opacity: .35; }
.landing-version-stack i:nth-child(2) { transform: translate(42px,10px) rotate(8deg); opacity: .58; }
.landing-version-stack i:last-child { z-index: 2; color: var(--orange); }

.landing-ai-spark {
  position: absolute;
  top: 115px;
  right: 21%;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 21px;
  background: linear-gradient(145deg,#ff9f0a,var(--orange));
  color: #fff;
  box-shadow: 0 18px 42px rgba(249,115,22,.35);
  font-size: 28px;
  animation: landing-spark 4s ease-in-out infinite;
}

.landing-link-pill {
  width: min(470px,90%);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 11px 14px;
  background: var(--panel-solid);
  color: var(--muted);
  box-shadow: 0 18px 45px rgba(0,0,0,.2);
  font-size: 11px;
}

.landing-link-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px var(--success);
}

.landing-link-pill b { margin-left: auto; color: var(--orange); }

.landing-mini-runtime {
  width: min(340px,80%);
  display: grid;
  gap: 12px;
  margin-top: 32px;
  border: 1px solid var(--line);
  border-radius: 25px;
  padding: 24px;
  background: color-mix(in srgb,var(--panel-solid) 94%,transparent);
  box-shadow: 0 24px 58px rgba(0,0,0,.24);
}

.landing-mini-runtime span { color: var(--orange); font-size: 9px; font-weight: 700; }
.landing-mini-runtime strong { margin-bottom: 5px; font-size: 18px; }
.landing-mini-runtime i { height: 34px; border-radius: 10px; background: rgba(118,118,128,.11); }

.landing-metric {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.landing-metric span {
  font-size: clamp(72px,10vw,118px);
  font-weight: 760;
  letter-spacing: -.08em;
}

.landing-metric i {
  width: min(420px,70vw);
  height: 9px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(118,118,128,.15);
}

.landing-metric b {
  display: block;
  width: 84%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg,var(--orange),#ffb15c);
  box-shadow: 0 0 16px rgba(249,115,22,.55);
}

.landing-bars {
  height: 72px;
  display: flex;
  align-items: end;
  gap: 9px;
  margin-top: 22px;
}

.landing-bars i {
  width: 28px;
  border-radius: 8px 8px 3px 3px;
  background: rgba(249,115,22,.38);
}

.landing-bars i:nth-child(1) { height: 35%; }
.landing-bars i:nth-child(2) { height: 68%; }
.landing-bars i:nth-child(3) { height: 48%; }
.landing-bars i:nth-child(4) { height: 90%; background: var(--orange); }
.landing-bars i:nth-child(5) { height: 72%; }

.landing-story-steps {
  display: grid;
}

.landing-story-step {
  min-height: 68vh;
  display: grid;
  align-content: center;
  border-left: 1px solid var(--line);
  padding: 56px 0 56px 34px;
  opacity: .35;
  transition: opacity .35s,transform .45s;
}

.landing-story-step.is-active {
  opacity: 1;
  transform: translateX(7px);
}

.landing-story-step > span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .12em;
}

.landing-story-step h3 {
  margin: 14px 0 0;
  font-size: clamp(32px,4vw,52px);
  line-height: 1;
  letter-spacing: -.055em;
}

.landing-story-step p {
  max-width: 410px;
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.landing-demo-section,
.landing-pricing {
  width: min(1380px,calc(100% - 64px));
  margin: 0 auto;
  padding: 150px 0;
  scroll-margin-top: 68px;
}

.landing-demo-section {
  border-top: 1px solid var(--line);
}

.landing-demo-frame {
  overflow: hidden;
  margin-top: 72px;
  border: 1px solid var(--line-strong);
  border-radius: 32px;
  background: var(--panel-solid);
  box-shadow: 0 36px 110px rgba(0,0,0,.38),inset 0 1px rgba(255,255,255,.05);
}

.landing-demo-framebar {
  min-height: 55px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 0 20px;
}

.landing-demo-framebar > span {
  display: flex;
  gap: 7px;
}

.landing-demo-framebar b {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
}

.landing-demo-framebar a {
  justify-self: end;
  border-radius: 9px;
  padding: 8px;
  color: var(--orange);
  text-decoration: none;
  font-size: 10px;
  font-weight: 650;
}

.landing-demo-framebar a:hover {
  background: var(--orange-soft);
}

.landing-demo-frame iframe {
  display: block;
  width: 100%;
  height: min(820px,78vh);
  min-height: 650px;
  border: 0;
  background: #0a0c10;
}

.landing-demo-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 18px 0 0;
  color: var(--faint);
  font-size: 11px;
  text-align: center;
}

.landing-demo-note span { color: var(--orange); }

.landing-pricing {
  max-width: 1240px;
}

.landing-cycle {
  display: grid;
  justify-items: center;
  gap: 9px;
  margin-top: 48px;
}

.landing-cycle > div {
  display: inline-grid;
  grid-template-columns: repeat(2,1fr);
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  background: rgba(118,118,128,.1);
}

.landing-cycle button {
  min-height: 39px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  background: transparent;
  color: var(--muted);
  box-shadow: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 670;
}

.landing-cycle button span {
  margin-left: 4px;
  color: var(--orange);
  font-size: 9px;
}

.landing-cycle button.is-active {
  background: var(--panel-solid);
  color: var(--text);
  box-shadow: 0 3px 12px rgba(0,0,0,.16);
}

.landing-cycle button:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--orange-soft);
}

.landing-cycle > p {
  margin: 0;
  color: var(--faint);
  font-size: 10px;
}

.landing-price-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 52px;
}

.landing-price-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 31px;
  background: var(--panel);
  box-shadow: 0 22px 65px rgba(0,0,0,.16),inset 0 1px rgba(255,255,255,.045);
  backdrop-filter: blur(26px);
}

.landing-price-card.is-featured {
  border-color: rgba(249,115,22,.42);
  background: linear-gradient(155deg,rgba(249,115,22,.16),var(--panel) 37%);
  box-shadow: 0 28px 82px rgba(249,115,22,.12),inset 0 1px rgba(255,255,255,.065);
  transform: translateY(-10px);
}

.landing-plan-label {
  align-self: flex-start;
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(118,118,128,.12);
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.landing-price-card.is-featured .landing-plan-label {
  background: var(--orange-soft);
  color: var(--orange);
}

.landing-price-card h3 {
  margin: 22px 0 0;
  font-size: 31px;
  letter-spacing: -.045em;
}

.landing-price {
  min-height: 56px;
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 13px 0 0;
}

.landing-price strong {
  font-size: clamp(34px,4vw,49px);
  line-height: 1;
  letter-spacing: -.055em;
}

.landing-price small {
  color: var(--faint);
  font-size: 10px;
}

.landing-price-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 31px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.landing-price-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.landing-price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 780;
}

.landing-price-card > a {
  width: 100%;
  margin-top: auto;
}

.landing-pricing-note {
  margin: 22px 0 0;
  color: var(--faint);
  font-size: 10px;
  text-align: center;
}

.landing-final-cta {
  position: relative;
  width: min(1180px,calc(100% - 64px));
  overflow: hidden;
  margin: 70px auto 140px;
  border: 1px solid var(--line);
  border-radius: 38px;
  padding: clamp(75px,10vw,130px) 30px;
  background: linear-gradient(150deg,rgba(249,115,22,.18),transparent 37%),var(--panel);
  box-shadow: var(--shadow),inset 0 1px rgba(255,255,255,.055);
  text-align: center;
}

.landing-final-cta h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(45px,6.2vw,82px);
  line-height: .98;
  letter-spacing: -.064em;
  text-wrap: balance;
}

.landing-final-cta > a {
  margin-top: 34px;
}

.landing-final-orbit {
  position: absolute;
  top: 28px;
  left: 50%;
  width: 240px;
  height: 90px;
  opacity: .27;
  transform: translateX(-50%);
}

.landing-final-orbit i {
  position: absolute;
  inset: 0;
  border: 1px solid var(--orange);
  border-radius: 50%;
  animation: landing-final-orbit 18s linear infinite;
}

.landing-final-orbit i:nth-child(2) {
  transform: rotate(24deg);
  animation-direction: reverse;
  animation-duration: 13s;
}

.landing-final-orbit span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  transform: translate(-50%,-50%);
}

.landing-reveal {
  opacity: 1;
  transform: translateY(0);
}

.landing-js .landing-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease,transform .85s cubic-bezier(.2,.8,.2,1);
}

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

@keyframes landing-line-flow { to { stroke-dashoffset: -120; } }
@keyframes landing-path-dot { 0%,100% { opacity: .45; transform: scale(.75); } 50% { opacity: 1; transform: scale(1.3); } }
@keyframes landing-node-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes landing-scroll-dot { 0% { opacity: 0; transform: translate(-50%,0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,10px); } }
@keyframes landing-spark { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-8px) rotate(4deg); } }
@keyframes landing-final-orbit { to { transform: rotate(360deg); } }

@media (max-width: 1120px) {
  .landing-hero {
    grid-template-columns: 1fr;
    width: min(100% - 48px,940px);
    min-height: auto;
    padding-top: 100px;
    text-align: center;
  }
  .landing-hero-copy h1,
  .landing-hero-copy > p { margin-inline: auto; }
  .landing-hero-actions,
  .landing-hero-facts { justify-content: center; }
  .landing-hero-product { width: min(900px,100%); margin: 20px auto 0; transform: none; }
  .landing-scroll-cue { display: none; }
  .landing-builder-canvas { min-height: 570px; }
}

@media (max-width: 900px) {
  .landing-header-login { display: none; }
  .landing-story-layout { grid-template-columns: 1fr; }
  .landing-story-stage { position: sticky; top: 88px; z-index: 2; height: 430px; }
  .landing-story-step { min-height: 60vh; border-left: 0; padding-left: 8px; }
  .landing-price-grid { grid-template-columns: 1fr; width: min(560px,100%); margin-inline: auto; }
  .landing-price-card.is-featured { transform: none; }
}

@media (max-width: 640px) {
  .landing-page .site-header { min-height: 62px; }
  .landing-page .brand > span:last-child { display: none; }
  .landing-page .guest-language-switch > div { grid-template-columns: repeat(2,29px); }
  .landing-page .guest-language-switch button { min-height: 25px; }
  .landing-page .theme-toggle { width: 38px; }
  .landing-header-cta { min-height: 34px; padding-inline: 11px; font-size: 10px; }
  .landing-scroll-progress { top: 61px; }
  .landing-hero,
  .landing-story,
  .landing-demo-section,
  .landing-pricing,
  .landing-final-cta { width: min(100% - 28px,1380px); }
  .landing-hero { padding: 72px 0 70px; }
  .landing-hero-copy h1 { font-size: clamp(51px,15vw,72px); }
  .landing-hero-copy > p { margin-top: 24px; font-size: 17px; }
  .landing-hero-actions { display: grid; }
  .landing-hero-actions > a { width: 100%; }
  .landing-hero-facts { display: grid; justify-content: center; text-align: left; }
  .landing-window-bar { min-height: 44px; }
  .landing-builder-canvas { min-height: 430px; }
  .landing-demo-start { top: 40%; left: 4%; width: 72px; padding: 10px; }
  .landing-demo-start b { width: 32px; height: 32px; }
  .landing-demo-question { top: 11%; left: 30%; width: 142px; padding: 12px; }
  .landing-demo-result { right: 3%; width: 110px; padding: 11px; }
  .landing-demo-result.is-review { top: 65%; }
  .landing-builder-canvas svg { transform: scaleX(.9); transform-origin: center; }
  .landing-story { padding: 100px 0 80px; }
  .landing-story-layout { margin-top: 65px; }
  .landing-story-stage { top: 74px; height: 330px; border-radius: 25px; }
  .landing-stage-panel { padding: 24px; }
  .landing-stage-panel > strong { right: 18px; bottom: 19px; left: 18px; font-size: 18px; }
  .landing-stage-nodes { transform: scale(.78); }
  .landing-version-stack { transform: scale(.75); }
  .landing-ai-spark { top: 78px; right: 14%; transform: scale(.8); }
  .landing-story-step { min-height: 52vh; padding-block: 42px; }
  .landing-demo-section,
  .landing-pricing { padding: 100px 0; }
  .landing-demo-frame { margin-top: 50px; border-radius: 22px; }
  .landing-demo-framebar { grid-template-columns: auto 1fr; min-height: 50px; padding: 0 13px; }
  .landing-demo-framebar b { display: none; }
  .landing-demo-framebar a { justify-self: end; }
  .landing-demo-frame iframe { height: 690px; min-height: 690px; }
  .landing-cycle { margin-top: 35px; }
  .landing-cycle button { padding-inline: 12px; }
  .landing-price-grid { margin-top: 38px; }
  .landing-price-card { border-radius: 24px; padding: 25px; }
  .landing-final-cta { margin-block: 25px 90px; border-radius: 27px; padding-inline: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .landing-hero-product,
  .landing-hero-glow { transform: none!important; }
  .landing-builder-canvas path,
  .landing-builder-canvas circle,
  .landing-demo-node,
  .landing-scroll-cue i::after,
  .landing-ai-spark,
  .landing-final-orbit i { animation: none!important; }
  .landing-js .landing-reveal { opacity: 1; transform: none; }
  .landing-stage-panel { transition: none; }
}
