:root {
  color-scheme: dark;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  min-width: 320px;
  background: #07090f;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

button,
input {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(109, 149, 255, .7);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: #2a5cff;
  border-radius: 6px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: none;
}

.site-shell {
  --bg: #07090f;
  --bg-soft: #0b0e16;
  --ink: #f2f5fa;
  --sub: #8a93a6;
  --sub2: #6b7484;
  --sub-strong: #b9c1d0;
  --panel: rgba(255, 255, 255, .03);
  --panel2: rgba(0, 0, 0, .35);
  --panel-solid: #111520;
  --panel-raised: #171c29;
  --line: rgba(255, 255, 255, .09);
  --line2: rgba(255, 255, 255, .16);
  --line-strong: rgba(255, 255, 255, .16);
  --grid: rgba(120, 140, 255, .07);
  --chipline: rgba(120, 140, 255, .35);
  --chipink: #b9c1d0;
  --shotline: rgba(140, 160, 255, .4);
  --track: rgba(255, 255, 255, .08);
  --keyink: #8fa8ff;
  --glowbtn: 0 0 34px rgba(93, 112, 255, .55);
  --shotshadow: 0 30px 80px rgba(0, 0, 0, .5);
  --orb1: rgba(77, 124, 255, .4);
  --orb2: rgba(157, 107, 255, .35);
  --shadow: 0 30px 80px rgba(0, 0, 0, .5);
  min-height: 100vh;
  overflow-x: clip;
  color: var(--ink);
  background: var(--bg);
  transition: color .25s ease, background .25s ease;
}

.site-shell[data-theme="light"] {
  --bg: #f5f7fb;
  --bg-soft: #edf1f8;
  --ink: #0b0e14;
  --sub: #5a6472;
  --sub2: #8a93a6;
  --sub-strong: #3a4352;
  --panel: #fff;
  --panel2: #f1f4fa;
  --panel-solid: #fff;
  --panel-raised: #f1f4fa;
  --line: #e9edf5;
  --line2: #d9e0ec;
  --line-strong: #d9e0ec;
  --grid: rgba(42, 92, 255, .08);
  --chipline: rgba(42, 92, 255, .3);
  --chipink: #3a4352;
  --shotline: #cbd6f2;
  --track: #e5eaf4;
  --keyink: #2a5cff;
  --glowbtn: 0 12px 30px rgba(77, 110, 255, .35);
  --shotshadow: 0 24px 60px rgba(11, 14, 20, .14);
  --orb1: rgba(77, 124, 255, .22);
  --orb2: rgba(157, 107, 255, .18);
  --shadow: 0 26px 70px rgba(21, 34, 67, .15);
  color-scheme: light;
}

.container {
  width: min(1180px, calc(100% - 112px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: 104px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  flex: none;
}

.brand-copy {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}

.brand-copy strong {
  font-size: 15px;
}

.brand-copy small {
  color: var(--sub);
  font-size: 12px;
}

.nav-actions,
.nav-links {
  display: flex;
  align-items: center;
}

.nav-actions {
  gap: 12px;
}

.nav-links {
  gap: 27px;
  margin-right: 8px;
}

.nav-links a {
  color: var(--sub-strong);
  font-size: 14px;
  text-decoration: none;
  transition: color .2s ease;
}

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

.icon-button {
  width: 38px;
  height: 38px;
  flex: none;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: linear-gradient(100deg, #4d7cff, #8d67f4);
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(77, 110, 255, .3);
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(77, 110, 255, .4);
}

.button-small {
  min-height: 40px;
  padding: 0 20px;
  font-size: 13px;
}

.hero {
  min-height: calc(100vh - 72px);
  padding-top: 72px;
  padding-bottom: 90px;
  overflow: hidden;
  text-align: center;
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0, transparent 72%);
  mask-image: linear-gradient(to bottom, #000 0, transparent 72%);
}

.hero-glow {
  position: absolute;
  width: 560px;
  height: 420px;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .34;
}

.hero-glow-one {
  top: -190px;
  left: -190px;
  background: #2a5cff;
  animation: glow-one 13s ease-in-out infinite;
}

.hero-glow-two {
  top: 20px;
  right: -230px;
  background: #9d6bff;
  animation: glow-two 15s ease-in-out infinite;
}

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

.eyebrow {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 auto 20px;
  padding: 8px 13px;
  color: var(--sub-strong);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.status-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  flex: none;
  background: #43e58c;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(67, 229, 140, .8);
}

.hero h1,
.section-heading h2,
.download-section h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 900px;
  margin-inline: auto;
  font-size: 64px;
  line-height: 1.17;
  font-weight: 950;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(95deg, #6d95ff 4%, #b08cff 58%, #f078a7 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--sub);
  font-size: 16px;
  line-height: 1.9;
}

.prompt-demo {
  width: min(650px, 100%);
  height: 60px;
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 30px auto 0;
  padding: 0 10px 0 18px;
  color: var(--sub-strong);
  background: color-mix(in srgb, var(--panel-solid) 78%, transparent);
  border: 1px solid rgba(109, 149, 255, .35);
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(14, 18, 33, .24), inset 0 1px rgba(255, 255, 255, .04);
  text-align: left;
}

.spark {
  color: #8fa8ff;
  font-size: 19px;
}

.typed-text {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 14px;
}

.typing-cursor {
  width: 1px;
  height: 20px;
  margin-left: -7px;
  background: #8fa8ff;
  animation: blink 1s step-end infinite;
}

.send-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  flex: none;
  margin-left: auto;
  color: #fff;
  background: linear-gradient(135deg, #4d7cff, #9d6bff);
  border-radius: 8px;
  font-weight: 900;
}

.hero-cta {
  min-height: 54px;
  margin-top: 24px;
  padding: 0 34px;
  font-size: 16px;
}

.app-window {
  width: min(1000px, 100%);
  margin: 58px auto 0;
  overflow: hidden;
  background: var(--panel-solid);
  border: 1px solid rgba(136, 155, 222, .28);
  border-radius: 12px;
  box-shadow: var(--shadow), 0 0 60px rgba(77, 124, 255, .13);
  text-align: left;
}

.window-bar {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
  background: var(--panel-raised);
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--sub-strong);
  font-size: 11px;
  font-weight: 700;
}

.window-controls {
  display: flex;
  gap: 8px;
}

.window-controls i {
  width: 9px;
  height: 9px;
  background: var(--line-strong);
  border-radius: 50%;
}

.window-controls i:nth-child(1) { background: #ff6c67; }
.window-controls i:nth-child(2) { background: #f7c451; }
.window-controls i:nth-child(3) { background: #55d48a; }

.window-body {
  min-height: 420px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
}

.preview-pane,
.assistant-pane {
  min-width: 0;
  padding: 22px;
}

.preview-pane {
  border-right: 1px solid var(--line);
}

.pane-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
  color: var(--sub);
  font-size: 11px;
  font-weight: 700;
}

.video-frame {
  position: relative;
  height: 292px;
  overflow: hidden;
  background: linear-gradient(150deg, #28334b, #121722 68%);
  border-radius: 8px;
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 30px 30px;
}

.video-person {
  position: absolute;
  inset: 0;
}

.person-head {
  position: absolute;
  top: 60px;
  left: 50%;
  width: 64px;
  height: 72px;
  background: linear-gradient(145deg, #f2c8ad, #b57e6e);
  border-radius: 46% 46% 42% 42%;
  transform: translateX(-50%);
  box-shadow: 0 -13px 0 -4px #252635;
}

.person-body {
  position: absolute;
  bottom: -40px;
  left: 50%;
  width: 190px;
  height: 190px;
  background: linear-gradient(145deg, #6e79a3, #30374d);
  border-radius: 50% 50% 12% 12%;
  transform: translateX(-50%);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #151925;
  background: rgba(255, 255, 255, .9);
  border-radius: 50%;
  font-size: 13px;
  transform: translate(-50%, -50%);
}

.caption-line {
  position: absolute;
  right: 24px;
  bottom: 25px;
  left: 24px;
  padding: 6px 8px;
  color: #fff;
  background: rgba(9, 12, 18, .62);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.timeline {
  position: relative;
  height: 32px;
  margin-top: 15px;
  overflow: hidden;
  background: var(--track);
  border-radius: 5px;
}

.timeline-progress {
  position: absolute;
  inset: 0 57% 0 0;
  background: rgba(77, 124, 255, .35);
  border-right: 2px solid #6d95ff;
}

.timeline i {
  position: absolute;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: #f078a7;
  border-radius: 2px;
}

.timeline .cut-one { left: 24%; }
.timeline .cut-two { left: 48%; }
.timeline .cut-three { left: 73%; }

.assistant-pane {
  display: flex;
  flex-direction: column;
}

.assistant-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.assistant-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #4d7cff, #9d6bff);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
}

.assistant-header strong,
.assistant-header small {
  display: block;
}

.assistant-header strong {
  font-size: 12px;
}

.assistant-header small {
  margin-top: 4px;
  color: var(--sub);
  font-size: 9px;
}

.assistant-header .status-dot {
  width: 5px;
  height: 5px;
  margin-right: 4px;
}

.chat-stream {
  min-height: 222px;
  padding: 15px 0;
}

.chat-bubble {
  width: fit-content;
  max-width: 84%;
  margin: 0 0 10px;
  padding: 9px 11px;
  color: var(--sub-strong);
  background: var(--panel-raised);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 10px;
  line-height: 1.5;
}

.chat-bubble.user-message {
  margin-left: auto;
  color: #fff;
  background: linear-gradient(100deg, #476fe0, #7862d8);
  border: 0;
}

.chat-bubble.compact {
  margin-bottom: 8px;
}

.progress-card {
  padding: 10px 11px;
  background: var(--panel);
  border: 1px solid rgba(109, 149, 255, .24);
  border-radius: 7px;
}

.progress-card > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: var(--sub-strong);
  font-size: 9px;
}

.progress-card span {
  color: #8fa8ff;
}

.progress-track {
  height: 4px;
  margin-top: 8px;
  overflow: hidden;
  background: var(--track);
  border-radius: 999px;
}

.progress-track span {
  width: 46%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, #4d7cff, #9d6bff);
  animation: progress-glow 2s ease-in-out infinite;
}

.quick-actions {
  display: flex;
  gap: 6px;
  overflow: hidden;
}

.quick-actions span {
  flex: none;
  padding: 5px 7px;
  color: var(--sub);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 8px;
}

.fake-input {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 0 6px 0 12px;
  color: var(--sub);
  background: var(--panel-raised);
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  font-size: 9px;
}

.fake-input b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin-left: auto;
  color: #fff;
  background: #4d7cff;
  border-radius: 6px;
}

.stats-band {
  border-block: 1px solid var(--line);
  background: var(--panel);
}

.stats {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.stats > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stats strong {
  color: #8fa8ff;
  font-size: 22px;
}

.stats span {
  color: var(--sub);
  font-size: 11px;
}

.stats > i {
  width: 1px;
  height: 38px;
  background: var(--line);
}

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

.section-kicker {
  margin: 0 0 12px;
  color: #8fa8ff;
  font-size: 11px;
  font-weight: 900;
}

.section-heading h2,
.download-section h2 {
  font-size: 42px;
  line-height: 1.25;
}

.section-heading > p:last-child,
.download-section .container > p {
  margin: 14px 0 0;
  color: var(--sub);
  font-size: 14px;
  line-height: 1.8;
}

.steps-section {
  background: linear-gradient(to bottom, var(--bg), var(--bg-soft), var(--bg));
}

.steps-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
}

.step-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-tabs li {
  min-width: 0;
}

.step-tabs button {
  width: 100%;
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  color: var(--sub);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.step-tabs button:hover,
.step-tabs button.active {
  color: var(--ink);
  background: var(--panel);
  border-color: var(--line);
}

.step-tabs button > span:first-child {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: none;
  color: var(--sub);
  background: var(--track);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 900;
}

.step-tabs button.active > span:first-child {
  color: #fff;
  background: linear-gradient(135deg, #4d7cff, #9d6bff);
}

.step-tabs button strong,
.step-tabs button small {
  display: block;
}

.step-tabs button strong {
  font-size: 14px;
}

.step-tabs button small {
  margin-top: 5px;
  color: var(--sub);
  font-size: 10px;
}

.step-stage {
  min-width: 0;
  min-height: 420px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.step-panel {
  height: 100%;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 35px;
  align-items: center;
  padding: 38px;
  animation: panel-in .35s ease both;
}

.step-panel[hidden] {
  display: none;
}

.step-number {
  color: #8fa8ff;
  font-size: 11px;
  font-weight: 900;
}

.step-copy h3 {
  margin: 10px 0 12px;
  font-size: 28px;
  line-height: 1.35;
}

.step-copy > p {
  margin: 0;
  color: var(--sub);
  font-size: 13px;
  line-height: 1.8;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  color: var(--sub-strong);
  font-size: 11px;
  list-style: none;
}

.check-list li::before {
  content: "✓";
  margin-right: 8px;
  color: #43e58c;
  font-weight: 900;
}

.upload-demo,
.decision-demo,
.compare-demo {
  min-width: 0;
  min-height: 300px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: var(--panel-solid);
}

.upload-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--sub);
  border-style: dashed;
}

.upload-demo .upload-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  color: #8fa8ff;
  background: rgba(77, 124, 255, .13);
  border-radius: 9px;
  font-size: 25px;
}

.upload-demo strong {
  color: var(--ink);
  font-size: 16px;
}

.upload-demo > span {
  margin-top: 8px;
  color: #8fa8ff;
  font-size: 11px;
}

.upload-demo small {
  margin-top: 26px;
  padding: 8px 12px;
  background: var(--panel-raised);
  border-radius: 6px;
  font-size: 9px;
}

.decision-demo {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
}

.decision-demo > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px;
  background: var(--panel-raised);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.decision-demo > div > span {
  color: #8fa8ff;
  font-size: 10px;
  font-weight: 900;
}

.decision-demo p {
  margin: 0;
  color: var(--sub-strong);
  font-size: 11px;
  font-weight: 700;
}

.decision-demo small {
  display: block;
  margin-top: 7px;
  color: var(--sub);
  font-size: 8px;
  font-weight: 500;
}

.decision-demo > b {
  margin-top: auto;
  padding: 10px 12px;
  color: #fff;
  background: linear-gradient(90deg, #4d7cff, #9d6bff);
  border-radius: 7px;
  font-size: 10px;
  text-align: center;
}

.compare-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px;
}

.phone-shot {
  position: relative;
  width: 38%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: linear-gradient(155deg, #384760, #161c28);
  border: 3px solid #2c3444;
  border-radius: 10px;
}

.phone-shot::before {
  content: "";
  position: absolute;
  top: 25%;
  left: 50%;
  width: 35%;
  aspect-ratio: 1;
  background: #c8977f;
  border-radius: 50%;
  transform: translateX(-50%);
}

.phone-shot::after {
  content: "";
  position: absolute;
  right: 18%;
  bottom: 15%;
  left: 18%;
  height: 43%;
  background: #596783;
  border-radius: 50% 50% 0 0;
}

.phone-shot > span,
.phone-shot > b,
.phone-shot > strong {
  position: absolute;
  z-index: 1;
}

.phone-shot > span {
  top: 8px;
  left: 8px;
  color: #fff;
  font-size: 8px;
}

.phone-shot > b {
  right: 7px;
  bottom: 7px;
  color: #fff;
  font-size: 8px;
}

.phone-shot > strong {
  top: 47%;
  right: 5px;
  left: 5px;
  color: #9eb2ff;
  font-size: 8px;
  text-align: center;
}

.phone-shot.muted {
  filter: saturate(.45);
}

.compare-demo em {
  color: var(--sub);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.features-section {
  padding-top: 110px;
}

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

.feature {
  min-width: 0;
  padding: 28px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-large,
.editor-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 36px;
  align-items: center;
}

.feature-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 900;
}

.feature-icon.blue { background: #4d7cff; }
.feature-icon.purple { background: #8a66ec; }
.feature-icon.pink { background: #de668f; }
.feature-icon.green { background: #2fad72; }

.feature h3 {
  margin: 0;
  font-size: 19px;
}

.feature > p,
.feature-copy > p {
  margin: 9px 0 0;
  color: var(--sub);
  font-size: 13px;
  line-height: 1.8;
}

.task-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 15px;
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.task-list > div {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 0 10px;
  color: var(--sub);
  background: var(--panel-raised);
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 9px;
}

.task-list > div.running {
  color: var(--ink);
  border-color: rgba(109, 149, 255, .38);
}

.task-list > div span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: #8fa8ff;
  background: rgba(77, 124, 255, .12);
  border-radius: 5px;
}

.task-list small {
  color: var(--sub);
}

.task-list > p {
  margin: 5px 0 0;
  color: #8fa8ff;
  font-size: 8px;
  text-align: center;
}

.tag-cloud,
.privacy-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.tag-cloud span,
.privacy-badges span {
  padding: 7px 10px;
  color: var(--sub-strong);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  font-size: 10px;
}

.tag-cloud span:nth-child(1),
.tag-cloud span:nth-child(4) {
  color: #aebcff;
  border-color: rgba(109, 149, 255, .35);
}

.lut-swatches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-top: 18px;
}

.lut-swatches i {
  position: relative;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.lut-swatches i:nth-child(1) { background: linear-gradient(135deg, #f2d6c0, #b98272); }
.lut-swatches i:nth-child(2) { background: linear-gradient(135deg, #d9e4ee, #758fa8); }
.lut-swatches i:nth-child(3) { background: linear-gradient(135deg, #dce6cf, #7e9271); }
.lut-swatches i:nth-child(4) { background: linear-gradient(135deg, #dcd3e8, #8c77ae); }

.lut-swatches b {
  position: absolute;
  right: 4px;
  bottom: 4px;
  padding: 2px 4px;
  color: #fff;
  background: rgba(0, 0, 0, .5);
  border-radius: 3px;
  font-size: 7px;
  font-style: normal;
}

.equalizer {
  height: 48px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-top: 18px;
}

.equalizer i {
  flex: 1;
  min-width: 3px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(#43e58c, #4d7cff);
}

.equalizer i:nth-child(1) { height: 34%; }
.equalizer i:nth-child(2) { height: 74%; }
.equalizer i:nth-child(3) { height: 49%; }
.equalizer i:nth-child(4) { height: 92%; }
.equalizer i:nth-child(5) { height: 42%; }
.equalizer i:nth-child(6) { height: 65%; }
.equalizer i:nth-child(7) { height: 28%; }
.equalizer i:nth-child(8) { height: 52%; }
.equalizer i:nth-child(9) { height: 81%; }
.equalizer i:nth-child(10) { height: 38%; }
.equalizer i:nth-child(11) { height: 70%; }
.equalizer i:nth-child(12) { height: 46%; }

.privacy-badges span:first-child {
  color: #43cf84;
  border-color: rgba(67, 229, 140, .4);
}

.subtitle-editor {
  min-width: 0;
  display: grid;
  grid-template-columns: .9fr 1.1fr .9fr;
  gap: 9px;
  padding: 13px;
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.subtitle-list,
.subtitle-tools {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.subtitle-list span {
  padding: 7px;
  color: var(--sub);
  background: var(--panel-raised);
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 7px;
}

.subtitle-list .selected {
  color: #8fa8ff;
  border-color: rgba(109, 149, 255, .4);
}

.subtitle-list b {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 8px;
}

.subtitle-canvas {
  position: relative;
  min-height: 130px;
  background: linear-gradient(155deg, #39465d, #171d29);
  border-radius: 6px;
}

.subtitle-canvas strong {
  position: absolute;
  top: 12px;
  right: 5px;
  left: 5px;
  color: #9aafff;
  font-size: 8px;
  text-align: center;
}

.subtitle-canvas span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: #171d29;
  background: #fff;
  border-radius: 50%;
  font-size: 8px;
  transform: translate(-50%, -50%);
}

.subtitle-tools {
  align-items: flex-start;
  color: var(--sub);
  font-size: 8px;
}

.subtitle-tools b {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 9px;
}

.subtitle-tools span {
  padding: 5px 7px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.subtitle-tools button {
  width: 100%;
  margin-top: auto;
  padding: 6px;
  color: #fff;
  background: linear-gradient(90deg, #4d7cff, #9d6bff);
  border: 0;
  border-radius: 5px;
  font-size: 8px;
}

.download-section {
  padding-block: 90px 100px;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--line);
}

.download-section .container {
  position: relative;
  z-index: 1;
}

.download-section h2 {
  font-size: 48px;
}

.download-glow {
  position: absolute;
  bottom: -330px;
  left: 50%;
  width: 850px;
  height: 550px;
  background: #4d7cff;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .18;
  transform: translateX(-50%);
}

.download-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.download-button {
  min-width: 270px;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 10px 24px;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(77, 110, 255, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.download-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(77, 110, 255, .4);
}

.download-button.windows { background: linear-gradient(100deg, #4d7cff, #8c67f2); }
.download-button.mac { background: linear-gradient(100deg, #8669ed, #dd668f); }

.download-button strong,
.download-button small {
  display: block;
}

.download-button strong {
  font-size: 16px;
}

.download-button small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .78);
  font-size: 9px;
  font-weight: 500;
}

.windows-mark {
  width: 22px;
  height: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  flex: none;
}

.windows-mark i {
  background: #fff;
  border-radius: 1px;
}

.apple-mark {
  position: relative;
  width: 25px;
  height: 28px;
  flex: none;
}

.apple-mark::before {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 3px;
  width: 19px;
  height: 20px;
  background: #fff;
  border-radius: 48% 48% 45% 45% / 58% 58% 42% 42%;
}

.apple-mark::after {
  content: "";
  position: absolute;
  top: 0;
  left: 13px;
  width: 8px;
  height: 6px;
  background: #fff;
  border-radius: 100% 0 100% 0;
  transform: rotate(-22deg);
}

.requirements {
  display: block;
  margin-top: 16px;
  color: var(--sub);
  font-size: 11px;
}

.faq-section {
  padding-top: 36px;
}

.faq-container {
  max-width: 840px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-list details {
  padding: 0 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary span {
  color: #8fa8ff;
  font-size: 20px;
  font-weight: 400;
  transition: transform .2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -2px 0 20px;
  color: var(--sub);
  font-size: 13px;
  line-height: 1.85;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--sub);
  font-size: 11px;
}

.footer-inner p {
  margin: 0;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  max-width: min(360px, calc(100% - 44px));
  padding: 12px 16px;
  color: var(--ink);
  background: var(--panel-solid);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity .2s ease, transform .2s ease;
}

.toast.visible {
  opacity: 1;
  transform: none;
}

.testimonials-section {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding: 108px 56px 32px;
}

.reviews-heading {
  display: block;
  margin-bottom: 36px;
  text-align: center;
}

.reviews-kicker {
  color: var(--keyink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
}

.reviews-heading h2 {
  margin: 12px 0 0;
  font-size: 44px;
  line-height: 1.25;
  letter-spacing: 0;
}

.reviews-heading > p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 13px 0 0;
  color: var(--sub2);
  font-size: 13px;
}

.reviews-heading > p > span {
  width: 6px;
  height: 6px;
  flex: none;
  background: #43e58c;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(67, 229, 140, .65);
}

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.review-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: linear-gradient(145deg, color-mix(in srgb, var(--panel-raised) 72%, transparent), var(--panel));
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

.review-featured {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  padding: 34px 36px 0;
}

.review-featured::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #4d7cff, #9d6bff, transparent 78%);
  content: "";
}

.review-featured::after {
  position: absolute;
  top: -120px;
  right: -90px;
  width: 300px;
  height: 300px;
  pointer-events: none;
  background: radial-gradient(circle, var(--orb1), transparent 68%);
  border-radius: 50%;
  content: "";
  filter: blur(24px);
  opacity: .42;
}

.review-quote-mark {
  position: relative;
  z-index: 1;
  width: fit-content;
  color: transparent;
  background: linear-gradient(135deg, #6d95ff, #b08cff);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Georgia, serif;
  font-size: 58px;
  font-weight: 900;
  line-height: .8;
}

.review-featured blockquote {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.76;
  overflow-wrap: anywhere;
}

.review-featured blockquote strong {
  color: var(--keyink);
  font-weight: 800;
}

.review-author {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: none;
  color: #dce5ff;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.review-avatar-blue { background: linear-gradient(145deg, #34456a, #1a2235); }
.review-avatar-cyan { background: linear-gradient(145deg, #285065, #172b38); }
.review-avatar-green { background: linear-gradient(145deg, #38533d, #1b2d20); }
.review-avatar-pink { background: linear-gradient(145deg, #5c354f, #321d2c); }

.review-person {
  min-width: 0;
}

.review-person > strong,
.review-person > span {
  display: block;
}

.review-person > strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.review-person > span {
  margin-top: 4px;
  overflow-wrap: anywhere;
  color: var(--sub);
  font-size: 13px;
  line-height: 1.55;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  padding: 6px 10px;
  color: #43d98a;
  background: rgba(67, 229, 140, .07);
  border: 1px solid rgba(67, 229, 140, .22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.review-verified > span {
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  color: #08120d;
  background: #43d98a;
  border-radius: 50%;
  font-size: 9px;
}

.review-proof {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: auto -36px 0;
  padding: 0 36px;
  border-top: 1px solid var(--line);
}

.review-proof > div {
  min-width: 0;
  padding: 22px 18px 24px;
}

.review-proof > div:first-child {
  padding-left: 0;
}

.review-proof > div + div {
  border-left: 1px solid var(--line);
}

.review-proof dt,
.reviews-summary dt {
  color: var(--sub2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.review-proof dd,
.reviews-summary dd {
  margin: 7px 0 0;
}

.review-proof dd {
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: var(--sub2);
  font-size: 14px;
  white-space: nowrap;
}

.review-proof dd strong {
  color: var(--keyink);
  font-size: 19px;
  font-weight: 850;
}

.review-proof dd s {
  color: var(--sub2);
}

.review-trend {
  color: #43d98a;
  font-weight: 900;
}

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

.review-compact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 24px;
}

.review-compact-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.review-compact .review-avatar {
  width: 40px;
  height: 40px;
  font-size: 13px;
}

.review-compact .review-person > strong {
  font-size: 16px;
}

.review-compact .review-person > span {
  font-size: 12px;
}

.review-outcome {
  padding: 5px 10px;
  color: var(--keyink);
  background: color-mix(in srgb, var(--keyink) 7%, transparent);
  border: 1px solid color-mix(in srgb, var(--keyink) 28%, transparent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.review-compact blockquote {
  margin: 15px 0 0 52px;
  color: var(--sub-strong);
  font-size: 15px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.reviews-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 30px 0 0;
  padding: 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reviews-summary > div {
  min-width: 0;
  padding: 0 28px;
  text-align: center;
}

.reviews-summary > div + div {
  border-left: 1px solid var(--line);
}

.reviews-summary dd {
  color: var(--ink);
  font-size: 22px;
  font-weight: 850;
}

.reviews-summary > div:nth-child(n+3) dd {
  color: var(--keyink);
}

[data-reveal] {
  opacity: 1;
  transition: opacity .9s cubic-bezier(.22, 1, .36, 1), transform 1s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* 首屏产品实景：Agent 对话 / 文案校对双页轮播 */
.lg-original-hero-app {
  position: relative;
  z-index: 2;
  width: min(1200px, 100%);
  margin: 60px auto 0;
  padding-bottom: 42px;
  text-align: left;
}

.hero-app-glow {
  position: absolute;
  inset: -2px -2px 40px;
  border-radius: 22px;
  background: linear-gradient(120deg, #4d7cff, #9d6bff, #4d7cff);
  background-size: 200% auto;
  filter: blur(14px);
  opacity: .45;
  animation: wave 6s linear infinite;
}

.hero-product-window {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--shotline);
  border-radius: 18px;
  background: var(--panel-solid);
  box-shadow: var(--shotshadow);
}

.hero-window-bar {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 19px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel-solid) 94%, var(--keyink));
}

.hero-window-brand,
.hero-window-controls,
.hero-agent-head,
.hero-copy-title {
  display: flex;
  align-items: center;
}

.hero-window-brand {
  min-width: 0;
  gap: 0;
}

.hero-agent-head img {
  flex: none;
  border-radius: 7px;
  object-fit: contain;
}

.lg-site-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.lg-site-brand-logo {
  width: 178px;
  height: 31px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.hero-window-logo {
  width: 158px;
  height: 30px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.site-shell[data-theme="dark"] .lg-site-brand-logo,
.site-shell[data-theme="dark"] .hero-window-logo {
  filter: invert(1) brightness(1.12);
}

.hero-window-controls {
  gap: 8px;
}

.hero-window-controls span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--track);
}

.hero-carousel-viewport {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
}

.hero-carousel-viewport:focus-visible {
  outline: 2px solid rgba(109, 149, 255, .8);
  outline-offset: -3px;
}

.hero-carousel-track {
  display: flex;
  transform: translateX(0);
  transition: transform .6s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.hero-carousel-slide {
  width: 100%;
  min-width: 100%;
  min-height: 640px;
  visibility: hidden;
  opacity: .72;
  transition: opacity .35s ease, visibility .35s ease;
}

.hero-carousel-slide.is-active {
  visibility: visible;
  opacity: 1;
}

.hero-agent-shot,
.hero-copy-shot {
  min-height: 640px;
  display: grid;
}

.hero-agent-shot {
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
}

.hero-copy-shot {
  grid-template-columns: minmax(0, 1.52fr) minmax(300px, .72fr);
}

.hero-video-pane,
.hero-copy-pane {
  position: relative;
  min-width: 0;
  border-right: 1px solid var(--line);
}

.hero-video-pane {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 34px 39px 27px;
}

.hero-video-pane::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -100px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orb1), transparent 66%);
  filter: blur(34px);
  pointer-events: none;
}

.hero-step-label {
  position: relative;
  color: var(--sub2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
}

.hero-video-pane h3 {
  position: relative;
  margin: 9px 0 0;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}

.hero-video-pane > p {
  position: relative;
  margin: 6px 0 0;
  color: var(--sub);
  font-size: 14px;
  line-height: 1.6;
}

.hero-phone-wrap {
  position: relative;
  min-height: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 18px 0;
}

.hero-phone {
  width: 250px;
  padding: 8px;
  border-radius: 34px;
  background: #090c12;
  box-shadow: 0 17px 38px rgba(0, 0, 0, .28);
  transform: translateY(10px);
}

.hero-phone-screen {
  position: relative;
  height: 422px;
  overflow: hidden;
  border-radius: 27px;
  background: linear-gradient(160deg, #303a50, #171c28 64%);
}

.hero-phone-screen::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 25%, rgba(255,255,255,.05) 25.3%, transparent 26%),
    linear-gradient(180deg, rgba(94,118,180,.12), transparent 45%);
  pointer-events: none;
}

.hero-phone-person {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 48%;
  filter: blur(11px) brightness(.72) saturate(.72);
  transform: scale(1.08);
  will-change: transform, filter;
}

.hero-phone-island {
  position: absolute;
  z-index: 7;
  top: 8px;
  left: 50%;
  width: 54px;
  height: 15px;
  border-radius: 10px;
  background: #090c12;
  transform: translateX(-50%);
}

.hero-video-badge,
.hero-video-time {
  position: absolute;
  z-index: 7;
  top: 11px;
  padding: 3px 7px;
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  font-size: 10px;
  line-height: 1;
}

.hero-video-badge { left: 10px; }
.hero-video-time { right: 10px; }

.hero-play-icon {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #121722;
  background: rgba(255, 255, 255, .92);
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .24);
}

.hero-play-icon svg {
  width: 19px;
  height: 19px;
  margin-left: 2px;
}

.hero-video-fade {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 92px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .55));
}

.hero-phone-scan,
.hero-phone-complete {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
}

.hero-phone-scan {
  z-index: 4;
  overflow: hidden;
  background: rgba(6, 13, 27, .35);
  box-shadow: inset 0 0 44px rgba(47, 130, 255, .24);
}

.hero-phone-scan > i {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 54px;
  background: linear-gradient(180deg, transparent, rgba(65, 160, 255, .2) 72%, rgba(101, 187, 255, .9));
  border-bottom: 1px solid rgba(197, 229, 255, .9);
  box-shadow: 0 9px 24px rgba(40, 139, 255, .38);
  will-change: transform;
}

.hero-phone-scan > b {
  position: absolute;
  right: 16px;
  bottom: 20px;
  left: 16px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(126, 190, 255, .42);
  border-radius: 9px;
  color: #fff;
  background: rgba(7, 18, 35, .78);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .24);
  font-size: 10px;
}

.hero-phone-scan > b > span {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border: 2px solid rgba(255, 255, 255, .34);
  border-top-color: #fff;
  border-radius: 50%;
  animation: hero-agent-spin .8s linear infinite;
}

.hero-phone-scan em {
  font-style: normal;
}

.hero-phone-complete {
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(5, 13, 27, .72);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.hero-phone-complete > i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  color: #fff;
  background: #1677ff;
  box-shadow: 0 12px 30px rgba(22, 119, 255, .38);
  font-style: normal;
}

.hero-phone-complete svg {
  width: 30px;
  height: 30px;
}

.hero-phone-complete b {
  margin-top: 14px;
  font-size: 15px;
}

.hero-phone-complete small {
  margin-top: 5px;
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
}

.hero-chat-pane {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 27px 26px 22px;
}

.hero-agent-head {
  gap: 10px;
}

.hero-agent-head img {
  width: 35px;
  height: 35px;
}

.hero-agent-head > span,
.hero-agent-head b,
.hero-agent-head small {
  display: block;
}

.hero-agent-head b {
  font-size: 14px;
  line-height: 1.25;
}

.hero-agent-head small {
  margin-top: 3px;
  color: #32b979;
  font-size: 10.5px;
  line-height: 1;
}

.hero-agent-head small i {
  width: 5px;
  height: 5px;
  display: inline-block;
  margin-right: 4px;
  border-radius: 50%;
  background: currentColor;
  vertical-align: 1px;
}

.hero-chat-feed {
  flex: 1;
  padding: 19px 0 15px;
}

.hero-message {
  width: fit-content;
  max-width: 90%;
  margin: 0 0 12px;
  padding: 10px 13px;
  border-radius: 5px 11px 11px;
  color: var(--chipink);
  background: var(--panel2);
  border: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.6;
}

.hero-message.is-user {
  margin-left: auto;
  border: 0;
  border-radius: 11px 5px 11px 11px;
  color: #fff;
  background: linear-gradient(100deg, #4d7cff, #8c66ee);
}

.hero-agent-demo-message {
  visibility: hidden;
  opacity: 0;
}

.hero-agent-status-message {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-agent-status-dots {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex: none;
}

.hero-agent-status-dots i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #6da4ff;
  animation: hero-agent-dot 1s ease-in-out infinite;
}

.hero-agent-status-dots i:nth-child(2) { animation-delay: .14s; }
.hero-agent-status-dots i:nth-child(3) { animation-delay: .28s; }

.hero-agent-status-check {
  width: 17px;
  height: 17px;
  display: none;
  flex: 0 0 17px;
  color: #42d98c;
}

.hero-agent-status-message.is-complete .hero-agent-status-dots { display: none; }
.hero-agent-status-message.is-complete .hero-agent-status-check { display: block; }

.hero-agent-demo-cursor {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 21px;
  height: 24px;
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform-origin: 2px 2px;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .42));
  will-change: transform, opacity;
}

.hero-agent-demo-cursor svg {
  position: relative;
  z-index: 2;
  width: 21px;
  height: 24px;
  display: block;
}

.hero-agent-demo-cursor i {
  position: absolute;
  z-index: 1;
  top: -4px;
  left: -4px;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(77, 140, 255, .7);
  border-radius: 50%;
  background: rgba(77, 140, 255, .12);
}

.hero-latest-actions > span.is-demo-clicked {
  box-shadow: 0 0 0 5px rgba(77, 124, 255, .18), 0 8px 20px rgba(77, 124, 255, .28);
}

.hero-chat-tools {
  margin-top: auto;
}

.hero-chat-tools-label {
  display: block;
  margin-bottom: 7px;
  color: var(--sub2);
  font-size: 11px;
  font-weight: 650;
}

.hero-latest-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
}

.hero-latest-actions > span {
  height: 34px;
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 11px;
  border: 1px solid var(--line2);
  border-radius: 8px;
  color: var(--chipink);
  background: var(--panel);
  font-size: 11px;
  font-weight: 650;
  white-space: nowrap;
}

.hero-latest-actions > span.is-primary {
  border-color: #4d7cff;
  color: #fff;
  background: #4d7cff;
}

.hero-latest-actions svg {
  width: 14px;
  height: 14px;
}

.hero-fake-input {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 9px;
  padding: 0 6px 0 11px;
  border: 1px solid var(--line2);
  border-radius: 9px;
  color: var(--sub2);
  background: color-mix(in srgb, var(--panel-solid) 88%, var(--keyink));
  font-size: 12px;
}

.hero-fake-input > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-fake-input b {
  width: 32px;
  height: 32px;
  flex: none;
  display: grid;
  place-items: center;
  margin-left: auto;
  border-radius: 7px;
  color: #fff;
  background: #4d7cff;
  font-size: 15px;
}

.hero-copy-pane {
  display: flex;
  flex-direction: column;
  padding: 20px 22px 18px;
  background: color-mix(in srgb, var(--panel-solid) 97%, var(--keyink));
}

.hero-copy-titlebar {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.hero-copy-title {
  min-width: 0;
  gap: 10px;
}

.hero-copy-title > span:last-child,
.hero-copy-title b,
.hero-copy-title small {
  display: block;
}

.hero-copy-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  color: var(--ink);
}

.hero-copy-icon svg {
  width: 36px;
  height: 36px;
}

.hero-copy-title b {
  font-size: 15px;
  line-height: 1.2;
}

.hero-copy-title small {
  margin-top: 4px;
  color: var(--sub);
  font-size: 11px;
  font-weight: 550;
  white-space: nowrap;
}

.hero-copy-stats {
  display: flex;
  align-items: stretch;
  flex: none;
}

.hero-copy-stats > span {
  min-width: 51px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.hero-copy-stats > span:first-child { border-radius: 8px 0 0 8px; }
.hero-copy-stats > span + span { border-left: 0; }
.hero-copy-stats > span:nth-child(3) { border-radius: 0 8px 8px 0; }
.hero-copy-stats small { color: var(--sub); font-size: 9.5px; line-height: 1; }
.hero-copy-stats b { color: var(--sub-strong); font-size: 13px; line-height: 1; }
.hero-copy-stats .is-deleted b { color: #d35d5d; }
.hero-copy-stats .is-final { background: color-mix(in srgb, var(--keyink) 7%, transparent); }
.hero-copy-stats .is-final small,
.hero-copy-stats .is-final b { color: var(--keyink); }

.hero-duration-ring {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  margin-left: 9px;
  border-radius: 50%;
  background: conic-gradient(#4d8cff 0 13%, var(--line2) 13% 100%);
  font-style: normal;
}

.hero-duration-ring::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  background: var(--panel-solid);
}

.hero-duration-ring b {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: 11px;
}

.hero-copy-editor {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--panel-solid);
}

.hero-history-actions {
  position: absolute;
  z-index: 4;
  top: 7px;
  right: 8px;
  display: flex;
  gap: 2px;
  padding: 2px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: color-mix(in srgb, var(--panel-solid) 88%, transparent);
}

.hero-history-actions span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  color: var(--sub);
}

.hero-history-actions svg {
  width: 14px;
  height: 14px;
}

.hero-copy-lines {
  padding-bottom: 54px;
}

.hero-copy-line {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 8px 11px;
  color: var(--ink);
}

.hero-copy-line:nth-child(even) {
  background: color-mix(in srgb, var(--ink) 2.5%, transparent);
}

.hero-copy-line.is-focused {
  background: color-mix(in srgb, var(--keyink) 8%, transparent);
  box-shadow: inset 3px 0 0 #4d8cff;
}

.hero-copy-line.is-demo-active {
  background: color-mix(in srgb, var(--keyink) 8%, transparent);
  box-shadow: inset 3px 0 0 #4d8cff;
}

.hero-copy-line time {
  width: 44px;
  flex: 0 0 44px;
  color: var(--sub);
  font-family: monospace;
  font-size: 10.5px;
  text-align: right;
}

.hero-copy-line > i {
  width: 1px;
  height: 16px;
  flex: 0 0 1px;
  margin: 0 10px;
  background: var(--line2);
}

.hero-copy-line p {
  margin: 0;
  color: var(--sub-strong);
  font-size: 14px;
  line-height: 1.55;
}

.hero-copy-line .is-cut {
  margin: 0 1px;
  padding: 1px 2px;
  border-radius: 3px;
  color: var(--sub2);
  background: color-mix(in srgb, var(--sub) 12%, transparent);
  text-decoration: line-through;
}

.hero-copy-line .is-selected {
  padding: 2px 3px;
  border-radius: 4px;
  color: #f2cc75;
  background: rgba(245, 158, 11, .18);
}

.site-shell[data-theme="light"] .hero-copy-line .is-selected {
  color: #713f12;
}

.hero-demo-token-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.hero-demo-drag-group {
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease;
}

.hero-demo-drag-group.is-demo-cut {
  color: var(--sub2);
  background: color-mix(in srgb, var(--sub) 12%, transparent);
}

.hero-demo-drag-group.is-demo-cut .hero-demo-token {
  color: inherit;
  background: transparent;
  text-decoration: line-through;
  box-shadow: none;
}

.hero-demo-token {
  position: relative;
  display: inline-block;
  padding: 1px 2px;
  border-radius: 3px;
  transition: color .14s ease, background .14s ease, box-shadow .14s ease;
}

.hero-demo-token.is-demo-hover {
  background: color-mix(in srgb, var(--keyink) 10%, transparent);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--keyink) 18%, transparent);
}

.hero-demo-token.is-demo-cut {
  color: var(--sub2);
  background: color-mix(in srgb, var(--sub) 12%, transparent);
  text-decoration: line-through;
  box-shadow: none;
}

.hero-demo-token.is-demo-selected {
  border-radius: 0;
  color: #f2cc75;
  background: rgba(245, 158, 11, .2);
  box-shadow: inset 0 1px 0 rgba(251, 191, 36, .18), inset 0 -1px 0 rgba(251, 191, 36, .18);
}

.hero-demo-drag-group .hero-demo-token:first-child {
  border-radius: 4px 0 0 4px;
}

.hero-demo-drag-group .hero-demo-token:last-child {
  border-radius: 0 4px 4px 0;
}

.site-shell[data-theme="light"] .hero-demo-token.is-demo-selected {
  color: #713f12;
}

.hero-word-popover {
  position: absolute;
  z-index: 18;
  bottom: calc(100% + 9px);
  left: -110px;
  height: 39px;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 3px 5px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  color: rgba(255, 255, 255, .9);
  background: #252b36;
  box-shadow: 0 9px 24px -10px rgba(0, 0, 0, .72);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}

.hero-word-popover::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 115px;
  border: 5px solid transparent;
  border-top-color: #252b36;
}

.hero-word-popover > span {
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 8px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 650;
}

.hero-word-popover > span.is-active {
  color: #fff;
  background: #1677ff;
}

.hero-word-popover > span svg {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
}

.hero-word-popover > i {
  width: 1px;
  height: 15px;
  flex: 0 0 1px;
  background: rgba(255, 255, 255, .14);
}

.hero-demo-cursor {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 21px;
  height: 24px;
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform-origin: 2px 2px;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .42));
  will-change: transform, opacity;
}

.hero-demo-cursor svg {
  position: relative;
  z-index: 2;
  width: 21px;
  height: 24px;
  display: block;
}

.hero-demo-cursor i {
  position: absolute;
  z-index: 1;
  top: -4px;
  left: -4px;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(77, 140, 255, .7);
  border-radius: 50%;
  background: rgba(77, 140, 255, .12);
}

.hero-selection-bar {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 8px 7px 10px;
  color: rgba(255, 255, 255, .76);
  background: #0d1626;
  font-size: 12px;
}

.hero-selection-bar > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.hero-selection-bar > span strong {
  height: 27px;
  display: inline-flex;
  align-items: center;
  margin-right: 2px;
  padding: 0 8px;
  border: 1px solid rgba(77, 140, 255, .35);
  border-radius: 99px;
  color: #78b4ff;
  background: rgba(77, 140, 255, .14);
  font-size: 11px;
}

.hero-selection-bar > span b { color: #fff; }

.hero-selection-bar > div {
  display: flex;
  gap: 4px;
}

.hero-selection-bar button {
  height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 6px;
  color: rgba(255, 255, 255, .86);
  background: transparent;
  font-size: 11px;
  font-weight: 650;
  transition: background .14s ease, border-color .14s ease, transform .14s ease;
}

.hero-selection-bar button:first-child {
  border-color: #4d8cff;
  background: #4d8cff;
}

.hero-selection-bar button.is-demo-pressed {
  border-color: #2f6fdf;
  background: #2f6fdf;
  transform: scale(.96);
}

.hero-selection-bar button svg {
  width: 14px;
  height: 14px;
}

.hero-copy-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.hero-smart-match {
  min-width: 0;
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid #4d8cff;
  border-radius: 8px;
  background: color-mix(in srgb, #4d8cff 7%, transparent);
  white-space: nowrap;
}

.hero-smart-match > i {
  width: 14px;
  height: 14px;
  border: 1.5px solid #4d8cff;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px var(--panel-solid), inset 0 0 0 8px #4d8cff;
}

.hero-smart-match b { color: var(--ink); font-size: 12px; }
.hero-smart-match small { color: var(--sub); font-size: 10.5px; }

.hero-start-edit {
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 15px;
  border-radius: 8px;
  color: #fff;
  background: #1677ff;
  box-shadow: 0 8px 18px rgba(22, 119, 255, .22);
  font-size: 12px;
  font-weight: 750;
  transition: background .14s ease, box-shadow .14s ease, transform .14s ease;
  white-space: nowrap;
}

.hero-start-edit b { font-size: 14px; }

.hero-start-edit.is-demo-pressed {
  background: #0f65df;
  box-shadow: 0 4px 11px rgba(22, 119, 255, .2);
  transform: scale(.96);
}

.hero-chat-pane.is-copy-chat {
  padding-inline: 19px;
}

.hero-chat-pane.is-copy-chat .hero-message {
  max-width: 100%;
}

.hero-progress-shot,
.hero-result-shot {
  min-height: 640px;
  display: grid;
}

.hero-progress-shot {
  grid-template-columns: minmax(0, 1.16fr) minmax(330px, .84fr);
}

.hero-progress-main,
.hero-result-summary {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel-solid) 97%, var(--keyink));
}

.hero-progress-main {
  padding: 32px 38px 27px;
}

.hero-progress-main::before,
.hero-result-summary::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -140px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orb1), transparent 68%);
  filter: blur(34px);
  pointer-events: none;
}

.hero-progress-kicker,
.hero-result-kicker {
  position: relative;
  color: var(--sub2);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 1.8px;
}

.hero-progress-main h3,
.hero-result-summary h3 {
  position: relative;
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 31px;
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: 0;
}

.hero-progress-main h3 span,
.hero-result-summary h3 span {
  display: block;
  margin-top: 2px;
  color: var(--sub-strong);
  font-size: 19px;
  font-weight: 760;
}

.hero-progress-main > p {
  position: relative;
  margin: 7px 0 0;
  color: var(--sub);
  font-size: 12px;
  line-height: 1.55;
}

.hero-progress-total {
  position: relative;
  height: 8px;
  margin-top: 17px;
  overflow: hidden;
  border-radius: 99px;
  background: color-mix(in srgb, var(--keyink) 10%, var(--panel));
}

.hero-progress-total::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(120deg, rgba(255, 255, 255, .08) 0 7px, transparent 7px 13px);
  pointer-events: none;
}

.hero-progress-total > i {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #356fff, #75a4ff);
  box-shadow: 0 0 15px rgba(53, 111, 255, .38);
  transform: scaleX(0);
  transform-origin: 0 50%;
  will-change: transform;
}

.hero-progress-stage-head {
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.hero-progress-agent {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 720;
}

.hero-progress-agent i {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: #1677ff;
  box-shadow: 0 6px 14px rgba(22, 119, 255, .25);
}

.hero-progress-agent svg {
  width: 17px;
  height: 17px;
}

.hero-progress-stage-head > b {
  flex: none;
  color: var(--sub);
  font-size: 11px;
  font-weight: 680;
}

.hero-progress-steps {
  position: relative;
  display: grid;
  gap: 6px;
}

.hero-progress-step {
  position: relative;
  min-height: 45px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 13px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--sub);
  background: color-mix(in srgb, var(--panel) 76%, transparent);
  visibility: visible;
  opacity: 1;
  transition: min-height .38s cubic-bezier(.22, 1, .36, 1), padding .38s cubic-bezier(.22, 1, .36, 1), color .25s ease, border-color .25s ease, background .25s ease;
}

.hero-progress-step.is-visible {
  visibility: visible;
  opacity: 1;
}

.hero-progress-step.is-expanded {
  min-height: 67px;
  padding-block: 10px;
}

.hero-progress-step.is-active {
  border-color: color-mix(in srgb, #4d8cff 30%, var(--line));
  color: var(--ink);
  background: color-mix(in srgb, #4d8cff 7%, var(--panel-solid));
}

.hero-progress-step.is-done {
  color: var(--sub-strong);
}

.hero-progress-badge {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line2);
  border-radius: 50%;
  color: var(--sub);
  background: var(--panel-solid);
  font-size: 11px;
  font-weight: 800;
}

.hero-progress-step.is-active .hero-progress-badge {
  border-color: #397dff;
  color: #fff;
  background: #397dff;
  box-shadow: 0 0 0 5px rgba(57, 125, 255, .1);
}

.hero-progress-step.is-done .hero-progress-badge {
  border-color: #397dff;
  color: #397dff;
  background: color-mix(in srgb, #397dff 9%, var(--panel-solid));
}

.hero-progress-step-main {
  min-width: 0;
  flex: 1;
}

.hero-progress-step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hero-progress-step-head b {
  color: inherit;
  font-size: 13px;
  font-weight: 780;
}

.hero-progress-step-head em {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--sub2);
  font-size: 10px;
  font-style: normal;
  font-weight: 650;
}

.hero-progress-step.is-active .hero-progress-step-head em::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 1.5px solid rgba(57, 125, 255, .25);
  border-top-color: #397dff;
  border-radius: 50%;
  animation: hero-agent-spin .8s linear infinite;
}

.hero-progress-step.is-done .hero-progress-step-head em {
  color: #397dff;
}

.hero-progress-step-main > small {
  height: 0;
  display: block;
  margin-top: 0;
  overflow: hidden;
  color: var(--sub);
  font-size: 10px;
  line-height: 15px;
  opacity: 0;
  transform: translateY(-4px);
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: height .3s ease, margin-top .3s ease, opacity .22s ease, transform .3s ease;
}

.hero-progress-step.is-expanded .hero-progress-step-main > small {
  height: 15px;
  margin-top: 3px;
  opacity: 1;
  transform: translateY(0);
}

.hero-progress-step-line {
  height: 0;
  display: block;
  margin-top: 0;
  overflow: hidden;
  border-radius: 99px;
  background: color-mix(in srgb, var(--keyink) 10%, transparent);
  opacity: 0;
  transition: height .3s ease, margin-top .3s ease, opacity .22s ease;
}

.hero-progress-step.is-expanded .hero-progress-step-line {
  height: 4px;
  margin-top: 6px;
  opacity: 1;
}

.hero-progress-step-line i,
.hero-progress-phone-stages em i {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: #397dff;
  transform: scaleX(0);
  transform-origin: 0 50%;
  will-change: transform;
}

.hero-progress-preview {
  min-width: 0;
  display: grid;
  place-items: center;
  padding: 25px;
  background: color-mix(in srgb, var(--panel) 92%, transparent);
}

.hero-progress-phone {
  width: 238px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 35px;
  background: #080a0f;
  box-shadow: 0 26px 52px -24px rgba(0, 0, 0, .68), 0 0 0 1px rgba(57, 125, 255, .14);
}

.hero-progress-phone-screen {
  position: relative;
  height: 422px;
  overflow: hidden;
  border-radius: 28px;
  background: #11141c;
}

.hero-progress-phone-screen > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(13px) brightness(.46) saturate(.58);
  transform: scale(1.14);
}

.hero-progress-phone-shade {
  position: absolute;
  inset: 0;
  background: rgba(7, 10, 18, .28);
}

.hero-progress-phone-scan {
  position: absolute;
  z-index: 2;
  right: 0;
  left: 0;
  height: 2px;
  background: #4d8cff;
  box-shadow: 0 0 20px 7px rgba(77, 140, 255, .34);
  animation: hero-progress-scan 2.7s ease-in-out infinite;
}

.hero-progress-ring {
  position: absolute;
  z-index: 3;
  top: 91px;
  left: 50%;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
}

.hero-progress-ring svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: rotate(-90deg);
}

.hero-progress-ring circle {
  fill: rgba(8, 10, 18, .32);
  stroke: rgba(255, 255, 255, .22);
  stroke-width: 6;
}

.hero-progress-ring circle.is-value {
  stroke: #4d8cff;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  filter: drop-shadow(0 0 5px rgba(77, 140, 255, .5));
}

.hero-progress-ring strong {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 23px;
  font-weight: 820;
}

.hero-progress-phone-title {
  position: absolute;
  z-index: 3;
  top: 221px;
  right: 16px;
  left: 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 780;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}

.hero-progress-phone-stages {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 16px;
  left: 12px;
  min-height: 67px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  padding: 9px;
  border: 1px solid rgba(77, 140, 255, .32);
  border-radius: 13px;
  background: rgba(7, 10, 21, .82);
  backdrop-filter: blur(10px);
}

.hero-progress-phone-stages > span {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  color: rgba(255, 255, 255, .48);
}

.hero-progress-phone-stages > span b {
  display: flex;
  align-items: flex-start;
  gap: 3px;
  font-size: 7px;
  font-weight: 650;
  line-height: 1.2;
}

.hero-progress-phone-stages > span b > i {
  width: 4px;
  height: 4px;
  flex: 0 0 4px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
}

.hero-progress-phone-stages > span em {
  height: 4px;
  display: block;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, .16);
}

.hero-progress-phone-stages > span.is-active,
.hero-progress-phone-stages > span.is-done {
  color: #fff;
}

.hero-progress-phone-stages > span.is-active b > i,
.hero-progress-phone-stages > span.is-done b > i {
  background: #4d8cff;
  box-shadow: 0 0 6px rgba(77, 140, 255, .8);
}

.hero-result-shot {
  grid-template-columns: minmax(390px, .82fr) minmax(520px, 1.18fr);
}

.hero-result-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 32px;
}

.hero-result-summary h3 {
  margin-top: 12px;
  font-size: 42px;
  line-height: 1.14;
}

.hero-result-summary h3 span {
  margin-top: 6px;
  color: var(--ink);
  font-size: 29px;
  font-weight: 900;
}

.hero-result-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 21px;
}

.hero-result-stats > div {
  position: relative;
  min-width: 0;
  height: 81px;
  overflow: hidden;
  padding: 12px 12px 9px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel-solid);
  box-shadow: 0 10px 22px -18px rgba(0, 0, 0, .34);
}

.hero-result-stats small,
.hero-result-stats b {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-result-stats small {
  color: var(--sub);
  font-size: 9.5px;
}

.hero-result-stats b {
  margin-top: 6px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
}

.hero-result-stats b.is-text {
  overflow: hidden;
  font-size: 16px;
  text-overflow: ellipsis;
}

.hero-result-stats b em {
  color: var(--sub);
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
}

.hero-result-stats > div > i {
  position: absolute;
  right: -3px;
  bottom: 8px;
  left: 12px;
  height: 8px;
  opacity: .52;
  background: repeating-linear-gradient(48deg, transparent 0 7px, var(--line2) 7px 8px);
}

.hero-result-actions {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 10px;
  margin-top: 20px;
}

.hero-result-actions > span {
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--line2);
  border-radius: 9px;
  color: var(--ink);
  background: var(--panel-solid);
  font-size: 13px;
  font-weight: 760;
  box-shadow: 0 10px 22px -16px rgba(0, 0, 0, .38);
}

.hero-result-actions > span.is-primary {
  border-color: #0b0d12;
  color: #fff;
  background: #0b0d12;
}

.hero-result-actions svg {
  width: 16px;
  height: 16px;
}

.hero-result-compare {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 26px 21px 22px;
  background: color-mix(in srgb, #397dff 4%, var(--panel));
}

.hero-result-device {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-result-device > b {
  color: var(--sub);
  font-size: 11px;
  font-weight: 700;
}

.hero-result-device.is-rendered > b {
  color: #397dff;
}

.hero-result-phone {
  position: relative;
  width: 185px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 7px solid #0a0b0f;
  border-radius: 29px;
  background: #0b0d12;
  box-shadow: 0 24px 40px -22px rgba(0, 0, 0, .62);
}

.hero-result-device.is-rendered .hero-result-phone {
  border-color: #0a0b0f;
  box-shadow: 0 0 0 2px #397dff, 0 24px 42px -22px rgba(57, 125, 255, .62);
}

.hero-result-phone > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(12px) brightness(.64) saturate(.62);
  transform: scale(1.12);
}

.hero-result-device.is-rendered .hero-result-phone > img {
  filter: blur(12px) brightness(.62) saturate(.82) sepia(.18);
}

.hero-result-island {
  position: absolute;
  z-index: 5;
  top: 8px;
  left: 50%;
  width: 58px;
  height: 15px;
  border-radius: 99px;
  background: #050506;
  transform: translateX(-50%);
}

.hero-result-filter {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(242, 151, 66, .18), rgba(16, 19, 31, .08));
}

.hero-result-phone > strong,
.hero-result-phone > small {
  position: absolute;
  z-index: 3;
  right: 10px;
  left: 10px;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .58);
}

.hero-result-phone > strong {
  top: 69px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
}

.hero-result-phone > strong em {
  color: #ffe14d;
  font-style: normal;
}

.hero-result-phone > small {
  bottom: 38px;
  font-size: 8px;
  font-weight: 700;
}

.hero-result-play {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
}

.hero-result-play svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

.hero-result-edit {
  width: 100%;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: #0b0d12;
  font-size: 10px;
  font-weight: 720;
}

.hero-result-vs {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #0b0d12;
  font-family: monospace;
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .22);
}

@keyframes hero-progress-scan {
  0%, 100% { top: 15%; opacity: .45; }
  50% { top: 78%; opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-progress-phone-scan {
    top: 48%;
    animation: none;
  }
}

.hero-carousel-arrow {
  position: absolute;
  z-index: 6;
  top: calc(50% - 21px);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line2);
  border-radius: 50%;
  color: var(--ink);
  background: color-mix(in srgb, var(--panel-solid) 88%, transparent);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.hero-carousel-arrow:hover {
  border-color: #6d95ff;
  color: #fff;
  background: #4d7cff;
  transform: scale(1.06);
}

.hero-carousel-arrow svg {
  width: 18px;
  height: 18px;
}

.hero-carousel-arrow.is-prev { left: -19px; }
.hero-carousel-arrow.is-next { right: -19px; }

.hero-carousel-nav {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.hero-carousel-nav button {
  height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border: 0;
  border-radius: 7px;
  color: var(--sub);
  background: transparent;
  font-size: 11.5px;
  font-weight: 650;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.hero-carousel-nav button:hover,
.hero-carousel-nav button.is-active {
  color: var(--ink);
  background: color-mix(in srgb, var(--keyink) 10%, transparent);
}

.hero-carousel-nav button span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sub2);
  transition: width .2s ease, border-radius .2s ease, background .2s ease;
}

.hero-carousel-nav button.is-active span {
  width: 18px;
  border-radius: 99px;
  background: #6d95ff;
}

@keyframes hero-agent-spin {
  to { transform: rotate(360deg); }
}

@keyframes hero-agent-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: .45; }
  30% { transform: translateY(-3px); opacity: 1; }
}

.lg-original-hero-app[data-reveal] {
  transition-duration: .4s, .5s;
}

.reveal-ready [data-reveal] { opacity: 0; }
.reveal-ready [data-reveal="up"] { transform: translateY(52px); }
.reveal-ready [data-reveal="left"] { transform: translateX(-72px); }
.reveal-ready [data-reveal="right"] { transform: translateX(72px); }
.reveal-ready [data-reveal="zoom"] { transform: translateY(56px) scale(.93); }
.reveal-ready [data-reveal].revealed { opacity: 1; transform: none; }

@keyframes glow-one {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(55px, 28px) scale(1.08); }
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-30px, 20px) scale(.95); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 40px) scale(1.12); }
}

@keyframes wave {
  from { background-position: 0 0; }
  to { background-position: 120px 0; }
}

@keyframes glowPulse {
  0%, 100% { opacity: .55; }
  50% { opacity: 1; }
}

@keyframes floatY {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -8px); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes glow-two {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 35px) scale(.94); }
}

@keyframes blink {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

@keyframes progress-glow {
  0%, 100% { opacity: .7; }
  50% { opacity: 1; }
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1023px) {
  .container {
    width: min(100% - 56px, 900px);
  }

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

  .window-body {
    grid-template-columns: 1fr 1.1fr;
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 50px;
    padding-block: 26px;
  }

  .stats > i {
    display: none;
  }

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

  .step-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .step-tabs button {
    min-height: 78px;
  }
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 58px;
  }

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

  .window-body {
    grid-template-columns: 1fr;
  }

  .preview-pane {
    display: none;
  }

  .feature-large,
  .editor-feature,
  .step-panel {
    grid-template-columns: 1fr;
  }

  .step-panel {
    gap: 24px;
  }
}

@media (max-width: 679px) {
  html {
    scroll-padding-top: 66px;
  }

  .container {
    width: calc(100% - 36px);
  }

  .section {
    padding-block: 76px;
  }

  .site-header {
    height: 64px;
  }

  .brand-copy strong {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-copy small,
  .nav-download {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 68px;
  }

  .hero-glow {
    width: 340px;
    height: 300px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.25;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.75;
  }

  .prompt-demo {
    height: 54px;
    margin-top: 24px;
    padding-left: 13px;
  }

  .typed-text {
    font-size: 12px;
  }

  .send-icon {
    width: 35px;
    height: 35px;
  }

  .app-window {
    margin-top: 42px;
  }

  .window-brand span {
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .window-controls {
    display: none;
  }

  .window-body {
    min-height: 390px;
  }

  .assistant-pane {
    padding: 17px;
  }

  .chat-stream {
    min-height: 210px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 25px 18px;
  }

  .stats strong {
    font-size: 19px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .download-section h2 {
    font-size: 30px;
  }

  .download-section h2 .gradient-text {
    display: block;
    margin-top: 4px;
  }

  .step-tabs {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .step-tabs button {
    min-height: 62px;
  }

  .step-tabs button > span:first-child {
    width: 36px;
    height: 36px;
  }

  .step-stage {
    min-height: 0;
  }

  .step-panel {
    padding: 22px;
  }

  .step-copy h3 {
    font-size: 23px;
  }

  .upload-demo,
  .decision-demo,
  .compare-demo {
    min-height: 270px;
  }

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

  .feature-large,
  .editor-feature {
    grid-column: auto;
    gap: 24px;
  }

  .feature {
    padding: 22px;
  }

  .subtitle-editor {
    grid-template-columns: 1fr 1fr;
  }

  .subtitle-tools {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }

  .subtitle-tools b,
  .subtitle-tools button {
    grid-column: 1 / -1;
  }

  .download-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .download-button {
    width: 100%;
    min-width: 0;
  }

  .requirements {
    line-height: 1.7;
  }

  .faq-list details {
    padding-inline: 16px;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
    text-align: center;
  }

  .toast {
    right: 18px;
    bottom: 18px;
    max-width: calc(100% - 36px);
  }
}

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

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

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

@media (max-width: 1023px) {
  .lg-sec {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }

  .testimonials-section {
    padding-top: 92px !important;
  }

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

  .review-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .review-compact {
    justify-content: flex-start;
  }

  .review-compact-head {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .review-outcome {
    width: fit-content;
    grid-column: 2;
  }

  .review-compact blockquote {
    margin-left: 0;
  }

  .lg-h1 {
    font-size: 46px !important;
  }

  .lg-h2,
  .lg-h2d {
    font-size: 32px !important;
  }

  .lg-stats {
    gap: 28px !important;
    flex-wrap: wrap;
  }

  .lg-vd {
    display: none;
  }

  .lg-hero-shot {
    grid-template-columns: 1fr !important;
  }

  [data-step-row] {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    align-content: center;
  }

  .lg-stage {
    height: 660px !important;
  }

  .lg-step-panel {
    min-height: 280px !important;
  }

  .lg-step-panel > :last-child {
    transform: scale(.8);
  }

  .lg-step-text > div:nth-child(2) {
    font-size: 26px !important;
    line-height: 1.4 !important;
  }

  .lg-feat-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .lg-feat-tall {
    grid-row: auto !important;
  }
}

@media (max-width: 899px) {
  .lg-navlinks > a:not(.lg-nav-dl) {
    display: none;
  }
}

@media (max-width: 820px) {
  .review-stack {
    grid-template-columns: 1fr;
  }

  .review-compact {
    min-height: 144px;
  }

  .review-compact-head {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .review-outcome {
    grid-column: auto;
  }

  .review-compact blockquote {
    margin-left: 52px;
  }
}

@media (max-width: 679px) {
  .lg-sec {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .lg-h1 {
    font-size: 34px !important;
    letter-spacing: 0 !important;
  }

  .lg-h2,
  .lg-h2d {
    font-size: 26px !important;
  }

  .lg-h3 {
    font-size: 26px !important;
  }

  .testimonials-section {
    padding-top: 76px !important;
    padding-bottom: 20px !important;
  }

  .reviews-heading {
    display: block;
    margin-bottom: 22px;
  }

  .reviews-heading h2 {
    font-size: 30px;
  }

  .reviews-heading > p {
    margin-top: 12px;
  }

  .reveal-ready .testimonials-section [data-reveal="right"] {
    transform: translateY(36px);
  }

  .review-featured {
    min-height: 0;
    padding: 25px 22px 0;
  }

  .review-featured blockquote {
    margin-top: 15px;
    font-size: 18px;
    line-height: 1.75;
  }

  .review-author {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    margin-top: 22px;
  }

  .review-author .review-person {
    min-width: 0;
  }

  .review-verified {
    width: fit-content;
    grid-column: 2;
    margin: 0;
  }

  .review-proof {
    grid-template-columns: 1fr;
    margin: 24px -22px 0;
    padding: 0 22px;
  }

  .review-proof > div,
  .review-proof > div:first-child {
    padding: 14px 0;
  }

  .review-proof > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .review-proof dd {
    margin-top: 5px;
  }

  .review-compact {
    min-height: 0;
    padding: 18px;
  }

  .review-compact-head {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .review-outcome {
    width: fit-content;
    grid-column: 2;
  }

  .review-compact blockquote {
    margin-left: 0;
  }

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

  .reviews-summary > div {
    padding: 18px 8px;
  }

  .reviews-summary > div:nth-child(odd) {
    border-left: 0;
  }

  .reviews-summary > div:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

  .lg-stage {
    height: 640px !important;
  }

  .lg-step-panel > :last-child {
    transform: scale(.62);
  }

  .lg-feat-grid {
    grid-template-columns: 1fr !important;
  }

  .lg-feat-wide {
    grid-column: auto !important;
    grid-template-columns: 1fr !important;
  }

  .lg-dl-btns {
    flex-direction: column;
    align-items: center;
  }

}

@media (max-width: 1023px) {
  .hero-agent-shot {
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr);
  }

  .hero-copy-shot {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, .72fr);
  }

  .hero-progress-shot {
    grid-template-columns: minmax(0, 1fr) minmax(310px, .72fr);
  }

  .hero-result-shot {
    grid-template-columns: minmax(350px, .82fr) minmax(470px, 1.18fr);
  }

  .hero-result-phone {
    width: 166px;
  }

  .hero-copy-pane {
    padding-inline: 14px;
  }

  .hero-selection-bar > span {
    font-size: 9px;
  }

  .hero-selection-bar button {
    padding-inline: 6px;
  }
}

@media (max-width: 820px) {
  .lg-original-hero-app {
    margin-top: 45px;
  }

  .hero-carousel-slide,
  .hero-agent-shot,
  .hero-copy-shot,
  .hero-progress-shot,
  .hero-result-shot {
    min-height: 450px;
  }

  .hero-agent-shot,
  .hero-copy-shot,
  .hero-progress-shot,
  .hero-result-shot {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-video-pane,
  .hero-chat-pane.is-copy-chat,
  .hero-progress-preview,
  .hero-result-compare {
    display: none;
  }

  .hero-chat-pane,
  .hero-copy-pane,
  .hero-progress-main,
  .hero-result-summary {
    min-height: 450px;
    border-right: 0;
  }

  .hero-chat-pane {
    padding: 26px 28px 22px;
  }

  .hero-message {
    max-width: 76%;
    font-size: 12px;
  }

  .hero-chat-tools-label,
  .hero-latest-actions > span,
  .hero-fake-input {
    font-size: 10.5px;
  }

  .hero-copy-pane {
    padding: 16px 18px 14px;
  }

  .hero-progress-main {
    padding: 24px 28px 22px;
  }

  .hero-result-summary {
    padding: 28px 34px;
  }

  .hero-copy-line p {
    font-size: 12px;
  }
}

@media (max-width: 679px) {
  .lg-original-hero-app {
    padding-bottom: 38px;
  }

  .hero-product-window {
    border-radius: 14px;
  }

  .hero-window-bar {
    height: 46px;
    padding-inline: 13px;
  }

  .hero-window-brand {
    width: 122px;
  }

  .hero-window-logo {
    width: 122px;
    height: 24px;
  }

  .lg-site-brand-logo {
    width: 136px;
    height: 27px;
  }

  .hero-window-controls {
    display: none;
  }

  .hero-carousel-slide,
  .hero-agent-shot,
  .hero-copy-shot,
  .hero-progress-shot,
  .hero-result-shot,
  .hero-chat-pane,
  .hero-copy-pane,
  .hero-progress-main,
  .hero-result-summary {
    min-height: 420px;
  }

  .hero-chat-pane {
    padding: 22px 17px 16px;
  }

  .hero-message {
    max-width: 88%;
    font-size: 10.5px;
  }

  .hero-copy-pane {
    padding: 10px 9px;
  }

  .hero-progress-main {
    padding: 18px 14px 13px;
  }

  .hero-progress-main h3 {
    font-size: 23px;
  }

  .hero-progress-main h3 span {
    font-size: 15px;
  }

  .hero-progress-main > p {
    font-size: 9px;
  }

  .hero-progress-stage-head {
    height: 37px;
    margin-top: 8px;
  }

  .hero-progress-agent {
    gap: 6px;
    font-size: 9px;
  }

  .hero-progress-agent i {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .hero-progress-agent svg {
    width: 14px;
    height: 14px;
  }

  .hero-progress-stage-head > b {
    font-size: 8.5px;
  }

  .hero-progress-steps {
    gap: 4px;
  }

  .hero-progress-step {
    min-height: 38px;
    gap: 8px;
    padding: 5px 9px;
  }

  .hero-progress-step.is-expanded {
    min-height: 54px;
    padding-block: 7px;
  }

  .hero-progress-badge {
    width: 23px;
    height: 23px;
    flex-basis: 23px;
    font-size: 9px;
  }

  .hero-progress-step-head b {
    font-size: 10px;
  }

  .hero-progress-step-head em,
  .hero-progress-step-main > small {
    font-size: 8px;
  }

  .hero-progress-step-main > small {
    height: 11px;
    margin-top: 1px;
    line-height: 11px;
  }

  .hero-progress-step-line {
    margin-top: 4px;
  }

  .hero-result-summary {
    padding: 24px 16px 20px;
  }

  .hero-result-summary h3 {
    margin-top: 7px;
    font-size: 29px;
  }

  .hero-result-summary h3 span {
    font-size: 20px;
  }

  .hero-result-stats {
    gap: 6px;
    margin-top: 15px;
  }

  .hero-result-stats > div {
    height: 66px;
    padding: 9px 8px 7px;
  }

  .hero-result-stats small {
    font-size: 8px;
  }

  .hero-result-stats b {
    margin-top: 5px;
    font-size: 15px;
  }

  .hero-result-stats b.is-text {
    font-size: 12px;
  }

  .hero-result-actions {
    margin-top: 13px;
  }

  .hero-result-actions > span {
    height: 43px;
    font-size: 10px;
  }

  .hero-copy-titlebar {
    min-height: 47px;
    gap: 7px;
    margin-bottom: 6px;
  }

  .hero-copy-title {
    gap: 6px;
  }

  .hero-copy-icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .hero-copy-icon svg {
    width: 27px;
    height: 27px;
  }

  .hero-copy-title b { font-size: 11px; }
  .hero-copy-title small { font-size: 7px; }

  .hero-copy-stats > span {
    min-width: 33px;
    padding: 6px 5px;
  }

  .hero-copy-stats small { font-size: 7px; }
  .hero-copy-stats b { font-size: 9px; }

  .hero-duration-ring {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    margin-left: 5px;
  }

  .hero-duration-ring::after { inset: 4px; }
  .hero-duration-ring b { font-size: 7px; }

  .hero-history-actions {
    top: 5px;
    right: 5px;
  }

  .hero-history-actions span {
    width: 20px;
    height: 20px;
  }

  .hero-copy-line {
    min-height: 49px;
    padding: 7px 6px;
  }

  .hero-copy-line:first-child {
    padding-right: 57px;
  }

  .hero-copy-line time {
    width: 32px;
    flex-basis: 32px;
    font-size: 7.5px;
  }

  .hero-copy-line > i {
    margin-inline: 6px;
  }

  .hero-copy-line p {
    font-size: 9.5px;
    line-height: 1.55;
  }

  .hero-word-popover {
    left: -88px;
    height: 32px;
    padding-inline: 4px;
  }

  .hero-word-popover::after {
    left: 92px;
  }

  .hero-word-popover > span {
    height: 25px;
    gap: 3px;
    padding-inline: 5px;
    font-size: 8.5px;
  }

  .hero-word-popover > span svg {
    width: 10px;
    height: 10px;
    flex-basis: 10px;
  }

  .hero-demo-cursor,
  .hero-demo-cursor svg {
    width: 18px;
    height: 21px;
  }

  .hero-selection-bar {
    min-height: 47px;
    gap: 5px;
    padding-inline: 5px;
  }

  .hero-selection-bar > span {
    gap: 3px;
    font-size: 7.5px;
  }

  .hero-selection-bar > span strong {
    height: 21px;
    margin-right: 0;
    padding-inline: 6px;
    font-size: 7.5px;
  }

  .hero-selection-bar > div {
    gap: 3px;
  }

  .hero-selection-bar button {
    height: 27px;
    gap: 3px;
    padding-inline: 5px;
    font-size: 7.5px;
  }

  .hero-selection-bar button svg {
    width: 10px;
    height: 10px;
  }

  .hero-copy-footer {
    margin-top: 7px;
  }

  .hero-smart-match,
  .hero-start-edit {
    height: 33px;
  }

  .hero-smart-match {
    gap: 5px;
    padding-inline: 8px;
  }

  .hero-smart-match > i {
    width: 12px;
    height: 12px;
  }

  .hero-smart-match b { font-size: 8px; }
  .hero-smart-match small { display: none; }

  .hero-start-edit {
    padding-inline: 10px;
    font-size: 8.5px;
  }

  .hero-carousel-arrow {
    top: calc(50% - 20px);
    width: 34px;
    height: 34px;
  }

  .hero-carousel-arrow.is-prev { left: -11px; }
  .hero-carousel-arrow.is-next { right: -11px; }

  .hero-carousel-nav button {
    height: 29px;
    gap: 4px;
    padding-inline: 6px;
    font-size: 8.5px;
  }
}
