/* ==========================================================================
   ConicPro — site.css
   One file, no build step. Mobile-first. Brand direction C "Clear" (green).
   To change the brand, change the TOKENS block (and the logo in includes/components/logo.php).
   Contents: tokens · fonts · base · layout · type helpers · buttons · header/nav · hero ·
   trust · cards · pricing · demos · steps · lists · compare · tables · faq · forms ·
   notices · cta band · prose · footer · utilities
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --color-bg: #FAFCFB;
  --color-surface: #FFFFFF;
  --color-ink: #10282B;
  --color-ink-muted: #405759;
  --color-line: #DDE8E5;
  --color-brand: #0A7A69;
  --color-brand-strong: #065F53;
  --color-brand-soft: #E4F3EF;
  --color-on-brand: #FFFFFF;
  --color-dark: #0D2B2E;
  --color-on-dark: #ECF5F3;
  --color-on-dark-muted: #B9CFCB;
  --color-on-dark-line: rgba(236, 245, 243, .2);
  --color-success: #2E7548;
  --color-error: #A3301F;
  --color-field-border: #79898B;

  --font-heading: "Figtree", "Figtree Fallback", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Source Sans 3", "Source Sans Fallback", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --heading-width: 100%;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --border: 1px solid #C5D6D2;
  --border-strong: 1.5px solid var(--color-field-border);
  --shadow-card: 0 1px 2px rgba(16, 40, 43, .05), 0 14px 32px -14px rgba(16, 40, 43, .18);
  --shadow-button: 0 1px 2px rgba(16, 40, 43, .18);
  --shadow-button-pressed: none;

  --wrap: 1200px;
  --gutter: 20px;
  --section-space: clamp(3.5rem, 2.6rem + 3.8vw, 6rem);
}

/* ---------- Fonts (self-hosted variable woff2) ---------- */
@font-face {
  font-family: "Figtree";
  src: url("/assets/fonts/figtree-variable.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("/assets/fonts/source-sans-3-variable.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
/* Metric-matched fallbacks keep the layout still while the real fonts load */
@font-face {
  font-family: "Figtree Fallback";
  src: local("Arial Bold"), local("Arial");
  size-adjust: 101%;
  ascent-override: 94%;
  descent-override: 25%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "Source Sans Fallback";
  src: local("Arial");
  size-adjust: 94%;
  ascent-override: 104%;
  descent-override: 29%;
  line-gap-override: 0%;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 5.5rem; }
@media (min-width: 900px) { html { scroll-padding-top: 1.5rem; } }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font: 400 1.0625rem/1.6 var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}
@media (min-width: 900px) { body { font-size: 1.125rem; } }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-heading);
  font-stretch: var(--heading-width);
  letter-spacing: -.015em;
  text-wrap: balance;
}
h1, .h1 { font-weight: 800; font-size: clamp(2.25rem, 1.525rem + 3.09vw, 4rem); line-height: 1.06; }
h2, .h2 { font-weight: 800; font-size: clamp(1.75rem, 1.44rem + 1.33vw, 2.5rem); line-height: 1.12; }
h3, .h3 { font-weight: 700; font-size: clamp(1.3125rem, 1.23rem + .33vw, 1.5rem); line-height: 1.25; }
h4, .h4 { font-weight: 700; font-size: 1.125rem; line-height: 1.3; }
p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
li { margin-bottom: .35em; }
small, .small { font-size: .875rem; line-height: 1.5; }
@media (min-width: 900px) { small, .small { font-size: .9375rem; } }
strong, b { font-weight: 700; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
hr { border: 0; border-top: 1px solid var(--color-line); margin: 2rem 0; }
a { color: inherit; text-decoration-color: var(--color-brand); text-decoration-thickness: 2px; text-underline-offset: 4px; }
a:hover { text-decoration-thickness: 3px; }
:focus-visible { outline: 3px solid var(--color-ink); outline-offset: 3px; border-radius: var(--radius-sm); }
.section--dark :focus-visible, .site-footer :focus-visible { outline-color: var(--color-brand); }
::selection { background: var(--color-brand); color: var(--color-on-brand); }
[hidden] { display: none; }

.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  padding: .75rem 1rem; background: var(--color-ink); color: var(--color-bg);
  font-weight: 700; border-radius: var(--radius-md);
}
.skip-link:focus { top: 1rem; }

