:root {
    --ink: #0a0a0c;
    --muted: #6b6b76;
    --faint: #9a9aa2;
    --bg: #ffffff;
    --surface: #f7f7f8;
    --border: #ececef;
    --accent: #ff4d4d;
    --accent-dark: #e23c3c;
    --accent-wash: rgba(255, 77, 77, 0.07);
    --accent-border: rgba(255, 77, 77, 0.22);
    --hero-bg: #0a0a0c;
    --hero-ink: #f5f5f6;
    --hero-muted: #a3a3ac;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 2px rgba(10, 10, 12, 0.04);
    --shadow-md: 0 12px 32px rgba(10, 10, 12, 0.08);
    --shadow-lg: 0 24px 60px rgba(10, 10, 12, 0.14);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Offsets anchor-scroll targets so the sticky header doesn't cover
   the top of the section they land on. */
#features, #demo-section, #pricing, #faq {
    scroll-margin-top: 84px;
}

::selection {
    background: var(--accent);
    color: #0a0a0c;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* header itself stays transparent — its backdrop is the white wiggly SVG
   shape .header-svg-container injects behind it (see feedback.js's
   initHeaderWiggle), not a solid/blurred background here. transform is
   how the scroll-smart hide/show works (.header-hidden below); it doesn't
   affect position:sticky's own layout math, just the paint offset, so the
   header keeps behaving like a normal sticky element while also being
   able to slide fully out of view. */
header {
    position: sticky;
    top: 0;
    z-index: 500;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.45s ease;
}

header.header-hidden {
    transform: translateY(-100%);
}

/* Injected by feedback.js's initHeaderWiggle — kept declared here (not
   inline) so it's themeable/consistent with the rest of the stylesheet.
   Resting shape (see FLAT_D in feedback.js) is a plain flat-bottomed
   rectangle, visually just a normal solid white header at rest; the
   wiggle only appears as a transient flourish when GSAP is available and
   the header re-enters after a scroll-up. Sits behind the header's own
   nav content (z-index:-1 within header's own stacking context) but the
   whole header still paints above the rest of the page via header's own
   z-index:500. */
.header-svg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    pointer-events: none;
    z-index: -1;
}

.header-svg-container svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.header-wiggle-path {
    fill: var(--bg);
    filter: drop-shadow(0 2px 6px rgba(10, 10, 12, 0.06));
}

.logo {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.6px;
    color: var(--ink);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.logo-img {
    display: block;
    height: 46px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    position: relative;
    color: var(--muted);
    text-decoration: none;
    margin-left: 34px;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -4px;
    height: 1px;
    background: var(--accent);
    transition: right 0.25s ease;
}

nav a:hover {
    color: var(--ink);
}

nav a:hover::after {
    right: 0;
}

/* ---------- Header CTA pill (all pages) ---------- */
.nav-cta {
    margin-left: 34px;
    background: var(--accent);
    color: #0a0a0c !important;
    padding: 9px 18px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 13.5px;
    transition: background 0.2s ease;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: #ff6363;
    color: #0a0a0c !important;
}

/* ---------- Mobile nav (hamburger) ---------- */
/* .nav-toggle is injected by feedback.js, not hand-written into each page's
   header — the header markup is copy-pasted identically across all 13
   static pages, so the button and its click-handling live in one shared
   script instead of 13 copies. Hidden by default; only shown at the same
   900px breakpoint the rest of the layout already collapses at. */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 12px;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    header nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        padding: 6px 20px 20px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.25s ease, opacity 0.2s ease;
    }

    header nav.nav-open {
        max-height: 480px;
        opacity: 1;
    }

    header nav a {
        margin-left: 0;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
        font-size: 15px;
    }

    header nav a:last-child {
        border-bottom: none;
    }

    header nav a::after {
        display: none;
    }

    header nav .nav-cta {
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
    }
}

.hero-band {
    position: relative;
    overflow: hidden;
    background: var(--hero-bg);
    background-image: radial-gradient(circle at 80% 15%, #1c1c20 0%, var(--hero-bg) 60%);
    /* Pulls the hero up under header's own reserved flow space (82px tall —
       position:sticky keeps that space regardless of the header's transform)
       so there's no blank gap at the very top while the header is
       translated off-screen — on page load (see the .header-hidden drop-in
       in index.html/feedback.js) and any time it's scrolled-hidden. Header's
       z-index:500 keeps it stacked above this, so the hero sits behind it
       rather than being pushed down. */
    margin-top: -82px;
    padding-top: 82px;
}

/* Slow-drifting red glow behind the hero copy — mostly-black stays mostly
   black; this is a soft, low-opacity bloom, not a colored background.
   Blurred + animated via position/opacity (not background-position or an
   animated custom property) so it's smooth in every browser without
   needing @property support. aria-hidden + pointer-events:none since it's
   pure decoration, layered behind .hero via z-index. */
.hero-glow {
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 77, 77, 0.38) 0%, rgba(255, 77, 77, 0) 70%);
    filter: blur(70px);
    pointer-events: none;
    z-index: 0;
    animation: hero-glow-drift 20s ease-in-out infinite alternate;
}

@keyframes hero-glow-drift {
    0%   { top: 55%; left: 8%;  opacity: 0.5; }
    50%  { top: 2%;  left: 62%; opacity: 0.85; }
    100% { top: 50%; left: 82%; opacity: 0.45; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-glow { animation: none; top: 20%; left: 70%; opacity: 0.6; }
}

/* Faint dot-matrix texture behind the hero copy and the red glow — same
   z-index as .hero-glow, but declared first in the DOM so the glow (also
   z-index 0) paints on top of it. Kept low-opacity so it reads as
   background texture, not something competing with the headline. */
.hero-dot-matrix {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.hero-dot-matrix svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-dot-matrix-group {
    filter: drop-shadow(0 0 6px rgba(255, 77, 77, 0.35));
}

@media (prefers-reduced-motion: reduce) {
    .hero-dot-matrix { opacity: 0.3; }
}

.hero {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 110px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
    color: var(--hero-ink);
}

.hero-content p {
    font-size: 18px;
    color: var(--hero-muted);
    margin-bottom: 26px;
    line-height: 1.7;
    max-width: 480px;
}

.hero-content p strong {
    color: var(--hero-ink);
    font-weight: 600;
}

.hero-links {
    font-size: 14.5px;
    color: var(--hero-muted);
    margin-top: 22px;
    max-width: 480px;
    line-height: 1.9;
}

.hero-links a {
    color: #ff9d9d;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--accent-border);
    text-underline-offset: 3px;
}

.hero-links a:hover {
    color: var(--hero-ink);
}

.warning-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-wash);
    border: 1px solid var(--accent-border);
    padding: 10px 16px;
    border-radius: 100px;
    font-size: 13px;
    color: #ff8080;
    margin-bottom: 26px;
    font-weight: 500;
}

