:root {
  --bg: #edf1f4;
  --bg-strong: #f7f9fb;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --ink: #10212b;
  --muted: #4f6370;
  --line: rgba(16, 33, 43, 0.12);
  --line-strong: rgba(16, 33, 43, 0.22);
  --primary: #16384c;
  --primary-strong: #0f2735;
  --primary-soft: rgba(22, 56, 76, 0.08);
  --accent: #cf6231;
  --accent-strong: #a1471f;
  --accent-soft: rgba(207, 98, 49, 0.1);
  --good: #176f59;
  --warn: #b87400;
  --alert: #b02a1a;
  --shadow: 0 24px 60px rgba(16, 33, 43, 0.1);
  --shadow-sm: 0 12px 28px rgba(16, 33, 43, 0.08);
  --radius: 30px;
  --radius-sm: 20px;
  --max-width: 1180px;
  --max-copy: 720px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(
      circle at top left,
      rgba(207, 98, 49, 0.08),
      transparent 26%
    ),
    radial-gradient(circle at 82% 10%, rgba(22, 56, 76, 0.08), transparent 30%),
    linear-gradient(180deg, #eef2f5 0%, #f7f9fb 42%, #edf1f4 100%);
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 56, 76, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 56, 76, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 68%);
  pointer-events: none;
}

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

.section__heading a,
.card p a,
.card li a,
.summary-box a,
.article-shell a,
.note a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.section__heading a:hover,
.card p a:hover,
.card li a:hover,
.summary-box a:hover,
.article-shell a:hover,
.note a:hover {
  color: var(--primary-strong);
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff9f0;
}

.skip-link:focus {
  top: 16px;
}

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 72px;
  position: relative;
  z-index: 1;
}

.topbar,
.card,
.summary-box,
.cta-panel,
.footer,
.toc,
.article-shell {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: none;
}

.topbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  position: sticky;
  top: 12px;
  border-radius: 999px;
  background: rgba(252, 253, 253, 0.94);
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 0;
}

.brand__mark {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, #e07a20 100%);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.08em;
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  font-size: 1.05rem;
}

.brand__logo {
  display: block;
  height: 36px;
  width: auto;
}

.brand__text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand__text strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand__text span {
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.3;
}

.topbar__actions,
.hero__actions,
.cta-panel__actions,
.footer__grid {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar__menu {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.topbar__actions {
  flex-shrink: 0;
  gap: 8px;
  justify-content: flex-end;
}

.topbar__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(22, 56, 76, 0.18);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(241, 246, 248, 0.92)
  );
  color: var(--primary);
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    border-color 140ms ease,
    background 140ms ease;
}

.topbar__toggle:hover,
.topbar__toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  border-color: rgba(22, 56, 76, 0.28);
}

.topbar__toggle-icon {
  display: inline-grid;
  gap: 4px;
}

.topbar__toggle-icon span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.topbar__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.topbar__nav-group {
  position: relative;
}

.topbar__nav-link,
.topbar__submenu-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  transition:
    color 140ms ease,
    background 140ms ease,
    border-color 140ms ease,
    box-shadow 140ms ease;
}

.topbar__nav-link {
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}

.topbar__nav-link:hover {
  color: var(--primary);
  background: rgba(22, 56, 76, 0.08);
  border-color: rgba(22, 56, 76, 0.12);
}