.icon { width: 1.25em; height: 1.25em; flex: none; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: calc(var(--wrap) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: calc(760px + 2 * var(--gutter)); }
.wrap--mid { max-width: calc(980px + 2 * var(--gutter)); }
@media (min-width: 900px) { :root { --gutter: 40px; } }

.section { padding-block: var(--section-space); }
.section--tight { padding-block: calc(var(--section-space) * .6); }
.section--surface { background: var(--color-surface); border-block: 1px solid var(--color-line); }
.section--tint { background: var(--color-brand-soft); border-block: var(--border); }
.section--dark { background: var(--color-dark); color: var(--color-on-dark); }
.section--dark .muted, .section--dark .section-head__lead { color: var(--color-on-dark-muted); }
.section--rule { border-top: var(--border); }

.grid { display: grid; gap: 1.25rem; }
.grid > * { min-width: 0; }
@media (min-width: 700px) {
  .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1000px) {
  .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .grid { gap: 1.5rem; }
}
.split { display: grid; gap: 2rem; }
.split > * { min-width: 0; }
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 4rem; align-items: start; }
  .split--even { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split--wide-left { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
  .split__sticky { position: sticky; top: 2rem; }
}
/* A heading alone in a split column: the grid gap is the spacing, on phones too */
.split > .section-head, .split > div > .section-head:only-child { margin-bottom: 0; }
/* Decorative drawings beside a list only show once the split has two columns */
@media (max-width: 899.98px) { .split > .phone-art { display: none; } }
.stack { --stack: 1rem; } /* reset, so a nested stack does not inherit its parent's size */
.stack > * + * { margin-top: var(--stack); }
.stack--lg { --stack: 2rem; }
.stack--sm { --stack: .5rem; }
.cluster { display: flex; flex-wrap: wrap; gap: .75rem 1rem; align-items: center; }
.cluster--list { list-style: none; margin: 0; padding: 0; } /* a <ul> of links used as a cluster */
.cluster--list > li { margin: 0; }

/* ---------- Type helpers ---------- */
.eyebrow {
  display: flex; align-items: flex-start; gap: .75rem; margin: 0 0 1rem;
  font: 700 .8125rem/1.35 var(--font-heading);
  letter-spacing: .08em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 4px; margin-top: .5em; background: var(--color-brand); flex: none; }
.eyebrow--plain::before { display: none; }
.lead { font-size: clamp(1.125rem, 1.06rem + .3vw, 1.3125rem); line-height: 1.55; color: var(--color-ink-muted); max-width: 38em; }
.section--dark .lead { color: var(--color-on-dark-muted); }
.muted { color: var(--color-ink-muted); }
.measure { max-width: 40em; }
.mark-hl {
  background: var(--color-brand); color: var(--color-on-brand);
  padding: .02em .18em .06em; margin-left: 0; border-radius: var(--radius-sm);
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.link { font-weight: 600; text-decoration: underline; text-decoration-color: var(--color-brand); text-decoration-thickness: 2px; text-underline-offset: 5px; }
.link:hover { text-decoration-thickness: 4px; }
.link--arrow { display: inline-flex; align-items: center; gap: .4em; min-height: 44px; }
.link--arrow .icon { width: 1.1em; height: 1.1em; }
.nowrap { white-space: nowrap; }
.tabular { font-variant-numeric: tabular-nums; }

.section-head { margin-bottom: clamp(2rem, 1.6rem + 1.6vw, 3rem); max-width: 46em; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .lead { margin-inline: auto; }
.section-head__lead { margin-top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 52px; padding: .7em 1.35em;
  border: var(--border); border-radius: var(--radius-md);
  font: 700 1.0625rem/1.2 var(--font-heading);
  text-decoration: none; text-align: center; cursor: pointer;
  background: var(--color-surface); color: var(--color-ink);
}
.btn--primary { background: var(--color-brand); color: var(--color-on-brand); box-shadow: var(--shadow-button); }
.btn--primary:hover { background: var(--color-brand-strong); }
.btn--primary:active { transform: translateY(2px); box-shadow: var(--shadow-button-pressed); }
.btn--secondary:hover { background: var(--color-brand-soft); }
.btn--dark { background: var(--color-ink); color: var(--color-bg); }
.btn--dark:hover { background: var(--color-dark); }
.btn--sm { min-height: 44px; font-size: .9375rem; padding: .5em 1em; }
.btn--block { display: flex; width: 100%; }
.section--dark .btn--secondary { background: transparent; color: var(--color-on-dark); border-color: var(--color-on-dark); }
.section--dark .btn--secondary:hover { background: rgba(236, 245, 243, .12); }
.section--dark .btn--primary { border-color: var(--color-brand); box-shadow: none; }
.btn .icon { width: 1.15em; height: 1.15em; }
.btn-row { display: grid; gap: .75rem; }
@media (min-width: 560px) { .btn-row { display: flex; flex-wrap: wrap; } }
@media (prefers-reduced-motion: no-preference) {
  .btn, .field__input, .card--link, .demo-card { transition: background-color .15s ease, box-shadow .15s ease, transform .15s ease; }
}

/* ---------- Header / nav ---------- */
.site-header { border-bottom: var(--border); background: var(--color-bg); position: sticky; top: 0; z-index: 20; }
@media (min-width: 900px) { .site-header { position: relative; } }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 68px; }
.logo {
  display: inline-flex; align-items: center; gap: .5em; min-height: 44px;
  font: 800 1.375rem/1 var(--font-heading); letter-spacing: -.025em;
  text-decoration: none; color: inherit;
}
.logo__mark { width: 1.5em; height: 1.5em; flex: none; }
.logo__glyph { fill: var(--logo-glyph, var(--color-on-brand)); }

.nav-desktop { display: none; }
.nav-desktop__list { display: flex; align-items: center; gap: clamp(1rem, .2rem + 1.6vw, 2rem); list-style: none; margin: 0; padding: 0; font-weight: 600; font-size: 1rem; }
.nav-desktop__list li { margin: 0; position: relative; }
.nav-link { display: inline-flex; align-items: center; gap: .3em; min-height: 44px; text-decoration: none; cursor: pointer; }
.nav-link:hover, .nav-link[aria-current="page"] { text-decoration: underline; text-decoration-color: var(--color-brand); text-decoration-thickness: 3px; text-underline-offset: 6px; }
.nav-drop > summary { list-style: none; }
.nav-drop > summary::-webkit-details-marker { display: none; }
.nav-drop > summary::after { content: ""; width: .45em; height: .45em; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-.15em); margin-left: .35em; }
.nav-drop[open] > summary::after { transform: rotate(-135deg) translateY(-.1em); }
.nav-drop__panel {
  position: absolute; top: calc(100% + .5rem); left: -1rem; min-width: 17rem; z-index: 30;
  list-style: none; margin: 0; padding: .5rem;
  background: var(--color-surface); border: var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-card);
}
.nav-drop__panel li { margin: 0; }
.nav-drop__panel a { display: flex; align-items: center; gap: .6rem; min-height: 44px; padding: .4rem .75rem; border-radius: var(--radius-sm); text-decoration: none; font-weight: 600; }
.nav-drop__panel a:hover, .nav-drop__panel a[aria-current="page"] { background: var(--color-brand-soft); }