.warning-badge::before {
    content: "⚠";
    font-size: 14px;
}

.cta-group {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.cta-primary {
    background: var(--accent);
    color: #0a0a0c;
    padding: 15px 32px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 24px rgba(255, 77, 77, 0.25);
}

.cta-primary:hover {
    background: #ff6363;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 77, 77, 0.32);
}

.cta-secondary {
    background: transparent;
    color: var(--hero-muted);
    padding: 15px 32px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-sm);
    font-weight: 500;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.cta-secondary:hover {
    border-color: rgba(255, 255, 255, 0.34);
    color: var(--hero-ink);
}

/* outside the dark hero, secondary buttons need dark-on-light styling */
.section .cta-secondary,
.final-cta .cta-secondary,
.prose .cta-secondary {
    color: var(--muted);
    border-color: #d8d8dc;
}

.section .cta-secondary:hover,
.final-cta .cta-secondary:hover,
.prose .cta-secondary:hover {
    border-color: #b8b8bf;
    color: var(--ink);
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.45));
}

.hero-video-thumb {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    cursor: pointer;
}

.hero-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: none;
}

.hero-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-video-play svg {
    width: 28px;
    height: 28px;
    fill: #0a0a0c;
    margin-left: 4px;
}

.hero-video-thumb:hover .hero-video-play {
    transform: translate(-50%, -50%) scale(1.08);
    background: #fff;
}

/* ---------- "What you get" showcase section ---------- */
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.showcase-copy h2 {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: var(--ink);
    margin-bottom: 18px;
}

.showcase-copy > p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 480px;
}

.showcase-list {
    list-style: none;
    margin-bottom: 26px;
}

.showcase-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 500;
}

.showcase-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-dark);
    font-weight: 700;
}

.showcase-tags {
    margin-bottom: 30px;
}

.showcase-tags span {
    display: inline-block;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 100px;
    margin-right: 8px;
}

.showcase-preview {
    display: flex;
    justify-content: center;
}

.example-preview-card {
    display: block;
    position: relative;
    width: 100%;
    max-width: 460px;
    height: 640px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.example-preview-card object {
    display: block;
    width: 100%;
    height: 100%;
}

.example-preview-card img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 900 / 1272;
}

/* Transparent click-catcher over the embedded PDF — a plain click handler on
   the <object> itself won't reliably fire, since the browser's native PDF
   viewer captures mouse events inside its own plugin context. */
.example-preview-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.35) 100%);
    border: none;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.example-preview-card:hover .example-preview-overlay,
.example-preview-overlay:focus-visible {
    opacity: 1;
}

