/* ==========================================================================
   Equilibrium Marketing — main.css
   Brutally honest marketing, brutally fast CSS. One file, no build step.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --crimson: #a02248;      /* accent words, links, primary actions */
  --maroon: #881135;       /* dark brand bands */
  --maroon-deep: #94163c;  /* hovers, borders */
  --wine-dark: #7a1818;    /* gradient partner */
  --charcoal: #333333;     /* headings */
  --body: #494949;         /* body text */
  --ink: #000000;          /* nav bar */
  --paper: #ffffff;
  --mist: #f2f2f2;
  --line: #e6e6e6;
  --shadow: 0 2px 14px rgba(0, 0, 0, .08);
  --shadow-lift: 0 8px 28px rgba(0, 0, 0, .13);
  --radius: 8px;
  --radius-btn: 5px;
  --font-head: "Montserrat", "Montserrat Fallback", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --wrap: 1200px;
  --wrap-text: 800px;
}

/* ---------- Font ---------- */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/montserrat-var.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat Fallback";
  src: local("Arial");
  size-adjust: 110.9%;
  ascent-override: 87.28%;
  descent-override: 22.63%;
  line-gap-override: 0%;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--paper);
}
img, svg, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--charcoal);
  line-height: 1.15;
  margin: 0 0 .6em;
  text-wrap: balance;
}
h1 { font-weight: 900; font-size: clamp(2.1rem, 5.2vw, 3.4rem); }
h2 { font-weight: 700; font-size: clamp(1.55rem, 3.4vw, 2.2rem); }
h3 { font-weight: 700; font-size: clamp(1.15rem, 2.2vw, 1.35rem); }
h4 { font-weight: 600; font-size: 1.05rem; }
p, ul, ol { margin: 0 0 1.15em; }
a { color: var(--maroon-deep); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--crimson); }
:focus-visible { outline: 3px solid var(--crimson); outline-offset: 2px; border-radius: 2px; }
strong { color: var(--charcoal); }
.accent { color: var(--crimson); }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.wrap--text { max-width: var(--wrap-text); }
.section { padding-block: clamp(3rem, 7vw, 5rem); }
.section--tight { padding-block: clamp(2rem, 4vw, 3rem); }
.section--mist { background: var(--mist); }
.center { text-align: center; }
.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: .8em;
}
.lead { font-size: 1.18rem; line-height: 1.6; }
.grid { display: grid; gap: 1.5rem; }
@media (min-width: 700px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--charcoal); color: #fff; padding: .7em 1.2em; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: .95em 1.7em;
  border-radius: var(--radius-btn);
  border: 2px solid var(--maroon-deep);
  background: linear-gradient(0deg, var(--wine-dark), var(--crimson));
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn--outline {
  background: transparent;
  color: var(--maroon-deep);
  border-color: var(--maroon-deep);
}
.btn--outline:hover { background: var(--maroon-deep); color: #fff; }
.btn--light {
  background: #fff;
  color: var(--maroon);
  border-color: #fff;
}
.btn--light:hover { color: var(--crimson); }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.btn-row--center { justify-content: center; }

/* ---------- Header ---------- */
.utility-bar { background: var(--paper); border-bottom: 1px solid var(--line); font-size: .92rem; }
.utility-bar .wrap { display: flex; justify-content: space-between; align-items: center; min-height: 44px; }
.utility-bar a { display: inline-flex; align-items: center; gap: .45em; text-decoration: none; color: var(--body); font-weight: 600; min-height: 44px; }
.utility-bar a:hover { color: var(--crimson); }
.utility-bar .u-social { display: flex; gap: .35rem; }
.utility-bar .u-social a { padding: 0 .4em; }
.utility-bar svg { width: 18px; height: 18px; fill: currentColor; }
.utility-bar .u-phone svg { fill: var(--crimson); }

/* The <header> wraps the utility bar (45px tall) + black nav bar. Sticky at -45px
   slides the utility bar out of view on scroll while the nav stays pinned. */
body > header { position: sticky; top: -45px; z-index: 50; }
.site-header { background: var(--ink); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 76px; }
.site-logo { display: flex; align-items: center; }
.site-logo img { height: 44px; width: auto; }

.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: .25rem; }
.site-nav li { position: relative; }
.site-nav a {
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  padding: .9em 1em;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: #fff; text-shadow: 0 0 1px #fff; box-shadow: inset 0 -3px 0 var(--crimson); }
.site-nav .has-sub > a::after {
  content: ""; display: inline-block; margin-left: .45em;
  border: 5px solid transparent; border-top-color: currentColor; border-bottom: 0;
  vertical-align: .12em;
}
.site-nav .sub {
  position: absolute; top: 100%; left: 0; min-width: 240px;
  background: var(--ink);
  border-top: 3px solid var(--crimson);
  box-shadow: var(--shadow-lift);
  display: none;
  flex-direction: column; gap: 0;
}
.site-nav .sub a { padding: .8em 1.1em; font-size: .95rem; }
.site-nav .has-sub:hover .sub,
.site-nav .has-sub:focus-within .sub { display: flex; }

.nav-toggle {
  display: none;
  background: none; border: 2px solid #fff; border-radius: var(--radius-btn);
  color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .9rem;
  padding: .5em .8em; cursor: pointer; align-items: center; gap: .5em;
}
.nav-toggle svg { width: 20px; height: 20px; fill: currentColor; }

/* Mobile nav: drawer slides in from the left; a scrim blurs the page behind it */
.nav-scrim {
  position: fixed; inset: 0; z-index: 84;
  background: rgba(10, 2, 6, .45);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s ease, visibility 0s linear .3s;
}
body.nav-open .nav-scrim {
  opacity: 1; visibility: visible; pointer-events: auto;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  transition: opacity .3s ease;
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; position: relative; z-index: 87; }
  .site-nav {
    position: fixed; top: 0; left: 0; bottom: 0; z-index: 86;
    width: min(330px, 86vw);
    background: rgba(0, 0, 0, .88);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    backdrop-filter: blur(18px) saturate(1.2);
    box-shadow: 8px 0 40px rgba(0, 0, 0, .45);
    border-right: 1px solid rgba(255, 255, 255, .08);
    transform: translateX(-105%);
    visibility: hidden;
    transition: transform .35s cubic-bezier(.22, .61, .36, 1), visibility 0s linear .35s;
    overflow-y: auto;
    padding: 4.5rem 0 2rem;
  }
  .site-nav::before {
    content: "Menu";
    display: block;
    font-family: var(--font-head); font-weight: 700; font-size: .8rem;
    letter-spacing: .18em; text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    padding: 0 1.4em .8em;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
  .site-nav.is-open { transform: translateX(0); visibility: visible; transition: transform .35s cubic-bezier(.22, .61, .36, 1); }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav a { padding: 1em 1.4em; border-bottom: 1px solid rgba(255, 255, 255, .07); }
  .site-nav a:hover, .site-nav a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--crimson); background: rgba(255, 255, 255, .05); }
  .site-nav .sub { position: static; display: flex; border-top: 0; box-shadow: none; background: rgba(255, 255, 255, .05); }
  .site-nav .sub a { padding-left: 2.4em; }
  .site-nav .has-sub > a::after { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; overflow: hidden; background: var(--mist); }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.55) 55%, rgba(255,255,255,.25) 100%);
}
.hero .wrap { padding-block: clamp(4rem, 10vw, 7.5rem); }
.hero h1 { margin-bottom: .25em; }
.hero .hero__sub {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.4rem, 3.6vw, 2.3rem);
  color: var(--charcoal);
  margin-bottom: 1em;
  line-height: 1.2;
}
.hero .lead { max-width: 42rem; }
.hero .btn-row { margin-top: 1.6rem; }

