:root {
  color-scheme: light;
  --ink: #050505;
  --navy: #14212b;
  --copy: #3f4d57;
  --paper: #ffffff;
  --canvas: #fbfcfd;
  --fog: #f1f1f1;
  --line: #d5d9df;
  --mint: #d8ffd5;
  --mint-strong: #7bd879;
  --moss: #0b5a16;
  --cream: #fff8ed;
  --lavender: #f7edff;
  --warning: #ffe0c2;
  --danger: #8a2525;
  --shadow: 9px 7px 0 var(--ink);
  --shadow-small: 4px 3px 0 var(--ink);
  --font-display: "Bahnschrift", "Franklin Gothic Medium", "Arial Narrow", sans-serif;
  --font-body: "Candara", "Segoe UI", sans-serif;
  --font-mono: "Cascadia Mono", "Consolas", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--canvas);
  background-image: linear-gradient(to right, rgba(213, 217, 223, 0.72) 1px, transparent 1px), linear-gradient(to bottom, rgba(213, 217, 223, 0.72) 1px, transparent 1px);
  background-size: 24px 24px;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}

body::selection {
  background: var(--mint);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
textarea {
  font: inherit;
}

.material-symbols-outlined {
  display: inline-block;
  flex: 0 0 auto;
  font-family: "Material Symbols Outlined";
  font-size: 1.18em;
  font-style: normal;
  font-weight: 500;
  font-feature-settings: "liga";
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  border-bottom: 2px solid var(--ink);
  padding: 10px clamp(16px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.topbar nav,
footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 26px);
  color: var(--copy);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.topbar nav a:hover,
footer nav a:hover {
  color: var(--ink);
}

.button,
.demo-dock button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border: 2px solid var(--ink);
  border-radius: 0;
  padding: 12px 22px;
  box-shadow: var(--shadow);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.demo-dock button:hover:not(:disabled) {
  transform: translate(-2px, -2px);
  box-shadow: 5px 4px 0 var(--ink);
}

.button:active,
.demo-dock button:active:not(:disabled) {
  transform: translate(3px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}

.button-small {
  min-height: 40px;
  padding: 8px 14px;
  box-shadow: var(--shadow-small);
  font-size: 14px;
}

.button-mint,
.demo-dock button {
  background: var(--mint);
  color: var(--moss);
}

.button-paper {
  background: var(--paper);
}

.hero {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 100svh;
  padding: 94px clamp(16px, 5vw, 64px) 32px;
  overflow: hidden;
  background:
    linear-gradient(112deg, transparent 0 53%, rgba(216, 255, 213, 0.92) 53% 72%, transparent 72%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfd 48%, #fff8ed 100%);
  border-bottom: 2px solid var(--ink);
}

.hero::before {
  position: absolute;
  inset: 84px clamp(20px, 6vw, 84px) 36px auto;
  width: min(42vw, 540px);
  border: 2px solid rgba(5, 5, 5, 0.12);
  background-image:
    linear-gradient(to right, rgba(5, 5, 5, 0.09) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(5, 5, 5, 0.09) 1px, transparent 1px);
  background-size: 20px 20px;
  content: "";
  opacity: 0.7;
  transform: skewX(-8deg);
}

.hero-grid-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(5, 5, 5, 0.05) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 72%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  width: min(1320px, 100%);
  margin: 0 auto;
}

.hero-copy-column,
.hero-workbench {
  min-width: 0;
}

.hero-kicker,
.eyebrow,
.price-state {
  color: var(--moss);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--ink);
  padding: 7px 10px;
  background: var(--mint);
  box-shadow: var(--shadow-small);
}

.hero-kicker .material-symbols-outlined {
  color: var(--ink);
  font-size: 18px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 {
  margin: 28px 0;
  font-size: clamp(50px, 7vw, 104px);
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(52px, 5.2vw, 76px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 6vw, 72px);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 34px);
}

.hero-copy {
  width: min(680px, 100%);
  margin: 0;
  color: var(--copy);
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 700;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 34px 0 0;
}

.hero-trust {
  width: min(780px, 100%);
  margin: 0 auto;
  color: var(--copy);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
}

.hero-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: min(680px, 100%);
  margin: 28px 0 0;
}

.hero-proof-tab,
.trust-band span,
.mock-context-row span,
.status-pill,
.use-case-context span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid var(--line);
  padding: 4px 8px;
  background: #f5fbf4;
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.tab-cream {
  background: var(--cream);
}

.tab-lavender {
  background: var(--lavender);
}

.hero-proof-line {
  color: var(--copy);
  font-weight: 800;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  border: 2px solid var(--ink);
  padding: 6px 10px;
  background: #f5fbf4;
  box-shadow: 3px 3px 0 var(--ink);
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.hero-chip:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}

.hero-chip .material-symbols-outlined {
  color: var(--moss);
  font-size: 18px;
}

.hero-workbench {
  position: relative;
  min-height: 0;
}

.hero-browser {
  position: relative;
  z-index: 1;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #e8ecf2;
  box-shadow: 18px 18px 0 var(--ink);
  overflow: hidden;
  animation: heroWorkbenchIn 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-browser-chrome {
  display: grid;
  grid-template-columns: repeat(3, 12px) minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--ink);
  padding: 12px 14px;
  background: linear-gradient(180deg, #ffffff, #e9edf3);
}

.hero-browser-chrome span {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(5, 5, 5, 0.45);
  border-radius: 50%;
  background: #ff5f57;
}

.hero-browser-chrome span:nth-child(2) {
  background: #ffbd2e;
}

.hero-browser-chrome span:nth-child(3) {
  background: #28c840;
}

.hero-browser-chrome strong {
  min-width: 0;
  border: 1px solid #b8c0cc;
  border-radius: 999px;
  padding: 7px 12px;
  overflow: hidden;
  background: var(--paper);
  color: #4b5563;
  font-family: "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.comparison-card small,
.feature-card-top > span,
.use-case > span {
  color: var(--moss);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-equation-browser {
  transform: rotate(-0.6deg);
}

.hero-equation-page {
  position: relative;
  display: grid;
  gap: clamp(10px, 1.3vw, 15px);
  min-height: clamp(404px, 43vw, 520px);
  padding: clamp(15px, 2.1vw, 25px);
  background:
    linear-gradient(112deg, transparent 0 54%, rgba(216, 255, 213, 0.62) 54% 70%, transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfd 62%, #fff8ed 100%);
}

.hero-equation-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px minmax(0, 1fr) 22px minmax(0, 1fr) 22px;
  gap: clamp(6px, 0.75vw, 9px);
  align-items: center;
}

.hero-equation-card {
  display: grid;
  align-content: start;
  gap: clamp(8px, 1vw, 12px);
  min-width: 0;
  min-height: clamp(152px, 15vw, 196px);
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: clamp(9px, 1vw, 13px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.hero-equation-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}

.hero-equation-card header,
.hero-result-card header,
.feature-card-top,
.provider-setup-card header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-equation-card header {
  color: var(--moss);
  font-family: var(--font-mono);
  font-size: clamp(10px, 0.82vw, 12px);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-card-icon,
.hero-row-icon,
.hero-close-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: currentColor;
}

.hero-card-icon {
  width: clamp(22px, 2.2vw, 30px);
  height: clamp(22px, 2.2vw, 30px);
  font-size: clamp(22px, 2.2vw, 30px);
}

.hero-page-card header {
  color: #0f4f86;
}

.hero-prompt-card header {
  color: #522783;
}

.hero-equation-card small,
.hero-ready-pill {
  color: var(--moss);
  font-family: var(--font-mono);
  font-size: clamp(10px, 0.9vw, 12px);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-tab-list {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.hero-tab-list > span {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
  min-height: 29px;
  border: 1px solid #bcc8bf;
  border-radius: 5px;
  padding: 4px 6px;
  background: var(--paper);
  color: var(--ink);
  font-size: clamp(11px, 0.88vw, 13px);
  font-weight: 800;
  line-height: 1.1;
}

.hero-row-icon {
  width: 16px;
  height: 16px;
  color: var(--moss);
  font-size: 16px;
}

.hero-close-icon {
  width: 14px;
  height: 14px;
  color: #6b7280;
  font-size: 14px;
}

.hero-page-preview {
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: clamp(104px, 10.5vw, 128px);
  border: 1px solid #b8c5d3;
  border-radius: 6px;
  padding: clamp(8px, 0.9vw, 11px);
  background: var(--paper);
}

.hero-page-preview strong {
  color: var(--ink);
  font-size: clamp(12px, 1.1vw, 15px);
  line-height: 1.15;
}

.hero-page-preview i {
  display: block;
  width: 70%;
  height: 5px;
  border-radius: 999px;
  background: #d7dde5;
}

.hero-page-preview i:nth-of-type(2) {
  width: 92%;
}

.hero-page-preview i:nth-of-type(3) {
  width: 72%;
}

.hero-page-preview em {
  display: block;
  border-radius: 4px;
  padding: 7px 8px 12px;
  background: #dcecff;
  color: #10457c;
  font-style: normal;
  font-weight: 900;
  line-height: 1.15;
}

.hero-prompt-card p {
  min-height: clamp(104px, 10.5vw, 128px);
  margin: 0;
  border: 1px solid #c6bed2;
  border-radius: 5px;
  padding: clamp(9px, 1vw, 13px);
  background: var(--paper);
  color: var(--ink);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 900;
  line-height: 1.55;
}

.hero-prompt-card mark {
  background: transparent;
  color: inherit;
  text-decoration: underline wavy #d83737 1.5px;
  text-underline-offset: 3px;
}

.hero-equation-operator {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(25px, 2.25vw, 38px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-shadow: 3px 3px 0 rgba(5, 5, 5, 0.14);
}

.hero-equation-down {
  display: grid;
  place-items: center;
  min-height: 28px;
  margin: -4px 0 -2px;
  color: var(--ink);
}

.hero-equation-down::before,
.hero-equation-down::after {
  display: block;
  content: "";
}

.hero-equation-down::before {
  width: 5px;
  height: 24px;
  border-radius: 999px;
  background: var(--ink);
}

.hero-equation-down::after {
  width: 16px;
  height: 16px;
  margin-top: -15px;
  border-radius: 3px;
  border-right: 5px solid var(--ink);
  border-bottom: 5px solid var(--ink);
  transform: rotate(45deg);
}

.hero-result-card {
  position: relative;
  display: grid;
  gap: clamp(10px, 1.2vw, 14px);
  width: min(100% - 64px, 548px);
  margin: 0 auto;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: clamp(14px, 1.8vw, 20px);
  background:
    linear-gradient(180deg, rgba(216, 255, 213, 0.48), transparent 35%),
    var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.hero-result-card:hover,
.hero-result-card:focus-within {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}

.hero-result-card header {
  color: var(--moss);
  font-family: var(--font-mono);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-result-icon {
  display: inline-grid;
  place-items: center;
  width: clamp(24px, 2.2vw, 31px);
  height: clamp(24px, 2.2vw, 31px);
  color: var(--moss);
  font-size: clamp(24px, 2.2vw, 31px);
}

.hero-ready-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  border: 1px solid rgba(11, 90, 22, 0.22);
  border-radius: 999px;
  padding: 5px 8px;
  background: var(--mint);
}

.hero-ready-check {
  color: var(--moss);
  font-size: 17px;
}

.hero-result-copy {
  margin: 0;
  color: var(--ink);
  font-size: clamp(17px, 1.75vw, 23px);
  font-weight: 900;
  line-height: 1.28;
}

.hero-result-source {
  display: inline;
  border-radius: 4px;
  padding: 0 0.08em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-result-source-tabs {
  color: #075f23;
  background:
    linear-gradient(180deg, transparent 0 54%, rgba(137, 232, 145, 0.42) 54% 100%);
}

.hero-result-source-page {
  color: #10457c;
  background:
    linear-gradient(180deg, transparent 0 54%, rgba(190, 219, 255, 0.68) 54% 100%);
}

.hero-result-source-prompt {
  color: #522783;
  background:
    linear-gradient(180deg, transparent 0 54%, rgba(224, 205, 255, 0.74) 54% 100%);
}

.hero-result-action {
  justify-self: start;
  min-height: 42px;
  font-size: 16px;
  font-weight: 900;
}

.hero-insert-icon {
  color: currentColor;
  font-size: 18px;
  margin-top: -3px;
}

.hero-equation-spark {
  position: absolute;
  display: grid;
  gap: 12px;
  width: 30px;
  pointer-events: none;
}

.hero-equation-spark span {
  display: block;
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: var(--ink);
}

.hero-equation-spark span:first-child {
  transform: rotate(44deg);
}

.hero-equation-spark span:nth-child(2) {
  transform: translateX(-6px);
}

.hero-equation-spark span:nth-child(3) {
  transform: rotate(-44deg);
}

.hero-equation-spark-left {
  left: clamp(10px, 2vw, 30px);
  bottom: 24%;
}

.hero-equation-spark-right {
  right: clamp(10px, 2vw, 30px);
  bottom: 24%;
  transform: scaleX(-1);
}

.demo-experience {
  min-height: 100svh;
  scroll-margin-top: 0;
  padding: 88px clamp(12px, 3vw, 32px) 36px;
  background: linear-gradient(180deg, rgba(216, 255, 213, 0.48), rgba(255, 248, 237, 0.55));
  border-block: 2px solid var(--ink);
}

.section-heading {
  width: min(820px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--copy);
  font-size: 20px;
  font-weight: 700;
}

.demo-heading {
  margin-bottom: 24px;
}

.demo-mode-toggle {
  display: inline-flex;
  gap: 0;
  margin-top: 10px;
  border: 2px solid var(--ink);
  padding: 4px;
  background: var(--paper);
  box-shadow: var(--shadow-small);
}

.demo-mode-toggle button {
  min-height: 36px;
  border: 0;
  border-radius: 0;
  padding: 8px 16px;
  background: transparent;
  color: var(--copy);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.demo-mode-toggle button + button {
  border-left: 2px solid var(--ink);
}

.demo-mode-toggle button:hover,
.demo-mode-toggle button:focus-visible {
  background: var(--cream);
  color: var(--ink);
}

.demo-mode-toggle button:focus-visible {
  outline: 3px solid var(--mint-strong);
  outline-offset: 3px;
}

.demo-mode-toggle button[aria-pressed="true"] {
  background: var(--mint);
  color: var(--ink);
}

.showcase-glass-panel {
  position: absolute;
  inset: 0;
  z-index: 24;
  display: grid;
  place-items: center;
  border-radius: 12px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(231, 241, 234, 0.2)),
    rgba(242, 244, 240, 0.62);
  -webkit-backdrop-filter: blur(18px) saturate(0.82);
  backdrop-filter: blur(18px) saturate(0.82);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.54), inset 0 0 90px rgba(255, 255, 255, 0.22);
}

.showcase-glass-content {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(460px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 10px;
  padding: 34px 30px 30px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
  color: #14212b;
  text-align: center;
}

.showcase-glass-kicker,
.showcase-finish-panel > div:first-child > span {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.showcase-glass-kicker {
  color: var(--moss);
}

.showcase-glass-content strong {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.94;
  text-transform: uppercase;
}

.showcase-glass-content p {
  max-width: 32ch;
  margin: 0;
  color: var(--copy);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}

.showcase-glass-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 26;
  --showcase-button-x: -50%;
  --showcase-button-y: -50%;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--mint);
  box-shadow: var(--shadow), 0 18px 36px rgba(33, 94, 52, 0.22);
  color: var(--moss);
  cursor: pointer;
  transform: translate(var(--showcase-button-x), var(--showcase-button-y));
  transition:
    left 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    top 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    width 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    height 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.showcase-playback-button-idle:hover {
  box-shadow: 5px 4px 0 var(--ink), 0 22px 40px rgba(33, 94, 52, 0.26);
  transform: translate(calc(var(--showcase-button-x) - 2px), calc(var(--showcase-button-y) - 2px));
}

.showcase-playback-button-idle:active {
  box-shadow: 1px 1px 0 var(--ink), 0 10px 24px rgba(33, 94, 52, 0.2);
  transform: translate(calc(var(--showcase-button-x) + 3px), calc(var(--showcase-button-y) + 2px));
}

.showcase-glass-play:focus-visible,
.showcase-finish-actions button:focus-visible,
.showcase-finish-actions a:focus-visible {
  outline: 3px solid var(--mint-strong);
  outline-offset: 4px;
}

.showcase-glass-play .material-symbols-outlined {
  font-size: 44px;
  font-variation-settings: "FILL" 1, "wght" 800, "GRAD" 0, "opsz" 48;
  transition: font-size 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.showcase-playback-button-active {
  left: calc(100% - 84px);
  top: 18px;
  --showcase-button-x: 0px;
  --showcase-button-y: 0px;
  width: 58px;
  height: 58px;
  background: rgba(208, 255, 196, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-small), 0 14px 30px rgba(15, 23, 42, 0.2);
  cursor: pointer;
}

.showcase-playback-button-active .material-symbols-outlined {
  font-size: 34px;
}

.showcase-playback-button-active:hover {
  box-shadow: 5px 4px 0 var(--ink), 0 18px 34px rgba(15, 23, 42, 0.24);
  transform: translate(-1px, -1px);
}

.showcase-playback-button-active:active {
  box-shadow: 2px 2px 0 var(--ink), 0 10px 22px rgba(15, 23, 42, 0.2);
  transform: translate(1px, 1px);
}

.showcase-finish-panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 24;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: min(640px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(14px) saturate(0.9);
  backdrop-filter: blur(14px) saturate(0.9);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.2);
  color: #14212b;
}

.showcase-finish-panel > div:first-child {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.showcase-finish-panel strong {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1;
  text-transform: uppercase;
}

.showcase-finish-panel > div:first-child > span {
  color: var(--moss);
}

.showcase-finish-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.showcase-finish-actions button,
.showcase-finish-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  border: 2px solid var(--ink);
  border-radius: 0;
  padding: 8px 12px;
  box-shadow: 3px 3px 0 var(--ink);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.showcase-finish-actions button {
  background: var(--paper);
}

.showcase-finish-actions a {
  background: var(--mint);
}

.showcase-finish-actions button:hover,
.showcase-finish-actions a:hover {
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(-1px, -1px);
}

.showcase-finish-actions .material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-size: 18px;
  font-variation-settings: "FILL" 0, "wght" 700, "GRAD" 0, "opsz" 20;
  text-transform: none;
}

.demo-browser-wrap {
  position: relative;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.demo-browser-wrap-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  padding-bottom: 0;
}

.mock-browser {
  display: flex;
  width: 100%;
  height: min(780px, calc(100svh - 220px));
  min-height: 560px;
  margin: 0;
  flex-direction: column;
  border: 1px solid #aeb4bf;
  border-radius: 12px;
  background: #e5e7eb;
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.74) inset;
  overflow: hidden;
}

.browser-chrome {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr);
  align-items: center;
  gap: 8px 12px;
  border-bottom: 1px solid #bec5d1;
  padding: 9px 12px 10px;
  background: linear-gradient(180deg, #f7f8fa, #e5e8ee);
}

.window-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.chrome-dot {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  border-radius: 999px;
  background: #ff5f57;
}

.chrome-dot:nth-child(2) {
  background: #ffbd2e;
}

.chrome-dot:nth-child(3) {
  background: #28c840;
}

.browser-tabs {
  display: flex;
  align-items: end;
  gap: 3px;
  min-width: min(100%, 520px);
  overflow-x: auto;
  scrollbar-width: none;
}

.browser-tabs::-webkit-scrollbar {
  display: none;
}

.browser-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  min-height: 34px;
  border: 1px solid #c8ced8;
  border-bottom-color: transparent;
  border-radius: 8px 8px 0 0;
  padding: 7px 13px;
  background: #d7dce5;
  color: #4b5563;
  cursor: pointer;
  font-family: "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
}

.browser-tab-active {
  border-color: #c5cad3;
  border-bottom-color: #ffffff;
  background: #ffffff;
  color: #111827;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.7) inset;
}

.browser-tab-favicon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border-radius: 4px;
  object-fit: contain;
}

.browser-tab-context {
  border-color: #64748b;
  background: #eef2f7;
}

.browser-tab strong {
  border: 1px solid var(--moss);
  padding: 4px;
  background: var(--mint);
  color: var(--moss);
  font-size: 9px;
  line-height: 1;
}

.address {
  grid-column: 1 / -1;
  min-width: 0;
  border: 1px solid #bac2cf;
  border-radius: 18px;
  padding: 8px 14px;
  overflow: hidden;
  background: #ffffff;
  color: #4b5563;
  font-family: "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.mock-page {
  position: relative;
  display: flex;
  min-height: 0;
  flex: 1;
  background: #f3f4f6;
}

.mock-tab-stage {
  position: relative;
  min-width: 0;
  min-height: 0;
  flex: 1 1 auto;
  overflow: hidden;
  background: #f3f4f6;
}

.mock-tab-panel {
  position: absolute;
  inset: 0;
  display: none;
  min-height: 0;
}

.mock-tab-panel-active {
  display: block;
}

.mock-reference-document {
  min-height: 100%;
}

.mock-document {
  display: grid;
  align-content: start;
  padding: 0;
  overflow: auto;
  background: #f3f4f6;
}

.mock-proposal-page {
  background: #eef2f7;
}

.mock-app-topbar,
.mock-doc-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 24px;
  background: #ffffff;
  color: #334155;
  font-family: "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.mock-app-topbar {
  border-bottom: 1px solid #c7d2e5;
}

.mock-app-topbar div,
.mock-doc-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mock-app-actions {
  margin-left: auto;
  color: #64748b;
}

.mock-app-actions button,
.mock-product-nav button {
  border: 1px solid #2563eb;
  border-radius: 6px;
  padding: 7px 12px;
  background: #2563eb;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.mock-app-dot {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: #2563eb;
}

.mock-doc-toolbar {
  justify-content: flex-start;
  border-bottom: 1px solid #d7dfec;
  background: #f8fafc;
  color: #64748b;
}

.mock-doc-toolbar strong {
  margin-left: auto;
  color: #15803d;
}

.mock-toolbar-chip {
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  padding: 4px 10px;
  background: #ffffff;
  color: #334155;
}

.mock-doc-workspace {
  display: grid;
  grid-template-columns: 148px minmax(420px, 760px) 184px;
  gap: 18px;
  align-items: start;
  padding: 22px;
}

.mock-doc-outline,
.mock-doc-comments {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 10px;
  color: #64748b;
  font-family: "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.mock-doc-outline {
  border-right: 1px solid #d9e2ef;
  padding: 8px 14px 8px 0;
}

.mock-doc-outline strong {
  color: #1f2937;
}

.mock-doc-outline span {
  border-left: 3px solid transparent;
  padding-left: 8px;
}

.mock-doc-outline span:nth-child(3) {
  border-left-color: #2563eb;
  color: #1f2937;
}

.mock-doc-canvas {
  display: grid;
  gap: 16px;
  width: 100%;
  margin: 0 auto 34px;
  border: 1px solid #d7dfec;
  border-radius: 2px;
  padding: 38px 48px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
}

.mock-document-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--copy);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.field-label {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.mock-document textarea {
  width: 100%;
  min-height: 230px;
  border: 1px solid #c7d2e5;
  border-radius: 4px;
  padding: 16px;
  resize: vertical;
  background: #fffdf7;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.05);
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  outline: none;
}

.mock-document textarea:focus {
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.16);
}

.mock-doc-paragraph {
  margin: 0;
  color: #475569;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.6;
}

.mock-doc-paragraph.muted {
  color: #64748b;
  font-size: 14px;
}

.mock-doc-comments {
  gap: 12px;
}

.mock-doc-comments article {
  border: 1px solid #d7dfec;
  border-radius: 8px;
  padding: 12px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.mock-doc-comments strong {
  color: #1f2937;
}

.mock-doc-comments p {
  margin: 4px 0 0;
  color: #64748b;
  line-height: 1.35;
}

.mock-context-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mock-crm-layout {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  min-height: 100%;
  background: #f4f7f6;
}

.mock-crm-rail {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 22px 14px;
  background: #102a43;
  color: #dbeafe;
  font-family: "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.mock-crm-rail strong {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 18px;
}

.mock-crm-rail span {
  border-radius: 6px;
  padding: 9px 10px;
}

.mock-crm-rail span:nth-child(3) {
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
}

.mock-crm-main {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px;
}

.mock-crm-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #d7dee8;
  padding-bottom: 16px;
}

.mock-crm-topline div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mock-crm-topline strong {
  color: #172033;
  font-size: 18px;
}

.mock-crm-topline label {
  display: grid;
  gap: 4px;
  width: min(240px, 45%);
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.mock-crm-topline input {
  min-height: 34px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 6px 10px;
  background: #ffffff;
  color: #334155;
}

.mock-crm-card,
.mock-crm-timeline article,
.mock-feature-grid article,
.mock-crm-metrics article {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.mock-crm-card {
  padding: 20px;
}

.mock-crm-card span,
.mock-crm-timeline span,
.mock-feature-grid span {
  color: #0f766e;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.mock-crm-card h3,
.mock-product-hero h3 {
  margin: 8px 0;
  color: #102a43;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.mock-crm-card p,
.mock-crm-timeline p,
.mock-product-hero p,
.mock-feature-grid p {
  margin: 0;
  color: #334155;
  font-size: 16px;
  font-weight: 700;
}

.mock-crm-timeline {
  display: grid;
  gap: 12px;
}

.mock-crm-timeline article {
  padding: 16px;
}

.mock-crm-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mock-crm-metrics article {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
}

.mock-crm-metrics span {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.mock-crm-metrics strong {
  color: #102a43;
  font-size: 28px;
  line-height: 1;
}

.mock-product-layout {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: 0;
  background: #f7fafc;
}

.mock-product-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #d7dee8;
  padding: 16px 28px;
  background: #ffffff;
  color: #475569;
  font-size: 13px;
  font-weight: 800;
}

.mock-product-nav strong {
  margin-right: auto;
  color: #0f3d35;
  font-size: 18px;
}

.mock-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  margin: 10px 28px 0;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  padding: 28px;
  background: linear-gradient(135deg, #fffaf1 0%, #eaf4ff 100%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.mock-product-hero button {
  border: 1px solid #0f3d35;
  border-radius: 6px;
  padding: 12px 16px;
  background: #0f3d35;
  color: #ffffff;
  font-weight: 800;
}

.mock-product-screenshot {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 14px;
  margin: 0 28px;
  border: 1px solid #d7dee8;
  border-radius: 12px;
  padding: 16px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.mock-inbox-list,
.mock-inbox-detail {
  display: grid;
  gap: 8px;
}

.mock-inbox-list span {
  border: 1px solid #d7dee8;
  border-radius: 7px;
  padding: 10px;
  background: #f8fafc;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
}

.mock-inbox-list span:nth-child(2) {
  border-color: #0f3d35;
  background: #ecfdf5;
}

.mock-inbox-detail {
  align-content: center;
  border-left: 1px solid #d7dee8;
  padding-left: 16px;
}

.mock-inbox-detail strong {
  color: #102a43;
  font-size: 18px;
}

.mock-inbox-detail p {
  margin: 0;
  color: #475569;
  font-weight: 700;
}

.mock-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 28px;
}

.mock-feature-grid article {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.mock-product-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 28px 28px;
}

.mock-product-proof span {
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(15, 61, 53, 0.12);
  color: #0f3d35;
  font-size: 13px;
  font-weight: 900;
}

.demo-dock {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
}

.demo-dock button {
  min-height: 40px;
  padding: 8px 12px;
  box-shadow: var(--shadow-small);
  font-size: 13px;
}

.demo-dock button:disabled {
  opacity: 0.58;
  cursor: default;
}

.showcase-cursor {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 12;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 20.9999L4 3.99994L21 10.9999L14.7353 13.6848C14.2633 13.8871 13.8872 14.2632 13.6849 14.7353L11 20.9999Z' stroke='%23292929' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  pointer-events: none;
  transform-origin: 2px 2px;
  transition:
    transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 180ms ease;
}

.showcase-cursor-visible {
  opacity: 1;
  pointer-events: none;
}

.showcase-cursor-pressed {
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.28));
}

.showcase-tooltip {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 11;
  display: grid;
  gap: 4px;
  width: 268px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  border-left: 4px solid var(--mint-strong);
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.16);
  color: #14212b;
  cursor: grab;
  outline: 0 solid transparent;
  outline-offset: 0;
  pointer-events: auto;
  touch-action: none;
  user-select: none;
  transition: transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.showcase-tooltip:hover,
.showcase-tooltip-dragging {
  outline: 3px solid var(--mint-strong);
  outline-offset: 4px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.2);
}

.showcase-tooltip-dragging {
  cursor: grabbing;
  transition:
    outline-color 160ms ease,
    outline-offset 160ms ease,
    box-shadow 160ms ease;
}

.showcase-tooltip strong {
  font-family: var(--font-display);
  font-size: 15px;
  text-transform: uppercase;
}

.showcase-tooltip span {
  color: var(--copy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.split-section,
.section,
.comparison-section,
.pricing,
.faq,
.final-cta {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 108px 0;
}

.journey-section {
  position: relative;
}

.section-heading-left {
  margin-inline: 0;
  text-align: left;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.split-section p,
.section-heading p,
.use-case p,
.price-card p,
.provider-setup-card p,
.faq p,
.final-cta p,
footer span {
  color: var(--copy);
}

.split-section > div > p:not(.eyebrow) {
  font-size: 20px;
  font-weight: 700;
}

.checklist {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 2px solid var(--ink);
  padding: 16px;
  background: var(--paper);
  box-shadow: var(--shadow-small);
  color: var(--navy);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.checklist li:hover {
  background: var(--mint);
  box-shadow: 6px 5px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.checklist li > .material-symbols-outlined {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  background: var(--cream);
  color: var(--moss);
  font-size: 24px;
}

.checklist strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.checklist p {
  margin: 6px 0 0;
  color: var(--copy);
  font-weight: 750;
  line-height: 1.35;
}

.comparison-grid,
.feature-grid,
.price-grid {
  display: grid;
  gap: 18px;
}

.comparison-section {
  display: grid;
  gap: 32px;
}

.comparison-stage {
  position: relative;
  border: 2px solid var(--ink);
  padding: clamp(18px, 3vw, 32px);
  background:
    linear-gradient(90deg, rgba(216, 255, 213, 0.72) 0 50%, rgba(255, 248, 237, 0.86) 50% 100%),
    var(--paper);
  box-shadow: var(--shadow);
}

.comparison-stage::before {
  position: absolute;
  inset: 16px 50%;
  width: 2px;
  background: var(--ink);
  content: "";
}

.comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.comparison-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  border: 2px solid var(--ink);
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper);
  box-shadow: var(--shadow-small);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.comparison-card:hover {
  box-shadow: 8px 7px 0 var(--ink);
  transform: translate(-3px, -3px);
}

.comparison-card header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.comparison-card header > span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--ink);
  background: var(--cream);
  color: var(--ink);
  font-size: 28px;
}

.comparison-card h3 {
  margin: 0;
}

.comparison-card ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: comparison-step;
}

.comparison-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  border: 1px solid var(--line);
  padding: 10px 12px;
  background: #f7f8fa;
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-card li::before {
  counter-increment: comparison-step;
  content: counter(comparison-step, decimal-leading-zero);
  color: var(--moss);
}

.old-way header > span,
.old-way li::before {
  color: var(--danger);
}

.shroompen-way {
  background: var(--mint);
}

.shroompen-way header > span {
  background: var(--paper);
  color: var(--moss);
}

.comparison-card > strong {
  border-top: 2px solid var(--ink);
  padding-top: 14px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.context-strip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  border: 2px solid var(--ink);
  padding: 14px;
  background: var(--paper);
  box-shadow: var(--shadow-small);
}

.context-strip span,
.context-strip strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid var(--line);
  padding: 5px 9px;
  background: #f5fbf4;
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.context-strip .material-symbols-outlined {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font-family: "Material Symbols Outlined";
  font-size: 22px;
  font-feature-settings: "liga";
  text-transform: none;
  -webkit-font-feature-settings: "liga";
}

.context-strip strong {
  border-color: var(--ink);
  background: var(--mint);
  color: var(--moss);
}

.feature-grid article,
.price-card,
.provider-setup-card {
  border: 2px solid var(--ink);
  padding: clamp(20px, 3vw, 28px);
  background: var(--paper);
}

.feature-grid p {
  color: var(--copy);
  font-weight: 700;
}

.feature-band {
  border-block: 2px solid var(--ink);
  padding: 108px clamp(18px, 4vw, 54px);
  background:
    linear-gradient(135deg, #fff8ed 0%, #ffffff 45%, #f7edff 100%);
  color: var(--navy);
}

.section-heading.invert h2,
.feature-grid h3 {
  color: var(--ink);
}

.section-heading.invert p:not(.eyebrow),
.feature-grid p {
  color: var(--copy);
}

.feature-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid article {
  display: grid;
  min-height: 342px;
  align-content: start;
  gap: 18px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-grid article:hover {
  box-shadow: 12px 10px 0 var(--ink);
  transform: translate(-4px, -4px);
}

.feature-grid article:nth-child(1) {
  background: var(--paper);
}

.feature-grid article:nth-child(2) {
  background: var(--mint);
}

.feature-grid article:nth-child(3) {
  background: var(--cream);
}

.feature-grid article strong {
  display: block;
  align-self: end;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow-small);
  color: var(--moss);
  font-size: 28px;
}

.feature-card-top {
  justify-content: space-between;
}

.feature-card-top > span:not(.feature-icon) {
  border: 1px solid var(--line);
  padding: 5px 8px;
  background: var(--paper);
  color: var(--copy);
}

.use-cases-section {
  display: grid;
  gap: 10px;
}

.use-case-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.use-case {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  gap: 18px;
  border: 2px solid var(--ink);
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.use-case:nth-child(2) {
  background: var(--cream);
}

.use-case:nth-child(3) {
  background: var(--lavender);
}

.use-case:hover {
  box-shadow: 13px 11px 0 var(--ink);
  transform: translate(-4px, -4px);
}

.use-case > span {
  display: inline-flex;
  width: max-content;
  border: 1px solid var(--line);
  padding: 5px 8px;
  background: var(--paper);
}

.use-case p {
  margin-bottom: 0;
  font-size: 19px;
  font-weight: 700;
}

.use-case-context {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.use-case-context span {
  background: var(--paper);
}

.use-case > strong {
  display: block;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-section {
  align-items: center;
  border-block: 2px solid var(--ink);
  padding-block: 96px;
}

.price-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
}

.price-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.price-card:hover,
.provider-setup-card:hover {
  box-shadow: 13px 11px 0 var(--ink);
  transform: translate(-4px, -4px);
}

.price-card.live {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68) 0 28%, transparent 28%),
    var(--mint);
}

.price-card h3 {
  margin-top: 46px;
}

.price-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 28px;
  padding-left: 20px;
  font-weight: 800;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.provider-setup-card {
  display: grid;
  align-content: start;
  gap: 18px;
  background: var(--cream);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.provider-setup-card header {
  align-items: flex-start;
  justify-content: space-between;
}

.provider-setup-card header h3 {
  margin: 0;
}

.provider-setup-card header > .material-symbols-outlined {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow-small);
  color: var(--ink);
  font-size: 28px;
}

.provider-setup-card ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: var(--navy);
  font-weight: 850;
  list-style: none;
  counter-reset: provider-step;
}

.provider-setup-card li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  border: 1px solid var(--line);
  padding: 12px;
  background: var(--paper);
}

.provider-setup-card li::before {
  counter-increment: provider-step;
  content: counter(provider-step, decimal-leading-zero);
  color: var(--moss);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
}

.provider-setup-card li strong,
.provider-setup-card li span {
  min-width: 0;
}

.provider-setup-card li strong {
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
}

.provider-setup-card li span {
  grid-column: 2;
  color: var(--copy);
  font-weight: 750;
}

.provider-setup-card p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-weight: 800;
}

.price-state {
  position: absolute;
  top: 0;
  right: 0;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 6px 10px;
  background: var(--paper);
}

.faq {
  width: min(980px, calc(100% - 36px));
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow-small);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.faq details:hover,
.faq details[open] {
  background: var(--cream);
  box-shadow: 6px 5px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.faq summary {
  cursor: pointer;
  padding: 18px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
}

.faq p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 18px;
  font-weight: 700;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 76px;
  border: 2px solid var(--ink);
  padding: clamp(34px, 6vw, 68px);
  background:
    linear-gradient(102deg, var(--mint) 0 68%, var(--cream) 68% 100%);
  box-shadow: var(--shadow);
}

.final-cta h2 {
  width: min(820px, 100%);
  margin-inline: 0;
}

.final-cta p {
  width: min(640px, 100%);
  margin-inline: 0;
  font-size: 20px;
  font-weight: 800;
}

footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 2px solid var(--ink);
  padding: 24px clamp(16px, 4vw, 48px) 42px;
  background: var(--fog);
}

.footer-brand {
  display: grid;
  gap: 4px;
}

footer strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
}

.footer-version {
  position: absolute;
  right: clamp(16px, 4vw, 48px);
  bottom: 12px;
  border: 2px solid var(--ink);
  padding: 3px 8px;
  background: var(--paper);
  box-shadow: var(--shadow-small);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.landing-overlay-host {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: block;
  pointer-events: none;
}

.landing-overlay-host-hidden {
  visibility: hidden;
}

@keyframes heroWorkbenchIn {
  from {
    opacity: 0;
    transform: translate(28px, 28px) rotate(1.5deg);
  }

  to {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg);
  }
}

@keyframes sectionReveal {
  from {
    opacity: 0.2;
    transform: translateY(42px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@supports (animation-timeline: view()) {
  .journey-section {
    animation: sectionReveal both ease-out;
    animation-range: entry 0% cover 32%;
    animation-timeline: view();
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-browser,
  .journey-section {
    animation: none;
  }

  .hero-result-card {
    transition: none;
  }

  .hero-result-card:hover,
  .hero-result-card:focus-within {
    box-shadow: 5px 5px 0 var(--ink);
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 980px) {
  .topbar nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    width: min(80vw, 560px);
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-workbench {
    width: min(720px, 100%);
    margin: 0 auto;
  }

  .hero-equation-browser {
    transform: none;
  }

  .mock-crm-layout,
  .mock-product-hero,
  .mock-product-screenshot {
    grid-template-columns: 1fr;
  }

  .mock-crm-rail,
  .mock-doc-outline,
  .mock-doc-comments {
    display: none;
  }

  .mock-doc-workspace {
    grid-template-columns: minmax(0, 1fr);
  }

  .mock-feature-grid {
    grid-template-columns: 1fr;
  }

  .split-section,
  .comparison-grid,
  .use-case-list,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .comparison-stage::before {
    display: none;
  }

  .feature-band {
    background: linear-gradient(135deg, #fff8ed 0%, #ffffff 45%, #f7edff 100%);
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .step-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .topbar {
    gap: 10px;
    min-height: 62px;
    overflow: hidden;
    padding: 8px 14px;
  }

  .brand span {
    display: none;
  }

  .hero {
    padding: 86px 14px 34px;
    background:
      linear-gradient(180deg, #ffffff 0%, #fbfcfd 54%, #fff8ed 100%);
  }

  .hero::before {
    display: none;
  }

  .hero-inner {
    gap: 26px;
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .hero-copy-column {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .hero-kicker {
    max-width: 100%;
    padding: 7px 9px;
    font-size: 10px;
  }

  .hero h1 {
    margin: 18px 0;
    max-width: 100%;
    overflow-wrap: break-word;
    font-size: clamp(34px, 9.8vw, 40px);
    text-wrap: balance;
  }

  .hero-copy {
    max-width: 100%;
    overflow-wrap: break-word;
    font-size: 17px;
    line-height: 1.4;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 22px;
  }

  .topbar .button {
    display: none;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    justify-content: flex-start;
    gap: 8px;
    margin-top: 18px;
  }

  .hero-chip {
    flex: 1 1 calc(50% - 8px);
    min-height: 30px;
    padding: 5px 8px;
    font-size: 10px;
  }

  .hero-workbench {
    min-height: auto;
  }

  .hero-browser {
    border-radius: 6px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .hero-equation-page {
    gap: 12px;
    min-height: auto;
    padding: 14px;
    background:
      linear-gradient(180deg, #ffffff 0%, #fbfcfd 60%, #fff8ed 100%);
  }

  .hero-equation-flow {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: stretch;
  }

  .hero-equation-card {
    min-height: 0;
    padding: 10px;
    box-shadow: 3px 3px 0 var(--ink);
  }

  .hero-equation-card:hover {
    box-shadow: 4px 4px 0 var(--ink);
    transform: translate(-1px, -1px);
  }

  .hero-equation-card header {
    gap: 8px;
  }

  .hero-equation-operator {
    display: grid;
    place-items: center;
    min-height: 20px;
    font-size: 26px;
  }

  .hero-equation-down {
    display: none;
  }

  .hero-page-preview,
  .hero-prompt-card p {
    min-height: 112px;
  }

  .hero-result-card {
    width: 100%;
    padding: 14px;
    box-shadow: 3px 3px 0 var(--ink);
  }

  .hero-result-card:hover,
  .hero-result-card:focus-within {
    box-shadow: 4px 4px 0 var(--ink);
    transform: translate(-1px, -1px);
  }

  .hero-result-card header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .hero-ready-pill {
    margin-left: 0;
  }

  .hero-result-copy {
    font-size: 18px;
  }

  .hero-result-action {
    width: 100%;
  }

  .hero-equation-spark {
    display: none;
  }

  .demo-experience {
    padding-top: 74px;
  }

  .mock-browser {
    height: 660px;
    min-height: 660px;
  }

  .address {
    font-size: 10px;
  }

  .mock-document {
    padding: 16px;
  }

  .mock-proposal-page,
  .mock-reference-document {
    padding: 0;
  }

  .mock-doc-canvas {
    width: 100%;
    margin: 0 auto 28px;
    padding: 24px;
  }

  .mock-doc-workspace {
    padding: 12px;
  }

  .mock-app-topbar,
  .mock-doc-toolbar,
  .mock-crm-main,
  .mock-product-layout {
    padding-inline: 16px;
  }

  .mock-product-layout {
    padding-inline: 0;
  }

  .mock-product-hero,
  .mock-product-screenshot,
  .mock-feature-grid,
  .mock-product-proof {
    margin-inline: 16px;
  }

  .mock-product-nav {
    gap: 12px;
    overflow-x: auto;
    padding-inline: 16px;
  }

  .mock-product-hero {
    padding: 20px;
  }

  .mock-document textarea {
    min-height: 270px;
    font-size: 16px;
  }

  .showcase-tooltip {
    width: min(244px, calc(100% - 32px));
  }

  .showcase-glass-panel {
    padding: 16px;
  }

  .showcase-glass-content {
    gap: 10px;
    padding: 24px 18px 20px;
  }

  .showcase-glass-play {
    width: 64px;
    height: 64px;
  }

  .showcase-playback-button-active {
    left: calc(100% - 72px);
    top: 10px;
    width: 48px;
    height: 48px;
    box-shadow: 3px 3px 0 var(--ink), 0 12px 24px rgba(15, 23, 42, 0.18);
  }

  .showcase-playback-button-active .material-symbols-outlined {
    font-size: 28px;
  }

  .showcase-finish-panel {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
    align-items: stretch;
    flex-direction: column;
  }

  .showcase-finish-actions {
    width: 100%;
  }

  .showcase-finish-actions button,
  .showcase-finish-actions a {
    flex: 1 1 0;
  }

  .demo-dock {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .demo-dock button {
    width: 100%;
  }

  .trust-band {
    justify-content: flex-start;
  }

  .split-section,
  .section,
  .comparison-section,
  .pricing,
  .faq,
  .final-cta {
    width: min(100% - 24px, 1180px);
    padding-block: 64px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-band {
    padding-block: 64px;
  }

  .comparison-stage,
  .final-cta {
    box-shadow: var(--shadow-small);
  }

  .faq summary {
    font-size: 19px;
  }

  .use-case {
    box-shadow: var(--shadow-small);
  }

  .comparison-card,
  .feature-grid article,
  .price-card,
  .provider-setup-card {
    box-shadow: var(--shadow-small);
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 24px;
  }

  .footer-version {
    position: static;
    align-self: flex-end;
  }
}

@media (max-width: 640px) and (prefers-reduced-motion: reduce) {
  .hero-result-card:hover,
  .hero-result-card:focus-within {
    box-shadow: 3px 3px 0 var(--ink);
    transform: none;
  }
}

@media (max-width: 520px) {
  .hero-copy-column,
  .hero-workbench {
    width: 100%;
    max-width: 362px;
  }

  .hero h1 {
    font-size: clamp(32px, 9vw, 36px);
  }

  .hero-kicker {
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-chip {
    justify-content: center;
    width: 100%;
  }
}

@keyframes slide-up-fade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 100ms; }
.stagger-2 { transition-delay: 200ms; }
.stagger-3 { transition-delay: 300ms; }
.stagger-4 { transition-delay: 400ms; }
.stagger-5 { transition-delay: 500ms; }
