:root {
  color-scheme: light;
  --bg: #f3efe6;
  --bg-soft: #faf7f1;
  --panel: rgba(255, 255, 255, 0.8);
  --panel-solid: #ffffff;
  --line: rgba(48, 56, 72, 0.12);
  --line-strong: rgba(48, 56, 72, 0.2);
  --text: #1f2937;
  --muted: #5f6b7a;
  --accent: #dca533;
  --accent-strong: #c88600;
  --accent-soft: rgba(220, 165, 51, 0.14);
  --success: #11795e;
  --shadow: 0 18px 60px rgba(37, 44, 56, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.95), transparent 38%),
    linear-gradient(180deg, #f8f5ef, var(--bg) 22%, #efe9dd 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 10%, rgba(220, 165, 51, 0.11), transparent 18%),
    radial-gradient(circle at 88% 16%, rgba(17, 121, 94, 0.09), transparent 16%);
}

a {
  color: inherit;
}

figure {
  margin: 0;
}

.page-shell {
  position: relative;
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: 56px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 26px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-top: 0;
  border-radius: 0 0 32px 32px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(22px);
  box-shadow: 0 12px 40px rgba(37, 44, 56, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--accent), #f4d486);
  box-shadow: 0 0 0 6px rgba(220, 165, 51, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

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

.content {
  padding-top: 56px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.72fr) minmax(640px, 1.28fr);
  gap: 52px;
  align-items: start;
  text-align: left;
  padding: 18px 0 28px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.closing-card h2,
.trust-copy h2 {
  margin: 18px auto 0;
  max-width: 860px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.hero-text,
.trust-copy p,
.feature-copy p,
.price-card p,
.faq-item p,
.section-note,
.roadmap-item,
.footer-brand p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 540px;
  margin: 16px 0 0;
  font-size: clamp(17px, 1.55vw, 20px);
}

.hero-icp {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.hero-actions,
.hero-stats,
.trust-list,
.feature-stack,
.pricing-grid,
.faq-list,
.roadmap-list,
.closing-actions,
.footer {
  display: flex;
}

.hero-actions {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.hero-text-mobile {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.link-button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #201300;
  background: linear-gradient(180deg, #f2c75f, var(--accent));
  box-shadow: 0 0 0 4px rgba(220, 165, 51, 0.18);
}

.button.secondary {
  background: var(--panel-solid);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.hero-stats {
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.stat {
  min-width: 200px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.stat-label,
.price-tier,
.roadmap-status,
.copyright {
  display: block;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mono {
  font-family: "IBM Plex Mono", monospace;
}

.stat strong {
  display: block;
  margin-top: 6px;
  font-size: 16px;
}

.subproof {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.preview-card,
.demo-video-card,
.wide-demo-section,
.install-proof,
.trust-band,
.feature-row,
.price-card,
.faq-item,
.closing-card,
.roadmap-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.76));
  box-shadow: var(--shadow);
}

.preview-card {
  max-width: 100%;
  margin: 0;
  padding: 26px;
  text-align: left;
}

.demo-video-card {
  padding: 22px;
}

.wide-demo-section {
  margin-top: 18px;
  padding: 30px;
}

.wide-demo-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.wide-demo-heading h2 {
  margin: 14px 0 0;
  max-width: 920px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.wide-demo-meta {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.wide-demo-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(48, 56, 72, 0.08);
  background: #0f172a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.install-proof {
  margin-top: 28px;
  padding: 28px;
}

.install-proof-heading {
  margin-bottom: 24px;
}

.install-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
  gap: 20px;
  align-items: start;
}

.platform-install-grid,
.platform-buy-grid,
.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.download-choice-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.platform-install-card,
.journey-card,
.download-choice-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(48, 56, 72, 0.08);
  background: rgba(250, 247, 241, 0.84);
}

.journey-card {
  display: grid;
  align-content: start;
}

.platform-install-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(48, 56, 72, 0.08);
  background: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 14px;
}

.platform-badge img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.platform-kind {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.platform-install-card h3,
.journey-card h2,
.download-choice-card h2 {
  margin: 18px 0 0;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.platform-copy,
.journey-list,
.purchase-copy.compact {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.journey-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin-bottom: 0;
}

.platform-install-video,
.journey-video,
.install-demo-video.compact {
  display: block;
  width: 100%;
  margin-top: 20px;
  border: 1px solid rgba(48, 56, 72, 0.08);
  border-radius: 20px;
  background: #111827;
  box-shadow: 0 20px 44px rgba(31, 41, 55, 0.12);
}

.platform-install-steps {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.install-proof-video-card {
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(48, 56, 72, 0.08);
  background: rgba(250, 247, 241, 0.78);
}

.install-proof-video {
  display: block;
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(48, 56, 72, 0.08);
  background: #111827;
  box-shadow: 0 20px 44px rgba(31, 41, 55, 0.12);
}

.install-proof-steps {
  display: grid;
  gap: 14px;
}

.install-step,
.install-shot {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(48, 56, 72, 0.08);
  background: rgba(250, 247, 241, 0.86);
}

.install-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
}

.install-step-number {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, #f2c75f, var(--accent));
  color: #201300;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 0 0 4px rgba(220, 165, 51, 0.16);
}

.install-step strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}

.install-step p,
.install-shot figcaption {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.install-path {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(48, 56, 72, 0.08);
  background: rgba(255, 255, 255, 0.92);
  overflow-wrap: anywhere;
}

.install-transfer {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.install-chip,
.install-folder {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(48, 56, 72, 0.08);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}

.install-folder {
  background: rgba(220, 165, 51, 0.14);
  color: var(--accent-strong);
}

.install-arrow {
  color: var(--accent-strong);
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}

.install-shot img {
  display: block;
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(48, 56, 72, 0.08);
  background: #111827;
}

.demo-video-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.demo-video-kicker,
.demo-video-meta {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.demo-video-header strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  line-height: 1.35;
}

.demo-video {
  display: block;
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(48, 56, 72, 0.08);
  background: #0f172a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.preview-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.preview-title {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.preview-subtitle {
  margin-top: 6px;
  max-width: 420px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.slider-legend {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(48, 56, 72, 0.08);
  background: rgba(250, 247, 241, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.slider-legend span {
  padding: 7px 10px;
  border-radius: 999px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.slider-legend span:first-child {
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
}

.slider-legend span:last-child {
  color: #f5f7fb;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.84), rgba(15, 23, 42, 0.96));
}

.hero-copy {
  max-width: 100%;
  margin: 0;
  padding-top: 22px;
}

.hero-copy h1 {
  margin: 0;
  max-width: 560px;
}

.works-with {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.works-label {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.works-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.works-pill img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.works-pill span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--text);
}

.preview-slider-stage,
.feature-media,
.mock-card,
.mock-panel,
.share-list {
  border-radius: 22px;
}

.chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.chip-row span {
  padding: 8px 11px;
  border-radius: 999px;
  background: #f8f3e4;
  color: #94610a;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

.slider-stage {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(48, 56, 72, 0.1);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.12), transparent 28%),
    radial-gradient(circle at 84% 24%, rgba(220, 165, 51, 0.14), transparent 24%),
    linear-gradient(135deg, #0f172a 0%, #162238 45%, #0c1323 100%);
  isolation: isolate;
}

.preview-slider-stage {
  min-height: 372px;
}

.slider-pane {
  position: absolute;
  inset: 0;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

.raw-pane {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(220, 165, 51, 0.06));
}

.slider-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.slider-snippet {
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.2;
  color: #f9fafb;
  word-break: break-word;
}

.slider-secret-card {
  margin-top: 8px;
  border-radius: 18px;
  padding: 22px;
  max-width: 560px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 240, 245, 0.8));
  color: #111827;
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow:
    0 22px 40px rgba(8, 15, 28, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.raw-pane .slider-secret-card {
  border-left: 4px solid rgba(220, 165, 51, 0.9);
}

.safe-pane .slider-secret-card {
  border-left: 4px solid rgba(17, 121, 94, 0.58);
  background: linear-gradient(180deg, rgba(247, 252, 250, 0.98), rgba(226, 239, 235, 0.82));
}

.slider-secret-title {
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.slider-secret-copy {
  margin-top: 20px;
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(26px, 2.7vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.safe-pane {
  width: 26%;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(14, 95, 74, 0.96), rgba(11, 19, 34, 0.98));
  box-shadow: inset 28px 0 42px rgba(7, 11, 20, 0.34);
  animation: sliderReveal 5.8s cubic-bezier(0.65, 0, 0.35, 1) infinite alternate;
  z-index: 2;
}

.blurred-text {
  filter: blur(8px);
}

.slider-track {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 74%;
  width: 3px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.94),
    rgba(255, 255, 255, 0.08)
  );
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.26),
    0 0 28px rgba(255, 255, 255, 0.22);
  animation: sliderDivider 5.8s cubic-bezier(0.65, 0, 0.35, 1) infinite alternate;
  z-index: 3;
}

.slider-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 74%;
  width: 64px;
  margin-left: -31px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: sliderDivider 5.8s cubic-bezier(0.65, 0, 0.35, 1) infinite alternate;
  z-index: 4;
}

.slider-divider::before,
.slider-divider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.slider-divider::before {
  left: 22px;
}

.slider-divider::after {
  right: 22px;
}

.slider-handle {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 3px solid rgba(17, 24, 39, 0.72);
  background:
    linear-gradient(90deg, transparent 0 36%, rgba(31, 41, 55, 0.86) 36% 40%, transparent 40% 60%, rgba(31, 41, 55, 0.86) 60% 64%, transparent 64% 100%),
    #fff;
  box-shadow:
    0 16px 30px rgba(15, 23, 42, 0.28),
    0 0 0 8px rgba(255, 255, 255, 0.08);
}

.slider-handle::before,
.slider-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(17, 24, 39, 0.72);
  border-right: 2px solid rgba(17, 24, 39, 0.72);
  transform: translateY(-50%) rotate(45deg);
}

.slider-handle::before {
  left: 8px;
}

.slider-handle::after {
  right: 8px;
  transform: translateY(-50%) rotate(225deg);
}

.slider-hint {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: rgba(255, 255, 255, 0.92);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: sliderHint 5.8s ease-in-out infinite alternate;
  z-index: 5;
}

@keyframes sliderReveal {
  0% {
    width: 26%;
  }
  100% {
    width: 80%;
  }
}

@keyframes sliderDivider {
  0% {
    left: 74%;
  }
  100% {
    left: 20%;
  }
}

@keyframes sliderHint {
  0% {
    opacity: 0.78;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(-3px);
  }
}

.preview-workflow {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: 18px;
  margin-top: 22px;
  padding-top: 22px;
  align-items: center;
  border-top: 1px solid rgba(48, 56, 72, 0.08);
}

.workflow-copy h2 {
  margin: 14px 0 0;
  max-width: 340px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.workflow-note {
  margin-top: 16px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.55;
  font-size: 14px;
  max-width: 360px;
}

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

.workflow-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(48, 56, 72, 0.08);
  background: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  font-size: 14px;
}

.workflow-pill.primary {
  background: linear-gradient(180deg, rgba(242, 199, 95, 0.22), rgba(255, 255, 255, 0.92));
  border-color: rgba(220, 165, 51, 0.22);
}

.workflow-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
}

.trust-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 28px;
  padding: 28px;
  align-items: start;
}

.trust-copy h2 {
  margin: 0 0 14px;
  max-width: none;
  font-size: clamp(28px, 4vw, 44px);
}

.trust-list {
  flex-direction: column;
  gap: 14px;
}

.trust-item {
  padding: 18px;
  border-radius: 20px;
  background: rgba(250, 247, 241, 0.9);
  border: 1px solid rgba(48, 56, 72, 0.08);
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.trust-item span {
  color: var(--muted);
}

.section {
  padding-top: 100px;
}

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

.section-heading h2 {
  margin-left: 0;
  max-width: 860px;
  font-size: clamp(30px, 4vw, 52px);
}

.section-note {
  margin-top: 12px;
  max-width: 820px;
}

.feature-stack {
  flex-direction: column;
  gap: 20px;
}

.feature-row {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
}

.feature-row.reverse {
  grid-template-columns: 1.12fr 0.88fr;
}

.feature-row.reverse .feature-copy {
  order: 2;
}

.feature-row.reverse .feature-media {
  order: 1;
}

.feature-copy h3,
.price-value,
.closing-card h2 {
  letter-spacing: -0.04em;
}

.feature-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.feature-media {
  min-height: 320px;
  border: 1px solid rgba(48, 56, 72, 0.08);
  background:
    radial-gradient(circle at top right, rgba(220, 165, 51, 0.16), transparent 28%),
    linear-gradient(180deg, #f8f5ef, #ece7dd);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-screenshot {
  justify-content: flex-start;
  gap: 12px;
  padding: 18px;
}

.shot-panel {
  display: grid;
  gap: 14px;
  width: 100%;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(48, 56, 72, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 243, 232, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.shot-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.shot-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent-strong);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shot-meta strong {
  display: block;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.shot-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.shot-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(48, 56, 72, 0.08);
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}

.shot-stage {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(48, 56, 72, 0.08);
  background: #171f2c;
  overflow: hidden;
}

.shot-stage img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: contain;
  object-position: center center;
  background: #171f2c;
}

.shot-stage-wide img {
  height: auto;
}

.focus-box {
  position: absolute;
  border: 2px solid rgba(242, 199, 95, 0.96);
  border-radius: 14px;
  box-shadow:
    0 0 0 999px rgba(10, 14, 24, 0.2),
    0 16px 28px rgba(15, 23, 42, 0.22);
}

.focus-label {
  position: absolute;
  left: 10px;
  top: -15px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f2c75f;
  color: #201300;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.focus-detectors {
  left: 34.8%;
  top: 14.5%;
  width: 34.5%;
  height: 26%;
}

.focus-anchors {
  left: 35.2%;
  top: 41%;
  width: 61%;
  height: 47%;
}

.focus-capture {
  left: 16%;
  top: 45%;
  width: 75%;
  height: 33%;
}

.focus-source {
  left: 39%;
  top: 14%;
  width: 43%;
  height: 23%;
}

.feature-screenshot figcaption {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.shot-focus-lower {
  object-position: center bottom;
}

.mock-label {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  margin-bottom: 12px;
}

.mock-card {
  padding: 18px;
  background: #111827;
}

.mask-line {
  height: 22px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.mask-line.sharp {
  background: rgba(255, 255, 255, 0.92);
}

.mask-line.blur {
  background: rgba(255, 255, 255, 0.32);
  filter: blur(6px);
}

.mask-badge {
  display: inline-flex;
  margin-top: 16px;
  padding: 9px 11px;
  border-radius: 999px;
  background: rgba(17, 121, 94, 0.18);
  color: #d7fff4;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

.mock-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(48, 56, 72, 0.08);
}

.panel-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
}

.share-tabs {
  display: inline-flex;
  gap: 10px;
  margin-bottom: 14px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
}

.share-tabs span {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--muted);
}

.share-tabs .active {
  background: rgba(220, 165, 51, 0.18);
  color: var(--accent-strong);
}

.share-list {
  display: grid;
  gap: 10px;
  background: rgba(255, 255, 255, 0.72);
  padding: 14px;
}

.share-item {
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(48, 56, 72, 0.07);
}

.share-item.active {
  outline: 2px solid rgba(220, 165, 51, 0.5);
}

.share-item.muted {
  color: var(--muted);
}

.media-platforms,
.media-local {
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.platform-pill {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(48, 56, 72, 0.08);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
}

.local-ring {
  width: 170px;
  height: 170px;
  border-radius: 999px;
  border: 18px solid rgba(220, 165, 51, 0.24);
  box-shadow: inset 0 0 0 18px rgba(17, 121, 94, 0.12);
}

.local-core {
  margin-top: -110px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow);
  font-family: "IBM Plex Mono", monospace;
}

.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  margin-top: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 700;
}

.pricing-grid {
  gap: 18px;
  flex-wrap: wrap;
}

.pricing-grid-single {
  justify-content: center;
}

.price-card {
  flex: 1 1 300px;
  max-width: 620px;
  padding: 24px;
}

.price-card.featured {
  border-color: rgba(220, 165, 51, 0.34);
  background:
    radial-gradient(circle at top right, rgba(220, 165, 51, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 232, 0.92));
}

.price-line {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.price-value {
  font-size: 58px;
  line-height: 1;
}

.price-period {
  color: var(--muted);
  padding-bottom: 10px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 18px 0 26px;
  color: var(--muted);
}

.faq-list,
.roadmap-list {
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  padding: 0 22px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-weight: 700;
}

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

.faq-item p {
  margin: 0 0 22px;
}

.roadmap-item {
  padding: 18px 20px;
}

.roadmap-status {
  display: inline-flex;
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.roadmap-status.shipped {
  background: rgba(17, 121, 94, 0.14);
  color: var(--success);
}

.roadmap-status.next {
  background: rgba(220, 165, 51, 0.14);
  color: var(--accent-strong);
}

.roadmap-status.later {
  background: rgba(95, 107, 122, 0.12);
  color: #475569;
}

.closing-card {
  margin-top: 88px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.closing-card h2 {
  margin: 12px 0 0;
  max-width: 720px;
  font-size: clamp(28px, 4vw, 44px);
}

.closing-actions {
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer {
  gap: 26px;
  flex-wrap: wrap;
  padding: 56px 0 20px;
}

.purchase-page {
  padding: 40px 0 80px;
}

.purchase-card {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82));
  box-shadow: var(--shadow);
}

.purchase-card h1,
.purchase-card h2 {
  margin: 16px 0 0;
  letter-spacing: -0.04em;
}

.purchase-card h1 {
  max-width: 780px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
}

.purchase-card h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.purchase-copy {
  max-width: 780px;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.65;
}

.purchase-copy.compact {
  max-width: none;
}

.purchase-grid,
.success-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
}

.purchase-panel {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(48, 56, 72, 0.08);
  background: rgba(250, 247, 241, 0.78);
}

.purchase-price {
  margin-bottom: 18px;
}

.purchase-list,
.purchase-steps {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.purchase-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.purchase-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.install-demo-card {
  margin-top: 26px;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(48, 56, 72, 0.08);
  background:
    radial-gradient(circle at top right, rgba(220, 165, 51, 0.12), transparent 24%),
    rgba(250, 247, 241, 0.78);
}

.install-demo-inline {
  margin-top: 18px;
}

.install-demo-copy {
  max-width: 760px;
}

.install-demo-card .purchase-copy {
  margin-bottom: 0;
}

.install-demo-video {
  display: block;
  width: 100%;
  margin-top: 18px;
  border: 1px solid rgba(48, 56, 72, 0.08);
  border-radius: 20px;
  background: #111827;
  box-shadow: 0 20px 44px rgba(31, 41, 55, 0.12);
}

.setup-box {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(48, 56, 72, 0.08);
  background: #fff;
}

.setup-box strong {
  display: block;
  margin-bottom: 8px;
}

.setup-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.success-box {
  margin-top: 0;
}

.platform-switcher {
  display: inline-flex;
  gap: 10px;
  margin-top: 22px;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid rgba(48, 56, 72, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.platform-toggle {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.platform-toggle.active {
  background: linear-gradient(180deg, #f2c75f, var(--accent));
  color: #201300;
  box-shadow: 0 0 0 4px rgba(220, 165, 51, 0.14);
}

.install-summary-box {
  margin-top: 0;
}

.install-summary-box + .install-summary-box {
  margin-top: 16px;
}

.purchase-footer {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.footer-brand {
  flex: 1 1 280px;
  max-width: 340px;
}

.footer-title {
  margin-bottom: 14px;
  font-weight: 700;
}

.footer-col {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--muted);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--text);
}

.copyright {
  margin-top: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 980px) {
  .topbar {
    width: 100%;
    border-radius: 0 0 24px 24px;
    justify-content: center;
  }

  .hero,
  .install-proof-grid,
  .platform-install-grid,
  .platform-buy-grid,
  .journey-grid,
  .preview-workflow,
  .trust-band,
  .feature-row,
  .feature-row.reverse,
  .closing-card,
  .purchase-grid,
  .download-choice-grid,
  .success-layout {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .feature-copy,
  .feature-row.reverse .feature-media {
    order: initial;
  }

  .hero {
    text-align: center;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-copy h1,
  .hero-text,
  .hero-icp {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-stats,
  .works-with,
  .demo-video-header {
    justify-content: center;
  }

  .demo-video-header {
    text-align: center;
  }

  .wide-demo-heading {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .closing-actions {
    justify-content: flex-start;
  }

  .preview-toolbar {
    align-items: center;
    text-align: center;
    flex-direction: column;
  }

  .preview-subtitle {
    max-width: none;
  }

  .slider-stage,
  .preview-slider-stage {
    min-height: 300px;
  }

  .slider-pane {
    padding: 20px;
  }

  .slider-secret-card {
    padding: 18px;
  }

  .slider-secret-title {
    font-size: clamp(22px, 7vw, 34px);
  }

  .slider-secret-copy {
    margin-top: 16px;
    font-size: clamp(20px, 6vw, 30px);
  }

  .slider-divider {
    width: 56px;
    margin-left: -27px;
  }

  .slider-handle {
    width: 46px;
    height: 46px;
  }

  .slider-track {
    width: 2px;
  }

  .slider-hint {
    bottom: 14px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 18px, 1160px);
  }

  .topbar {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 0 0 22px 22px;
  }

  .content {
    padding-top: 26px;
  }

  .hero {
    gap: 18px;
  }

  .wide-demo-section,
  .install-proof {
    margin-top: 18px;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hero-text-desktop,
  .hero-icp {
    display: none;
  }

  .hero-text-mobile {
    display: block;
    margin: 0 auto;
    max-width: 360px;
  }

  .hero-actions {
    margin-top: 6px;
  }

  .works-with {
    margin-top: 4px;
  }

  .platform-switcher {
    width: 100%;
    justify-content: center;
  }

  .nav {
    margin-left: auto;
  }

  .nav a {
    display: none;
  }

  .nav a:last-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 14px;
    color: #201300;
    background: linear-gradient(180deg, #f2c75f, var(--accent));
    box-shadow: 0 0 0 4px rgba(220, 165, 51, 0.16);
  }

  .nav a:last-child:hover {
    color: #201300;
  }

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

  .wide-demo-heading h2,
  .install-proof-heading h2 {
    font-size: 34px;
  }

  .preview-card {
    padding: 16px;
  }

  .preview-title {
    font-size: 14px;
  }

  .preview-subtitle {
    font-size: 12px;
  }

  .workflow-copy h2 {
    font-size: 28px;
  }

  .workflow-note {
    margin-top: 12px;
    font-size: 14px;
  }

  .workflow-pills {
    justify-content: center;
  }

  .workflow-pill {
    min-height: 48px;
    padding: 0 14px;
    font-size: 14px;
  }

  .workflow-logo {
    width: 20px;
    height: 20px;
  }

  .install-step {
    grid-template-columns: 44px 1fr;
  }

  .install-step-number {
    width: 44px;
    height: 44px;
    font-size: 18px;
    border-radius: 14px;
  }

  .install-chip,
  .install-folder {
    min-height: 40px;
  }

  .feature-screenshot img {
    display: block;
  }

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

  .shot-tags {
    justify-content: flex-start;
  }

  .shot-stage img {
    height: auto;
    min-height: 220px;
    max-height: 260px;
    object-fit: contain;
    object-position: center center;
    aspect-ratio: 16 / 10;
    margin: 0 auto;
    background: #171f2c;
  }

  .focus-label {
    font-size: 10px;
    min-height: 24px;
    padding: 0 8px;
  }

  .feature-screenshot {
    align-items: center;
    padding: 14px;
  }

  .feature-screenshot figcaption {
    width: 100%;
  }

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

  .shot-focus-lower {
    object-position: center center;
  }

  .price-value {
    font-size: 44px;
  }

  .feature-row,
  .preview-card,
  .demo-video-card,
  .wide-demo-section,
  .install-proof,
  .platform-install-card,
  .download-choice-card,
  .trust-band,
  .price-card,
  .closing-card,
  .purchase-card,
  .purchase-panel,
  .install-demo-card {
    padding: 18px;
  }
}