.example-preview-overlay-badge {
    background: #fff;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 99px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

@media (max-width: 900px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .showcase-preview {
        order: -1;
    }
}

.section {
    padding: 96px 40px;
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
}

.section h2 {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 50px;
    color: var(--ink);
}

/* ---------- promo ticker (above live demo) ---------- */
.promo-ticker-wrapper {
    width: 100%;
    overflow: hidden;
}

.promo-ticker {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.promo-ticker .track {
    display: flex;
    width: max-content;
}

.promo-ticker .track span {
    padding-right: 48px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    flex-shrink: 0;
}

.promo-ticker.promo-ticker-dark {
    background: #111;
    color: var(--accent);
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 10px 0;
}

.promo-ticker.promo-ticker-light {
    background: #fff;
    color: var(--ink);
    border-bottom: 1px solid var(--border);
    padding: 9px 0;
}

.promo-ticker.promo-ticker-light .track span {
    color: var(--accent-dark);
}

.promo-ticker.promo-ticker-light .track span b {
    color: var(--ink);
    font-weight: 800;
}

/* Position is set inline via GSAP/ScrollTrigger (scroll-linked, not a
   timed animation) — see the inline <script> block. No JS, no motion:
   the tracks just sit at their default translateX(0). */

.demo-section {
    padding: 96px 40px;
    background: var(--surface);
}

.demo-container {
    max-width: 800px;
    margin: 0 auto;
}

/* ---------- 3-step demo flow ---------- */
.demo-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.demo-step {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.step-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.step-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--accent);
    color: #0a0a0c;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

.step-title {
    font-weight: 700;
    font-size: 14.5px;
    color: var(--ink);
}

.step-title em {
    font-style: normal;
    font-weight: 500;
    color: var(--faint);
    font-size: 12.5px;
}

.demo-step .addr-wrap input {
    width: 100%;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    color: #111;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.demo-step .addr-wrap input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-wash);
}

.demo-step .addr-wrap input::placeholder {
    color: #999;
}

.demo-step .brand-fields {
    margin: 0;
}

.step-generate-btn {
    width: 100%;
    background: var(--accent);
    color: #0a0a0c;
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    font-size: 14.5px;
    transition: all 0.2s;
}

.step-generate-btn:hover {
    background: #ff6363;
}

.step-generate-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ---------- Address autocomplete ---------- */
.addr-wrap {
    position: relative;
}

.addr-list {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 60;
    list-style: none;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    max-height: 300px;
    overflow-y: auto;
    display: none;
    text-align: left;
}

.addr-list.open {
    display: block;
}

.addr-item {
    padding: 11px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f4f4f4;
    font-size: 14px;
    line-height: 1.4;
}

.addr-item:last-child {
    border-bottom: none;
}

.addr-item:hover,
.addr-item.active {
    background: #fff5f5;
}

.addr-item .addr-line1 {
    color: #111;
    font-weight: 600;
}

.addr-item .addr-line2 {
    color: #888;
    font-size: 12.5px;
    margin-top: 1px;
}

.addr-item mark {
    background: transparent;
    color: #d64545;
    font-weight: 700;
}

.addr-status {
    padding: 11px 15px;
    font-size: 13px;
    color: #999;
}

.addr-attrib {
    padding: 7px 15px;
    font-size: 11px;
    color: #bbb;
    border-top: 1px solid #f4f4f4;
    text-align: right;
}

.demo-loading {
    text-align: center;
    color: #777;
    font-size: 14px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-output {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px;
    min-height: 300px;
    color: #555;
    font-size: 12px;
    box-shadow: var(--shadow-sm);
}

.demo-placeholder {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #999;
    font-size: 14px;
    border: 1px dashed #ddd;
    border-radius: var(--radius-sm);
}

.demo-placeholder svg {
    width: 40px;
    height: 40px;
    stroke: #bbb;
}

.cta-demo {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.cta-demo p {
    color: #777;
    font-size: 14px;
    margin-bottom: 15px;
}

.brand-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: flex-end;
    margin: 0 auto 20px;
    max-width: 640px;
}

.brand-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
    flex: 1;
    min-width: 200px;
}

.brand-field span {
    font-size: 12px;
    color: #666;
    font-weight: 600;
}

.brand-field input {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    color: #111;
    background: #fff;
}

.brand-field input[type="file"] {
    padding: 8px 10px;
}

.brand-hint {
    flex-basis: 100%;
    font-size: 12px;
    color: #999;
    margin: 2px 0 0;
}

.brand-field:has(.color-picker) {
    flex: 0 0 auto;
    min-width: 0;
}

.color-picker {
    position: relative;
}

.color-picker-trigger {
    width: 38px;
    height: 38px;
    padding: 3px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.color-picker-dot {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(135deg, #0066cc 0%, #00ccff 100%);
}

.color-picker-dropdown {
    position: absolute;
    z-index: 20;
    top: calc(100% + 8px);
    left: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    width: 208px;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.color-picker-dropdown[hidden] {
    display: none;
}

.color-swatch {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    display: block;
}

.color-swatch:hover {
    transform: scale(1.1);
}

.color-swatch-default {
    background: linear-gradient(135deg, #0066cc 0%, #00ccff 100%);
}

.color-swatch-custom {
    position: relative;
    overflow: hidden;
    background: conic-gradient(red, yellow, lime, cyan, blue, magenta, red);
}

.color-swatch-custom input[type="color"] {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 200%;
    height: 200%;
    border: none;
    padding: 0;
    cursor: pointer;
    opacity: 0;
}

/* ---------- Checkout popup ---------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1000;
}

.modal-overlay[hidden] { display: none; }

.modal-card {
    background: #fff;
    border-radius: 10px;
    padding: 32px;
    max-width: 420px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.modal-card-pdf {
    max-width: 960px;
    width: 100%;
    height: 90vh;
    padding: 44px 16px 16px;
    display: flex;
}

.modal-card-pdf object {
    flex: 1;
    width: 100%;
    border: none;
    border-radius: 6px;
}

.modal-close:hover { color: #333; }

.modal-card h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.modal-subtitle {
    color: #888;
    font-size: 13px;
    margin-bottom: 22px;
}

.modal-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.modal-field span {
    font-size: 12px;
    color: #666;
    font-weight: 600;
}

.modal-field input[type="email"],
.modal-field textarea {
    padding: 11px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    color: #111;
}

.modal-field textarea {
    font-family: inherit;
    resize: vertical;
    min-height: 90px;
}

.modal-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #444;
    margin-bottom: 14px;
    cursor: pointer;
}

.modal-checkbox input { margin-top: 3px; flex-shrink: 0; }

.payment-section {
    margin: 8px 0 16px;
    padding: 14px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fcfcfc;
}

.payment-summary {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.card-element-shell {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px;
    background: #fff;
    min-height: 46px;
}

.modal-checkbox a { color: #d64545; }

.modal-card .cta-primary {
    width: 100%;
    text-align: center;
    margin-top: 6px;
}

.modal-card .cta-primary[aria-disabled="true"] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.modal-error {
    display: none;
    color: #d64545;
    font-size: 13px;
    margin-top: 12px;
}

/* ---------- "How it works" feature cards (homepage) ---------- */
.feature-cards-head {
    max-width: 560px;
    margin-bottom: 56px;
}

.feature-cards-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

.feature-cards-eyebrow::before {
    content: '';
    width: 18px;
    height: 2px;
    background: var(--accent);
    display: inline-block;
}

.feature-cards-head h2 {
    font-size: clamp(28px, 4vw, 34px);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin: 0 0 16px;
}

.feature-cards-head p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.feature-card {
    position: relative;
    padding: 36px 28px 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.feature-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.feature-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border-radius: var(--radius-sm);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-card-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--accent);
    display: block;
}

.feature-card:hover .feature-card-icon {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.feature-card h3 {
    color: var(--ink);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.2px;
    margin: 0 0 12px;
}

.feature-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

.feature-card-index {
    position: absolute;
    top: 36px;
    right: 28px;
    font-size: 12px;
    font-weight: 600;
    color: var(--border);
    letter-spacing: 0.05em;
}

/* ---------- ROI stat box ----------
   No longer used on the homepage (replaced below by the "difference"
   comparison block), but case-study.html still uses these exact classes
   for its own independent ROI figures — kept for that page, don't remove
   again without checking case-study.html first. */
.roi-section {
    background: var(--accent-wash);
    border: 1px solid var(--accent-border);
    padding: 44px;
    border-radius: var(--radius-md);
    text-align: center;
    margin-bottom: 60px;
}

.roi-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 15px;
}

.roi-math {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.roi-item {
    background: #fff;
    border: 1px solid rgba(255, 77, 77, 0.14);
    padding: 22px;
    border-radius: var(--radius-sm);
}

.roi-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-dark);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.roi-label {
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
}

/* ---------- "The difference" comparison block (homepage) ----------
   Replaces the old ROI-math stat grid. Font/colors inherit the site's own
   (Inter, var(--accent) — already an exact match for this design's own
   accent) rather than the 'Söhne'/hardcoded-hex this started as. Fails
   soft same as every other reveal on this page: no opacity:0/transform
   baked into .compare-col/.compare-rows li's CSS resting state — only
   gsap.from() creates the hidden starting point at animation time. */
.compare-head {
    max-width: 560px;
    margin-bottom: 48px;
}

.compare-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

.compare-eyebrow::before {
    content: '';
    width: 18px;
    height: 2px;
    background: var(--accent);
    display: inline-block;
}

.compare-head h3 {
    font-size: clamp(26px, 3.6vw, 34px);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin: 0 0 16px;
    color: var(--ink);
}

.compare-head p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
}

.compare-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 60px;
}

.compare-col {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
}

.compare-col-with {
    border-color: var(--accent);
    box-shadow: 0 4px 24px rgba(255, 77, 77, 0.08);
}

.compare-col-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.compare-col-with .compare-col-head {
    border-bottom-color: rgba(255, 77, 77, 0.2);
}

.compare-col-head h4 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.2px;
}

.compare-col-without .compare-col-head h4 { color: var(--muted); }
.compare-col-with .compare-col-head h4 { color: var(--accent); }

.compare-col-icon {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.compare-col-without .compare-col-icon { background: var(--surface); }
.compare-col-with .compare-col-icon { background: var(--accent-wash); }

.compare-col-icon svg { width: 14px; height: 14px; }
.compare-col-without .compare-col-icon svg { fill: var(--muted); }
.compare-col-with .compare-col-icon svg { fill: var(--accent); }

.compare-rows {
    list-style: none;
    margin: 0;
    padding: 0;
}

.compare-rows li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 0;
    font-size: 15px;
    line-height: 1.5;
    border-bottom: 1px solid var(--border);
}

.compare-col-with .compare-rows li {
    border-bottom-color: rgba(255, 77, 77, 0.14);
}

.compare-rows li:last-child { border-bottom: none; }

.compare-row-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.compare-row-icon svg { width: 16px; height: 16px; }
.compare-col-without .compare-row-icon svg { fill: var(--muted); }
.compare-col-with .compare-row-icon svg { fill: var(--accent); }

.compare-col-without .compare-rows li span { color: var(--muted); }
.compare-col-with .compare-rows li span { color: var(--ink); font-weight: 500; }

.compare-stat-row { font-weight: 700 !important; }
.compare-col-without .compare-stat-row span { color: var(--ink) !important; }
.compare-col-with .compare-stat-row span { color: var(--accent) !important; }

@media (max-width: 760px) {
    .compare-cols {
        grid-template-columns: 1fr;
    }
}

/* ---------- "How it works" / "The difference" dark band (homepage) ----------
   Wraps the existing .section in a full-bleed dark container (index.html
   only — .feature-card/.compare-* classes aren't reused on any other page,
   confirmed via grep, so no scoping needed beyond this wrapper). Same
   --hero-bg/--hero-ink/--hero-muted palette as .procurement-band/.hero
   rather than a new color scheme, so the page's dark bands read as one
   consistent component instead of three different treatments. */
.section-band-features {
    background: var(--hero-bg);
    background-image:
        radial-gradient(circle at 90% 0%, rgba(255, 77, 77, 0.12) 0%, rgba(255, 77, 77, 0) 45%),
        radial-gradient(circle at 8% 100%, #1c1c20 0%, var(--hero-bg) 60%);
}

.section-band-features .section {
    border-top: none;
}

.section-band-features .section h2,
.section-band-features .feature-cards-head h2,
.section-band-features .compare-head h3,
.section-band-features .feature-card h3 {
    color: var(--hero-ink);
}

.section-band-features .feature-cards-head p,
.section-band-features .compare-head p,
.section-band-features .feature-card p {
    color: var(--hero-muted);
}

.section-band-features .feature-card {
    border-color: rgba(255, 255, 255, 0.14);
}

.section-band-features .feature-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.section-band-features .feature-card-icon {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
}

.section-band-features .feature-card-index {
    color: rgba(255, 255, 255, 0.22);
}

.section-band-features .compare-col {
    border-color: rgba(255, 255, 255, 0.14);
}

.section-band-features .compare-col-head {
    border-bottom-color: rgba(255, 255, 255, 0.14);
}

.section-band-features .compare-col-with .compare-col-head {
    border-bottom-color: rgba(255, 77, 77, 0.28);
}

.section-band-features .compare-col-without .compare-col-head h4 {
    color: var(--hero-muted);
}

.section-band-features .compare-col-without .compare-col-icon {
    background: rgba(255, 255, 255, 0.06);
}

.section-band-features .compare-col-without .compare-col-icon svg,
.section-band-features .compare-col-without .compare-row-icon svg {
    fill: var(--hero-muted);
}

.section-band-features .compare-rows li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.section-band-features .compare-col-with .compare-rows li {
    border-bottom-color: rgba(255, 77, 77, 0.2);
}

.section-band-features .compare-col-without .compare-rows li span {
    color: var(--hero-muted);
}

.section-band-features .compare-col-with .compare-rows li span {
    color: var(--hero-ink);
}

.section-band-features .compare-col-without .compare-stat-row span {
    color: var(--hero-ink) !important;
}

/* ---------- Retention Crisis stat block ----------
   Numbers/labels start fully visible with real values baked into the HTML
   (2+, 23, 50k) — never a placeholder "0" — so a visitor with JS/GSAP
   disabled or reduced-motion set sees the correct stats immediately. The
   count-up and reveal below are pure progressive enhancement: they briefly
   reset a number to 0 and animate back up only once actually triggered,
   same "nothing to get stuck hidden" principle as .fade-in elsewhere on
   this page. Uses the site's own font (Inter) and palette (--accent/--ink/
   --border) rather than the two display/mono fonts this design started
   from. */
.crisis-section {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 64px 44px 56px;
    max-width: 1400px;
    margin: 0 auto;
}

.crisis-backdrop {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.6;
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, black 20%, transparent 75%);
    mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, black 20%, transparent 75%);
    pointer-events: none;
}

.crisis-inner {
    position: relative;
}

.crisis-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

.crisis-eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.6);
    flex-shrink: 0;
}

