:root {
  color-scheme: light;
  --ink: #131722;
  --ink-soft: #4f5b70;
  --muted: #5b6577;
  --line: #dfe3eb;
  --line-soft: #eceff4;
  --surface: #ffffff;
  --surface-soft: #f6f8fc;
  --surface-blue: #eef3ff;
  --blue: #2457e6;
  --blue-dark: #173ca8;
  --green: #2ea043;
  --green-text: #176b35;
  --orange: #fa8c16;
  --red: #cf222e;
  --purple: #722ed1;
  --radius-sm: 7px;
  --radius-md: 13px;
  --radius-lg: 22px;
  --shadow: 0 22px 55px rgba(25, 39, 72, 0.12);
  --max: 1300px;
  --channel-a: #2563eb;
  --channel-b: #ea580c;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--blue-dark);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--blue);
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
[type="submit"] {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--blue-dark);
  outline-offset: 3px;
}

.cta-band :focus-visible,
.skip-link:focus-visible {
  outline-color: #fff;
}

main:focus {
  outline: none;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  font-weight: 800;
  text-decoration: none;
}

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 780px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(223, 227, 235, 0.92);
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--blue) 0 53%, var(--green) 54% 100%);
  box-shadow: inset 0 0 0 1px rgba(19, 23, 34, 0.09);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.site-nav a {
  color: #303747;
  font-size: 13px;
  font-weight: 720;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta {
  white-space: nowrap;
}

.nav-toggle,
.header-cta {
  flex-shrink: 0;
}

.nav-cta {
  display: none;
}

.site-nav a[aria-current="page"] {
  color: var(--blue);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: currentColor;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before { top: -6px; }
.nav-toggle-lines::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: translateY(-6px) rotate(-45deg);
}

.button,
.button-secondary,
.button-quiet {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  padding: 10px 17px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 18px rgba(36, 87, 230, 0.18);
}

.button:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  color: #fff;
}