.topbar__nav-link.is-current {
  color: var(--primary);
  border-color: rgba(22, 56, 76, 0.14);
  background: var(--primary-soft);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.topbar__nav-trigger {
  appearance: none;
}

.topbar__nav-group[data-group-open="true"] .topbar__nav-trigger,
.topbar__nav-group:focus-within .topbar__nav-trigger {
  color: var(--primary);
  background: rgba(22, 56, 76, 0.08);
  border-color: rgba(22, 56, 76, 0.12);
}

.topbar__nav-caret {
  width: 10px;
  height: 10px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  transition: transform 160ms ease;
}

.topbar__nav-group[data-group-open="true"] .topbar__nav-caret {
  transform: translateY(1px) rotate(-135deg);
}

.topbar__submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: min(420px, calc(100vw - 56px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 0s linear 180ms;
}

.topbar__nav-group:last-child .topbar__submenu {
  left: auto;
  right: 0;
}

.topbar__nav-group[data-group-open="true"] .topbar__submenu,
.topbar__nav-group:focus-within .topbar__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 0s linear 0s;
}

.topbar__submenu-panel {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 26px;
  border: 1px solid rgba(22, 56, 76, 0.14);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(244, 248, 250, 0.96)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 36px rgba(15, 38, 51, 0.12);
}

.topbar__submenu-item {
  display: grid;
  gap: 3px;
  align-items: start;
  justify-items: start;
  min-height: auto;
  padding: 13px 14px;
  border-radius: 18px;
  border: 1px solid transparent;
  background: transparent;
  text-align: left;
}

.topbar__submenu-item strong {
  color: var(--primary);
  font-size: 0.94rem;
  line-height: 1.2;
}

.topbar__submenu-item span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.topbar__submenu-item:hover {
  background: rgba(22, 56, 76, 0.08);
  border-color: rgba(22, 56, 76, 0.12);
}

.topbar__submenu-item.is-current {
  border-color: rgba(22, 56, 76, 0.14);
  background: var(--primary-soft);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent) 0%, #e07a20 100%);
  color: #fff;
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    border-color 140ms ease,
    background 140ms ease;
}

.button:hover,
.button:focus-visible,
.card--link:hover,
.card--link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(199, 79, 44, 0.28);
}

.button:focus-visible,
.card--link:focus-visible,
.topbar__toggle:focus-visible,
.topbar__nav-link:focus-visible,
.topbar__submenu-item:focus-visible,
.footer a:focus-visible,
.toc a:focus-visible {
  outline: 3px solid rgba(22, 56, 76, 0.18);
  outline-offset: 2px;
}

.button--ghost {
  background: var(--primary-soft);
  color: var(--primary);
  border-color: rgba(22, 56, 76, 0.18);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(22, 56, 76, 0.14);
  border-color: rgba(22, 56, 76, 0.28);
  box-shadow: var(--shadow-sm);
}

.button--large {
  min-height: 58px;
  padding: 0 32px;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.eyebrow,
.card__eyebrow,
.summary-box__eyebrow,
.article-meta {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow,
.card__eyebrow,
.summary-box__eyebrow {
  color: var(--accent-strong);
}

.article-meta {
  color: var(--muted);
}

.hero,
.subhero,
.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: center;
  padding: 52px 0 28px;
}

.hero h1,
.subhero h1,
.article-hero h1,
.section h2,
.summary-box h2,
.footer h2,
.article-shell h2 {
  margin: 14px 0 14px;
  font-family:
    "Barlow Condensed", "Barlow", "Impact", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero h1,
.subhero h1,
.article-hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  max-width: 14ch;
  font-weight: 800;
}

.hero__lede,
.subhero__lede,
.section__heading p,
.card p,
.summary-box p,
.cta-panel p,
.footer p,
.article-shell p,
.article-shell li,
.toc p {
  color: var(--muted);
  font-size: 1.0625rem;
}

.hero__support,
.muted {
  color: var(--muted);
  font-size: 0.97rem;
  max-width: 58ch;
}

.summary-box,
.card,
.cta-panel,
.article-shell,
.toc {
  border-radius: var(--radius);
  background: var(--surface);
}

.summary-box,
.cta-panel,
.article-shell {
  padding: 28px;
}

.summary-box {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(245, 248, 250, 0.96)
    ),
    linear-gradient(135deg, rgba(22, 56, 76, 0.08), transparent 50%);
}

.summary-box h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  max-width: 12ch;
}

.check-list,
.footer ul,
.toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.check-list li,
.toc a {
  position: relative;
  padding-left: 26px;
}

.check-list li::before,
.toc a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #e07a20 100%);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding-top: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--primary);
}

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