.crisis-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -0.8px;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 44px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.stat {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 30px 26px 28px;
    background: var(--bg);
}

.stat-index {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--faint);
    margin-bottom: 22px;
}

.stat-number {
    display: flex;
    align-items: baseline;
    gap: 3px;
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.stat-number .unit {
    font-size: 0.42em;
    font-weight: 700;
    color: var(--accent);
}

.stat-underline {
    height: 2px;
    width: 0%;
    background: var(--accent);
    margin: 16px 0 18px;
}

.stat-label {
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--muted);
    max-width: 26ch;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 34px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-size: 30px;
    font-weight: 800;
    color: var(--accent-dark);
    flex-shrink: 0;
    width: 50px;
}

.step h3 {
    color: var(--ink);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.step p {
    color: var(--muted);
    font-size: 14px;
}

/* ---------- Testimonials carousel ----------
   Coverflow-style card carousel, GSAP-driven (reuses the gsap instance this
   page already loads for the hero/scroll-reveal animations — no second
   copy of the library). Font/colors inherit the site's own (Inter,
   var(--accent) — which already happens to be the same #FF4D4D this design
   was built around) rather than the Montserrat/hardcoded-hex this started
   as.
   Fail-soft: only the first card is visible by default (below); if GSAP
   never loads or errors, that's still one full, readable testimonial
   rather than six cards stacked unpositioned on top of each other. The
   carousel JS un-hides the rest and takes over positioning once it
   actually initializes. */
.quote-svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

.testimonial-carousel { max-width: 1140px; margin: 0 auto; }

.gallery {
    width: 100%;
    height: 380px;
    position: relative;
    perspective: 900px;
}

.cards {
    width: 320px;
    height: 320px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -160px 0 0 -160px;
    padding: 0;
    list-style: none;
}

.cards li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    box-shadow: 0 20px 40px var(--accent-wash);
    will-change: transform, opacity;
}