.button-secondary {
  border: 1px solid #6f7a8f;
  background: var(--surface);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.button-quiet {
  border: 0;
  background: transparent;
  color: var(--blue-dark);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-spaced {
  margin-top: 18px;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 6.2vw, 76px);
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

p {
  margin-top: 0;
}

.lede {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 72px;
  background:
    radial-gradient(circle at 83% 4%, rgba(36, 87, 230, 0.12), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fbfcff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
}

.hero h1 {
  font-size: clamp(42px, 4.6vw, 64px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.95fr) minmax(560px, 1.35fr);
  gap: 4%;
  align-items: center;
}

.hero-copy .lede {
  margin-bottom: 26px;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.microcopy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.early-form {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  width: min(100%, 520px);
}

.early-form label {
  flex: 1 0 100%;
  margin-bottom: -3px;
  font-size: 12px;
  font-weight: 800;
}

.cta-band .early-form label {
  color: #cbd2df;
}

.early-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid #7a8699;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  padding: 12px 14px;
}

.early-form input::placeholder {
  color: #6b7488;
}

.form-note {
  width: min(100%, 520px);
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.cta-band .form-note {
  color: #b9c1d0;
}

.cta-band .form-note a {
  color: #fff;
}

.form-note[role="alert"] {
  color: #a51623;
  font-weight: 700;
}

.figure-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.hero-visual {
  position: relative;
}


.app-frame {
  overflow: hidden;
  border: 1px solid #cdd4e0;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}




.shot-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #f8faff;
}

.shot-frame.aspect-16-10 {
  aspect-ratio: 16 / 10;
}

.shot-frame.aspect-16-9 {
  aspect-ratio: 16 / 9;
}

.shot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-frame .shot-frame {
  border: 0;
  border-radius: 0;
}




.market-strip {
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.market-strip-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: #4d586d;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.market-strip-inner span + span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 28px 2px 0;
  border-radius: 50%;
  background: #96a0b3;
}

.section {
  padding: 88px 0;
}

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

.section-blue {
  background: var(--surface-blue);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 38px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  color: var(--ink-soft);
  font-size: 18px;
}

.feature-grid,
.three-grid,
.two-grid,
.policy-grid {
  display: grid;
  gap: 22px;
}

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

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

.policy-grid {
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
}

.feature-panel,
.info-panel,
.pricing-card,
.step-card,
.faq-item,
.support-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.feature-panel,
.info-panel,
.support-panel {
  padding: 28px;
}

.feature-panel {
  display: flex;
  flex-direction: column;
}

.feature-panel > p:last-child {
  margin-top: auto;
  margin-bottom: 0;
}

.feature-panel p,
.info-panel p,
.support-panel p {
  color: var(--ink-soft);
}

.feature-panel a,
.info-panel a {
  font-size: 13px;
  font-weight: 850;
}

.num-badge {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--surface-blue);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.feature-panel .num-badge {
  margin-bottom: 24px;
}

.panel-title {
  font-size: 28px;
}

.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.signal-list li,
.mini-tag,
.coming-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 850;
}

.signal-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: currentColor;
}

.mini-tag { border: 1px solid var(--line); }
.signal-breakout { background: #e9f7ee; color: #176b35; }
.signal-support { background: #fff1df; color: #8c4a00; }
.signal-breakdown { background: #fdebed; color: #a51623; }
.signal-rejection { background: #f2eafd; color: #5f23a9; }
.coming-tag { background: #eef0f4; color: #303747; text-transform: uppercase; letter-spacing: 0.06em; }

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

.split-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(560px, 1.32fr);
  gap: 5%;
  align-items: center;
}

/* image-left sections: the wide column must move with the figure, not stay on the text */
.split-feature.reverse {
  grid-template-columns: minmax(560px, 1.32fr) minmax(320px, 0.68fr);
}

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

.split-feature figure,
.hero-visual {
  margin: 0;
}

.split-feature .shot-frame {
  box-shadow: 0 18px 44px rgba(25, 39, 72, 0.1);
}

.split-copy p,
.split-copy li {
  color: var(--ink-soft);
}

.check-list,
.plain-list,
.legal-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding: 8px 0 8px 27px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--green-text);
  font-weight: 900;
}

.plain-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}

.ai-caution {
  margin: 18px 0 0;
  color: #6b4300;
  font-size: 13px;
  font-weight: 800;
}

.ai-caution.boxed {
  border: 1px solid #f1c989;
  border-radius: var(--radius-md);
  background: #fff8e9;
  color: #714413;
  padding: 12px 14px;
}

.narrow.left {
  width: min(100%, 780px);
  margin-inline: 0;
}

.scan-sequence .scan-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 120ms ease;
}

.scan-sequence .scan-frame.is-active {
  opacity: 1;
}

.scan-toggle {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(19, 23, 34, 0.86);
  color: #fff;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 800;
}

.scan-toggle:hover {
  background: var(--ink);
}

.shot-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.quote-free-proof {
  border-left: 4px solid var(--blue);
  background: var(--surface-blue);
  padding: 22px 24px;
}

.quote-free-proof strong {
  display: block;
  margin-bottom: 5px;
}

.page-hero {
  padding: 82px 0 62px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 0%, rgba(36, 87, 230, 0.12), transparent 32%),
    #fff;
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero .lede {
  margin-bottom: 0;
}

.features-page-hero {
  overflow: hidden;
  padding-bottom: 74px;
  background:
    radial-gradient(circle at 82% 0%, rgba(36, 87, 230, 0.14), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f8faff 100%);
}

.features-hero-copy {
  max-width: 790px;
}

.features-hero-copy h1 {
  max-width: 760px;
}

.product-overview {
  width: 100%;
  margin: 50px auto 0;
}

.product-overview-frame {
  overflow: hidden;
  border: 1px solid #c9d2e2;
  border-radius: 20px;
  background: #f8faff;
  box-shadow: 0 32px 80px rgba(25, 39, 72, 0.16);
}

.product-overview-frame img {
  width: 100%;
  height: auto;
}

.visual-caption {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.visual-caption span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #d6ddea;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #4f5b70;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 850;
}

.visual-caption span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.feature-showcase {
  padding-top: 104px;
}

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

.visual-feature-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid #d8deea;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(25, 39, 72, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.visual-feature-card:hover,
.visual-feature-card:focus-within {
  transform: translateY(-4px);
  border-color: #b9c7e5;
  box-shadow: 0 24px 52px rgba(25, 39, 72, 0.13);
}

.visual-feature-card .feature-link::after {
  content: "";
  position: absolute;
  inset: 0;
}

.visual-feature-media {
  overflow: hidden;
  display: block;
  aspect-ratio: 45 / 28;
  border-bottom: 1px solid var(--line);
  background: #f6f8fc;
}

.visual-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.visual-feature-card:hover .visual-feature-media img,
.visual-feature-card:focus-within .visual-feature-media img {
  transform: scale(1.012);
}
/* A card that carries a real product screenshot spans the whole row so the
   screenshot stays legible; on one-column widths it is an ordinary card. */
.visual-feature-card-wide {
  grid-column: 1 / -1;
}
/* The screenshot itself sits at about 60% of the wide card, centred: full-bleed
   made the app UI larger than it needs to be to read. */
.visual-feature-card-wide > .visual-feature-media {
  max-width: 60%;
  margin-inline: auto;
  border-bottom: 0;
}

/* A wide card carrying two shots of one feature: side by side, each at about
   half the row, which is roughly the size a single card gave one image. */
.visual-feature-media-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 26px 26px 0;
  background: #f6f8fc;
  border-bottom: 1px solid var(--line);
}

.visual-feature-media-row .visual-feature-media {
  border-bottom: 0;
  border-radius: 12px;
}
/* Two phone screens side by side are naturally square, so this card keeps its
   own media ratio: forcing them into the landscape box shrinks them to stamps. */
.visual-feature-card-phones .visual-feature-media {
  aspect-ratio: 1920 / 1901;
  background: #f6f8fc;
}

.visual-feature-card-phones .visual-feature-media img {
  object-fit: contain;
}
/* Card 02's own shot: the add dialog over the desktop watchlist. Left without a
   rule this fell back to the 45/28 default and cropped the dialog. */
.visual-feature-media-own {
  aspect-ratio: 1700 / 1295;
  border-bottom: 0;
}

.visual-feature-media-own img {
  object-fit: contain;
}
/* A second, supporting image inside a card. It is a tall panel, so it is held
   to part of the card's width; full-bleed would make it taller than the copy. */
/* Card 04 carries two shots of the same surface, so they share one box. */
.visual-feature-media-pair {
  aspect-ratio: 1600 / 1849;
  border-bottom: 0;
}

.visual-feature-media-pair img {
  object-fit: contain;
}

.visual-feature-media-inset {
  aspect-ratio: 1600 / 1849;
}

.visual-feature-media-inset img {
  object-fit: contain;
}

/* The earnings review is a document: tall, and held to part of the width so a
   card carrying two of them stays readable rather than enormous. */
.visual-feature-card-ai .visual-feature-media-row > .visual-feature-media:first-child {
  aspect-ratio: 1800 / 1311;
}

.visual-feature-card-ai .visual-feature-media-inset {
  aspect-ratio: 1800 / 1338;
}

.visual-feature-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px 27px 27px;
}