.section {
  padding: 72px 0 0;
}

.section--tight {
  padding-top: 48px;
}

.section--contrast {
  position: relative;
}

.section--contrast::before {
  content: "";
  position: absolute;
  inset: 44px -24px -16px;
  border-radius: 48px;
  background: linear-gradient(
    135deg,
    rgba(15, 39, 53, 0.97),
    rgba(21, 56, 76, 0.94)
  );
  z-index: -1;
}

.section--contrast .section__heading,
.section--contrast .card h3,
.section--contrast .card__eyebrow {
  color: #fff9f0;
}

.section--contrast .section__heading p,
.section--contrast .card p {
  color: rgba(255, 249, 240, 0.8);
}

.section__heading {
  max-width: var(--max-copy);
}

.section h2,
.footer h2,
.cta-panel h2,
.article-shell h2 {
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  max-width: 18ch;
}

.definition-grid,
.content-grid,
.card-grid,
.faq-grid,
.article-layout,
.footer__grid {
  display: grid;
  gap: 18px;
}

.definition-grid,
.content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 32px;
}

.card-grid--query {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  padding: 26px;
  border: 1px solid var(--line);
}

.card h3,
.footer h3,
.article-shell h3 {
  margin: 12px 0 10px;
  font-family:
    "Barlow Condensed", "Barlow", "Impact", "Arial Narrow", Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.card--link {
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    border-color 140ms ease;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98),
    rgba(246, 248, 250, 0.96)
  );
}

.cta-panel p {
  max-width: 58ch;
}

.cta-panel__actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 32px;
}

.subhero,
.article-hero {
  padding-top: 30px;
}

.subhero__lede,
.article-hero__lede {
  max-width: 58ch;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 12px;
}

.article-layout {
  grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
  align-items: start;
  margin-top: 30px;
}

.toc {
  padding: 24px;
  position: sticky;
  top: 104px;
}

.toc h2 {
  margin-top: 0;
  font-size: 1.55rem;
}

.toc ul {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.toc a {
  display: inline-block;
  color: var(--primary);
}

.article-shell {
  padding: 30px;
}

.article-shell h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-top: 4px;
}

.article-shell section + section {
  margin-top: 34px;
  padding-top: 6px;
}

.article-shell ul,
.article-shell ol {
  padding-left: 18px;
}

.article-shell li + li {
  margin-top: 8px;
}

.note {
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--accent-soft);
  color: var(--ink);
}

.footer {
  margin-top: 84px;
  padding: 30px;
  border-radius: 34px;
  background: rgba(252, 253, 253, 0.94);
}

.footer__intro {
  max-width: 620px;
}

.footer__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.footer ul {
  display: grid;
  gap: 10px;
}

.footer a {
  color: var(--primary);
}

.footer a:hover {
  color: var(--primary-strong);
}

.hero--sales {
  align-items: stretch;
}

.hero__pills,
.offer-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__pills {
  margin-top: 22px;
}

.hero__pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(22, 56, 76, 0.12);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
}

.summary-box--sales h2 {
  max-width: 11ch;
}