/* Dark hero variant (leaf texture) */
.hero--dark::before { background: linear-gradient(90deg, rgba(20,3,9,.82), rgba(20,3,9,.45)); }
.hero--dark h1, .hero--dark .hero__sub, .hero--dark p { color: #fff; }
.hero--dark .accent { color: #fff; text-decoration: underline; text-decoration-color: var(--crimson); text-decoration-thickness: 4px; text-underline-offset: 6px; }
.hero--dark .byline, .hero--dark .updated-line, .hero--dark .eyebrow { color: rgba(255,255,255,.85); }
.hero--dark .byline strong { color: #fff; }

/* ---------- Brand bands ---------- */
.band { padding-block: clamp(2.5rem, 6vw, 4rem); }
.band--maroon { background: var(--maroon); }
.band--maroon h2, .band--maroon h3, .band--maroon p { color: #fff; }
.band--leaf { position: relative; isolation: isolate; overflow: hidden; }
.band--leaf .band__bg { position: absolute; inset: 0; z-index: -2; }
.band--leaf .band__bg img { width: 100%; height: 100%; object-fit: cover; }
.band--leaf::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(52, 5, 20, .72); }
.band--leaf h2, .band--leaf h3, .band--leaf p { color: #fff; }

/* Client logo wall */
.logo-wall { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(1.5rem, 4vw, 3rem); margin-top: 2rem; }
.logo-wall a { display: flex; align-items: center; justify-content: center; opacity: .92; transition: opacity .15s, transform .15s; }
.logo-wall a:hover { opacity: 1; transform: scale(1.04); }
.logo-wall img { height: clamp(38px, 6vw, 60px); width: auto; }

/* ---------- Cards ---------- */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
}
.card:hover { box-shadow: var(--shadow-lift); }
.card h2 { font-size: clamp(1.3rem, 2.4vw, 1.5rem); }
.card h2 a, .card h3 a { color: var(--charcoal); text-decoration: none; }
.card h2 a:hover, .card h3 a:hover { color: var(--crimson); }
.card .btn-row { margin-top: auto; padding-top: 1rem; }
.card--accent { border-top: 4px solid var(--crimson); }

/* Stat cards */
.stat { text-align: center; padding: 2rem 1rem; }
.stat__num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--crimson);
  line-height: 1;
  display: block;
  margin-bottom: .35em;
}
.stat__label { font-family: var(--font-head); font-weight: 600; color: var(--charcoal); }
.band--maroon .stat__num, .band--maroon .stat__label { color: #fff; }

/* ---------- Comparison table ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-scroll:focus-visible { outline: 3px solid var(--crimson); outline-offset: 2px; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 560px; background: var(--paper); box-shadow: var(--shadow); border-radius: var(--radius); overflow: hidden; }
.compare-table caption { text-align: left; font-family: var(--font-head); font-weight: 600; padding: .8rem 0; color: var(--body); }
.compare-table th, .compare-table td { padding: .95rem 1.1rem; border-bottom: 1px solid var(--line); text-align: center; }
.compare-table th[scope="row"] { text-align: left; font-family: var(--font-head); font-weight: 600; color: var(--charcoal); }
.compare-table thead th { background: var(--charcoal); color: #fff; font-family: var(--font-head); }
.compare-table thead th:first-child { background: var(--charcoal); }
.compare-table thead th.col-us { background: var(--maroon); }
.compare-table tbody tr:nth-child(even) { background: #fafafa; }
.icon-yes, .icon-no { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; }
.icon-yes svg { fill: #1e7a34; }
.icon-no svg { fill: #b3261e; }

/* ---------- Checklist / feature lists ---------- */
.checklist { list-style: none; padding: 0; }
.checklist li { position: relative; padding-left: 2rem; margin-bottom: .55em; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .35em;
  width: 1.1em; height: 1.1em;
  background: var(--crimson);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center/contain no-repeat;
}

/* ---------- FAQ ---------- */
.faq h3 {
  border-left: 4px solid var(--crimson);
  padding-left: .8em;
  margin-top: 1.8em;
}
.faq h3:first-of-type { margin-top: 0; }

/* ---------- Process steps ---------- */
.steps { list-style: none; padding: 0; counter-reset: step; }
.steps li { position: relative; padding-left: 3.4rem; margin-bottom: 1.4em; counter-increment: step; }
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 2.4rem; height: 2.4rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(0deg, var(--wine-dark), var(--crimson));
  color: #fff; font-family: var(--font-head); font-weight: 700;
  border-radius: 50%;
}
.steps h3, .steps h4 { margin-bottom: .25em; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: .9rem; padding-block: .9rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .35em; margin: 0; padding: 0; }
.breadcrumbs li + li::before { content: "›"; margin-right: .35em; color: #999; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs [aria-current="page"] { color: var(--body); }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 1.1rem; }
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}
label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--charcoal); margin-bottom: .35em; }
.req { color: var(--crimson); }
input, textarea, select {
  width: 100%;
  font: inherit;
  color: var(--charcoal);
  padding: .8em .9em;
  border: 1px solid #c9c9c9;
  border-radius: var(--radius-btn);
  background: #fff;
}
input:focus, textarea:focus { outline: 3px solid rgba(160, 34, 72, .35); border-color: var(--crimson); }
textarea { min-height: 140px; resize: vertical; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
/* Cloudflare Turnstile mount (inserted by form.js); reserve height only once
   the widget iframe exists so a load failure never leaves an empty gap */
.turnstile-slot:has(iframe) { min-height: 65px; }
.form-status { margin-top: 1rem; border-radius: var(--radius-btn); }
.form-status.ok { padding: .9em 1.1em; background: #e8f5e9; color: #1e7a34; border: 1px solid #a5d6a7; }
.form-status.err { padding: .9em 1.1em; background: #fdecea; color: #b3261e; border: 1px solid #f5c6cb; }

/* ---------- Article / prose ---------- */
.prose { max-width: var(--wrap-text); margin-inline: auto; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.3em; }
.prose img { border-radius: var(--radius); box-shadow: var(--shadow); margin-block: 1.5rem; }
.prose blockquote {
  margin: 1.5rem 0; padding: .5rem 0 .5rem 1.4rem;
  border-left: 4px solid var(--crimson);
  font-style: italic; color: var(--charcoal);
}
.byline { display: flex; flex-wrap: wrap; gap: .4em 1em; align-items: center; font-size: .95rem; color: #6b6b6b; margin-bottom: 1.6rem; }
.byline strong { color: var(--charcoal); }
.tldr {
  background: var(--mist);
  border-left: 4px solid var(--crimson);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.3rem 1.5rem;
  margin: 1.8rem 0;
}
.tldr h2, .tldr h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .6em; }
.tldr ul { margin: 0; }
.author-box {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: var(--mist); border-radius: var(--radius);
  padding: 1.4rem 1.6rem; margin-top: 2.5rem;
}
.author-box img { width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0; }
.author-box h3 { margin-bottom: .2em; }
.author-box p { margin: 0; font-size: .97rem; }
.post-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }
.post-nav a { max-width: 46%; font-family: var(--font-head); font-weight: 600; font-size: .95rem; text-decoration: none; }
.post-nav a:hover { text-decoration: underline; }
.series-nav {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1.2rem 1.5rem; margin: 1.8rem 0;
}
.series-nav h3 { font-size: 1rem; margin-bottom: .5em; }
.series-nav ol { margin: 0; padding-left: 1.3em; }

/* Article cards (articles hub) */
.post-card { padding: 0; overflow: hidden; }
.post-card__body { padding: 1.5rem 1.7rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.post-card .post-date { font-size: .88rem; color: #6b6b6b; margin-bottom: .4em; }
.post-card h2, .post-card h3 { font-size: 1.25rem; }
.post-card .post-more { margin-top: auto; padding-top: .8rem; font-family: var(--font-head); font-weight: 600; }

/* ---------- Portfolio ---------- */
.portfolio-item img { border-radius: var(--radius); box-shadow: var(--shadow); }
.portfolio-item figcaption { margin-top: .8rem; }
.portfolio-item figcaption strong { font-family: var(--font-head); }
.portfolio-item figcaption a { font-size: .92rem; }

/* Pricing cards */
.price-card { text-align: center; }
.price-card .price {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.6rem); color: var(--crimson);
  display: block; margin: .3em 0 .1em;
}
.price-card .price-note { font-size: .9rem; color: #6b6b6b; margin-bottom: 1rem; }
.price-card ul { text-align: left; }
.price-card--featured { border-top: 4px solid var(--crimson); transform: scale(1.02); }

/* ---------- Footer ---------- */
/* Dark brand footer: gradient keyline, 4 columns, icon rows, circle socials */
.site-footer {
  background: linear-gradient(180deg, #0d0d0f, #000);
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--wine-dark), var(--crimson), var(--maroon)) 1;
  color: rgba(255, 255, 255, .78);
  margin-top: 0;
}
.site-footer .wrap { padding-block: clamp(3rem, 7vw, 4.5rem); }
.footer-grid { display: grid; gap: 2.4rem; }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 3rem; } }
@media (min-width: 640px) and (max-width: 899px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand img { height: 40px; width: auto; margin-bottom: 1.1rem; }
.footer-brand p { font-size: .97rem; line-height: 1.7; max-width: 34ch; }
.site-footer h2 {
  color: #fff; font-size: .85rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 1.1em; padding-bottom: .6em; position: relative;
}
.site-footer h2::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 2.2rem; height: 3px; background: var(--crimson); border-radius: 2px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .55em; }
.site-footer a { color: rgba(255, 255, 255, .78); text-decoration: none; transition: color .15s, padding-left .2s; }
.site-footer a:hover { color: #fff; }
.footer-links a { display: inline-block; }
.footer-links a:hover { padding-left: .35em; text-decoration: underline; text-decoration-color: var(--crimson); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.site-footer address { font-style: normal; }
.footer-nap { display: grid; gap: .7rem; }
.footer-nap span { display: flex; gap: .65em; align-items: flex-start; }
.footer-nap svg { width: 17px; height: 17px; fill: var(--crimson); flex-shrink: 0; margin-top: .25em; }
.footer-cta { margin-top: 1.3rem; }
.footer-social { display: flex; gap: .7rem; margin-top: 1.4rem; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  transition: background .2s, transform .2s, border-color .2s;
}
.footer-social a:hover { background: var(--crimson); border-color: var(--crimson); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; fill: #fff; }
.footer-bottom { background: rgba(0, 0, 0, .5); border-top: 1px solid rgba(255, 255, 255, .08); color: rgba(255, 255, 255, .5); font-size: .88rem; }
.footer-bottom .wrap { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; align-items: center; min-height: 54px; padding-block: .8rem; }
.footer-bottom a { color: rgba(255, 255, 255, .6); }
.footer-bottom a:hover { color: #fff; }
.footer-tagline { font-family: var(--font-head); font-weight: 600; color: rgba(255, 255, 255, .5); }

/* ---------- Utility ---------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.updated-line { font-size: .88rem; color: #6b6b6b; }
.two-col { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 860px) { .two-col { grid-template-columns: 1fr 1fr; } }
.band--maroon .chip { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.25); }

/* ---------- Component variants used by page templates ---------- */
/* Card grids */
.cards { display: grid; gap: 1.5rem; }
@media (min-width: 700px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 700px) and (max-width: 959px) { .cards--3 { grid-template-columns: repeat(2, 1fr); } }
.card__more { margin-top: auto; padding-top: .9rem; font-family: var(--font-head); font-weight: 600; text-decoration: none; }
.card__more:hover { text-decoration: underline; }

/* Stat cards (BEM naming) */
.stat-cards { display: grid; gap: 1.5rem; }
@media (min-width: 700px) { .stat-cards { grid-template-columns: repeat(3, 1fr); } }
.stat-card { text-align: center; padding: 2rem 1rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.stat-card__num { font-family: var(--font-head); font-weight: 900; font-size: clamp(2.2rem, 5vw, 3rem); color: var(--crimson); line-height: 1; display: block; margin-bottom: .35em; }
.stat-card__label { font-family: var(--font-head); font-weight: 600; color: var(--charcoal); margin: 0; }

/* Dark charcoal band */
.band--dark { background: var(--charcoal); }
.band--dark h2, .band--dark h3, .band--dark p, .band--dark .stat-card__label { color: #fff; }
.band--dark .stat-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.15); }
.band--dark .stat-card__num { color: #fff; }

/* Text chips (platform lists) */
.chips-intro { font-size: .95rem; color: #6b6b6b; margin-bottom: .4rem; }
.platform-icon { width: 20px; height: 20px; fill: currentColor; display: inline-block; vertical-align: -.25em; margin-right: .4em; }

/* Aliases */
.narrow { max-width: var(--wrap-text); }
.check-list { list-style: none; padding: 0; }
.check-list li { position: relative; padding-left: 2rem; margin-bottom: .55em; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .35em; width: 1.1em; height: 1.1em; background: var(--crimson);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center/contain no-repeat;
}
.process-list { list-style: none; padding: 0; counter-reset: pstep; }
.process-list > li { position: relative; padding-left: 3.4rem; margin-bottom: 1.4em; counter-increment: pstep; }
.process-list > li::before {
  content: counter(pstep); position: absolute; left: 0; top: 0;
  width: 2.4rem; height: 2.4rem; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(0deg, var(--wine-dark), var(--crimson));
  color: #fff; font-family: var(--font-head); font-weight: 700; border-radius: 50%;
}

/* Local page components */
.area-list { list-style: none; padding: 0; display: grid; gap: .8rem; }
@media (min-width: 700px) { .area-list { grid-template-columns: repeat(2, 1fr); } }
.area-list li { background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--crimson); border-radius: var(--radius); padding: .9rem 1.2rem; }
.nap-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.6rem 1.8rem; }
.nap-card address, .nap { font-style: normal; }
.nap span { display: block; }

/* Article extras */
.article { display: block; padding-block: clamp(3rem, 7vw, 5rem); }
.author-box__name { font-family: var(--font-head); font-weight: 700; color: var(--charcoal); margin-bottom: .2em; }
.post-nav__prev, .post-nav__next { display: block; }
.post-nav__label { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: #6b6b6b; margin-bottom: .2em; }
.related { margin-top: 2.5rem; }
.related ul { padding-left: 1.2em; }
.article__body { max-width: var(--wrap-text); }
.takeaways { list-style: none; padding: 0; }
.takeaways li { position: relative; padding-left: 2rem; margin-bottom: .7em; }
.takeaways li::before {
  content: ""; position: absolute; left: 0; top: .35em; width: 1.1em; height: 1.1em; background: var(--crimson);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center/contain no-repeat;
}

/* ==========================================================================
   V2 — cleaner, calmer redesign (2026-07-16)
   ========================================================================== */

/* --- Sticky header with backdrop blur --- */
.site-header {
  background: rgba(0, 0, 0, .62);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  backdrop-filter: blur(14px) saturate(1.3);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header { background: rgba(0, 0, 0, .94); }
}
/* (V2 dropdown blur block removed: V4 handles desktop; the mobile drawer submenu
   uses the light tint defined in the header section above) */

/* --- Section delineation: every horizontal band gets a clear boundary --- */
main > .section + .section { border-top: 1px solid var(--line); }
.band { border-top: 5px solid var(--paper); border-bottom: 5px solid var(--paper); }
.hero { border-bottom: 1px solid var(--line); }

/* --- Calmer hero --- */
.hero::before {
  background: linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.82) 55%, rgba(255,255,255,.66) 100%);
}
.hero .wrap { padding-block: clamp(4.5rem, 11vw, 8rem); }
.hero .lead { max-width: 38rem; }
.hero--dark::before { background: linear-gradient(180deg, rgba(20,3,9,.86), rgba(20,3,9,.62)); }

/* Big primary CTA */
.btn--lg { font-size: 1.08rem; padding: 1.05em 2.1em; }


/* --- Brand logo rows (real product logos) --- */
.brand-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.3rem 2.4rem; margin: 1.4rem 0; padding: 0; list-style: none; }
.brand-row li { display: flex; align-items: center; }
.brand-row img, .brand-row svg { height: 32px; width: auto; filter: grayscale(1) opacity(.72); transition: filter .2s ease; }
.brand-row li:hover img, .brand-row li:hover svg { filter: none; }
.brand-row--color img, .brand-row--color svg { filter: none; }

/* --- Contact modal overlay --- */
.contact-modal {
  border: 0; padding: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  width: min(600px, calc(100vw - 2rem));
  max-height: calc(100vh - 3rem);
}
.contact-modal::backdrop {
  background: rgba(26, 4, 12, .45);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
}
.contact-modal__inner { padding: clamp(1.5rem, 4vw, 2.4rem); position: relative; }
.contact-modal__inner > h2 { margin-top: 0; padding-right: 2.5rem; }
.contact-modal__close {
  position: absolute; top: 1rem; right: 1rem;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--mist); border: 0; border-radius: 50%;
  cursor: pointer; color: var(--charcoal);
}
.contact-modal__close:hover { background: var(--line); }
.contact-modal__close svg { width: 18px; height: 18px; fill: currentColor; }
html:has(dialog[open]) { overflow: hidden; }

/* --- Softer cards --- */
.card, .nap-card, .series-nav { border-radius: var(--radius); }
:root { --radius: 10px; }

/* --- V2: modal steps, micro copy, sticky mobile CTA bar, nav CTA --- */
.opt { font-weight: 400; color: #6b6b6b; font-size: .85em; }
.micro { font-size: .85rem; color: #6b6b6b; margin: .7em 0 0; }
.modal-trust { font-size: .82rem; color: #6b6b6b; border-top: 1px solid var(--line); padding-top: 1rem; margin: 1.4rem 0 0; }
.contact-modal select {
  width: 100%; font: inherit; color: var(--charcoal);
  padding: .8em .9em; border: 1px solid #c9c9c9; border-radius: var(--radius-btn); background: #fff;
}

.cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none;
  gap: .6rem; padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(0, 0, 0, .82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, .15);
}
.cta-bar__btn {
  flex: 1; display: flex; align-items: center; justify-content: center;
  min-height: 48px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  color: #fff; text-decoration: none;
  background: linear-gradient(0deg, var(--wine-dark), var(--crimson));
  border-radius: var(--radius-btn);
}
.cta-bar__call {
  display: flex; align-items: center; justify-content: center;
  width: 52px; min-height: 48px;
  border: 2px solid rgba(255, 255, 255, .5); border-radius: var(--radius-btn);
  color: #fff;
}
.cta-bar__call svg { width: 22px; height: 22px; fill: currentColor; }
@media (max-width: 900px) {
  .cta-bar.is-visible { display: flex; }
  html { scroll-padding-bottom: 80px; }
}

/* Nav CTA button (desktop) */
.site-nav .nav-cta a {
  background: linear-gradient(0deg, var(--wine-dark), var(--crimson));
  border-radius: var(--radius-btn);
  padding: .7em 1.2em;
  margin-left: .5rem;
  font-weight: 600;
}
.site-nav .nav-cta a:hover, .site-nav .nav-cta a[aria-current] { box-shadow: none; filter: brightness(1.12); }
@media (max-width: 900px) {
  .site-nav .nav-cta a { margin: .6rem 1.4em; display: inline-block; }
}

/* --- V2: call link + brand-row chips --- */
.btn-call {
  display: inline-flex; align-items: center; gap: .45em;
  min-height: 44px;
  font-family: var(--font-head); font-weight: 600;
  color: var(--maroon-deep); text-decoration: none;
}
.btn-call:hover { text-decoration: underline; color: var(--crimson); }
.btn-row .btn-call { flex-basis: 100%; }
.btn-row--center .btn-call { text-align: center; }
.hero--dark .btn-call, .band--leaf .btn-call, .band--maroon .btn-call, .band--dark .btn-call { color: #fff; }
.trust-line { font-size: .88rem; color: #6b6b6b; margin-top: 1.1rem; }
.hero--dark .trust-line { color: rgba(255,255,255,.85); }

/* ==========================================================================
   V3 — motion & showcase layer (2026-07-16)
   ========================================================================== */

/* --- Scroll-reveal: js/main.js tags elements with .reveal + a stagger delay --- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease var(--rd, 0ms), transform .65s cubic-bezier(.22, .61, .36, 1) var(--rd, 0ms);
  }
  .reveal.is-visible { opacity: 1; transform: none; }

  /* Hero entrance: content fades up in sequence on load */
  @keyframes heroIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
  .hero .wrap > * { animation: heroIn .6s cubic-bezier(.22, .61, .36, 1) both; }
  .hero .wrap > *:nth-child(2) { animation-delay: .09s; }
  .hero .wrap > *:nth-child(3) { animation-delay: .18s; }
  .hero .wrap > *:nth-child(4) { animation-delay: .27s; }
  .hero .wrap > *:nth-child(5) { animation-delay: .36s; }
  .hero .wrap > *:nth-child(6) { animation-delay: .45s; }

  /* Gentle continuous float for showcase devices */
  @keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
}

/* --- Services rotator (per-character swipe, AdeptAI-style) --- */
.svc-rotator { text-align: center; }
.svc-rotator .rotator-line {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.7rem, 4.6vw, 3rem);
  color: #fff;
  line-height: 1.25;
  margin: 0 0 .4em;
}
.rotator-window {
  display: inline-flex;
  overflow: hidden;
  white-space: nowrap;
  color: #fff;
  padding-block: 2px;
  border-bottom: 5px solid var(--crimson);
  vertical-align: bottom;
  min-height: 1.3em;
}
.rotator-window .rch {
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
  transition: transform .5s cubic-bezier(.22, .61, .36, 1), opacity .35s;
}
.rotator-window.in .rch { transform: none; opacity: 1; }
.rotator-window.out .rch { transform: translateY(-120%); opacity: 0; }
.svc-rotator .svc-links { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 1.6rem; margin: 1.4rem 0 0; padding: 0; list-style: none; }
.svc-rotator .svc-links a { color: rgba(255,255,255,.72); font-family: var(--font-head); font-weight: 600; font-size: .95rem; text-decoration: none; }
.svc-rotator .svc-links a:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--crimson); text-decoration-thickness: 3px; text-underline-offset: 5px; }

/* --- Device showcase: overlapping cluster (laptop back, phone front-right) --- */
.device-stage {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
  aspect-ratio: 640 / 480;
}
.device-stage img { position: absolute; height: auto; filter: drop-shadow(0 24px 38px rgba(0, 0, 0, .28)); }
.device-stage .dv-laptop { width: 82%; left: 0; top: 6%; z-index: 1; }
.device-stage .dv-ipad { width: 34%; left: 58%; top: 0; z-index: 2; filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .3)); }
.device-stage .dv-iphone { width: 24%; left: 71%; top: 34%; z-index: 3; filter: drop-shadow(0 16px 26px rgba(0, 0, 0, .35)); }
@media (prefers-reduced-motion: no-preference) {
  .device-stage.is-visible .dv-iphone { animation: floatY 5.5s ease-in-out 1.2s infinite; }
  .device-stage.is-visible .dv-ipad { animation: floatY 6.5s ease-in-out .6s infinite; }
}
.device-copy .checklist { margin-top: 1.2rem; }
.device-stat {
  display: inline-flex; align-items: baseline; gap: .5em;
  background: var(--paper); border: 1px solid var(--line); border-radius: 100px;
  box-shadow: var(--shadow); padding: .5em 1.2em; margin: 1.2rem .4rem 0 0;
  font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--charcoal);
}
.device-stat strong { color: var(--crimson); font-weight: 900; font-size: 1.15em; }