.cards li:not(:first-child) {
    display: none;
}

.cards li .quote-mark {
    width: 28px;
    height: 28px;
    margin-bottom: 14px;
    color: var(--accent);
}

.cards li .quote-mark svg { width: 100%; height: 100%; }

.cards li .stars {
    color: var(--accent);
    font-size: 15px;
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.cards li p {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.55;
    font-weight: 600;
    margin-bottom: 14px;
}

.cards li .attribution {
    color: var(--faint);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.carousel-actions {
    /* Hidden by default: the dots are JS-populated (empty, invisible
       either way) but the arrows are static markup — without this, a
       GSAP load failure would leave two clickable-looking arrows with no
       listener attached (initTestimonialCarousel never runs, so it never
       reveals this). Revealed by JS once the carousel actually initializes. */
    display: none;
    position: relative;
    justify-content: center;
    align-items: center;
    gap: 22px;
    padding-top: 30px;
}

.carousel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--accent);
    color: var(--accent);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.carousel-arrow:hover { background: var(--accent); color: #fff; }

.carousel-dots { display: flex; gap: 8px; }

.carousel-dots button {
    width: 8px;
    height: 8px;
    border-radius: 26px;
    border: none;
    background: var(--accent);
    opacity: 0.35;
    cursor: pointer;
    transition: width 0.3s ease, opacity 0.3s ease;
    padding: 0;
}

.carousel-dots button.active { width: 24px; opacity: 1; }

@media (max-width: 600px) {
    .gallery { height: 320px; }
    .cards { width: 240px; height: 280px; margin: -140px 0 0 -120px; }
    .cards li { padding: 22px; border-radius: 20px; }
}

.final-cta {
    background: var(--accent-wash);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius-lg);
    padding: 76px 40px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.final-cta h2 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.7px;
    color: var(--ink);
    margin-bottom: 16px;
}

.final-cta p {
    color: var(--muted);
    font-size: 17px;
    margin-bottom: 30px;
}

/* PDF-style preview (used in Live Demo) */
.pdf-preview {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Fixed-height, internally-scrolling viewport — reads like an embedded PDF
   page (see the real example-report.pdf <object> embed elsewhere on this
   page) rather than an ever-expanding block of HTML. */
.pdf-preview-scroll {
    max-height: 640px;
    overflow-y: auto;
}

.pdf-cover-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: #000;
}

.pdf-cover-images img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

.pdf-preview .pdf-header {
    background: linear-gradient(135deg, #0a2342 0%, #1a3a52 100%);
    /* --fg is set inline per-instance when a custom accent color is picked
       (see renderSample() in index.html) — falls back to white for the
       default navy gradient. Declared on the container so every child
       (title, subtitle, brand corner, meta row) inherits it automatically. */
    color: var(--fg, #fff);
    padding: 24px;
}

.pdf-preview .pdf-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.pdf-preview .pdf-header-top h3 {
    font-size: 19px;
    font-weight: 700;
}

.pdf-preview .pdf-header-top .subtitle {
    font-size: 12px;
    opacity: 0.85;
    margin-top: 4px;
}

.pdf-preview .pdf-header-top .brand {
    text-align: right;
    font-size: 12px;
}

.pdf-preview .pdf-header-meta {
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 12px;
    font-size: 12px;
}

.pdf-preview .pdf-body {
    background: #fff;
    color: #1a1a1a;
    padding: 24px;
}

.pdf-preview .pdf-section-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
    color: #111;
}

.pdf-preview .pdf-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}

.pdf-preview .pdf-cell {
    background: #f4f4f5;
    border-radius: 4px;
    padding: 10px;
}

.pdf-preview .pdf-cell .pdf-label {
    font-size: 10px;
    color: #777;
    margin-bottom: 4px;
}

.pdf-preview .pdf-cell .pdf-value {
    font-weight: 700;
    font-size: 13px;
    color: #111;
}

.blur-value {
    filter: blur(4px);
    user-select: none;
}

.pdf-preview table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
    margin-bottom: 24px;
}

.pdf-preview th {
    background: #f1f1f2;
    text-align: left;
    padding: 8px;
    color: #666;
    font-weight: 600;
}