.nav-mobile { position: static; }
.nav-mobile > summary {
  list-style: none; display: inline-flex; align-items: center; gap: .5em; min-height: 44px; padding: .4em .9em;
  border: var(--border); border-radius: var(--radius-md); background: var(--color-surface);
  font: 700 .9375rem/1.2 var(--font-heading); cursor: pointer;
}
.nav-mobile > summary::-webkit-details-marker { display: none; }
.nav-mobile > summary .icon { width: 18px; height: 18px; }
.nav-mobile[open] > summary { background: var(--color-ink); color: var(--color-bg); }
.nav-mobile__panel {
  position: absolute; left: 0; right: 0; top: 100%; z-index: 30;
  background: var(--color-surface); border-bottom: var(--border); box-shadow: var(--shadow-card);
  padding: .5rem var(--gutter) 1.5rem;
  max-height: calc(100vh - 68px); max-height: calc(100dvh - 68px); overflow-y: auto; /* the header is sticky on phones */
}
.nav-mobile__list { list-style: none; margin: 0 0 1rem; padding: 0; }
.nav-mobile__list li { margin: 0; border-bottom: 1px solid var(--color-line); }
.nav-mobile__list a { display: flex; align-items: center; min-height: 52px; font: 700 1.125rem/1.2 var(--font-heading); text-decoration: none; }
.nav-mobile__list a[aria-current="page"] { text-decoration: underline; text-decoration-color: var(--color-brand); text-decoration-thickness: 3px; text-underline-offset: 6px; }
.nav-mobile__sub { padding-left: 1rem; }
.nav-mobile__sub a { font-weight: 600; font-size: 1rem; font-family: var(--font-body); min-height: 46px; }
.nav-mobile__label { display: block; padding: 1rem 0 .25rem; font: 700 .75rem/1.2 var(--font-heading); letter-spacing: .08em; text-transform: uppercase; color: var(--color-ink-muted); }
.site-header__cta { display: none; }
@media (min-width: 420px) { .site-header__cta { display: inline-flex; } }
.site-header__right { display: flex; align-items: center; gap: .75rem; }
@media (min-width: 1000px) {
  .nav-desktop { display: block; }
  .nav-mobile { display: none; }
  .site-header__inner { min-height: 80px; }
}