.tiny-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.offer-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.offer-strip article {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.offer-strip__label {
  margin: 0;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
}

.offer-strip strong,
.pricing-card__price {
  display: block;
  margin-top: 8px;
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
  color: var(--primary-strong);
}

.offer-strip span,
.pricing-card__price span,
.pricing-callout {
  color: var(--muted);
}

.offer-strip span {
  display: block;
  margin-top: 10px;
  font-size: 0.95rem;
}

.shot-grid,
.pricing-grid,
.comparison-grid {
  display: grid;
  gap: 18px;
}

.shot-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.shot-card,
.pricing-card {
  height: 100%;
}

.pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-card .check-list {
  flex: 1 1 auto;
}

.proof-card {
  --proof-bg-top: rgba(20, 52, 70, 0.98);
  --proof-bg-bottom: rgba(14, 37, 50, 0.96);
  --proof-accent-glow: rgba(207, 98, 49, 0.14);
  --proof-border: rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-color: var(--proof-border);
  background:
    linear-gradient(180deg, var(--proof-bg-top), var(--proof-bg-bottom)),
    linear-gradient(135deg, var(--proof-accent-glow), transparent 45%);
  box-shadow: 0 18px 40px rgba(7, 18, 26, 0.22);
}

.proof-card--vendor {
  --proof-bg-top: rgba(76, 34, 24, 0.98);
  --proof-bg-bottom: rgba(56, 24, 18, 0.96);
  --proof-accent-glow: rgba(231, 157, 57, 0.18);
  --proof-border: rgba(255, 214, 184, 0.16);
}

.proof-card--status {
  --proof-bg-top: rgba(20, 52, 70, 0.98);
  --proof-bg-bottom: rgba(14, 37, 50, 0.96);
  --proof-accent-glow: rgba(84, 149, 199, 0.16);
  --proof-border: rgba(194, 225, 247, 0.16);
}

.proof-card--rollout {
  --proof-bg-top: rgba(24, 65, 56, 0.98);
  --proof-bg-bottom: rgba(17, 45, 39, 0.96);
  --proof-accent-glow: rgba(94, 185, 146, 0.16);
  --proof-border: rgba(196, 240, 221, 0.16);
}

.proof-card__stat {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-card__number {
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  font-size: clamp(3.2rem, 5vw, 4.5rem);
  line-height: 0.9;
  color: #ffffff;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.proof-card__label,
.proof-card__detail {
  margin: 0;
}

.proof-card__label {
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
}

.proof-card__detail {
  margin-top: 6px;
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 600;
}

.section--contrast .proof-card h3 {
  color: #ffffff;
  max-width: 14ch;
}

.proof-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.proof-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.shot-placeholder,
.portrait-placeholder {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 220px;
  padding: 20px;
  border-radius: 24px;
  border: 2px dashed rgba(255, 249, 240, 0.44);
  background:
    linear-gradient(
      180deg,
      rgba(255, 249, 240, 0.1),
      rgba(255, 249, 240, 0.16)
    ),
    linear-gradient(135deg, rgba(199, 79, 44, 0.16), rgba(231, 157, 57, 0.12));
  text-align: center;
}

.shot-card .shot-placeholder {
  min-height: 240px;
}

.portrait-placeholder {
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(255, 249, 240, 0.9), rgba(255, 252, 247, 0.9)),
    linear-gradient(135deg, rgba(199, 79, 44, 0.1), rgba(231, 157, 57, 0.08));
}

.shot-placeholder span,
.portrait-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(21, 33, 38, 0.78);
  color: #fff9f0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.shot-placeholder strong,
.portrait-placeholder strong {
  max-width: 20ch;
  font-size: 1.08rem;
}

.pricing-card--featured {
  border-color: rgba(207, 98, 49, 0.35);
  background:
    linear-gradient(
      180deg,
      rgba(255, 249, 245, 0.98),
      rgba(255, 255, 255, 0.96)
    ),
    linear-gradient(135deg, rgba(207, 98, 49, 0.12), rgba(22, 56, 76, 0.04));
}

.pricing-card--starter {
  border-color: rgba(22, 56, 76, 0.2);
  background:
    linear-gradient(
      180deg,
      rgba(248, 251, 253, 0.99),
      rgba(243, 248, 252, 0.96)
    ),
    linear-gradient(135deg, rgba(22, 56, 76, 0.08), rgba(84, 149, 199, 0.06));
}

.pricing-card__price {
  margin-bottom: 18px;
}

.pricing-card__action {
  margin-top: auto;
  padding-top: 18px;
}

.pricing-callout {
  margin-top: 18px;
  font-size: 0.98rem;
}

.pricing-page__hero {
  align-items: start;
  padding-bottom: 12px;
}

.pricing-page__intro {
  display: grid;
  gap: 18px;
}

.pricing-page__intro .subhero__lede,
.pricing-page__trial-note,
.pricing-page .pricing-card__summary,
.pricing-page .pricing-card__price-note {
  margin: 0;
}

.pricing-page__snapshot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pricing-page__snapshot-item {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(22, 56, 76, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 250, 252, 0.96)),
    linear-gradient(135deg, rgba(22, 56, 76, 0.06), transparent 58%);
  box-shadow: var(--shadow-sm);
}

.pricing-page__snapshot-label {
  margin: 0;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
}

.pricing-page__snapshot-item strong {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.88;
  color: var(--primary-strong);
}

.pricing-page__snapshot-item strong span {
  margin-bottom: 4px;
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  color: var(--muted);
}

.pricing-page__snapshot-item > span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.pricing-page__trial-note {
  padding: 14px 16px;
  border: 1px solid rgba(22, 56, 76, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--primary-strong);
  box-shadow: var(--shadow-sm);
}

.pricing-page__starter-box {
  display: grid;
  gap: 18px;
  align-self: stretch;
}

.pricing-page__starter-box .button {
  width: fit-content;
}

.pricing-page__plans {
  padding-top: 28px;
}

.pricing-page__plans-heading {
  max-width: 48rem;
}

.pricing-page__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-page .pricing-card--paid {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-color: rgba(22, 56, 76, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 248, 251, 0.96)),
    linear-gradient(135deg, rgba(22, 56, 76, 0.08), transparent 62%);
  box-shadow: 0 18px 40px rgba(16, 33, 43, 0.09);
}