.pdf-preview td {
    padding: 8px;
    border-top: 1px solid #eee;
    color: #333;
}

.pdf-preview .pdf-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.pdf-preview .pdf-summary .pdf-value {
    color: #0066cc;
}

.pdf-preview .sample-note-inline {
    background: #fff8e6;
    border: 1px solid #ffe4a3;
    color: #8a6416;
    font-size: 11.5px;
    padding: 10px 12px;
    border-radius: 6px;
    margin-bottom: 20px;
}

/* Comparable sales gets blurred in the on-page preview — format is
   visible, exact addresses/prices are the reason to buy. */
.pdf-preview .comps-blur-wrap {
    position: relative;
    margin-bottom: 24px;
}

.pdf-preview .comps-blur-wrap table {
    margin-bottom: 0;
}

.pdf-preview .comps-blur-wrap tbody {
    filter: blur(5px);
    user-select: none;
}

.pdf-preview .comps-unlock-hint {
    position: absolute;
    left: 0;
    right: 0;
    top: 33px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.55);
    color: #0a2342;
    font-weight: 700;
    font-size: 12px;
    text-align: center;
    padding: 0 20px;
}

.pdf-preview .pdf-footer {
    border-top: 1px solid #eee;
    padding-top: 12px;
    font-size: 10px;
    color: #999;
    text-align: center;
}

.pdf-lock-note {
    text-align: center;
    color: #777;
    font-size: 13px;
    margin-top: 24px;
}

.pdf-lock-note strong {
    color: #d64545;
}

.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-top: 1px solid var(--border);
    padding: 26px 0;
    transition: padding 0.2s ease;
}

.faq-item:last-child {
    border-bottom: 1px solid var(--border);
}

.faq-q {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
    cursor: pointer;
    user-select: none;
}

.faq-q::before {
    content: "+ ";
    color: var(--accent-dark);
    font-weight: 700;
}

.faq-item.open .faq-q::before {
    content: "− ";
}

/* Animates real height (JS-measured px, see feedback.js's
   initFaqAccordion) rather than max-height. max-height is a CEILING, not a
   target size — once its animated value crosses the content's natural
   height the box simply can't render any taller, so a back-ease's
   overshoot portion (briefly exceeding the target before settling) is
   completely invisible with max-height, no matter how exact the target is.
   height is a forced size instead of a cap: the box can genuinely grow
   past its content's natural height for a moment and spring back down —
   that's the actual mechanism behind a visible "drop with a bounce".
   No JS fallback needed beyond the .open rule below: 0 -> a concrete pixel
   value (set by JS) transitions/animates normally, but 0 -> auto (if JS
   never sets an inline height) can't be interpolated at all, so browsers
   snap it instantly — functional without JS, just unanimated, same
   "nothing gets stuck hidden" fail-soft principle as the rest of this
   file.
   Opening uses a back-ease (springs past full height, settles) for the
   "organic drop" feel; closing intentionally uses a plain ease-in-out
   instead — overshooting *closed* has nothing to spring into, so bouncing
   there just looks like jitter, not motion. */