/* ---------- Hero ---------- */
.hero { padding-block: 2rem 3rem; }
.hero__grid { display: grid; gap: 2.5rem; }
.hero__grid > * { min-width: 0; }
.hero__title { margin-bottom: 1.25rem; line-height: 1.12; }
.hero__title > span { display: block; }
.hero__sub { font-size: 1.0625rem; color: var(--color-ink-muted); max-width: 34em; margin-bottom: 1.5rem; }
.hero__note { font-size: .875rem; color: var(--color-ink-muted); margin: .75rem 0 1.5rem; }
.hero .trust { padding-top: 1.5rem; border-top: 1px solid var(--color-line); }
@media (min-width: 900px) {
  .hero { padding-block: 4.5rem 5rem; }
  .hero__grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 4rem; align-items: center; }
  .hero__sub { font-size: 1.25rem; line-height: 1.55; }
}

/* Inner-page hero */
.page-hero { padding-block: clamp(2.5rem, 1.8rem + 3vw, 4.5rem) clamp(2rem, 1.5rem + 2vw, 3.5rem); border-bottom: var(--border); }
.page-hero__title { max-width: 18em; }
.page-hero__lead { margin-top: 1.25rem; }
.page-hero__actions { margin-top: 1.75rem; }
/* free-audit: the "jump to the form" button stays until the form sits beside the text (900px) */
@media (min-width: 700px) and (max-width: 899.98px) { .page-hero__actions.page-hero__actions--jump { display: flex; flex-wrap: wrap; } }
.page-hero__note { margin-top: .75rem; font-size: .875rem; color: var(--color-ink-muted); }
.page-hero .trust { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--color-line); }

/* "The terms, up front" card (hero) and other definition cards */
.terms-card { background: var(--color-surface); border: var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); overflow: hidden; align-self: start; }
.terms-card__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.25rem; border-bottom: var(--border); }
.terms-card__head svg { width: 24px; height: 32px; flex: none; }
.terms-card__title { font-weight: 800; font-size: 1.25rem; line-height: 1.2; }
.terms-card dl { margin: 0; padding: .25rem 1.25rem; }
.terms-card dl div { display: grid; grid-template-columns: 6.25em 1fr; gap: .75rem; padding: .75rem 0; border-bottom: 1px dashed var(--color-line); font-size: .9375rem; line-height: 1.4; }
.terms-card dl div:last-child { border-bottom: 0; }
.terms-card dt { color: var(--color-ink-muted); }
.terms-card dd { margin: 0; font-weight: 600; font-variant-numeric: tabular-nums; text-wrap: balance; }
.terms-card__foot { display: flex; flex-wrap: wrap; gap: .25rem 1.5rem; margin: 0; padding: .75rem 1.25rem; background: var(--color-brand-soft); border-top: var(--border); font-size: .875rem; font-weight: 600; }
@media (min-width: 900px) { .terms-card dl div { grid-template-columns: 7.25em 1fr; font-size: 1rem; } }

/* ---------- Trust strip ---------- */
.trust { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: .75rem 1.5rem; }
.trust li { display: flex; gap: .75rem; align-items: flex-start; margin: 0; font-weight: 600; font-size: .9375rem; line-height: 1.4; }
.trust .icon, .checks .icon { width: 20px; height: 20px; margin-top: .1em; color: var(--color-success); stroke-width: 2.6; }
.trust--bar { border: var(--border); border-radius: var(--radius-md); background: var(--color-surface); padding: 1rem 1.25rem; }
.section--dark .trust .icon { color: var(--color-brand); }

/* ---------- Cards ---------- */
.card { display: flex; flex-direction: column; gap: .75rem; background: var(--color-surface); border: var(--border); border-radius: var(--radius-lg); padding: 1.5rem; }
.card--flat { border: 1px solid var(--color-line); }
.card--tint { background: var(--color-brand-soft); }
.card--dark { background: var(--color-dark); color: var(--color-on-dark); }
.card--link { position: relative; }
.card--link:hover, .card--link:focus-within { box-shadow: var(--shadow-card); }
.card--link .card__link::after { content: ""; position: absolute; inset: 0; }
.card__icon { display: grid; place-items: center; width: 48px; height: 48px; border: var(--border); border-radius: var(--radius-md); background: var(--color-brand-soft); }
.card__icon .icon { width: 26px; height: 26px; }
.card--tint .card__icon { background: var(--color-surface); }
.card__title { font-size: 1.25rem; }
.card__meta { font: 700 .8125rem/1.3 var(--font-heading); letter-spacing: .06em; text-transform: uppercase; color: var(--color-ink-muted); }
.card__foot { margin-top: auto; padding-top: .5rem; }
.card p { margin: 0; color: var(--color-ink-muted); } /* the flex gap spaces paragraphs */
.card--dark p { color: var(--color-on-dark-muted); }
.tag { display: inline-block; font: 700 .75rem/1.2 var(--font-heading); letter-spacing: .07em; text-transform: uppercase; background: var(--color-brand-soft); border: 1px solid var(--color-line); border-radius: var(--radius-sm); padding: .3em .6em; }
.tag--plain { background: var(--color-surface); }
.section--dark .card:not(.card--dark), .section--dark .box:not(.box--dashed), .section--dark .notice { color: var(--color-ink); }