.pricing-page .pricing-card--annual {
  border-color: rgba(22, 56, 76, 0.22);
  background:
    linear-gradient(180deg, rgba(250, 252, 255, 0.99), rgba(242, 247, 251, 0.97)),
    linear-gradient(135deg, rgba(84, 149, 199, 0.14), rgba(22, 56, 76, 0.06) 62%);
}

.pricing-page .pricing-card--featured {
  border-color: rgba(207, 98, 49, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.99), rgba(255, 255, 255, 0.96)),
    linear-gradient(135deg, rgba(207, 98, 49, 0.14), rgba(22, 56, 76, 0.03) 62%);
}

.pricing-page .pricing-card__header {
  display: grid;
  gap: 10px;
}

.pricing-page .pricing-card__header h3 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 0.95;
}

.pricing-page .pricing-card__summary {
  color: var(--muted);
}

.pricing-page .pricing-card__price-band {
  display: grid;
  gap: 4px;
  padding: 18px 20px 20px;
  border: 1px solid rgba(22, 56, 76, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(22, 56, 76, 0.08), rgba(255, 255, 255, 0.98)),
    rgba(255, 255, 255, 0.92);
}

.pricing-page .pricing-card--annual .pricing-card__price-band {
  border-color: rgba(22, 56, 76, 0.16);
  background:
    linear-gradient(135deg, rgba(84, 149, 199, 0.18), rgba(255, 255, 255, 0.98)),
    rgba(255, 255, 255, 0.92);
}

.pricing-page .pricing-card--featured .pricing-card__price-band {
  border-color: rgba(207, 98, 49, 0.18);
  background:
    linear-gradient(135deg, rgba(207, 98, 49, 0.2), rgba(255, 255, 255, 0.98)),
    rgba(255, 255, 255, 0.92);
}

.pricing-page .pricing-card__price {
  margin: 0;
  font-size: clamp(3.5rem, 9vw, 5rem);
  line-height: 0.86;
  letter-spacing: -0.03em;
}