.faq-a {
    color: var(--muted);
    line-height: 1.8;
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

.faq-a a { color: var(--accent-dark); font-weight: 600; }

.faq-item.open .faq-a {
    height: auto;
    opacity: 1;
    transition: height 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    .faq-a, .faq-item.open .faq-a { transition: none; }
}

/* ---------- FAQ dark band (index.html only) ----------
   Scoped to .section-band-faq rather than redefining .faq-* directly —
   pricing.html reuses .faq-section/.faq-item/.faq-q/.faq-a on a light
   background and must be unaffected. Same --hero-bg/--hero-ink/--hero-muted
   palette as .section-band-features/.procurement-band/.hero. */
.section-band-faq {
    background: var(--hero-bg);
    background-image:
        radial-gradient(circle at 90% 0%, rgba(255, 77, 77, 0.12) 0%, rgba(255, 77, 77, 0) 45%),
        radial-gradient(circle at 8% 100%, #1c1c20 0%, var(--hero-bg) 60%);
}

.section-band-faq .section {
    border-top: none;
}

.section-band-faq .section h2 {
    color: var(--hero-ink);
}

.section-band-faq .faq-item {
    border-top-color: rgba(255, 255, 255, 0.14);
}

.section-band-faq .faq-item:last-child {
    border-bottom-color: rgba(255, 255, 255, 0.14);
}

.section-band-faq .faq-q {
    color: var(--hero-ink);
}

.section-band-faq .faq-q::before {
    color: var(--accent);
}

.section-band-faq .faq-a {
    color: var(--hero-muted);
}

.section-band-faq .faq-a a {
    color: var(--accent);
}

/* ---------- Cursor-follower tracker (index.html only) ----------
   Element only exists in index.html's markup, so no extra scoping needed.
   mix-blend-mode: lighten is a deliberate flip from the original darken
   spec: lighten takes the per-channel max against the backdrop, so over
   the page's dark bands (hero/.procurement-band/.section-band-*, all
   ~#0a0a0c) it renders as the full saturated red, while over white/light
   sections every channel maxes out to white and the dot effectively
   disappears. Net effect: the tracker is only visible over dark bands. */
#tracker {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: #ff4d4d;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.6;
    mix-blend-mode: lighten;
    transform: translate(-50%, -50%);
    will-change: transform;
    filter: url(#ripple-filter);
    box-shadow: 0 0 10px rgba(255, 77, 77, 0.5);
}

/* ---------- Footer (all pages) ---------- */
footer {
    border-top: 1px solid var(--border);
    color: var(--faint);
    font-size: 13px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 60px 40px 36px;
    text-align: left;
}

.footer-grid .footer-brand {
    font-weight: 800;
    color: var(--ink);
    font-size: 18px;
    margin-bottom: 12px;
}

.footer-logo-img {
    display: block;
    height: 44px;
    width: auto;
}

.footer-grid > div > p {
    color: var(--faint);
    font-size: 13.5px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--faint);
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-col a {
    display: block;
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 11px;
}

.footer-col a:hover {
    color: var(--ink);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 22px 40px;
    text-align: center;
    color: var(--faint);
    font-size: 13px;
}

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

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-visual {
        height: 350px;
    }

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

    .roi-math {
        grid-template-columns: 1fr;
    }

    .stat-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .crisis-section,
    .final-cta {
        padding: 40px 20px;
    }

    .pdf-preview .pdf-grid,
    .pdf-preview .pdf-summary {
        grid-template-columns: 1fr 1fr;
    }

    .section,
    .demo-section {
        padding: 50px 20px;
    }

    .cta-group {
        flex-direction: column;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }

    .page-hero {
        padding: 44px 20px 50px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .prose {
        padding: 50px 20px;
    }

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

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

/* Entrance/reveal animation is handled by GSAP where present.
   .fade-in is kept only as a JS selector hook — intentionally
   unstyled here so content stays visible if the GSAP CDN fails. */

/* Hero h1 is split into per-character spans by JS for the stagger-in
   effect. inline-block is required for GSAP's y-transform to apply per
   character; white-space:nowrap on .split-word stops a word from
   wrapping mid-character. No opacity here — if GSAP/JS never runs the
   heading still renders as plain, fully-visible text. */
.hero-content h1 .split-word {
    display: inline-block;
    white-space: nowrap;
}

.hero-content h1 .split-char {
    display: inline-block;
}

/* ---------- Pricing ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
    align-items: stretch;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 38px 32px;
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.price-card.featured {
    border: 2px solid var(--accent);
    box-shadow: 0 12px 32px rgba(255, 77, 77, 0.16);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 28px;
    background: var(--accent);
    color: #0a0a0c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
}

.price-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--faint);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -2px;
}

.price-amount-text {
    font-size: 26px;
    letter-spacing: -0.5px;
    padding: 11px 0;
}

.price-unit {
    font-size: 16px;
    font-weight: 500;
    color: var(--faint);
    letter-spacing: 0;
}

.price-per {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-dark);
    margin-top: 6px;
}

.price-error {
    display: none;
    color: #d64545;
    font-size: 13px;
    margin-top: 12px;
}

.price-blurb {
    color: var(--muted);
    font-size: 14px;
    margin: 12px 0 20px;
    min-height: 42px;
}

.price-features {
    list-style: none;
    margin-bottom: 28px;
    flex-grow: 1;
}

.price-features li {
    font-size: 14px;
    color: #444;
    padding: 7px 0 7px 24px;
    position: relative;
}

.price-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.price-cta {
    width: 100%;
    text-align: center;
}

.cta-secondary.price-cta {
    border: 1px solid #dcdcdc;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
}

button:disabled,
.cta-primary[aria-disabled="true"] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* ---------- Live sample result (see .pdf-preview below for the
   actual demo-content markup) ---------- */

.demo-error {
    background: rgba(220, 38, 38, 0.06);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #b03030;
    padding: 16px 18px;
    border-radius: 8px;
    font-size: 14px;
}

/* ---------- Internal test section ---------- */

.internal-badge {
    display: inline-block;
    background: #fff3cd;
    color: #92620a;
    border: 1px solid #ffc107;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 9px;
    border-radius: 10px;
    vertical-align: middle;
    margin-left: 8px;
}

.pipeline-status {
    text-align: left;
    font-size: 13px;
    line-height: 1.7;
    background: #f6f6f6;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 20px;
}
.pipeline-status-real { border-color: #8fce9a; background: #f2fbf3; }
.pipeline-status-mock { border-color: #ffc107; background: #fffbea; }

.test-full-section { background: #fdf6e3; }

/* =================================================================
   Shared multi-page site components (Features / Pricing / How It
   Works / Case Study / Blog / About / Legal pages)
   ================================================================= */

/* ---------- Subpage header band ---------- */
.page-hero {
    background: var(--hero-bg);
    background-image: radial-gradient(circle at 85% 20%, #1c1c20 0%, var(--hero-bg) 60%);
    padding: 64px 40px 72px;
}

.page-hero-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.breadcrumbs {
    font-size: 13px;
    color: var(--hero-muted);
    margin-bottom: 22px;
}

.breadcrumbs a {
    color: var(--hero-muted);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--hero-ink);
}

.breadcrumbs .sep {
    margin: 0 8px;
    opacity: 0.5;
}

.page-hero h1 {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -1.2px;
    color: var(--hero-ink);
    margin-bottom: 16px;
    line-height: 1.15;
}

.page-hero p.lede {
    font-size: 18px;
    color: var(--hero-muted);
    max-width: 660px;
    line-height: 1.7;
}

/* ---------- Procurement / "field notes" dark band (homepage) ----------
   Third reusable dark component alongside .hero-band and .page-hero — reuses
   the same --hero-bg/--hero-ink/--hero-muted trio rather than inventing new
   dark colors. Uses Inter's own italic/weight/letter-spacing/uppercase
   variations to approximate a serif-italic headline and mono-style
   eyebrow/tab labels (same substitute pattern as .crisis-eyebrow elsewhere
   on this page) — no serif or mono font added.
   Fails soft: .procurement-strike-line's resting width is already its final
   "drawn in" state (104%) so the strikethrough always reads correctly with
   no JS; GSAP only adds the draw-in animation on top. */
.procurement-band {
    position: relative;
    overflow: hidden;
    background: var(--hero-bg);
    background-image:
        radial-gradient(circle at 10% 0%, rgba(255, 77, 77, 0.14) 0%, rgba(255, 77, 77, 0) 45%),
        radial-gradient(circle at 88% 100%, #1c1c20 0%, var(--hero-bg) 60%);
    padding: 96px 40px 100px;
}

.procurement-inner {
    position: relative;
    max-width: 1160px;
    margin: 0 auto;
}

/* Generic eyebrow label — same dot-pulse pattern as .crisis-eyebrow /
   .procurement-eyebrow above, reused across the sections that don't have
   their own bespoke variant. .centered is opt-in since this is display:flex
   (block-level, full-width), not inline-flex, so it won't auto-center from
   an ancestor's text-align the way .feature-cards-eyebrow/.compare-eyebrow
   do. */
.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

.section-eyebrow.centered {
    justify-content: center;
}

.section-eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.6);
    flex-shrink: 0;
}

.procurement-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 22px;
}

.procurement-eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.6);
    flex-shrink: 0;
}

.procurement-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 22px;
    font-size: clamp(30px, 4.6vw, 50px);
    font-weight: 800;
    letter-spacing: -1.1px;
    line-height: 1.18;
    color: var(--hero-ink);
}

.procurement-accent {
    font-style: italic;
    font-weight: 800;
    color: var(--accent);
}

.procurement-strike-wrap {
    position: relative;
    display: inline-block;
}

.procurement-struck {
    color: var(--hero-muted);
}

.procurement-strike-line {
    position: absolute;
    left: -2%;
    top: 54%;
    width: 104%; /* fail-soft default = fully drawn; GSAP only animates FROM 0 up to this */
    height: 2px;
    background: var(--accent);
    transform: translateY(-50%) rotate(-2deg);
    pointer-events: none;
}

.procurement-subhead {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 60px;
    color: var(--hero-muted);
    font-size: 17px;
    line-height: 1.7;
}

.procurement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.procurement-card {
    position: relative;
    padding: 40px 36px 36px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.procurement-card:first-child {
    border-left: none;
}

.procurement-card:hover {
    transform: translateY(-3px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.procurement-corner {
    position: absolute;
    top: 28px;
    right: 32px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--hero-muted);
    opacity: 0.6;
}

.procurement-icon {
    display: block;
    width: 28px;
    height: 28px;
    color: var(--accent);
    margin-bottom: 22px;
}

.procurement-icon svg {
    width: 100%;
    height: 100%;
}

.procurement-tab {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.procurement-card-title {
    font-style: italic;
    font-weight: 700;
    font-size: 21px;
    letter-spacing: -0.3px;
    color: var(--hero-ink);
    margin-bottom: 10px;
}

.procurement-card-body {
    max-width: 30ch;
    color: var(--hero-muted);
    font-size: 14.5px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .procurement-band {
        padding: 72px 24px 80px;
    }

    .procurement-grid {
        grid-template-columns: 1fr;
        border-top: none;
    }

    .procurement-card {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
        padding: 32px 4px 32px;
    }

    .procurement-card:first-child {
        border-top: none;
    }
}

/* ---------- Long-form content (blog posts, about, case study) ---------- */
.prose {
    max-width: 740px;
    margin: 0 auto;
    padding: 80px 40px;
}

.prose h2 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--ink);
    margin: 44px 0 18px;
}

.prose h2:first-child {
    margin-top: 0;
}

.prose h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
    margin: 30px 0 12px;
}

.prose p {
    font-size: 16.5px;
    line-height: 1.85;
    color: #333;
    margin-bottom: 20px;
}

.prose ul,
.prose ol {
    margin: 0 0 20px 22px;
    color: #333;
    font-size: 16.5px;
    line-height: 1.85;
}

.prose li {
    margin-bottom: 8px;
}

.prose a {
    color: var(--accent-dark);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--accent-border);
    text-underline-offset: 3px;
}