/* Numbered "pain" / statement list */
.statements { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.statements li { margin: 0; padding: 1rem 1.25rem; background: var(--color-surface); border: var(--border); border-left-width: 8px; border-radius: var(--radius-md); font-weight: 600; line-height: 1.45; }
.statements li span { display: block; font-weight: 400; color: var(--color-ink-muted); margin-top: .25rem; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; gap: 2rem 1.5rem; align-items: stretch; }
.price-grid > * { min-width: 0; }
@media (min-width: 1000px) { .price-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.price-card { position: relative; display: flex; flex-direction: column; gap: 1rem; background: var(--color-surface); border: var(--border); border-radius: var(--radius-lg); padding: 2rem 1.5rem 1.5rem; }
.price-card--featured { box-shadow: var(--shadow-card); }
.price-card__badge { position: absolute; top: -15px; left: 1.25rem; background: var(--color-brand); color: var(--color-on-brand); border: var(--border); border-radius: var(--radius-sm); padding: .3em .7em; font: 700 .75rem/1.2 var(--font-heading); letter-spacing: .07em; text-transform: uppercase; }
.price-card__name { font-size: 1.5rem; }
.price-card__best { color: var(--color-ink-muted); font-size: 1rem; line-height: 1.45; margin: 0; }
.price-card__price { display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; padding-bottom: 1rem; border-bottom: 1px solid var(--color-line); }
.price-card__from { font: 700 .8125rem/1 var(--font-heading); letter-spacing: .08em; text-transform: uppercase; color: var(--color-ink-muted); }
.price-card__amount { font: 800 clamp(2.5rem, 2.2rem + 1vw, 3rem)/1 var(--font-heading); font-stretch: var(--heading-width); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.price-card__amount--text { font-size: 1.75rem; line-height: 1.2; }
.price-card__per { color: var(--color-ink-muted); font-weight: 600; }
.price-card__facts { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.price-card__facts li { margin: 0; font-size: .875rem; font-weight: 600; padding: .25em .6em; border: 1.5px solid var(--color-line); border-radius: var(--radius-sm); background: var(--color-bg); }
.price-card .btn { margin-top: auto; }
.price-card__more { font-size: .9375rem; }

.price-list { list-style: none; margin: 0; padding: 0; border: var(--border); border-radius: var(--radius-lg); background: var(--color-surface); overflow: hidden; }
.price-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin: 0; padding: .9rem 1.25rem; border-bottom: 1px dashed var(--color-line); }
.price-list li:last-child { border-bottom: 0; }
.price-list__name { font-weight: 600; }
.price-list__note { display: block; font-weight: 400; font-size: .9375rem; color: var(--color-ink-muted); }
.price-list__price { font: 800 1.125rem/1.2 var(--font-heading); font-variant-numeric: tabular-nums; white-space: nowrap; }
/* Row with a long description: name and price share the first line, the description runs underneath */
.price-list__row { flex: 1 1 auto; min-width: 0; }
.price-list__row > .cluster { justify-content: space-between; align-items: baseline; gap: .25rem 1rem; }

/* ---------- Concept demo cards ---------- */
.demo-card { position: relative; display: flex; flex-direction: column; background: var(--color-surface); border: var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.demo-card:hover, .demo-card:focus-within { box-shadow: var(--shadow-card); }
@media (prefers-reduced-motion: no-preference) { .demo-card:hover { transform: translateY(-2px); } }
.browser { border-bottom: var(--border); background: var(--color-bg); }
.browser__bar { display: flex; align-items: center; gap: 6px; padding: 8px 12px; border-bottom: 1px solid var(--color-line); }
.browser__bar i { width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--color-line); }
.browser__bar span { flex: 1; margin-left: 8px; height: 16px; border-radius: var(--radius-lg); background: var(--color-surface); border: 1px solid var(--color-line); }
.browser svg, .browser img { width: 100%; height: auto; }
.wire-bg { fill: var(--color-surface); }
.wire-brand { fill: var(--color-brand); }
.wire-brand-line { fill: var(--color-brand); stroke: var(--color-line); stroke-width: 2; }
.wire-soft { fill: var(--color-brand-soft); stroke: var(--color-line); stroke-width: 2; }
.wire-box { fill: none; stroke: var(--color-field-border); stroke-width: 2; }
.wire-ink { stroke: var(--color-ink); fill: none; }
.wire-line { stroke: var(--color-line); fill: none; }
.wire-surface { stroke: var(--color-surface); fill: none; }
.demo-card__body { display: grid; gap: .6rem; padding: 1.25rem 1.25rem 1rem; flex: 1; align-content: start; }
.demo-card__body .tag { justify-self: start; }
.demo-card__best { color: var(--color-ink-muted); font-size: 1rem; line-height: 1.5; margin: 0; }
.demo-card__links { display: flex; flex-wrap: wrap; gap: 0 1.5rem; margin-top: auto; }
.demo-card__links .link { display: inline-flex; align-items: center; gap: .4em; min-height: 44px; }

/* ---------- Steps ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; counter-reset: step; }
.steps > li { counter-increment: step; position: relative; margin: 0; padding: 1.25rem 1.25rem 1.25rem 4.25rem; background: var(--color-surface); border: var(--border); border-radius: var(--radius-md); }
.steps > li::before { content: counter(step); position: absolute; left: 1.1rem; top: 1.15rem; display: grid; place-items: center; width: 2.25rem; height: 2.25rem; border: var(--border); border-radius: var(--radius-sm); background: var(--color-brand); color: var(--color-on-brand); font: 800 1.0625rem/1 var(--font-heading); }
.steps h3 { font-size: 1.1875rem; margin-bottom: .25rem; }
.steps p { color: var(--color-ink-muted); font-size: 1rem; }
.steps__time { display: inline-block; margin-top: .5rem; font-size: .875rem; font-weight: 700; color: var(--color-ink); }
@media (min-width: 700px) { .steps--3col { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px) { .steps--2col { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .steps--3col { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.section--dark .steps > li { background: transparent; border-color: var(--color-on-dark); }
.section--dark .steps p { color: var(--color-on-dark-muted); }
.section--dark .steps > li::before { border-color: var(--color-brand); }
.section--dark .steps__time { color: var(--color-on-dark); }

/* ---------- Check / cross lists ---------- */
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; font-size: 1rem; line-height: 1.45; }
.checks li { display: flex; gap: .75rem; align-items: flex-start; margin: 0; }
.checks--no .icon { color: var(--color-ink-muted); stroke-width: 2.2; }
.checks--2col { gap: .6rem 2rem; }
@media (min-width: 700px) { .checks--2col { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.checks-roomy .checks { gap: 1.25rem 2.5rem; } /* wrapper for lists whose items run to two or three sentences */
.section--dark .checks .icon, .cta-band .checks .icon { color: var(--color-brand); }

.box { border: var(--border); border-radius: var(--radius-lg); padding: 1.5rem; background: var(--color-surface); }
.box--tint { background: var(--color-brand-soft); }
.box--dashed { border-style: dashed; background: transparent; }
.box__title { font-size: 1.1875rem; margin-bottom: .75rem; }

/* ---------- Comparison: table on desktop, stacked cards on phones ---------- */
.table-wrap { overflow-x: auto; border: var(--border); border-radius: var(--radius-lg); background: var(--color-surface); }
.table { width: 100%; border-collapse: collapse; font-size: .9375rem; line-height: 1.45; }
.table caption { text-align: left; padding: 1rem 1.25rem 0; font-size: .875rem; color: var(--color-ink-muted); caption-side: bottom; padding-bottom: 1rem; }
.table th, .table td { padding: .85rem 1rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--color-line); }
.table thead th { font: 700 .8125rem/1.3 var(--font-heading); letter-spacing: .05em; text-transform: uppercase; border-bottom: var(--border); background: var(--color-bg); vertical-align: bottom; }
.table tbody th { font-weight: 700; min-width: 9em; }
.table tbody tr:last-child th, .table tbody tr:last-child td { border-bottom: 0; }
.table .is-us { background: var(--color-brand-soft); font-weight: 600; }
.table thead .is-us { background: var(--color-brand); color: var(--color-on-brand); }
.table td .icon { display: inline-block; vertical-align: -.25em; }
.table .yes { color: var(--color-success); }
.table .no { color: var(--color-ink-muted); }
/* Wide table on a phone: it scrolls sideways inside .table-wrap and the row labels stay in view */
.table--sticky { min-width: 40rem; }
.table--sticky thead th:first-child, .table--sticky tbody th { position: sticky; left: 0; z-index: 1; background: var(--color-surface); box-shadow: 1px 0 0 var(--color-line); }
.table--sticky thead th:first-child { background: var(--color-bg); }
@media (max-width: 699.98px) { .table--sticky tbody th { min-width: 0; width: 9.5rem; font-size: .875rem; } }

.compare-cards { display: grid; gap: 1rem; }
.compare-card { border: var(--border); border-radius: var(--radius-lg); background: var(--color-surface); overflow: hidden; }
.compare-card--us { box-shadow: var(--shadow-card); }
.compare-card__title { padding: .85rem 1.25rem; font-size: 1.125rem; border-bottom: var(--border); background: var(--color-bg); }
.compare-card--us .compare-card__title { background: var(--color-brand); color: var(--color-on-brand); }
.compare-card dl { margin: 0; padding: .25rem 1.25rem; }
.compare-card dl div { padding: .7rem 0; border-bottom: 1px dashed var(--color-line); }
.compare-card dl div:last-child { border-bottom: 0; }
.compare-card dt { font-size: .8125rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--color-ink-muted); }
.compare-card dd { margin: .15rem 0 0; font-weight: 600; line-height: 1.4; }
.prose .compare-card dd { font-weight: 400; } /* whole sentences, not short values */
.compare--table { display: none; }
@media (min-width: 1000px) { .compare--table { display: block; } .compare--cards { display: none; } }

/* ---------- FAQ ---------- */
.faq { border-top: var(--border); }
.faq__item { border-bottom: var(--border); }
.faq__q { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 64px; padding: 1rem 0; cursor: pointer; font: 700 clamp(1.0625rem, 1rem + .3vw, 1.25rem)/1.3 var(--font-heading); }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: "+"; flex: none; display: grid; place-items: center; width: 2rem; height: 2rem; border: var(--border); border-radius: var(--radius-sm); background: var(--color-surface); font: 800 1.25rem/1 var(--font-heading); }
.faq__item[open] .faq__q::after { content: "–"; background: var(--color-brand); }
.faq__a { padding: 0 0 1.5rem; max-width: 44em; color: var(--color-ink-muted); }
.faq__a a { color: var(--color-ink); font-weight: 600; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.25rem; }
.form-card { background: var(--color-surface); border: var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: 1.5rem; }
@media (min-width: 700px) { .form-card { padding: 2rem; } }
.form-card__title { font-size: 1.5rem; margin-bottom: .25rem; }
.field { display: grid; gap: .5rem; }
.field__label { font: 700 1rem/1.3 var(--font-heading); }
.field__optional { font: 400 .875rem/1.3 var(--font-body); color: var(--color-ink-muted); margin-left: .35em; }
.field__input { width: 100%; min-height: 52px; padding: .65em .85em; font: 400 1.0625rem/1.4 var(--font-body); color: var(--color-ink); background: #fff; border: var(--border-strong); border-radius: var(--radius-md); }
textarea.field__input { min-height: 8.5rem; resize: vertical; }
select.field__input { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--color-ink) 50%), linear-gradient(135deg, var(--color-ink) 50%, transparent 50%); background-position: calc(100% - 22px) 55%, calc(100% - 16px) 55%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 2.5rem; }
.field__input::placeholder { color: var(--color-ink-muted); opacity: 1; }
.field__input:focus-visible { outline: 3px solid var(--color-ink); outline-offset: 2px; border-radius: var(--radius-md); }
.field__hint { font-size: .875rem; color: var(--color-ink-muted); }
.field--error .field__input { border-color: var(--color-error); border-left-width: 6px; }
.field__error { display: flex; gap: .5rem; align-items: flex-start; font-size: .9375rem; font-weight: 600; line-height: 1.4; color: var(--color-error); }
.field__error .icon { width: 18px; height: 18px; margin-top: .12em; }
.check { display: flex; gap: .75rem; align-items: flex-start; min-height: 44px; padding-block: .5rem; font-size: 1rem; cursor: pointer; }
.check input { width: 22px; height: 22px; margin: .1em 0 0; flex: none; accent-color: var(--color-ink); }
.form__privacy { font-size: .875rem; color: var(--color-ink-muted); margin: 0; }
.form__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Notices ---------- */
.notice { display: flex; gap: .75rem; align-items: flex-start; padding: 1rem 1.25rem; border: var(--border); border-left-width: 8px; border-radius: var(--radius-md); background: var(--color-surface); font-weight: 600; line-height: 1.45; }
.notice--error { border-color: var(--color-error); color: var(--color-error); }
.notice--concept { background: var(--color-brand-soft); }
.notice .icon { margin-top: .1em; }
.notice p { margin: 0; }
.notice__list { margin: .5rem 0 0; padding-left: 1.1em; font-weight: 400; }
.notice__list a { display: inline-block; padding-block: .2em; text-decoration-color: currentColor; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--color-dark); color: var(--color-on-dark); padding-block: var(--section-space); }
.cta-band__inner { display: grid; gap: 2rem; align-items: center; }
.cta-band__title { max-width: 16em; }
.cta-band__text { color: var(--color-on-dark-muted); max-width: 36em; margin-top: 1rem; }
.cta-band__list { margin-top: 1.25rem; }
.cta-band__note { margin: .75rem 0 0; font-size: .875rem; color: var(--color-on-dark-muted); }
.cta-band__note .link { color: var(--color-on-dark); font-size: 1rem; }
.cta-band .btn--primary { border-color: var(--color-brand); box-shadow: none; }
.cta-band .btn--secondary { background: transparent; color: var(--color-on-dark); border-color: var(--color-on-dark); }
.cta-band .btn--secondary:hover { background: rgba(236, 245, 243, .12); }
.cta-band :focus-visible { outline-color: var(--color-brand); }
@media (min-width: 900px) { .cta-band__inner { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 4rem; } .cta-band__actions { justify-self: end; } }