.pricing-page .pricing-card__price span {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.pricing-page .pricing-card__price-note {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
}

.pricing-page .pricing-card__highlight {
  margin: 0;
  color: var(--primary-strong);
  font-size: 1rem;
  font-weight: 700;
}

.pricing-page .pricing-card__action {
  padding-top: 0;
}

.pricing-page .pricing-card__action .button {
  width: 100%;
}

.pricing-page__offer-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.section--warm {
  position: relative;
}

.section--warm::before {
  content: "";
  position: absolute;
  inset: 34px -12px -8px;
  border-radius: 40px;
  background: linear-gradient(
    135deg,
    rgba(248, 250, 252, 0.92),
    rgba(255, 255, 255, 0.78)
  );
  z-index: -1;
}

.comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.comparison-card--bad {
  border-color: rgba(176, 42, 26, 0.25);
  background: rgba(255, 240, 236, 0.92);
}

.comparison-card--good {
  border-color: rgba(23, 111, 89, 0.25);
  background: rgba(234, 247, 241, 0.92);
}

.cta-inline {
  margin-top: 22px;
}

/* ─── Workflow demo page steps (/features/) ───────────────── */

.workflow-steps {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

.workflow-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 40px;
  align-items: center;
}

.workflow-step--reverse .workflow-step__shot {
  order: -1;
}

.workflow-step__copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.workflow-step__copy h2 {
  margin: 6px 0 0;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.workflow-step__shot .shot-placeholder {
  min-height: 300px;
}

.workflow-step__shot img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(16, 33, 43, 0.14);
  display: block;
}

/* ─── Workflow teaser (homepage replacement section) ─────── */

.workflow-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 40px;
  align-items: start;
  margin-top: 32px;
}

.workflow-flow {
  display: grid;
  gap: 0;
  margin-top: 8px;
}

.workflow-flow__step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0 16px;
}

.workflow-flow__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.workflow-flow__num {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  flex-shrink: 0;
}

.workflow-flow__line {
  flex: 1;
  width: 2px;
  min-height: 16px;
  background: rgba(255, 255, 255, 0.15);
  margin: 5px auto;
}

.workflow-flow__step:last-child .workflow-flow__line {
  display: none;
}

.workflow-flow__body {
  padding-bottom: 26px;
}

.workflow-flow__step:last-child .workflow-flow__body {
  padding-bottom: 0;
}

.workflow-flow__title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 6px 0 5px;
  line-height: 1.3;
}

.workflow-flow__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
  line-height: 1.5;
}