/* ---------- High-contrast primary buttons on dark bands ---------- */
.band--leaf .btn:not(.btn--outline):not(.btn--light),
.band--maroon .btn:not(.btn--outline):not(.btn--light),
.band--dark .btn:not(.btn--outline):not(.btn--light),
.hero--dark .btn:not(.btn--outline):not(.btn--light) {
  background: #fff;
  color: var(--maroon);
  border-color: #fff;
}
.band--leaf .btn:not(.btn--outline):hover,
.band--maroon .btn:not(.btn--outline):hover,
.band--dark .btn:not(.btn--outline):hover,
.hero--dark .btn:not(.btn--outline):hover { color: var(--crimson); }

/* ---------- Google reviews / testimonials ---------- */
.stars { display: inline-flex; gap: 2px; vertical-align: -3px; }
.stars svg { width: 19px; height: 19px; fill: #f0a92e; }
.g-rating { font-size: 1.05rem; color: var(--body); margin-bottom: 2rem; }
.g-rating strong { font-family: var(--font-head); color: var(--charcoal); }
.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.7rem 1.8rem;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.review-card blockquote {
  margin: .8rem 0 1.1rem;
  padding: 0;
  border: 0;
  font-style: normal;
  color: var(--body);
  flex: 1;
}
.review-card figcaption { font-size: .95rem; }
.review-card figcaption strong { font-family: var(--font-head); color: var(--charcoal); display: block; }
.review-card figcaption a { color: #6b6b6b; font-size: .85rem; text-decoration: none; }
.review-card figcaption a:hover { color: var(--crimson); text-decoration: underline; }
.review-card--solo { max-width: 46rem; margin-inline: auto; }
.section--mist .review-card { border-color: transparent; }

/* Founder card (contact page) */
.founder-card { display: flex; gap: 1.3rem; align-items: center; }
.founder-card img { border-radius: 50%; flex-shrink: 0; }
.founder-card p { margin: 0; }
.founder-card .founder-name { font-family: var(--font-head); font-weight: 700; color: var(--charcoal); }

/* ---------- V4: desktop dropdown redesign (detached panel, no blur-on-blur) ---------- */
@media (min-width: 901px) {
  .site-nav .sub {
    display: flex;
    top: 100%;
    left: -6px;
    min-width: 260px;
    background: rgba(13, 13, 15, .97);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, .1);
    border-top: 3px solid var(--crimson);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
    overflow: hidden;
    padding-block: .35rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    pointer-events: none;
    /* the .25s delays give the cursor a forgiving path — the menu waits
       a beat before closing instead of vanishing at the first pixel of gap */
    transition: opacity .16s ease .25s, transform .16s ease .25s, visibility 0s linear .41s;
  }
  .site-nav .has-sub:hover .sub,
  .site-nav .has-sub:focus-within .sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity .16s ease, transform .16s ease, visibility 0s;
  }
  .site-nav .sub a { padding: .7em 1.2em; }
  /* replace the underline treatment inside the panel with a left accent + tint */
  .site-nav .sub a:hover,
  .site-nav .sub a:focus-visible,
  .site-nav .sub a[aria-current="page"] {
    box-shadow: inset 3px 0 0 var(--crimson);
    background: rgba(255, 255, 255, .07);
    text-shadow: none;
  }
  /* chevron flips when open */
  .site-nav .has-sub > a::after { transition: transform .18s ease; }
  .site-nav .has-sub:hover > a::after,
  .site-nav .has-sub:focus-within > a::after { transform: rotate(180deg); }
}