.visual-feature-kicker {
  display: flex;
  min-height: 32px;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-feature-copy h3 {
  margin-bottom: 10px;
  font-size: 27px;
}

.visual-feature-copy > p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.visual-feature-copy .ai-caution {
  margin: 1px 0 17px;
  font-size: 12px;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  margin-top: auto;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.feature-link span {
  transition: transform 180ms ease;
}

.feature-link:hover span {
  transform: translateX(3px);
}

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

.principle-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.principle-strip > div {
  position: relative;
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 2px 12px;
  align-content: center;
  min-height: 116px;
  padding: 24px;
}

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

.principle-mark {
  grid-row: 1 / 3;
  width: 8px;
  height: 34px;
  align-self: center;
  border-radius: 4px;
  background: var(--green);
}

.principle-blue {
  background: var(--blue);
}

.principle-ink {
  background: var(--ink);
}

.principle-strip strong {
  color: var(--ink);
  font-size: 14px;
}

.principle-strip small {
  color: var(--muted);
  font-size: 11px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.breadcrumb a {
  display: inline-block;
  color: var(--muted);
  padding: 12px 0;
  margin: -12px 0;
}

.breadcrumb span::before {
  content: "/";
  margin-right: 7px;
  color: #a0a7b5;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.pricing-card.featured {
  border-color: #9bb1f7;
  box-shadow: 0 18px 42px rgba(36, 87, 230, 0.12);
}

.pricing-card:not(.featured) {
  border-color: var(--line);
  background: var(--surface-soft);
}

.pricing-card:not(.featured) .price {
  font-size: 16px;
  font-weight: 650;
  letter-spacing: 0;
}

.pricing-card:not(.featured) .check-list {
  flex: 0 0 auto;
}

.pricing-card .tier-label {
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card h2,
.pricing-card h3 {
  margin-bottom: 4px;
  font-size: 31px;
}

.price {
  margin: 16px 0 2px;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.price-note {
  min-height: 26px;
  color: var(--muted);
  font-size: 12px;
}

.pricing-card .check-list {
  flex: 1;
  margin-bottom: 24px;
}

.pricing-card .button,
.pricing-card .button-secondary {
  width: 100%;
}

.comparison-wrap {
  position: relative;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.comparison-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: #fff;
  font-size: 13px;
}

.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid var(--line-soft);
  padding: 12px 10px;
  text-align: left;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  position: sticky;
  left: 0;
  background: #fff;
}

.comparison-hint {
  display: none;
}

.comparison-table th:not(:first-child),
.comparison-table td:not(:first-child) {
  text-align: center;
}

.comparison-table thead th {
  background: var(--surface-soft);
  color: var(--ink);
}

.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.step-list {
  display: grid;
  gap: 28px;
}

.step-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding: 30px;
}

.step-card .split-feature {
  grid-template-columns: minmax(250px, 0.68fr) minmax(420px, 1.32fr);
  gap: 4%;
}

.step-card .split-feature.reverse {
  grid-template-columns: minmax(420px, 1.32fr) minmax(250px, 0.68fr);
}

.step-card .num-badge {
  margin-bottom: 18px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  position: relative;
  padding: 20px 54px 20px 22px;
  color: var(--ink);
  font-weight: 830;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 22px;
  color: var(--blue);
  font-size: 23px;
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-q {
  margin: 0;
  font: inherit;
  letter-spacing: inherit;
}

.faq-answer {
  max-width: 820px;
  padding: 0 22px 20px;
  color: var(--ink-soft);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #7a8699;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.grievance-block {
  border: 1px solid #c6d2f8;
  border-radius: var(--radius-md);
  background: var(--surface-blue);
  padding: 26px;
}

.grievance-block dl {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 8px 14px;
  margin: 18px 0 0;
}

.grievance-block dt {
  font-weight: 850;
}

.grievance-block dd {
  margin: 0;
}

.legal-content {
  padding: 70px 0 90px;
}

.legal-content h2 {
  margin-top: 42px;
  font-size: 30px;
}

.legal-content h3 {
  margin-top: 28px;
  font-size: 20px;
}

.legal-content p,
.legal-content li {
  color: #3f495c;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  font-size: 14px;
}

.legal-content th,
.legal-content td {
  border: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.legal-content th {
  background: var(--surface-soft);
}

.draft-notice,
.risk-notice {
  border-radius: var(--radius-md);
  padding: 20px 22px;
}

.draft-notice {
  border: 1px solid #f1c989;
  background: #fff8e9;
  color: #714413;
}

.risk-notice {
  border: 1px solid #efb4b9;
  background: #fff1f2;
  color: #7f1721;
}

.timeline {
  display: grid;
  gap: 22px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  padding-left: 30px;
}

.timeline li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px #e7edff;
}

.timeline time,
.timeline-when {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.cta-band {
  padding: 72px 0;
  background: var(--ink);
  color: #fff;
}

.cta-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: 40px;
  align-items: center;
}

.cta-band-inner > .button {
  justify-self: end;
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band h2 {
  margin-bottom: 8px;
}

.cta-band p {
  margin-bottom: 0;
  color: #cbd2df;
}

.cta-band .early-form input {
  border-color: #536077;
  background: #fff;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 0.8fr);
  gap: 34px;
  padding: 58px 0 40px;
}

.footer-summary {
  max-width: 300px;
  color: var(--muted);
  font-size: 13px;
}

.footer-column h2 {
  margin-bottom: 13px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin: 0;
  padding: 12px 0;
  color: #536075;
  font-size: 12px;
  text-decoration: none;
}

.footer-follow {
  display: flex;
  gap: 16px;
}

.footer-column a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 22px 0 28px;
  color: #667186;
  font-size: 13px;
}

.footer-risk {
  max-width: 720px;
  margin: 0;
  color: #414b5e;
  font-weight: 760;
}

.not-found {
  min-height: 65vh;
  display: grid;
  place-items: center;
  padding: 80px 0;
  text-align: center;
}

.not-found-code {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 86px;
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 1;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 1180px) {
  .feature-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .split-feature,
  .split-feature.reverse,
  .step-card .split-feature,
  .step-card .split-feature.reverse,
  .step-card,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .split-feature {
    gap: 42px;
  }

  .split-feature.reverse .split-copy {
    order: initial;
  }

  .three-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card:last-child {
    grid-column: 1 / -1;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .header-inner {
    gap: 18px;
  }

  .site-nav {
    gap: 16px;
  }
}

@media (max-width: 860px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

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

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open::after {
    content: "";
    position: fixed;
    inset: 62px 0 0;
    z-index: 40;
    background: rgba(19, 23, 34, 0.35);
  }

  .container,
  .narrow {
    width: min(calc(100% - 30px), var(--max));
  }

  .header-inner {
    min-height: 62px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header-cta {
    margin-left: 0;
  }

  .site-nav {
    position: fixed;
    inset: 62px 0 auto;
    display: none;
    max-height: calc(100vh - 62px);
    overflow: auto;
    border-bottom: 1px solid var(--line);
    background: #fff;
    padding: 12px 20px 22px;
    box-shadow: 0 20px 35px rgba(20, 30, 52, 0.12);
  }

  .site-nav.is-open {
    display: grid;
    gap: 0;
  }

  .site-nav a {
    padding: 12px 0;
    font-size: 15px;
  }

  .site-nav .nav-cta {
    display: none;
    justify-content: center;
    margin-top: 10px;
    border-radius: var(--radius-sm);
    background: var(--blue);
    color: #fff;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 850;
    text-align: center;
  }

  .comparison-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 32px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff);
    pointer-events: none;
  }

  .comparison-hint {
    display: block;
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  h2 {
    font-size: 34px;
  }

  .hero,
  .page-hero {
    padding-top: 58px;
  }

  .section {
    padding: 68px 0;
  }

  .feature-grid,
  .visual-feature-grid,
  .three-grid,
  .two-grid,
  .pricing-grid,
  .footer-grid,
  .cta-band-inner {
    grid-template-columns: 1fr;
  }

  .features-page-hero {
    padding-bottom: 58px;
  }

  /* One column: a wide card is an ordinary card, its single image goes edge to
     edge, and a pair of images stacks. */
  .visual-feature-card-wide > .visual-feature-media {
    max-width: none;
  }

  .visual-feature-media-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px 16px 0;
  }

  .product-overview {
    margin-top: 38px;
  }

  .product-overview-frame {
    border-radius: 13px;
    box-shadow: 0 22px 52px rgba(25, 39, 72, 0.14);
  }

  .feature-showcase {
    padding-top: 76px;
  }

  .principle-strip {
    grid-template-columns: 1fr;
  }

  .principle-strip > div {
    min-height: 96px;
  }

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

  .pricing-card:last-child {
    grid-column: auto;
  }

  .early-form {
    flex-direction: column;
  }

  .early-form .button {
    width: 100%;
  }

  .market-strip-inner {
    flex-wrap: wrap;
    gap: 10px 22px;
    padding: 17px 0;
  }

  .market-strip-inner span + span::before {
    content: none;
    margin: 0;
  }

  .grievance-block dl {
    grid-template-columns: 1fr;
  }

  .grievance-block dd + dt {
    margin-top: 10px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .header-cta {
    display: none;
  }

  .site-nav .nav-cta:not([hidden]) {
    display: flex;
  }

  .feature-panel,
  .info-panel,
  .support-panel,
  .pricing-card,
  .step-card {
    padding: 22px;
  }

  .visual-feature-copy {
    padding: 21px 21px 23px;
  }

  .visual-feature-copy h3 {
    font-size: 24px;
  }

  .visual-caption {
    justify-content: flex-start;
  }

  .hero {
    padding-bottom: 58px;
  }

  .cta-row,
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-row .button,
  .cta-row .button-secondary,
  .hero-actions .button,
  .hero-actions .button-secondary {
    width: 100%;
  }
}

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

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

@media (forced-colors: active) {
  .nav-toggle-lines,
  .nav-toggle-lines::before,
  .nav-toggle-lines::after {
    background: CanvasText;
    forced-color-adjust: none;
  }

  .signal-list li {
    border: 1px solid CanvasText;
  }
}

@media print {
  .site-header,
  .footer-grid,
  .cta-band,
  .nav-toggle,
  .scan-toggle {
    display: none !important;
  }

  .footer-bottom {
    border-top: 1px solid #000;
    padding-top: 8px;
  }

  body {
    color: #000;
  }

  a {
    color: #000;
  }

  main a[href^="/"]::after {
    content: " (https://chartinmotion.com" attr(href) ")";
    font-size: 0.85em;
  }

  .shot-frame img {
    break-inside: avoid;
  }
}