.section--contrast .workflow-teaser .summary-box {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.section--contrast .workflow-teaser .summary-box h2,
.section--contrast .workflow-teaser .summary-box li {
  color: rgba(255, 255, 255, 0.92);
}

.section--contrast .workflow-teaser .summary-box p {
  color: rgba(255, 255, 255, 0.68);
}

.section--contrast .workflow-teaser .summary-box .summary-box__eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.section--contrast .workflow-teaser .check-list li::before {
  background: var(--accent);
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 14px;
    border-radius: 34px;
  }

  .brand__text span {
    display: none;
  }

  .topbar--menu-ready .topbar__toggle {
    display: inline-flex;
  }

  .topbar__menu {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 12px;
  }

  .topbar__nav {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 10px;
  }

  .topbar--menu-ready .topbar__menu {
    max-height: 640px;
    overflow: hidden;
    margin-top: 4px;
    padding: 16px;
    border: 1px solid rgba(22, 56, 76, 0.12);
    border-radius: 28px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(244, 248, 250, 0.94)
    );
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.72),
      0 18px 36px rgba(15, 38, 51, 0.12);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      max-height 220ms ease,
      opacity 180ms ease,
      transform 180ms ease,
      margin-top 180ms ease,
      padding 180ms ease,
      border-color 180ms ease,
      visibility 0s linear 0s;
  }

  .topbar__nav-group,
  .topbar__submenu {
    position: static;
  }

  .topbar__submenu {
    min-width: 0;
    max-height: 520px;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition:
      max-height 180ms ease,
      opacity 160ms ease,
      margin-top 160ms ease,
      visibility 0s linear 0s;
  }

  .topbar__nav-group[data-group-open="false"] .topbar__submenu {
    max-height: 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      max-height 180ms ease,
      opacity 160ms ease,
      margin-top 160ms ease,
      visibility 0s linear 180ms;
  }

  .topbar__nav-link {
    width: 100%;
    justify-content: flex-start;
    min-height: 48px;
  }

  .topbar__nav-trigger {
    justify-content: space-between;
  }

  .topbar__submenu-panel {
    margin-top: 8px;
    padding: 10px;
    border-radius: 22px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.72);
  }

  .topbar__submenu-item {
    padding: 12px 14px;
  }

  .topbar--menu-ready[data-menu-open="false"] .topbar__menu {
    max-height: 0;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-color: transparent;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      max-height 220ms ease,
      opacity 180ms ease,
      transform 180ms ease,
      margin-top 180ms ease,
      padding 180ms ease,
      border-color 180ms ease,
      visibility 0s linear 220ms;
  }

  .topbar--menu-ready[data-menu-open="true"]
    .topbar__toggle-icon
    span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .topbar--menu-ready[data-menu-open="true"]
    .topbar__toggle-icon
    span:nth-child(2) {
    opacity: 0;
  }

  .topbar--menu-ready[data-menu-open="true"]
    .topbar__toggle-icon
    span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .topbar__actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
  }

  .topbar__actions .button {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .hero,
  .subhero,
  .article-hero,
  .definition-grid,
  .content-grid,
  .article-layout,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }

  .offer-strip,
  .shot-grid,
  .pricing-grid,
  .comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-page__snapshot,
  .pricing-page__grid,
  .pricing-page__offer-strip {
    grid-template-columns: 1fr;
  }

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

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-panel__actions {
    justify-content: flex-start;
  }

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

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

  .workflow-step--reverse .workflow-step__shot {
    order: unset;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 1.125rem;
    line-height: 1.7;
  }

  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 10px;
  }

  .topbar {
    position: static;
    padding: 16px;
    border-radius: 28px;
  }

  .brand,
  .topbar__actions,
  .hero__actions,
  .cta-panel__actions {
    width: 100%;
  }

  .topbar__actions,
  .hero__actions,
  .cta-panel__actions {
    flex-direction: column;
  }

  .topbar__menu,
  .topbar--menu-ready .topbar__menu {
    border-radius: 24px;
  }

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

  .button {
    width: 100%;
    min-height: 54px;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .button--large {
    width: 100%;
    min-height: 60px;
    font-size: 1.125rem;
  }

  .hero h1,
  .subhero h1,
  .article-hero h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .offer-strip,
  .shot-grid,
  .pricing-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .pricing-page__hero {
    gap: 18px;
    padding: 34px 0 12px;
  }

  .pricing-page__intro {
    gap: 14px;
  }

  .pricing-page__snapshot {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .pricing-page__snapshot-item {
    padding: 12px;
    border-radius: 18px;
  }

  .pricing-page__snapshot-item strong {
    font-size: clamp(1.72rem, 7vw, 2.4rem);
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .pricing-page__snapshot-item strong span {
    margin-bottom: 0;
    font-size: 0.76rem;
  }

  .pricing-page__snapshot-item > span {
    font-size: 0.74rem;
    line-height: 1.3;
  }

  .pricing-page__trial-note {
    padding: 14px;
  }

  .pricing-page__starter-box {
    gap: 16px;
  }

  .pricing-page .pricing-card--paid {
    padding: 22px;
    gap: 16px;
  }

  .pricing-page .pricing-card__price-band {
    padding: 16px 18px 18px;
    border-radius: 20px;
  }

  .pricing-page .pricing-card__price {
    font-size: clamp(3.25rem, 16vw, 4.25rem);
  }

  .pricing-page .pricing-card__price span {
    font-size: 0.94rem;
  }

  .section {
    padding-top: 60px;
  }

  .section--contrast::before {
    inset: 28px -10px -8px;
    border-radius: 34px;
  }

  .section--warm::before {
    inset: 22px -8px -4px;
    border-radius: 28px;
  }

  .summary-box,
  .card,
  .article-shell,
  .footer,
  .cta-panel {
    padding: 22px;
  }

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

  .card h3,
  .footer h3,
  .article-shell h3 {
    font-size: 1.6rem;
  }

  .eyebrow,
  .card__eyebrow,
  .summary-box__eyebrow {
    font-size: 0.85rem;
  }
}