.prose a:hover {
    color: var(--ink);
}

.prose blockquote {
    border-left: 3px solid var(--accent);
    padding: 4px 0 4px 22px;
    margin: 28px 0;
    color: var(--muted);
    font-size: 17px;
    font-style: italic;
}

.prose .lede {
    font-size: 19px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 8px;
}

.prose .prose-cta {
    margin-top: 40px;
    padding-top: 8px;
}

/* ---------- Blog listing ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.blog-card {
    display: block;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.blog-card .blog-meta {
    font-size: 12.5px;
    color: var(--faint);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.35;
}

.blog-card p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: 14px;
}

.blog-card .read-more {
    color: var(--accent-dark);
    font-size: 13.5px;
    font-weight: 700;
}

.post-byline {
    font-size: 13.5px;
    color: var(--faint);
    margin-bottom: 6px;
}

/* ---------- Disclaimer / illustrative-content note ---------- */
.disclaimer-note {
    background: #fff8e6;
    border: 1px solid #ffe4a3;
    color: #8a6416;
    font-size: 13.5px;
    line-height: 1.6;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin: 0 auto 10px;
    max-width: 740px;
}

/* ---------- Detail blocks (Features / How It Works deep dives) ---------- */
.detail-block {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 22px;
    padding: 34px 0;
    border-top: 1px solid var(--border);
}

.detail-block:first-of-type {
    border-top: none;
}

.detail-block .detail-icon {
    font-size: 28px;
}

.detail-block h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.detail-block p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.detail-block ul {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.8;
    padding-left: 18px;
}

/* ---------- Partner / integration ticker ---------- */
.ticker {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--surface);
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 90px, #000 calc(100% - 90px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 90px, #000 calc(100% - 90px), transparent 100%);
}

.ticker__label {
    display: block;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--faint);
    margin-bottom: 22px;
}

.ticker__track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: ticker-scroll 30s linear infinite;
}

.ticker:hover .ticker__track,
.ticker:focus-within .ticker__track {
    animation-play-state: paused;
}

.ticker__group {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-right: 4rem;
    flex: 0 0 auto;
}

@keyframes ticker-scroll {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .ticker__track { animation: none; }
    .ticker { -webkit-mask-image: none; mask-image: none; }
    .ticker__group:last-child { display: none; }
    .ticker__group { flex-wrap: wrap; justify-content: center; row-gap: 1.5rem; }
}

.ticker .wm {
    display: flex;
    align-items: center;
    gap: 9px;
    height: 28px;
    color: var(--ink);
    opacity: 0.55;
    filter: grayscale(1);
    white-space: nowrap;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.01em;
    transition: opacity 0.2s ease, filter 0.2s ease;
}

.ticker .wm:hover {
    opacity: 1;
    filter: grayscale(0);
}

.ticker .wm svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.ticker .wm-logo {
    height: 24px;
    width: auto;
    flex-shrink: 0;
    display: block;
}

.ticker__disclaimer {
    text-align: center;
    font-size: 10.5px;
    color: var(--faint);
    opacity: 0.7;
    margin: 14px 24px 0;
}