/* ---------- Long-form text (legal, about) ---------- */
.prose { max-width: 44em; }
.prose h2 { margin: 2.5rem 0 1rem; font-size: clamp(1.5rem, 1.35rem + .6vw, 1.875rem); }
.prose > h2:first-child, .prose > section:first-child > h2:first-child { margin-top: 0; }
.prose h3 { margin: 2rem 0 .75rem; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li { margin-bottom: .5em; }
.prose a { font-weight: 600; }
.prose .owner-todo { background: #FFF3B0; border: 2px dashed var(--color-ink); border-radius: var(--radius-sm); padding: .1em .4em; font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-dark); color: var(--color-on-dark); padding-block: 3.5rem 2rem; border-top: 1px solid var(--color-on-dark-line); }
.site-footer__grid { display: grid; gap: 2.5rem 2rem; }
.site-footer__brand { max-width: 24em; }
.site-footer__brand p { margin-top: 1rem; color: var(--color-on-dark-muted); font-size: 1rem; }
.site-footer__title { font: 700 .8125rem/1.3 var(--font-heading); letter-spacing: .08em; text-transform: uppercase; color: var(--color-on-dark-muted); margin-bottom: .75rem; }
.site-footer__list { list-style: none; margin: 0; padding: 0; }
.site-footer__list li { margin: 0; }
.site-footer__list a { display: inline-flex; align-items: center; min-height: 40px; text-decoration: none; font-weight: 600; }
.site-footer__list a:hover { text-decoration: underline; text-decoration-color: var(--color-brand); text-decoration-thickness: 3px; text-underline-offset: 6px; }
.site-footer__bottom { display: flex; flex-wrap: wrap; gap: .5rem 2rem; justify-content: space-between; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--color-on-dark-line); color: var(--color-on-dark-muted); font-size: .875rem; }
.site-footer__bottom a { color: var(--color-on-dark); }
@media (min-width: 700px) { .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .site-footer__grid { grid-template-columns: minmax(0, 4fr) repeat(3, minmax(0, 2fr)); } }

/* ---------- Utilities ---------- */
.u-center { text-align: center; }
.u-mt-0 { margin-top: 0; }
.u-mt-1 { margin-top: 1rem; }
.u-mt-2 { margin-top: 2rem; }
.u-mt-3 { margin-top: 3rem; }
.u-mb-0 { margin-bottom: 0; }
.u-mb-1 { margin-bottom: 1rem; }
.u-mb-2 { margin-bottom: 2rem; }
.u-hide-mobile { display: none; }
@media (min-width: 700px) { .u-hide-mobile { display: revert; } .u-hide-desktop { display: none; } }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

@media print {
  .site-header, .site-footer, .cta-band, .btn { display: none; }
  body { background: #fff; }
}

/* ---------- Brand C adjustments ---------- */
.btn { border: var(--border-strong); font-weight: 700; }
.btn--primary { border-color: var(--color-brand); }
.btn--primary:hover { border-color: var(--color-brand-strong); }
.nav-mobile > summary { border: var(--border-strong); }
.site-header { border-bottom: 1px solid var(--color-line); }
.page-hero { border-bottom: 1px solid var(--color-line); }
.section--tint { border-block: 0; }
.card, .price-card, .demo-card, .form-card, .terms-card, .box, .compare-card, .table-wrap, .price-list { box-shadow: var(--shadow-card); }
.card--flat, .box--dashed { box-shadow: none; }
.price-card--featured { border: 2px solid var(--color-brand); }
.price-card__badge, .steps > li::before { border: 0; }
.faq__item[open] .faq__q::after { color: var(--color-on-brand); border-color: var(--color-brand); }
.statements li { border-left: 6px solid var(--color-brand); }
.notice { border-left: 6px solid var(--color-brand); }
.notice--error { border-left-color: var(--color-error); }
.terms-card__head, .terms-card__foot, .compare-card__title, .browser { border-color: var(--color-line); }
.logo__pro { color: var(--color-brand); font-weight: 600; }
.logo__mark { width: 1.05em; height: 1.4em; }
.logo__glyph { fill: var(--logo-glyph, var(--color-brand)); }
.site-footer .logo, .section--dark .logo { --logo-glyph: var(--color-on-dark); }
.site-footer .logo__pro { color: var(--color-on-dark-muted); }
.check input { accent-color: var(--color-brand); }
.eyebrow { color: var(--color-brand-strong); }
.section--dark .eyebrow, .cta-band .eyebrow { color: var(--color-on-dark-muted); }
