:root {
  --background: #ffffff;
  --foreground: #09090b;
  --card: #ffffff;
  --card-foreground: #09090b;
  --muted: #f4f4f5;
  --muted-soft: #fafafa;
  --muted-foreground: #6b6b74;
  --border: #e4e4e7;
  --border-strong: #d4d4d8;
  --input: #d4d4d8;
  --primary: #18181b;
  --primary-hover: #27272a;
  --primary-foreground: #fafafa;
  --success: #16803c;
  --success-soft: #f0fdf4;
  --warning: #a16207;
  --warning-soft: #fefce8;
  --danger: #b42318;
  --danger-soft: #fef3f2;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --font-sans: "Geist", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  --text-micro: 10px;
  --text-compact: 11px;
  --text-caption: 12px;
  --text-ui: 14px;
  --text-body: 16px;
  --text-lead: 18px;
  --text-subheading: 20px;
  --shell: min(1280px, calc(100vw - 48px));
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: clip;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(rgba(9, 9, 11, 0.055) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 36%);
}

button,
input,
select {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  line-height: 1.65;
}

::selection {
  background: #18181b;
  color: white;
}

:focus-visible {
  outline: 2px solid var(--foreground);
  outline-offset: 3px;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(88px, 9vw, 136px);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 9px 13px;
  transform: translateY(-180%);
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 13px;
  font-weight: 600;
}

.skip-link:focus {
  transform: translateY(0);
}

.service-bar {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 6px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--muted-soft);
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.service-bar__signal,
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}

.service-bar a {
  margin-left: 5px;
  color: var(--foreground);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--border-strong);
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.wordmark {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.wordmark__slash {
  margin-inline: 2px;
  color: var(--muted-foreground);
  font-weight: 400;
}

.wordmark small {
  position: absolute;
  top: 31px;
  left: 0;
  width: max-content;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 6px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.nav-menu {
  flex: 1;
  justify-content: flex-end;
  gap: 34px;
}

.nav-links {
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  color: var(--muted-foreground);
  font-size: 13px;
  font-weight: 500;
  transition: color 150ms ease;
}

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

.nav-toggle.icon-button {
  display: none;
}

.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  box-shadow: var(--shadow-xs);
  cursor: pointer;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 550;
  box-shadow: var(--shadow-xs);
  transition: background 150ms ease, border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.button svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button--compact {
  min-height: 44px;
  padding-inline: 14px;
  font-size: 12px;
}

.button--ink,
.button--primary,
.button--orange {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--primary-foreground);
}

.button--ink:hover,
.button--primary:hover,
.button--orange:hover {
  background: var(--primary-hover);
}

.button--ghost {
  border-color: var(--border);
  background: var(--background);
  color: var(--foreground);
}

.button--ghost:hover {
  background: var(--muted-soft);
}

.button--full {
  width: 100%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-grid;
  min-width: 25px;
  height: 20px;
  padding-inline: 5px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--background);
  color: var(--foreground);
  font-size: 8px;
}

.hero {
  display: block;
  padding-block: clamp(88px, 10vw, 144px) 0;
}

.hero-copy {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.hero-copy .eyebrow {
  justify-content: center;
}

.hero h1 {
  margin-bottom: 27px;
  font-size: clamp(3.5rem, 7vw, 6.25rem);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.headline-accent {
  display: block;
  color: #71717a;
}

.hero-lead {
  max-width: 720px;
  margin: 0 auto 31px;
  color: var(--muted-foreground);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
}

.capability-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  border: 0;
  list-style: none;
}

.capability-heading {
  margin: 27px 0 -17px;
  color: #a1a1aa;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.capability-list li {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--muted-soft);
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 8px;
}

.capability-list li > span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--foreground);
}

.hero-product {
  position: relative;
  width: min(1180px, 100%);
  margin: clamp(62px, 7vw, 96px) auto -1px;
}

.preview-label {
  position: absolute;
  z-index: 3;
  top: -16px;
  right: 20px;
  display: flex;
  min-height: 32px;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--background);
  color: var(--muted-foreground);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.025em;
}

.product-window {
  overflow: hidden;
  min-height: 610px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--background);
  box-shadow: var(--shadow-md);
}

.window-bar {
  display: grid;
  grid-template-columns: 72px 1fr 36px;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  border-bottom: 1px solid var(--border);
  background: var(--muted-soft);
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots span {
  width: 7px;
  height: 7px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: white;
}

.window-dots span:first-child {
  background: var(--foreground);
}

.window-path {
  overflow: hidden;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 8px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.window-path b {
  margin-inline: 8px;
  color: var(--border-strong);
}

.window-path strong {
  color: var(--foreground);
  font-weight: 500;
}

.window-avatar {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--foreground);
  color: white;
  font-family: var(--font-mono);
  font-size: 7px;
}

.app-shell {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  min-height: 562px;
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  padding: 22px 11px 16px;
  border-right: 1px solid var(--border);
  background: var(--muted-soft);
}

.app-sidebar__label {
  margin: 0 9px 16px;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stage-tabs {
  display: grid;
  gap: 4px;
}

.stage-tab {
  display: grid;
  grid-template-columns: 24px 1fr 6px;
  min-height: 43px;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.stage-tab:hover {
  background: var(--muted);
}

.stage-tab[aria-selected="true"] {
  background: var(--foreground);
  color: white;
  box-shadow: var(--shadow-sm);
}

.stage-tab > span {
  font-family: var(--font-mono);
  font-size: 7px;
  opacity: 0.68;
}

.stage-tab > b {
  font-size: 10px;
  font-weight: 500;
}

.stage-tab > i {
  width: 5px;
  height: 5px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.3;
}

.stage-tab[aria-selected="true"] > i {
  border: 0;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.13);
  opacity: 1;
}

.sidebar-foot {
  display: grid;
  gap: 3px;
  margin: auto 9px 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.sidebar-foot span,
.sidebar-foot strong {
  font-family: var(--font-mono);
  font-size: 7px;
}

.sidebar-foot span {
  color: var(--muted-foreground);
}

.sidebar-foot strong {
  font-weight: 500;
}

.app-main {
  position: relative;
  min-width: 0;
  padding: 27px 29px 25px;
  background-color: white;
  background-image: linear-gradient(rgba(9, 9, 11, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(9, 9, 11, 0.025) 1px, transparent 1px);
  background-size: 24px 24px;
}

.job-head {
  display: grid;
  grid-template-columns: 1fr auto 34px;
  align-items: center;
  gap: 20px;
}

.job-head p {
  margin-bottom: 5px;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.job-head h2 {
  margin: 0;
  font-size: clamp(23px, 2.5vw, 34px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}

.job-stat {
  display: grid;
  gap: 3px;
  padding-right: 18px;
  border-right: 1px solid var(--border);
  text-align: right;
}

.job-stat span {
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 6px;
  text-transform: uppercase;
}

.job-stat strong {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
}

.product-icon-button {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: white;
}

.product-icon-button svg {
  width: 17px;
  fill: var(--foreground);
}

.job-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin: 25px 0 14px;
}

.segmented {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--muted);
}

.segmented > span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--muted-foreground);
  font-size: 8px;
  font-weight: 500;
}

.segmented > span.is-active {
  background: white;
  color: var(--foreground);
  box-shadow: var(--shadow-xs);
}

.progress-chip {
  display: flex;
  min-height: 27px;
  align-items: center;
  gap: 7px;
  padding: 0 9px;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  background: var(--success-soft);
  color: var(--success);
}

.progress-chip span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
}

.progress-chip b {
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 500;
}

.contact-sheet {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.photo-cell {
  position: relative;
  overflow: hidden;
  min-width: 0;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-xs);
  transition: transform 180ms var(--ease), opacity 180ms ease;
}

.photo-cell:hover {
  z-index: 2;
  transform: translateY(-2px);
}

.photo-cell.is-marked::after {
  position: absolute;
  top: 7px;
  right: 7px;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--foreground);
  color: white;
  content: "✓";
  font-size: 8px;
  font-weight: 700;
}

.portrait {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.2 / 1;
  background: #e4e4e7;
}

.portrait::before {
  position: absolute;
  top: 18%;
  left: 50%;
  width: 25%;
  aspect-ratio: 0.9;
  border-radius: 50%;
  background: #52525b;
  content: "";
  transform: translateX(-50%);
}

.portrait::after {
  position: absolute;
  bottom: -26%;
  left: 50%;
  width: 75%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #52525b;
  content: "";
  transform: translateX(-50%);
}

.portrait span {
  display: none;
}