/* ---------- V5: header darkness states, drawer brand, call-link centering ---------- */
.site-header { background: rgba(0, 0, 0, .96); transition: background-color .25s ease; }
body > header.is-scrolled .site-header { background: rgba(0, 0, 0, .8); }
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  body > header.is-scrolled .site-header { background: rgba(0, 0, 0, .96); }
}

.btn-row--center .btn-call { justify-content: center; }

.drawer-brand { display: none; }
@media (max-width: 900px) {
  .site-nav .drawer-brand {
    display: flex;
    align-items: center;
    padding: 1.05rem 1.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }
  .site-nav .drawer-brand img { height: 40px; width: auto; }
}
@media (max-width: 900px) {
  /* the drawer brand replaces the old "MENU" text label */
  .site-nav::before { display: none; }
  .site-nav .drawer-brand { padding-top: 1.6rem; }
}

/* ---------- V6: cookie consent bar ---------- */
.cookie-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  padding: 1rem clamp(1rem, 3vw, 2rem) calc(1rem + env(safe-area-inset-bottom, 0px));
  background: rgba(13, 13, 15, .97);
  border-top: 3px solid var(--crimson);
  box-shadow: 0 -12px 34px rgba(0, 0, 0, .35);
}
.cookie-bar__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: .9rem 2rem;
  align-items: center;
  justify-content: space-between;
}
.cookie-bar__text { color: #ddd; font-size: .95rem; line-height: 1.5; flex: 1 1 34rem; }
.cookie-bar__text strong { color: #fff; font-family: var(--font-head); }
.cookie-bar__text a { color: #fff; }
.cookie-bar__actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.cookie-bar .btn--outline { color: #fff; border-color: rgba(255, 255, 255, .55); }
.cookie-bar .btn--outline:hover { background: rgba(255, 255, 255, .12); color: #fff; }

.cookie-prefs-link {
  background: none; border: 0; cursor: pointer;
  color: #ddd; font: inherit; font-size: .9rem;
  text-decoration: underline; text-underline-offset: 2px;
  padding: .3em 0;
}
.cookie-prefs-link:hover { color: #fff; }

/* ---------- V7: pre-launch audit fixes ---------- */
.price-card--featured.is-visible { transform: scale(1.02); }