.tone-1 .portrait { background: #e4e4e7; }
.tone-2 .portrait { background: #d4d4d8; }
.tone-3 .portrait { background: #e7e5e4; }
.tone-4 .portrait { background: #e5e7eb; }
.tone-5 .portrait { background: #d6d3d1; }
.tone-6 .portrait { background: #e4e4e7; }
.tone-2 .portrait::before, .tone-2 .portrait::after { background: #3f3f46; }
.tone-3 .portrait::before, .tone-3 .portrait::after { background: #57534e; }
.tone-4 .portrait::before, .tone-4 .portrait::after { background: #4b5563; }
.tone-5 .portrait::before, .tone-5 .portrait::after { background: #44403c; }
.tone-6 .portrait::before, .tone-6 .portrait::after { background: #52525b; }

.photo-cell figcaption {
  display: flex;
  min-height: 27px;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 0 7px;
  font-family: var(--font-mono);
  font-size: 6px;
}

.photo-cell figcaption b {
  color: var(--foreground);
  font-weight: 500;
}

.photo-cell figcaption span {
  overflow: hidden;
  color: var(--muted-foreground);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.context-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  min-height: 59px;
  align-items: center;
  gap: 11px;
  padding: 8px 11px;
  border: 1px solid #27272a;
  border-radius: 9px;
  background: var(--foreground);
  color: white;
  box-shadow: var(--shadow-md);
}

.context-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 6px;
  background: white;
  color: var(--foreground);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 600;
}

.context-card > div:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.context-card > div:nth-child(2) span {
  color: #a1a1aa;
  font-family: var(--font-mono);
  font-size: 6px;
  text-transform: uppercase;
}

.context-card > div:nth-child(2) strong {
  overflow: hidden;
  font-size: 9px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.context-status {
  padding: 5px 8px;
  border: 1px solid #3f3f46;
  border-radius: 999px;
  color: #d4d4d8;
  font-family: var(--font-mono);
  font-size: 6px;
}

.preview-note {
  margin: 11px 2px 0;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 7px;
  text-align: right;
}

.usecase-rail {
  border-block: 1px solid var(--border);
  background: var(--muted-soft);
}

.usecase-rail__inner {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  white-space: nowrap;
}

.usecase-rail__inner > span {
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 8px;
  text-transform: uppercase;
}

.usecase-rail__inner > div {
  width: min(18vw, 180px);
  height: 1px;
  background: var(--border);
}

.usecase-rail strong {
  font-size: 13px;
  font-weight: 550;
}

.usecase-rail i {
  color: #d4d4d8;
  font-style: normal;
}

.section-heading,
.pricing-intro,
.comparison-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  align-items: end;
  gap: 30px 70px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-heading .eyebrow,
.pricing-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -5px;
}

.section-heading h2,
.pricing-intro h2,
.comparison-head h2,
.faq-intro h2,
.customer-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 4.5vw, 4.75rem);
  font-weight: 620;
  letter-spacing: -0.065em;
  line-height: 1;
}

.section-heading > p:last-child,
.pricing-intro > p:last-child,
.comparison-head > p,
.faq-intro > p:last-child,
.customer-copy > p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 15px;
  line-height: 1.7;
}

.problem {
  background: white;
}

.workflow-comparison {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  overflow: hidden;
  min-height: 390px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-sm);
}

.workflow-before,
.workflow-after {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 48px);
}

.workflow-before {
  overflow: hidden;
  border-right: 1px solid var(--border);
  background: var(--muted-soft);
}

.workflow-before > p,
.workflow-after > p {
  margin: 0;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 8px;
  text-transform: uppercase;
}

.loose-tools {
  position: relative;
  min-height: 220px;
  flex: 1;
}

.loose-tool {
  position: absolute;
  display: grid;
  min-width: 108px;
  gap: 4px;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: white;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 500;
}

.loose-tool small {
  color: var(--muted-foreground);
  font-size: 6px;
  font-weight: 400;
}

.loose-tool--a { top: 20px; left: 3%; transform: rotate(-4deg); }
.loose-tool--b { top: 32%; right: 0; transform: rotate(4deg); }
.loose-tool--c { top: 54%; left: 8%; transform: rotate(2deg); }
.loose-tool--d { top: 3%; right: 8%; transform: rotate(2deg); }
.loose-tool--e { right: 8%; bottom: 0; transform: rotate(-3deg); }

.workflow-before > strong {
  max-width: 310px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.workflow-after {
  background: white;
}

.flow-line {
  display: flex;
  align-items: center;
  margin-top: 68px;
}

.flow-line > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: white;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 7px;
}

.flow-line > span.is-done {
  border-color: var(--foreground);
  color: var(--foreground);
}

.flow-line > span.is-current {
  border-color: var(--foreground);
  background: var(--foreground);
  color: white;
  box-shadow: 0 0 0 5px var(--muted);
}

.flow-line > i {
  height: 1px;
  flex: 1;
  background: var(--border);
}

.flow-labels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 11px -8px 0;
  padding: 0;
  list-style: none;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 6px;
  text-align: center;
}

.unified-job {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--muted-soft);
}

.unified-job > div {
  display: grid;
  gap: 4px;
}

.unified-job span {
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 6px;
}

.unified-job strong {
  font-size: 14px;
  font-weight: 600;
}

.unified-job > b {
  padding: 6px 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: white;
  font-family: var(--font-mono);
  font-size: 6px;
  font-weight: 500;
  text-transform: uppercase;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: white;
  list-style: none;
}

.workflow-note {
  margin: 0 0 10px;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 7px;
  text-align: right;
  text-transform: uppercase;
}

.workflow-steps li {
  min-width: 0;
  padding: 24px;
  border-right: 1px solid var(--border);
}

.workflow-steps li:last-child {
  border-right: 0;
}

.workflow-steps li > span {
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 7px;
}

.workflow-steps h3 {
  margin: 31px 0 9px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.workflow-steps p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 11px;
  line-height: 1.55;
}

.feature-section {
  border-block: 1px solid var(--border);
  background: var(--muted-soft);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-xs);
}

.feature-copy {
  position: relative;
  z-index: 2;
  max-width: 570px;
}

.feature-index {
  display: block;
  margin-bottom: 20px;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.feature-card h3 {
  max-width: 560px;
  margin-bottom: 15px;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 620;
  letter-spacing: -0.06em;
  line-height: 1;
}

.feature-card p {
  max-width: 530px;
  margin: 0;
  color: var(--muted-foreground);
  font-size: 13px;
}

.assignment-ui {
  position: absolute;
  right: 6%;
  bottom: 6%;
  left: 6%;
  display: grid;
  grid-template-columns: minmax(100px, 0.7fr) 0.45fr minmax(180px, 1fr);
  min-height: 175px;
  align-items: center;
  gap: 26px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--muted-soft);
}

.scan-line {
  position: absolute;
  z-index: 3;
  top: 12%;
  bottom: 12%;
  left: 31%;
  width: 1px;
  background: var(--foreground);
  animation: scan 3.8s var(--ease) infinite;
}

@keyframes scan {
  0%, 100% { transform: translateX(-18px); opacity: 0.2; }
  50% { transform: translateX(18px); opacity: 1; }
}

.mini-subject {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
}

.mini-face {
  position: relative;
  min-height: 94px;
  background: #e4e4e7;
}

.mini-face::before {
  position: absolute;
  top: 16%;
  left: 50%;
  width: 29%;
  aspect-ratio: 0.9;
  border-radius: 50%;
  background: #52525b;
  content: "";
  transform: translateX(-50%);
}

.mini-face::after {
  position: absolute;
  bottom: -38%;
  left: 50%;
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #52525b;
  content: "";
  transform: translateX(-50%);
}

.mini-subject b,
.mini-subject span {
  padding-inline: 10px;
  font-family: var(--font-mono);
}

.mini-subject b {
  padding-top: 8px;
  font-size: 8px;
}

.mini-subject span {
  padding-block: 3px 9px;
  color: var(--muted-foreground);
  font-size: 6px;
}

.match-line {
  position: relative;
  display: flex;
  align-items: center;
}

.match-line span {
  height: 1px;
  flex: 1;
  background: var(--border-strong);
}

.match-line i {
  width: 8px;
  height: 8px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--foreground);
  box-shadow: 0 0 0 1px var(--foreground);
}

.match-line b {
  position: absolute;
  top: 12px;
  left: 50%;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 6px;
  transform: translateX(-50%);
}

.code-card {
  display: grid;
  gap: 6px;
  padding: 19px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.code-card small {
  color: var(--success);
  font-family: var(--font-mono);
  font-size: 6px;
}

.code-card strong {
  font-family: var(--font-mono);
  font-size: 12px;
}

.code-card span {
  color: var(--muted-foreground);
  font-size: 9px;
}

.phone {
  position: absolute;
  right: 10%;
  bottom: -25%;
  width: min(70%, 325px);
  min-height: 485px;
  padding: 11px;
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow-md);
  transform: rotate(1.5deg);
}

.phone::before {
  position: absolute;
  z-index: 3;
  top: 7px;
  left: 50%;
  width: 62px;
  height: 15px;
  border-radius: 999px;
  background: var(--foreground);
  content: "";
  transform: translateX(-50%);
}

.phone-top {
  display: flex;
  height: 38px;
  align-items: center;
  justify-content: space-between;
  padding-inline: 8px;
  font-size: 7px;
  font-weight: 600;
}

.phone-top i {
  width: 19px;
  height: 7px;
  border-radius: 9px;
  background: var(--foreground);
}

.phone-hero {
  height: 142px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e4e4e7, #a1a1aa);
}

.phone-copy {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 4px 9px;
}

.phone-copy b {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.phone-copy span {
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 6px;
}

.phone-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5px;
}

.phone-grid i {
  min-height: 72px;
  border-radius: 7px;
  background: #d4d4d8;
}

.phone-grid i:nth-child(2) { background: #e7e5e4; }
.phone-grid i:nth-child(3) { background: #e5e7eb; }
.phone-grid i:nth-child(4) { background: #d6d3d1; }

.phone-cart {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: space-between;
  margin-top: 9px;
  padding: 0 11px;
  border-radius: 8px;
  background: var(--foreground);
  color: white;
  font-size: 7px;
}

.automation-list {
  position: absolute;
  right: clamp(28px, 4vw, 48px);
  bottom: 36px;
  left: clamp(28px, 4vw, 48px);
}

.automation-row {
  display: grid;
  grid-template-columns: 44px 14px 1fr auto;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border);
  color: var(--muted-foreground);
}

.automation-row > span,
.automation-row > small {
  font-family: var(--font-mono);
  font-size: 6px;
}

.automation-row > i {
  position: relative;
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.automation-row > i::after {
  position: absolute;
  top: 7px;
  left: 2px;
  width: 1px;
  height: 46px;
  background: var(--border);
  content: "";
}

.automation-row:last-child > i::after {
  display: none;
}

.automation-row > b {
  color: var(--foreground);
  font-size: 9px;
  font-weight: 500;
}

.automation-row.is-complete > i {
  border-color: var(--success);
  background: #22c55e;
}

.automation-row.is-active > i {
  border: 0;
  background: var(--foreground);
  box-shadow: 0 0 0 4px var(--muted);
}

.team-ui {
  position: absolute;
  right: 7%;
  bottom: 6%;
  left: 7%;
  padding: 17px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--muted-soft);
}

.team-avatars {
  display: flex;
  margin-bottom: 19px;
}

.team-avatars span {
  display: grid;
  width: 36px;
  height: 36px;
  margin-right: -6px;
  place-items: center;
  border: 3px solid var(--muted-soft);
  border-radius: 50%;
  background: var(--foreground);
  color: white;
  font-family: var(--font-mono);
  font-size: 6px;
}

.team-avatars span:nth-child(2) { background: #3f3f46; }
.team-avatars span:nth-child(3) { background: #52525b; }
.team-avatars span:nth-child(4) { background: #71717a; }
.team-avatars span:last-child { background: #e4e4e7; color: var(--foreground); }

.team-row {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr auto;
  min-height: 47px;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border);
  font-size: 8px;
}

.team-row span {
  color: var(--muted-foreground);
}

.team-row i {
  color: var(--success);
  font-family: var(--font-mono);
  font-size: 6px;
  font-style: normal;
}

.feature-card--fulfillment {
  grid-column: 1 / -1;
  min-height: 500px;
}

.feature-card--fulfillment .feature-copy {
  width: 47%;
}

.route-map {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 47%;
  height: 210px;
  transform: translateY(-40%);
}

.route-map svg {
  position: absolute;
  inset: 34px 65px 0;
  width: calc(100% - 130px);
  height: 140px;
  overflow: visible;
  fill: none;
  stroke: var(--border-strong);
  stroke-dasharray: 4 5;
  stroke-width: 1;
}

.route-origin {
  position: absolute;
  top: 50%;
  left: 0;
  display: grid;
  width: 104px;
  height: 104px;
  place-content: center;
  border-radius: 50%;
  background: var(--foreground);
  color: white;
  text-align: center;
  transform: translateY(-50%);
}

.route-origin span {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
}

.route-origin b {
  color: #a1a1aa;
  font-family: var(--font-mono);
  font-size: 6px;
  font-weight: 400;
}

.route-destination {
  position: absolute;
  right: 0;
  display: grid;
  grid-template-columns: 36px 1fr;
  min-width: 205px;
  min-height: 68px;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.route-destination--top { top: 0; }
.route-destination--bottom { bottom: 0; }

.route-destination > i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 6px;
  background: var(--muted);
  font-family: var(--font-mono);
  font-size: 7px;
  font-style: normal;
}

.route-destination > span {
  display: grid;
  gap: 3px;
}

.route-destination b {
  font-size: 9px;
}

.route-destination small {
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 6px;
}

.customer-section {
  border-bottom: 1px solid var(--border);
  background: white;
  color: var(--foreground);
}

.customer-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.customer-copy h2 {
  margin-bottom: 26px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list svg {
  width: 20px;
  height: 20px;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 50%;
  fill: none;
  stroke: var(--foreground);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.customer-visual {
  min-width: 0;
  padding-block: 20px;
}

.gallery-browser {
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: white;
  color: var(--foreground);
  box-shadow: var(--shadow-md);
}

.gallery-browser__bar {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  min-height: 40px;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid var(--border);
  background: var(--muted-soft);
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 6px;
  text-align: center;
}

.gallery-browser__bar > span:first-child {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--foreground);
}

.gallery-browser__bar i {
  justify-self: end;
  width: 15px;
  height: 1px;
  background: var(--foreground);
  box-shadow: 0 4px 0 var(--foreground);
}

.gallery-nav {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  border-bottom: 1px solid var(--border);
}

.gallery-nav b {
  font-size: 10px;
  letter-spacing: 0.03em;
}

.gallery-nav span {
  color: var(--muted-foreground);
  font-size: 7px;
}

.gallery-body {
  padding: 34px 25px 82px;
}

.gallery-intro {
  display: grid;
  gap: 6px;
  margin-bottom: 24px;
}

.gallery-intro small {
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 6px;
}

.gallery-intro strong {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.gallery-intro span {
  color: var(--muted-foreground);
  font-size: 8px;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.9fr;
  grid-template-rows: 112px 92px;
  gap: 7px;
}

.gallery-mosaic i {
  border-radius: 7px;
  background: #d4d4d8;
}

.gallery-mosaic i:first-child { grid-row: span 2; background: #a1a1aa; }
.gallery-mosaic i:nth-child(2) { background: #d6d3d1; }
.gallery-mosaic i:nth-child(3) { background: #e4e4e7; }
.gallery-mosaic i:nth-child(4) { grid-column: span 2; background: #e7e5e4; }

.gallery-action {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  margin: -54px 25px 20px;
  padding: 0 17px;
  border-radius: 8px;
  background: var(--foreground);
  color: white;
  box-shadow: var(--shadow-md);
  font-size: 8px;
}

.gallery-action span {
  color: #d4d4d8;
}

.gallery-action span b {
  display: inline-grid;
  width: 21px;
  height: 21px;
  margin-right: 6px;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--foreground);
}

.gallery-action strong i {
  margin-left: 7px;
  font-style: normal;
}

.pricing-section {
  background: var(--muted-soft);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.58fr) minmax(570px, 1.42fr);
  gap: 16px;
}

.price-card,
.calculator {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-sm);
}

.price-card {
  padding: clamp(28px, 4vw, 44px);
}

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

.price-card__top > div {
  display: grid;
  gap: 4px;
}

.price-card__top > div span,
.price-badge {
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 7px;
  text-transform: uppercase;
}

.price-card__top > div strong {
  font-size: 16px;
  font-weight: 600;
}

.price-badge {
  padding: 6px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--muted-soft);
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 62px 0 17px;
}

.price__currency {
  margin-bottom: 4px;
  font-family: var(--font-mono);
  font-size: 14px;
}

.price > strong {
  font-size: clamp(6rem, 9vw, 8.5rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.price__meta {
  margin: 0 0 1px 2px;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 6px;
  line-height: 1.5;
  text-transform: uppercase;
}

.price-lead {
  margin-bottom: 36px;
  color: var(--muted-foreground);
  font-size: 11px;
}

.price-features {
  margin: 0 0 28px;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.price-features li {
  display: grid;
  grid-template-columns: 40px 1fr;
  min-height: 56px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.price-features span {
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 6px;
}

.price-features .price-check {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #bde8d0;
  border-radius: 50%;
  background: var(--mint-soft);
  color: var(--success);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 750;
  line-height: 1;
}

.price-features b {
  font-size: 9px;
  font-weight: 500;
}

.price-fineprint {
  margin: 15px 2px 0;
  color: var(--muted-foreground);
  font-size: 7px;
  line-height: 1.6;
}

.calculator-head {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 21px clamp(22px, 3vw, 36px);
  border-bottom: 1px solid var(--border);
}

.calculator-head .feature-index {
  margin-bottom: 6px;
}

.calculator-head h3 {
  margin: 0;
  font-size: clamp(23px, 2.5vw, 34px);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.calculator-state {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  background: var(--success-soft);
  color: var(--success);
  font-family: var(--font-mono);
  font-size: 6px;
  font-weight: 500;
}

.calculator-state::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  content: "";
}

.calculator-body {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 480px;
}

.calculator-controls {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  padding: clamp(28px, 4vw, 46px);
  border-right: 1px solid var(--border);
}

.field-group {
  display: grid;
  gap: 22px;
}

.field-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.field-group label {
  color: #3f3f46;
  font-size: 9px;
  font-weight: 550;
}

.number-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  min-width: 114px;
  height: 44px;
  align-items: center;
  border: 1px solid var(--input);
  border-radius: 7px;
  background: white;
  box-shadow: var(--shadow-xs);
}

.number-wrap:focus-within {
  border-color: var(--foreground);
  box-shadow: 0 0 0 2px rgba(9, 9, 11, 0.08);
}

.number-wrap input {
  width: 100%;
  height: 100%;
  min-height: 44px;
  min-width: 0;
  padding: 0 4px 0 10px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--foreground);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-align: right;
}

.number-wrap span {
  padding: 0 10px 0 5px;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 7px;
}

.range {
  width: 100%;
  height: 44px;
  margin: 0;
  border-radius: 999px;
  outline: none;
  appearance: none;
  background: linear-gradient(to right, var(--foreground) 0 var(--range-progress, 40%), var(--border) var(--range-progress, 40%) 100%) center / 100% 4px no-repeat;
}

.range:focus-visible {
  outline: 2px solid var(--foreground);
  outline-offset: 3px;
}

.range::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  border: 6px solid white;
  border-radius: 50%;
  appearance: none;
  background: var(--foreground);
  box-shadow: 0 0 0 1px var(--foreground), var(--shadow-sm);
  cursor: grab;
}

.range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border: 6px solid white;
  border-radius: 50%;
  background: var(--foreground);
  box-shadow: 0 0 0 1px var(--foreground), var(--shadow-sm);
  cursor: grab;
}

.range-marks {
  display: flex;
  justify-content: space-between;
  margin-top: -29px;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 6px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field-group--compact {
  gap: 9px;
}

.field-group--compact .number-wrap {
  width: 100%;
}

.receipt {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(28px, 4vw, 44px) clamp(22px, 3vw, 36px);
  background-color: var(--muted-soft);
  background-image: radial-gradient(rgba(9, 9, 11, 0.08) 0.6px, transparent 0.6px);
  background-size: 14px 14px;
}

.receipt-mark {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.receipt-mark b {
  margin-inline: 1px;
  color: var(--muted-foreground);
  font-weight: 400;
}

.receipt > p {
  margin-bottom: 38px;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 6px;
}

.receipt-row {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed var(--border-strong);
  font-family: var(--font-mono);
  font-size: 7px;
}

.receipt-row span {
  color: var(--muted-foreground);
}

.receipt-row strong {
  font-weight: 500;
}

.receipt-rule {
  height: 4px;
  margin: 14px 0 23px;
  border-block: 1px solid var(--foreground);
}

.receipt-result {
  display: grid;
}

.receipt-result > span {
  margin-bottom: 6px;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 6px;
  text-transform: uppercase;
}

.receipt-result > strong {
  overflow-wrap: anywhere;
  font-size: clamp(2.7rem, 4.2vw, 4.7rem);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.receipt-result > small {
  margin-top: 7px;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 6px;
}

.receipt.is-saving .receipt-result > span,
.receipt.is-saving .receipt-result > small {
  color: #126c37;
}

.receipt.is-saving .receipt-result > strong {
  color: var(--success);
}

.receipt.is-saving .receipt-rule {
  border-color: rgba(22, 128, 60, 0.42);
}

.receipt.is-negative .receipt-result > span,
.receipt.is-negative .receipt-result > strong,
.receipt.is-negative .receipt-result > small {
  color: var(--danger);
}

.receipt-percent {
  width: fit-content;
  margin-top: 18px;
  padding: 6px 8px;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  background: var(--success-soft);
  color: var(--success);
  font-family: var(--font-mono);
  font-size: 6px;
  font-weight: 500;
}

.receipt-percent.is-negative {
  border-color: #fecaca;
  background: var(--danger-soft);
  color: var(--danger);
}

.receipt-percent.is-neutral {
  border-color: var(--border-strong);
  background: var(--muted);
  color: var(--foreground);
}

.receipt-code {
  margin-top: auto;
  padding-top: 25px;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 6px;
}

.calculator-note {
  margin: 0;
  padding: 16px clamp(22px, 3vw, 36px) 19px;
  border-top: 1px solid var(--border);
  color: var(--muted-foreground);
  font-size: 7px;
  line-height: 1.65;
}

.calculator-note a,
.comparison-note a {
  color: var(--foreground);
  font-weight: 550;
  text-decoration: underline;
  text-decoration-color: var(--border-strong);
  text-underline-offset: 3px;
}

.comparison-section {
  background: white;
}

.comparison-head .eyebrow {
  margin-bottom: 22px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  min-width: 1040px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 9px;
}

caption {
  padding: 12px 15px;
  border-bottom: 1px solid var(--border);
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 6px;
  text-align: left;
  text-transform: uppercase;
}

th,
td {
  width: 15.5%;
  padding: 17px 15px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: middle;
}

th:first-child,
td:first-child {
  width: 22.5%;
}

tr > *:last-child {
  border-right: 0;
}

tbody tr:last-child > * {
  border-bottom: 0;
}

thead th {
  height: 78px;
  background: var(--muted-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

thead th small {
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 6px;
  font-weight: 400;
}

thead th.our-column {
  background: var(--foreground);
  color: white;
}

thead th.our-column span {
  display: block;
  font-size: 13px;
}

thead th.our-column small {
  color: #a1a1aa;
}

tbody th {
  color: #3f3f46;
  font-size: 8px;
  font-weight: 550;
}

td {
  color: var(--muted-foreground);
  line-height: 1.5;
}

td.our-column {
  background: #fafafa;
  color: var(--foreground);
}

.status {
  display: inline-flex;
  min-height: 23px;
  align-items: center;
  gap: 6px;
  padding: 0 7px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--muted-soft);
  color: var(--foreground);
  font-family: var(--font-mono);
  font-size: 6px;
  font-weight: 500;
  text-transform: uppercase;
}

.status::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a1a1aa;
  content: "";
}

.status--planned::before { background: var(--foreground); }
.status--yes::before { background: #22c55e; }
.status--partial::before { background: #eab308; }
.status--no::before { background: #ef4444; }

.comparison-note {
  max-width: 1100px;
  margin: 15px 2px 0;
  color: var(--muted-foreground);
  font-size: 7px;
  line-height: 1.7;
}

.faq-section {
  border-top: 1px solid var(--border);
  background: var(--muted-soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(55px, 9vw, 130px);
}

.faq-intro {
  position: sticky;
  top: 105px;
}

.faq-intro h2 {
  margin-bottom: 24px;
}

.faq-list {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: white;
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  display: grid;
  grid-template-columns: 32px 1fr 28px;
  min-height: 76px;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 550;
  letter-spacing: -0.02em;
  list-style: none;
}

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

.faq-list summary > span {
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 7px;
}

.faq-list summary i {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 7px;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  background: var(--foreground);
  content: "";
  transition: transform 180ms var(--ease);
}

.faq-list summary i::before { transform: translate(-50%, -50%); }
.faq-list summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-list details[open] summary i::after { transform: translate(-50%, -50%); }

.faq-list details > p {
  max-width: 690px;
  margin: -4px 48px 26px 62px;
  color: var(--muted-foreground);
  font-size: 12px;
  line-height: 1.7;
}

.final-cta {
  padding-block: 24px;
  background: white;
  color: var(--foreground);
}

.final-cta__grain {
  display: none;
}

.final-cta__inner {
  display: grid;
  justify-items: center;
  padding: clamp(80px, 11vw, 140px) 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background-color: var(--muted-soft);
  background-image: linear-gradient(rgba(9, 9, 11, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(9, 9, 11, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  text-align: center;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  max-width: 920px;
  margin-bottom: 25px;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 640;
  letter-spacing: -0.075em;
  line-height: 0.97;
}

.final-cta__inner > p:not(.eyebrow) {
  max-width: 630px;
  margin-bottom: 29px;
  color: var(--muted-foreground);
  font-size: 15px;
}

.footer {
  padding-block: 65px 25px;
  border-top: 1px solid var(--border);
  background: white;
  color: var(--foreground);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 55px;
  padding-bottom: 55px;
}

.footer-grid > div:first-child > p {
  max-width: 380px;
  margin: 18px 0 0;
  color: var(--muted-foreground);
  font-size: 9px;
}

.footer-links {
  display: flex;
  gap: clamp(50px, 8vw, 105px);
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-links span {
  margin-bottom: 5px;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 6px;
  text-transform: uppercase;
}

.footer-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--muted-foreground);
  font-size: 9px;
}

.footer-links a:hover {
  color: var(--foreground);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 6px;
}

.access-dialog {
  width: min(540px, calc(100vw - 28px));
  max-height: calc(100svh - 28px);
  padding: 0;
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

.access-dialog::backdrop {
  background: rgba(9, 9, 11, 0.55);
  backdrop-filter: blur(4px);
}

.dialog-card {
  display: grid;
  padding: clamp(25px, 5vw, 42px);
  background: white;
}

.dialog-head {
  display: grid;
  grid-template-columns: 1fr 40px;
  align-items: start;
  gap: 18px;
  margin-bottom: 17px;
}

.dialog-head > div > span {
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 7px;
}

.dialog-head h2 {
  margin: 8px 0 0;
  font-size: clamp(29px, 5vw, 43px);
  font-weight: 620;
  letter-spacing: -0.06em;
  line-height: 1;
}

.dialog-close {
  position: relative;
}

.dialog-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 1px;
  background: var(--foreground);
}

.dialog-close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.dialog-close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

.dialog-card > p {
  margin-bottom: 23px;
  color: var(--muted-foreground);
  font-size: 9px;
}

.dialog-card > label {
  margin: 13px 0 6px;
  color: #3f3f46;
  font-size: 9px;
  font-weight: 550;
}

.dialog-card > input,
.dialog-card > select {
  width: 100%;
  min-height: 42px;
  padding: 0 11px;
  border: 1px solid var(--input);
  border-radius: 7px;
  outline: 0;
  background: white;
  color: var(--foreground);
  font-size: 10px;
  box-shadow: var(--shadow-xs);
}

.dialog-card > input:focus,
.dialog-card > select:focus {
  border-color: var(--foreground);
  box-shadow: 0 0 0 2px rgba(9, 9, 11, 0.08);
}

.dialog-card > .button {
  margin-top: 22px;
}

.form-feedback {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid #bbf7d0;
  border-radius: 7px;
  background: var(--success-soft);
  color: var(--success);
  font-size: 8px;
}

.form-feedback[hidden] {
  display: none;
}

.form-feedback strong {
  font-size: 9px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

.js .reveal--delay {
  transition-delay: 70ms;
}

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

/* Keep real marketing copy at a readable minimum; only the illustrative product UI uses micro type. */
.capability-heading,
.preview-label,
.preview-note,
.usecase-rail__inner > span,
.feature-index,
.workflow-note,
.price-card__top > div span,
.price-badge {
  font-size: 9px;
}

.capability-heading,
.preview-note,
.footer-links span,
.footer-bottom {
  color: var(--muted-foreground);
}

.capability-list li,
.price-fineprint,
.calculator-note,
.comparison-note,
caption,
.footer-grid > div:first-child > p,
.dialog-card > p,
.dialog-card > label {
  font-size: 10px;
}

.price-features b,
.field-group label,
.footer-links a,
.dialog-card > input,
.dialog-card > select {
  font-size: 11px;
}

.status,
.calculator-state,
.receipt-percent {
  font-size: 8px;
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 40px, 980px);
  }

  .section-heading,
  .pricing-intro,
  .comparison-head {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child,
  .pricing-intro > p:last-child,
  .comparison-head > p {
    max-width: 700px;
  }

  .workflow-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .workflow-steps li:nth-child(3) {
    border-right: 0;
  }

  .workflow-steps li:nth-child(n + 4) {
    border-top: 1px solid var(--border);
  }

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

  .price-card {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 16px 50px;
  }

  .price-card__top,
  .price,
  .price-lead {
    grid-column: 1;
  }

  .price-features,
  .price-card > .button,
  .price-fineprint {
    grid-column: 2;
  }

  .price-features {
    grid-row: 1 / span 3;
    margin: 0;
  }

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

  .faq-intro {
    position: static;
    max-width: 720px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .nav {
    min-height: 60px;
  }

  .nav-toggle.icon-button {
    position: relative;
    display: grid;
  }

  .nav-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 1px;
    background: var(--foreground);
    transition: transform 180ms var(--ease);
  }

  .nav-toggle span:first-child { transform: translate(-50%, -4px); }
  .nav-toggle span:last-child { transform: translate(-50%, 4px); }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translate(-50%, 0) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translate(-50%, 0) rotate(-45deg); }

  .nav-menu {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    display: grid;
    gap: 14px;
    padding: 16px;
    transform: translateY(-8px);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: opacity 160ms ease, transform 160ms var(--ease), visibility 160ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links {
    display: grid;
    gap: 0;
  }

  .nav-links a {
    min-height: 44px;
    border-bottom: 1px solid var(--border);
  }

  .nav-menu .button {
    width: 100%;
  }

  .hero {
    padding-top: 76px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 11vw, 5.2rem);
  }

  .app-shell {
    display: block;
  }

  .app-sidebar {
    display: block;
    padding: 8px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .app-sidebar__label,
  .sidebar-foot {
    display: none;
  }

  .stage-tabs {
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
  }

  .stage-tab {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 47px;
    gap: 2px;
    padding: 3px;
    text-align: center;
  }

  .stage-tab > i {
    display: none;
  }

  .app-main {
    min-height: 500px;
  }

  .workflow-comparison {
    grid-template-columns: 1fr;
  }

  .workflow-before {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .workflow-after {
    min-height: 380px;
  }

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

  .feature-card--fulfillment {
    grid-column: auto;
  }

  .feature-card--fulfillment .feature-copy {
    width: auto;
  }

  .route-map {
    top: auto;
    right: 7%;
    bottom: 6%;
    left: 7%;
    width: auto;
    transform: none;
  }

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

  .customer-copy {
    max-width: 720px;
  }

  .customer-visual {
    width: 95%;
    margin-left: auto;
  }

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

  .calculator-controls {
    min-height: 340px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .receipt {
    min-height: 470px;
  }

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

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .section {
    padding-block: 78px;
  }

  .service-bar {
    justify-content: flex-start;
    overflow: hidden;
    padding-inline: 13px;
    font-size: 7px;
    white-space: nowrap;
  }

  .service-bar a {
    display: none;
  }

  .hero {
    padding-top: 64px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
    letter-spacing: -0.075em;
  }

  .hero-lead {
    font-size: 15px;
  }

  .button-row {
    display: grid;
  }

  .button-row .button {
    width: 100%;
  }

  .capability-list {
    display: grid;
  }

  .capability-list li {
    justify-content: center;
  }

  .hero-product {
    margin-top: 58px;
  }

  .preview-label {
    right: 9px;
    max-width: calc(100% - 18px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .product-window {
    min-height: 555px;
    border-radius: 11px 11px 0 0;
  }

  .window-bar {
    grid-template-columns: 40px 1fr 31px;
    padding-inline: 8px;
  }

  .window-dots span:nth-child(n + 2),
  .window-path > span,
  .window-path > b {
    display: none;
  }

  .window-path {
    text-align: left;
  }

  .stage-tab > b {
    font-size: 7px;
  }

  .app-main {
    min-height: 460px;
    padding: 20px 11px 14px;
  }

  .job-head {
    grid-template-columns: 1fr auto;
    gap: 9px;
  }

  .job-head h2 {
    font-size: 20px;
  }

  .job-stat {
    padding-right: 0;
    border-right: 0;
  }

  .product-icon-button {
    display: none;
  }

  .job-toolbar {
    margin-block: 18px 9px;
  }

  .segmented > span {
    padding-inline: 6px;
    font-size: 6px;
  }

  .progress-chip {
    max-width: 42%;
  }

  .progress-chip b {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .contact-sheet {
    gap: 5px;
  }

  .photo-cell figcaption {
    min-height: 23px;
    padding-inline: 4px;
  }

  .photo-cell figcaption span {
    display: none;
  }

  .context-card {
    right: 9px;
    bottom: 12px;
    left: 9px;
    grid-template-columns: 33px 1fr;
    min-height: 54px;
    gap: 8px;
    padding-inline: 8px;
  }

  .context-icon {
    width: 33px;
    height: 33px;
  }

  .context-status {
    display: none;
  }

  .preview-note {
    text-align: left;
  }

  .usecase-rail {
    overflow: visible;
  }

  .usecase-rail__inner {
    width: var(--shell);
    min-height: 0;
    flex-wrap: wrap;
    gap: 8px 10px;
    padding-block: 14px;
    white-space: normal;
  }

  .usecase-rail__inner > div {
    display: none;
  }

  .section-heading,
  .pricing-intro,
  .comparison-head {
    margin-bottom: 47px;
  }

  .section-heading h2,
  .pricing-intro h2,
  .comparison-head h2,
  .faq-intro h2,
  .customer-copy h2 {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
  }

  .workflow-before,
  .workflow-after {
    padding: 26px 18px;
  }

  .loose-tool {
    min-width: 98px;
    padding: 10px;
  }

  .flow-line {
    margin-top: 54px;
  }

  .flow-line > span {
    width: 32px;
    height: 32px;
  }

  .flow-labels {
    display: none;
  }

  .unified-job > b {
    display: none;
  }

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

  .workflow-steps li,
  .workflow-steps li:nth-child(n) {
    display: grid;
    grid-template-columns: 30px 0.75fr 1.25fr;
    align-items: start;
    gap: 7px;
    padding: 20px;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--border);
  }

  .workflow-steps li:last-child {
    border-bottom: 0;
  }

  .workflow-steps h3 {
    margin: 0;
    font-size: 15px;
  }

  .workflow-steps p {
    font-size: 9px;
  }

  .feature-card {
    min-height: 545px;
    padding: 25px 21px;
  }

  .feature-card h3 {
    font-size: clamp(2.35rem, 11.5vw, 3.4rem);
  }

  .assignment-ui {
    right: 18px;
    bottom: 18px;
    left: 18px;
    grid-template-columns: 0.8fr 0.28fr 1fr;
    min-height: 158px;
    gap: 8px;
    padding: 12px;
  }

  .scan-line {
    left: 34%;
  }

  .mini-face {
    min-height: 76px;
  }

  .code-card {
    padding: 12px 9px;
  }

  .code-card strong {
    font-size: 8px;
  }

  .code-card span {
    font-size: 6px;
  }

  .phone {
    right: 7%;
    width: 76%;
  }

  .automation-list {
    right: 21px;
    left: 21px;
  }

  .automation-row {
    grid-template-columns: 35px 12px 1fr;
  }

  .automation-row > small {
    display: none;
  }

  .team-ui {
    right: 18px;
    left: 18px;
  }

  .team-row {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .team-row i {
    display: none;
  }

  .feature-card--fulfillment {
    min-height: 650px;
  }

  .route-map {
    height: 235px;
  }

  .route-origin {
    width: 86px;
    height: 86px;
  }

  .route-origin span {
    font-size: 29px;
  }

  .route-map svg {
    right: 118px;
    left: 56px;
    width: auto;
  }

  .route-destination {
    min-width: 167px;
  }

  .customer-visual {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .gallery-nav {
    padding-inline: 14px;
  }

  .gallery-nav span {
    display: none;
  }

  .gallery-body {
    padding-inline: 14px;
  }

  .gallery-mosaic {
    grid-template-rows: 86px 76px;
  }

  .gallery-action {
    margin-inline: 14px;
  }

  .price-card {
    display: block;
  }

  .price {
    margin-top: 55px;
  }

  .price > strong {
    font-size: 7.3rem;
  }

  .price-features {
    margin-bottom: 25px;
  }

  .calculator-head {
    min-height: 90px;
    padding-inline: 18px;
  }

  .calculator-controls {
    padding: 28px 18px;
  }

  .field-label-row {
    align-items: start;
  }

  .field-label-row label {
    max-width: 125px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .receipt {
    padding-inline: 22px;
  }

  .receipt-result > strong {
    font-size: clamp(3.1rem, 15vw, 4.5rem);
  }

  .faq-list summary {
    grid-template-columns: 27px 1fr 28px;
    min-height: 72px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .faq-list details > p {
    margin: -2px 15px 24px 52px;
    font-size: 10px;
  }

  .final-cta {
    padding-block: 12px;
  }

  .final-cta__inner {
    padding-inline: 20px;
  }

  .final-cta h2 {
    font-size: clamp(2.85rem, 13vw, 4.4rem);
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

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

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* 2026 visual simplification: calmer type, editorial photography, restrained color. */
:root {
  --background: #ffffff;
  --foreground: #172033;
  --card-foreground: #172033;
  --muted: #f1f3f7;
  --muted-soft: #f7f8fa;
  --muted-foreground: #667085;
  --border: #dfe3ea;
  --border-strong: #cbd2dc;
  --input: #cbd2dc;
  --primary: #3159d9;
  --primary-hover: #2447ba;
  --primary-foreground: #ffffff;
  --brand-soft: #eef3ff;
  --warm: #f17155;
  --warm-soft: #fff2ec;
  --mint-soft: #edf9f3;
  --lavender-soft: #f3efff;
  --shell: min(1180px, calc(100vw - 48px));
  --radius-lg: 20px;
}

body {
  font-size: 16px;
}

body::before {
  display: none;
}

p {
  line-height: 1.6;
}

.section {
  padding-block: clamp(72px, 7vw, 104px);
}

.service-bar {
  border-bottom-color: #d8e1ff;
  background: var(--brand-soft);
  color: #4a5a85;
  font-size: 11px;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
}

.button--ink,
.button--primary,
.button--orange {
  border-color: var(--primary);
  background: var(--primary);
}

.button--ink:hover,
.button--primary:hover,
.button--orange:hover {
  background: var(--primary-hover);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 11px;
  letter-spacing: 0.025em;
  text-transform: none;
}

.eyebrow > span {
  display: none;
}

.hero {
  padding-block: clamp(64px, 7vw, 96px) 0;
}

.hero-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.82fr);
  align-items: center;
  gap: clamp(48px, 6vw, 80px);
}

.hero-copy {
  max-width: 610px;
  margin: 0;
  text-align: left;
}

.hero-copy .eyebrow,
.hero .button-row {
  justify-content: flex-start;
}

.hero h1 {
  margin-bottom: 24px;
  font-size: clamp(46px, 4.5vw, 66px);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1.01;
}

.headline-accent {
  color: var(--primary);
}

.hero-lead {
  max-width: 610px;
  margin: 0 0 30px;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
}

.hero-price-proof {
  display: flex;
  width: fit-content;
  min-height: 0;
  align-items: center;
  gap: 10px;
  margin: 16px 0 3px;
  color: var(--muted-foreground);
}

.hero-price-amount {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  white-space: nowrap;
}

.hero-price-amount strong {
  color: var(--foreground);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.015em;
}

.hero-price-amount small {
  color: var(--muted-foreground);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-price-divider {
  width: 1px;
  height: 14px;
  background: var(--border-strong);
}

.hero-price-proof b {
  color: var(--foreground);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.hero-usecases {
  margin: 24px 0 0;
  color: var(--muted-foreground);
  font-size: 14px;
  font-weight: 500;
}

.hero-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  margin: 0;
  border-radius: 24px;
  background: var(--brand-soft);
  box-shadow: 0 24px 70px rgba(49, 89, 217, 0.13);
}

.hero-media::after {
  position: absolute;
  inset: 40% 0 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(23, 32, 51, 0.5));
  content: "";
}

.hero-media img,
.story-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  gap: 5px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
}

.hero-media figcaption span {
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 11px;
}

.hero-media figcaption strong {
  font-size: 17px;
  font-weight: 600;
}

.section-heading,
.pricing-intro,
.comparison-head {
  display: block;
  max-width: 850px;
  margin-bottom: 48px;
}

.section-heading .eyebrow,
.pricing-intro .eyebrow,
.comparison-head .eyebrow {
  margin-bottom: 18px;
}

.section-heading h2,
.pricing-intro h2,
.comparison-head h2,
.faq-intro h2,
.customer-copy h2 {
  font-size: clamp(35px, 3.3vw, 48px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-heading > p:last-child,
.pricing-intro > p:last-child,
.comparison-head > p,
.faq-intro > p:last-child,
.customer-copy > p {
  max-width: 680px;
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.65;
}

.workflow-note {
  margin-bottom: 12px;
  font-size: 11px;
  text-align: left;
  text-transform: none;
}

.workflow-steps {
  overflow: hidden;
  border-color: #d7e0fa;
  background: var(--brand-soft);
}

.workflow-steps li {
  padding: 28px 24px;
  border-right-color: #d7e0fa;
}

.workflow-steps li > span {
  color: var(--primary);
  font-size: 10px;
}

.workflow-steps h3 {
  margin: 24px 0 8px;
  font-size: 18px;
}

.workflow-steps p {
  font-size: 14px;
  line-height: 1.55;
}

.feature-section {
  border-block: 0;
  background: white;
}

.story-list {
  display: grid;
  gap: 24px;
}

.story-row {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(36px, 5vw, 68px);
  padding: clamp(34px, 4vw, 54px);
  border-radius: 24px;
}

.story-row--blue {
  background: var(--brand-soft);
}

.story-row--peach {
  background: var(--warm-soft);
}

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

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

.story-copy h3,
.studio-summary h3 {
  max-width: 570px;
  margin: 0 0 16px;
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 620;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.story-copy > p,
.studio-summary__intro > p {
  max-width: 570px;
  margin: 0;
  color: var(--muted-foreground);
  font-size: 16px;
}

.feature-index {
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 11px;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.story-tags li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(49, 89, 217, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #415071;
  font-size: 12px;
  font-weight: 500;
}

.story-tag-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.story-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin: 0;
  border-radius: 18px;
  background: white;
  box-shadow: 0 16px 40px rgba(23, 32, 51, 0.12);
}

.story-media figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 13px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.story-media figcaption span {
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 10px;
}

.story-media figcaption strong {
  font-size: 13px;
  font-weight: 600;
  text-align: right;
}

.studio-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(36px, 5vw, 68px);
  padding: clamp(38px, 5vw, 62px);
  border-radius: 24px;
  background: var(--foreground);
  color: white;
}

.studio-summary .feature-index {
  color: #aebeff;
}

.studio-summary__intro > p {
  color: #cbd2dc;
}

.studio-points {
  display: grid;
}

.studio-points article {
  display: grid;
  grid-template-columns: 36px 130px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.studio-points article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.studio-points span {
  color: #aebeff;
  font-family: var(--font-mono);
  font-size: 11px;
}

.studio-points h4,
.studio-points p {
  margin: 0;
}

.studio-points h4 {
  font-size: 15px;
}

.studio-points p {
  color: #cbd2dc;
  font-size: 13px;
}

.pricing-section {
  background: var(--warm-soft);
}

.price-card,
.calculator {
  background: white;
}

.price > strong {
  font-size: clamp(40px, 3.3vw, 48px);
}

.receipt {
  background-color: var(--brand-soft);
}

.receipt-result > strong {
  font-size: clamp(44px, 4vw, 64px);
}

thead th.our-column {
  background: var(--primary);
}

.faq-list details > p {
  font-size: 14px;
}

.final-cta {
  background: white;
}

.final-cta__grain {
  display: none;
}

.final-cta__inner {
  border-radius: 24px;
  background: var(--primary);
  background-image: linear-gradient(135deg, #3159d9, #5d5ce2);
  color: white;
}

.final-cta .eyebrow {
  color: #dbe3ff;
}

.final-cta h2 {
  font-size: clamp(38px, 3.8vw, 54px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.final-cta__inner > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.final-cta .button--orange {
  border-color: white;
  background: white;
  color: var(--primary);
}

@media (max-width: 960px) {
  .hero-intro,
  .story-row,
  .studio-summary {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-media {
    aspect-ratio: 16 / 10;
  }

  .hero-media img {
    object-position: center 44%;
  }

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

  .studio-points article {
    grid-template-columns: 36px 140px 1fr;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .section {
    padding-block: 58px;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-intro {
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 40px);
    letter-spacing: -0.05em;
  }

  .hero-media {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }

  .hero-price-proof {
    display: flex;
    width: fit-content;
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero-price-divider {
    display: block;
  }

  .hero-price-proof b {
    text-align: left;
  }

  .hero-media figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 12px 13px;
  }

  .hero-media figcaption strong {
    font-size: 14px;
  }

  .hero-product {
    margin-top: 48px;
  }

  .section-heading h2,
  .pricing-intro h2,
  .comparison-head h2,
  .faq-intro h2,
  .customer-copy h2 {
    font-size: clamp(32px, 9vw, 40px);
  }

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

  .workflow-steps li {
    display: grid;
    grid-template-columns: 30px 105px 1fr;
    align-items: start;
    gap: 10px;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid #d7e0fa;
  }

  .workflow-steps li:last-child {
    border-bottom: 0;
  }

  .workflow-steps h3 {
    margin: 0;
    font-size: 16px;
  }

  .workflow-steps p {
    font-size: 13px;
  }

  .story-row,
  .studio-summary {
    gap: 28px;
    padding: 24px;
    border-radius: 18px;
  }

  .story-copy h3,
  .studio-summary h3 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .story-media {
    border-radius: 14px;
  }

  .story-media figcaption {
    align-items: start;
    flex-direction: column;
    gap: 3px;
  }

  .story-media figcaption strong {
    text-align: left;
  }

  .studio-points article {
    grid-template-columns: 30px 1fr;
    min-height: 0;
    padding-block: 16px;
  }

  .studio-points article p {
    grid-column: 2;
  }

  .price > strong {
    font-size: 40px;
  }

  .receipt-result > strong {
    font-size: clamp(42px, 13vw, 54px);
  }

  .faq-list details > p {
    font-size: 14px;
  }

  .final-cta h2 {
    font-size: clamp(32px, 9vw, 40px);
  }
}

/* Readable utility type and final contrast pass. */
:root {
  --muted-foreground: #626b7a;
}

.wordmark small {
  font-size: 9px;
}

.preview-label,
.preview-note,
.price-card__top > div span,
.price-badge,
.calculator-state,
.range-marks,
.comparison-note,
caption,
.footer-links span,
.footer-bottom {
  font-size: 10px;
}

.price__meta,
.price-features span,
.number-wrap span,
.receipt > p,
.receipt-row,
.receipt-result > span,
.receipt-result > small,
.receipt-percent,
.calculator-note,
thead th small,
tbody th,
td,
.status,
.faq-list summary > span,
.footer-grid > div:first-child > p,
.dialog-card > p,
.dialog-card > label,
.form-feedback strong,
.form-feedback span {
  font-size: 11px;
}

.price-fineprint {
  font-size: 11px;
}

.receipt-code {
  font-size: 9px;
}

thead th {
  font-size: 12px;
}

.context-card > div:nth-child(2) span {
  color: #e4e9ff;
}

.context-status {
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
}

.stage-tab[aria-selected="true"] > span {
  color: #ffffff;
  opacity: 1;
}

thead th.our-column small {
  color: #e4e9ff;
}

@media (max-width: 600px) {
  .stage-tab > b,
  .segmented > span,
  .progress-chip b {
    font-size: 9px;
  }
}

/* Purpose-built workflow miniatures and a real project-dashboard composition. */
.project-summary-bar {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 18px;
  margin: 22px 0 14px;
  padding: 8px 10px 8px 13px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-xs);
}

.project-state {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
}

.project-state > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22a663;
  box-shadow: 0 0 0 4px rgba(34, 166, 99, 0.12);
}

.project-state b,
.project-meta dt,
.project-meta dd {
  font-family: var(--font-mono);
  font-size: 10px;
}

.project-state b {
  font-weight: 600;
}

.project-meta {
  display: flex;
  min-width: 0;
  flex: 1;
  gap: clamp(16px, 3vw, 34px);
  margin: 0;
}

.project-meta > div {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.project-meta dt {
  color: var(--muted-foreground);
  font-size: 9px;
  text-transform: uppercase;
}

.project-meta dd {
  overflow: hidden;
  margin: 0;
  color: var(--foreground);
  font-weight: 550;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-summary-bar .progress-chip {
  flex: 0 0 auto;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin-bottom: 9px;
}

.dashboard-metrics article {
  display: grid;
  min-width: 0;
  gap: 4px;
  padding: 13px 14px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: white;
  box-shadow: var(--shadow-xs);
}

.dashboard-metrics span,
.dashboard-metrics small {
  overflow: hidden;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-metrics span {
  text-transform: uppercase;
}

.dashboard-metrics strong {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 9px;
}

.dashboard-card {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: white;
  box-shadow: var(--shadow-xs);
}

.dashboard-card > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 11px;
}

.dashboard-card > header > div {
  display: grid;
  gap: 2px;
}

.dashboard-card > header span {
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.dashboard-card > header h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 650;
}

.dashboard-card > header > b {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  border: 1px solid #bde8d0;
  border-radius: 999px;
  background: var(--mint-soft);
  color: #147342;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
}

.dashboard-card--activity > header > b > i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22a663;
}

.project-flow,
.activity-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-flow li {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  min-height: 38px;
  align-items: center;
  gap: 9px;
  padding: 4px 7px;
  border-radius: 7px;
  transition: background 160ms ease, color 160ms ease;
}

.project-flow li + li::before {
  position: absolute;
  top: -7px;
  left: 18px;
  width: 1px;
  height: 10px;
  background: var(--border-strong);
  content: "";
}

.project-flow li.is-active {
  background: var(--brand-soft);
  color: #2447ba;
}

.project-flow li > i {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: white;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 8px;
  font-style: normal;
}

.project-flow li.is-complete > i {
  border-color: #bde8d0;
  background: var(--mint-soft);
  color: #147342;
}

.project-flow li.is-active > i {
  border-color: #b9c8f5;
  color: #2447ba;
  box-shadow: 0 0 0 3px rgba(49, 89, 217, 0.08);
}

.project-flow li > span {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.project-flow li b,
.activity-list li b {
  overflow: hidden;
  font-size: 10px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-flow li small,
.activity-list li small {
  overflow: hidden;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-flow li em {
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 9px;
  font-style: normal;
}

.activity-list li {
  display: grid;
  grid-template-columns: 34px 28px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 49px;
  border-top: 1px solid var(--border);
}

.activity-list time {
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 9px;
}

.activity-list li > span {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.activity-symbol {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
}

.activity-symbol--blue { background: var(--brand-soft); color: #2447ba; }
.activity-symbol--peach { background: var(--warm-soft); color: #b6462e; }
.activity-symbol--green { background: var(--mint-soft); color: #147342; }

.app-main .context-card {
  position: static;
  margin-top: 9px;
}

.window-path,
.product-window .stage-tab > span,
.product-window .sidebar-foot span,
.product-window .sidebar-foot strong,
.project-summary-bar .progress-chip b,
.app-main .context-card > div:nth-child(2) span,
.app-main .context-status {
  font-size: 9px;
}

.product-window .stage-tab > b {
  font-size: 10px;
}

.app-main .context-card > div:nth-child(2) strong {
  font-size: 11px;
}

.workflow-step-head {
  display: flex;
  order: 1;
  align-items: center;
  gap: 10px;
}

.workflow-step-head > span {
  display: grid;
  width: 26px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(49, 89, 217, 0.22);
  border-radius: 999px;
  background: white;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 650;
}

.workflow-steps li {
  display: flex;
  flex-direction: column;
}

.workflow-steps h3 {
  margin: 0;
  color: var(--foreground);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.workflow-steps p {
  order: 2;
  margin: 14px 0 18px;
  color: #45516a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.workflow-mini {
  --mini-ink: #3159d9;
  --mini-soft: #dbe5ff;
  order: 3;
  width: min(150px, 78%);
  margin: auto 0 0;
  overflow: hidden;
  border: 1px solid rgba(49, 89, 217, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  opacity: 0.88;
}

.workflow-mini--assign { --mini-ink: #148054; --mini-soft: #d7f3e5; }
.workflow-mini--release { --mini-ink: #7651c9; --mini-soft: #e8defb; }
.workflow-mini--sell { --mini-ink: #c35439; --mini-soft: #ffe0d7; }
.workflow-mini--deliver { --mini-ink: #1b6d85; --mini-soft: #d8eff6; }

.workflow-mini svg {
  width: 100%;
  height: auto;
}

.mini-panel,
.mini-card,
.mini-photo,
.mini-code-frame,
.mini-destination,
.mini-box {
  fill: #ffffff;
  stroke: var(--mini-ink);
  stroke-width: 1.7;
}

.mini-accent,
.mini-link,
.mini-checkmark,
.mini-box-detail {
  fill: none;
  stroke: var(--mini-ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mini-link {
  stroke-dasharray: 3 4;
}

.mini-dot,
.mini-code,
.mini-code-path,
.mini-printer,
.mini-truck {
  fill: var(--mini-ink);
}

.mini-line,
.mini-avatar,
.mini-thumb,
.mini-price {
  fill: var(--mini-soft);
}

.mini-line--short {
  opacity: 0.7;
}

.mini-person {
  fill: var(--mini-soft);
  stroke: var(--mini-ink);
  stroke-width: 1.5;
}

.mini-check,
.mini-coin {
  fill: var(--mini-ink);
  stroke: #ffffff;
  stroke-width: 3;
}

.mini-checkmark {
  stroke: #ffffff;
  stroke-width: 2.5;
}

.mini-euro {
  fill: #ffffff;
  font-family: var(--font-sans);
  font-size: 25px;
  font-weight: 750;
}

.pricing-intro h2 > span,
.pricing-intro h2 > strong {
  display: block;
}

.pricing-intro h2 > strong {
  margin-top: 0.12em;
  color: var(--primary);
  font-weight: 800;
}

@media (max-width: 820px) {
  .project-summary-bar {
    margin-top: 16px;
  }

  .project-meta > div:nth-child(2),
  .project-meta > div:nth-child(3) {
    display: none;
  }

  .dashboard-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(225px, 0.92fr);
  }

  .app-main .context-card {
    right: auto;
    bottom: auto;
    left: auto;
  }
}

@media (max-width: 600px) {
  .product-window,
  .app-shell,
  .app-main {
    min-height: 0;
  }

  .project-summary-bar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
  }

  .project-meta {
    display: none;
  }

  .project-summary-bar .progress-chip {
    max-width: 150px;
  }

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

  .dashboard-metrics article {
    padding: 11px;
  }

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

  .dashboard-card--activity {
    display: none;
  }

  .app-main .context-card {
    margin-top: 9px;
  }

  .workflow-steps li,
  .workflow-steps li:nth-child(n) {
    display: flex;
    flex-direction: column;
    padding: 18px;
  }

  .workflow-mini {
    width: min(210px, 76%);
    margin: 0;
  }

  .workflow-mini svg {
    max-height: 118px;
  }

  .workflow-steps p {
    margin: 12px 0 16px;
    font-size: 15px;
  }

  .pricing-intro h2 > strong {
    font-size: 0.92em;
  }
}

/* Signed calculator totals stay readable as one monetary value. */
.receipt-result > strong {
  overflow-wrap: normal;
  font-size: clamp(42px, 3.45vw, 52px);
  white-space: nowrap;
}

@media (max-width: 600px) {
  .receipt-result > strong {
    font-size: clamp(38px, 12vw, 46px);
  }
}

/* Consolidated type scale: reserve micro type for codes and icon glyphs only. */
.wordmark small,
.receipt-code,
.workflow-step-head > span {
  font-size: var(--text-micro);
}

.service-bar,
.eyebrow,
.capability-heading,
.preview-label,
.preview-note,
.usecase-rail__inner > span,
.feature-index,
.workflow-note,
.price-card__top > div span,
.price-badge,
.price__meta,
.price-fineprint,
.calculator-state,
.range-marks,
.calculator-note,
.receipt > p,
.receipt-row,
.receipt-result > span,
.receipt-result > small,
.receipt-percent,
thead th small,
tbody th,
td,
.status,
.comparison-note,
caption,
.faq-list summary > span,
.footer-links span,
.footer-bottom,
.footer-grid > div:first-child > p,
.dialog-card > p,
.dialog-card > label,
.form-feedback strong,
.form-feedback span {
  font-size: var(--text-caption);
}

.nav-links a,
.button,
.hero-price-proof b,
.price-features b,
.field-group label,
.footer-links a,
.dialog-card > input,
.dialog-card > select,
.story-media figcaption strong,
.studio-points p,
.receipt-mark,
thead th.our-column > span {
  font-size: var(--text-ui);
}

.workflow-steps p,
.studio-points h4,
.final-cta p {
  font-size: var(--text-body);
}

.hero-lead,
.hero-media figcaption strong {
  font-size: var(--text-lead);
}

.workflow-steps h3 {
  font-size: var(--text-subheading);
}

/* The embedded application stays dense, but no textual label falls below 10px. */
.product-window .window-avatar,
.product-window .project-flow li > i,
.product-window .activity-symbol,
.product-window .context-icon,
.product-window .window-path,
.product-window .app-sidebar .app-sidebar__label,
.product-window .stage-tab > span,
.product-window .sidebar-foot span,
.product-window .sidebar-foot strong,
.product-window .job-head p,
.product-window .job-stat span,
.product-window .project-meta dt,
.product-window .dashboard-metrics span,
.product-window .dashboard-metrics small,
.product-window .dashboard-card > header span,
.product-window .dashboard-card > header > b,
.product-window .project-flow li small,
.product-window .project-flow li em,
.product-window .activity-list li small,
.product-window .activity-list time,
.product-window .progress-chip b,
.product-window .context-card > div:nth-child(2) span,
.product-window .context-card .context-status {
  font-size: var(--text-micro);
}

.product-window .stage-tab > b,
.product-window .project-state b,
.product-window .project-meta dd,
.product-window .project-flow li b,
.product-window .activity-list li b,
.product-window .context-card > div:nth-child(2) strong {
  font-size: var(--text-compact);
}

.product-window .dashboard-card > header h3 {
  font-size: var(--text-ui);
}

html.has-open-dialog {
  overflow: hidden;
  scrollbar-gutter: stable;
}

body.is-dialog-locked {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
