/* =============================================================================
   carrierconfirm.com — design system
   Enterprise trust · ink-and-verify-green · 10/10 modern professional
   ============================================================================= */

/* ---------- Tokens ---------------------------------------------------- */
:root {
    /* Color · ink stack */
    --cc-ink:        #08111F;   /* primary ink — body / dark sections */
    --cc-ink-2:      #0F1B2D;   /* hover / nested */
    --cc-ink-3:      #1A2A40;   /* card on dark */
    --cc-steel:      #2B3B53;   /* borders on dark */
    --cc-text:       #0B1220;   /* primary text on light */
    --cc-text-2:     #364257;   /* body text */
    --cc-mute:       #5B6577;   /* labels */
    --cc-faint:      #8993A4;   /* tertiary */

    /* Color · paper */
    --cc-paper:      #FFFFFF;
    --cc-bone:       #F4F6FA;
    --cc-bone-2:     #ECEFF5;
    --cc-line:       #E2E7EF;
    --cc-line-2:     #D2D9E5;
    --cc-line-d:     rgba(255,255,255,.10);  /* hairline on ink */
    --cc-line-d2:    rgba(255,255,255,.18);  /* hairline on ink, stronger */

    /* Color · brand */
    --cc-green:      #16C784;   /* verification green — primary brand */
    --cc-green-2:    #0FA66E;   /* hover */
    --cc-green-3:    #0B7A4F;   /* pressed / dark text */
    --cc-green-bg:   #E6FAF1;   /* tinted bg on light */

    --cc-amber:      #F4A012;   /* watch / partial */
    --cc-amber-bg:   #FFF4DD;
    --cc-red:        #E03A2A;   /* fail / fraud */
    --cc-red-bg:     #FCE7E5;
    --cc-blue:       #2563EB;   /* link/info */

    /* Type */
    --ff-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    --ff-mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

    /* Radius / shadow / motion */
    --r-xs: 4px;
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 14px;
    --r-xl: 20px;
    --r-pill: 999px;

    --shadow-1: 0 1px 2px rgba(8,17,31,.04), 0 1px 1px rgba(8,17,31,.03);
    --shadow-2: 0 1px 3px rgba(8,17,31,.06), 0 8px 18px -8px rgba(8,17,31,.10);
    --shadow-3: 0 2px 6px rgba(8,17,31,.07), 0 24px 48px -20px rgba(8,17,31,.18);
    --shadow-glow: 0 0 0 1px rgba(22,199,132,.15), 0 8px 28px -8px rgba(22,199,132,.30);

    --t-fast: 120ms cubic-bezier(.4,0,.2,1);
    --t-mid:  220ms cubic-bezier(.4,0,.2,1);

    /* Layout */
    --container: 1240px;
    --container-narrow: 980px;
    --pad-section: 96px;
    --pad-section-md: 72px;
    --pad-section-sm: 48px;
}

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    margin: 0;
    font-family: var(--ff-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--cc-text);
    background: var(--cc-paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.2rem; margin: 0 0 1em; }
button { font-family: inherit; }
hr { border: 0; border-top: 1px solid var(--cc-line); margin: 2rem 0; }

a { color: var(--cc-green-3); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--cc-green-2); }
a:focus-visible {
    outline: 2px solid var(--cc-green);
    outline-offset: 2px;
    border-radius: 3px;
}

::selection { background: var(--cc-green); color: var(--cc-ink); }

/* ---------- Utilities ------------------------------------------------ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.visually-hidden {
    position: absolute !important;
    clip: rect(1px,1px,1px,1px);
    width: 1px; height: 1px;
    overflow: hidden; white-space: nowrap;
}
.skip-link {
    position: absolute; top: -100px; left: 16px;
    background: var(--cc-green); color: var(--cc-ink);
    padding: 10px 16px; border-radius: var(--r-md);
    font-weight: 700; z-index: 200;
}
.skip-link:focus { top: 16px; color: var(--cc-ink); }

.muted { color: var(--cc-mute); }
.mono { font-family: var(--ff-mono); }

/* ---------- Typography ----------------------------------------------- */
h1, h2, h3, h4, h5 {
    font-family: var(--ff-sans);
    color: var(--cc-text);
    margin: 0 0 .5em;
    letter-spacing: -.02em;
    font-weight: 700;
    line-height: 1.15;
}
h1 {
    font-size: clamp(2.4rem, 5vw, 4.1rem);
    letter-spacing: -.035em;
    font-weight: 800;
    line-height: 1.05;
}
h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    letter-spacing: -.025em;
    font-weight: 800;
}
h3 {
    font-size: 1.18rem;
    font-weight: 700;
    letter-spacing: -.01em;
}
h4 {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--cc-mute);
}

p { margin: 0 0 1em; color: var(--cc-text-2); }

/* Defensive: bare <p> tags inside any dark-themed wrapper inherit the
   wrapper's white-ish text color instead of the global dark-slate above,
   which would otherwise render as dark-on-dark. `:where()` keeps the
   specificity at the same level as the global `p` rule so any explicit
   per-component override (`.section--ink p`, `.cc-foot-blurb`, etc.)
   still wins. Add new dark wrappers to the list as they're introduced. */
:where(.section--ink, .hero, .cc-foot, .cc-foot-cta) p {
    color: inherit;
}

.accent { color: var(--cc-green); }

.eyebrow {
    display: inline-flex; align-items: center; gap: .55rem;
    font-family: var(--ff-mono);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--cc-green-3);
    font-weight: 600;
    margin-bottom: 1.1rem;
}
.eyebrow--light { color: var(--cc-green); }
.eyebrow--light::before,
.eyebrow::before {
    content: '';
    width: 18px;
    height: 2px;
    background: var(--cc-green);
}
.eyebrow .fa-circle {
    color: var(--cc-green);
    font-size: .55rem;
    animation: cc-blink 1.6s ease-in-out infinite;
}
@keyframes cc-blink { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

.section-title {
    font-size: clamp(1.8rem, 3.4vw, 2.8rem);
    margin-bottom: .6rem;
    letter-spacing: -.025em;
}
.section-title--light { color: #fff; }

.section-lede {
    font-size: 1.06rem;
    color: var(--cc-text-2);
    max-width: 64ch;
    margin: 0 0 2.4rem;
    line-height: 1.65;
}
.section-lede--light { color: rgba(255,255,255,.78); }

.sec-head--center {
    text-align: center;
}
.sec-head--center .section-lede {
    margin-left: auto; margin-right: auto;
}
.sec-head--center .eyebrow {
    justify-content: center;
}

/* ---------- Buttons -------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: .55rem;
    padding: .85rem 1.35rem;
    font-family: var(--ff-sans);
    font-weight: 600;
    font-size: .95rem;
    line-height: 1;
    border: 1px solid transparent;
    border-radius: var(--r-md);
    cursor: pointer;
    transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
    text-decoration: none;
    white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--cc-green); outline-offset: 3px; }

.btn--primary {
    /* Shifted from cc-green (#16C784) to cc-green-2 (#0FA66E) so white text
       contrast climbs from ~3.3:1 to ~3.9:1 — still in the "AA-large" band
       but visibly tighter at button text size (1rem, 600 weight). The
       cc-green-3 border seats the button visually on both light and dark
       backgrounds; hover-state pushes contrast to ~6.2:1 (clear AA pass)
       so interactive feedback is crisp. */
    background: var(--cc-green-2);
    color: #fff;
    border-color: var(--cc-green-3);
    box-shadow: 0 1px 0 rgba(8,17,31,.18), inset 0 1px 0 rgba(255,255,255,.18);
    font-weight: 600;
}
.btn--primary:hover {
    background: var(--cc-green-3);
    border-color: var(--cc-green-3);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

.btn--ink {
    background: var(--cc-ink);
    color: #fff;
    border-color: var(--cc-ink);
}
.btn--ink:hover {
    background: var(--cc-ink-2);
    border-color: var(--cc-ink-2);
    color: #fff;
    transform: translateY(-1px);
}
.btn--ink[disabled] {
    opacity: .55; cursor: not-allowed;
    transform: none;
}

.btn--ghost {
    background: transparent;
    color: var(--cc-text);
    border-color: var(--cc-line-2);
}
.btn--ghost:hover {
    background: var(--cc-bone);
    border-color: var(--cc-text);
    color: var(--cc-text);
}

.btn--ghost-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.30);
}
.btn--ghost-light:hover {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.6);
    color: #fff;
}

.btn--sm  { padding: .58rem .9rem;  font-size: .87rem; }
.btn--lg  { padding: 1rem 1.55rem;  font-size: 1rem; }
.btn--xl  { padding: 1.1rem 1.85rem; font-size: 1.05rem; border-radius: var(--r-md); }
.btn--block { width: 100%; }

/* ---------- Pills / dots --------------------------------------------- */
.dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--cc-green);
    box-shadow: 0 0 0 4px rgba(22,199,132,.18);
    margin-right: .4rem;
    vertical-align: middle;
}
.dot--live { background: var(--cc-green); }
.dot--beta { background: var(--cc-amber); box-shadow: 0 0 0 4px rgba(244,160,18,.18); }

/* =============================================================================
   HEADER / NAV
   ============================================================================= */
.cc-nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.cc-nav.is-scrolled {
    border-bottom-color: var(--cc-line);
    box-shadow: 0 1px 0 rgba(8,17,31,.02), 0 8px 24px -16px rgba(8,17,31,.12);
}
.cc-nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.cc-brand {
    display: inline-flex; align-items: center; gap: .55rem;
    color: var(--cc-text);
    font-weight: 800;
    font-size: 1.12rem;
    letter-spacing: -.02em;
    text-decoration: none;
}
.cc-brand-mark {
    display: inline-grid; place-items: center;
    width: 32px; height: 32px;
    border-radius: var(--r-sm);
    background: var(--cc-ink);
    color: var(--cc-green);
    font-size: 1rem;
    box-shadow: 0 1px 2px rgba(8,17,31,.18), inset 0 0 0 1px rgba(255,255,255,.04);
}
.cc-brand-word {
    letter-spacing: -.02em;
}
.cc-brand-word .accent { color: var(--cc-green-3); }
.cc-brand:hover { color: var(--cc-text); }

.cc-nav-links {
    flex: 1;
    display: flex;
    justify-content: center;
}
.cc-nav-links ul {
    list-style: none;
    margin: 0; padding: 0;
    display: flex; align-items: center;
    gap: 4px;
}
.cc-nav-links a,
.cc-nav-links .dd-trigger {
    display: inline-flex; align-items: center; gap: .35rem;
    padding: .55rem .85rem;
    border-radius: var(--r-sm);
    color: var(--cc-text-2);
    font-weight: 500;
    font-size: .94rem;
    text-decoration: none;
    background: transparent;
    border: 0;
    cursor: pointer;
}
.cc-nav-links a:hover,
.cc-nav-links .dd-trigger:hover {
    color: var(--cc-text);
    background: var(--cc-bone);
}
.cc-nav-links .dd-trigger .fa-chevron-down {
    font-size: .65rem;
    transition: transform var(--t-fast);
    color: var(--cc-mute);
}
.cc-nav-links .has-dropdown { position: relative; }
.cc-nav-links .has-dropdown.is-open .dd-trigger .fa-chevron-down,
.cc-nav-links .has-dropdown:hover .dd-trigger .fa-chevron-down {
    transform: rotate(180deg);
}

.cc-nav-links .dropdown {
    position: absolute;
    top: calc(100% + 4px); left: 50%;
    transform: translateX(-50%) translateY(-4px);
    min-width: 460px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--cc-line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-3);
    opacity: 0; pointer-events: none;
    transition: opacity var(--t-fast), transform var(--t-fast);
}
.cc-nav-links .has-dropdown:hover .dropdown,
.cc-nav-links .has-dropdown.is-open .dropdown {
    opacity: 1; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.dd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}
.dd-item {
    display: flex; gap: .85rem;
    padding: 12px;
    border-radius: var(--r-md);
    text-decoration: none;
    color: var(--cc-text);
    transition: background var(--t-fast);
}
.dd-item:hover {
    background: var(--cc-bone);
    color: var(--cc-text);
}
.dd-ic {
    flex: 0 0 auto;
    width: 36px; height: 36px;
    display: grid; place-items: center;
    border-radius: var(--r-sm);
    background: var(--cc-green-bg);
    color: var(--cc-green-3);
    font-size: 1rem;
}
.dd-tx { display: flex; flex-direction: column; gap: 2px; }
.dd-h {
    font-weight: 600; font-size: .94rem;
    color: var(--cc-text);
}
.dd-l {
    font-size: .82rem;
    color: var(--cc-mute);
    line-height: 1.4;
}

.cc-nav-cta {
    display: inline-flex; align-items: center; gap: 12px;
}
.cc-login {
    display: inline-flex; align-items: center; gap: .4rem;
    color: var(--cc-text-2);
    font-weight: 600;
    font-size: .92rem;
    text-decoration: none;
    padding: .55rem .8rem;
    border-radius: var(--r-sm);
}
.cc-login:hover { color: var(--cc-text); background: var(--cc-bone); }

.cc-menu-btn {
    display: none;
    background: transparent;
    border: 1px solid var(--cc-line);
    border-radius: var(--r-sm);
    width: 40px; height: 40px;
    cursor: pointer;
}
.cc-menu-btn .bars { display: inline-flex; flex-direction: column; gap: 4px; }
.cc-menu-btn .bars span {
    width: 18px; height: 2px;
    background: var(--cc-text);
    border-radius: 2px;
    transition: transform var(--t-fast), opacity var(--t-fast);
}
.cc-menu-btn.is-open .bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.cc-menu-btn.is-open .bars span:nth-child(2) { opacity: 0; }
.cc-menu-btn.is-open .bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1080px) {
    .cc-nav-links {
        position: fixed;
        top: 64px; left: 0; right: 0; bottom: 0;
        background: #fff;
        border-top: 1px solid var(--cc-line);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 12px 0 24px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform var(--t-mid);
    }
    .cc-nav-links.is-open { transform: translateX(0); }
    .cc-nav-links ul {
        flex-direction: column;
        align-items: stretch;
        padding: 0 16px;
    }
    .cc-nav-links a,
    .cc-nav-links .dd-trigger {
        padding: .85rem 1rem;
        font-size: 1rem;
        justify-content: space-between;
    }
    .cc-nav-links .dropdown {
        position: static;
        transform: none;
        min-width: 0;
        margin: 4px 0;
        box-shadow: none;
        border-color: var(--cc-line);
        background: var(--cc-bone);
        opacity: 1; pointer-events: auto;
        display: none;
    }
    .cc-nav-links .has-dropdown.is-open .dropdown { display: block; }
    .cc-nav-cta { gap: 8px; }
    .cc-nav-cta .cc-login span { display: none; }
    .cc-menu-btn { display: inline-flex; align-items: center; justify-content: center; }
    body.cc-nav-locked { overflow: hidden; }
}

@media (max-width: 560px) {
    .cc-nav-cta .btn--sm span { display: none; }
}

/* =============================================================================
   SECTIONS — base padding + variants
   ============================================================================= */
.section {
    padding: var(--pad-section) 0;
    background: var(--cc-paper);
}
.section--paper { background: var(--cc-paper); }
.section--bone  { background: var(--cc-bone); }
.section--ink {
    background: var(--cc-ink);
    background-image:
        radial-gradient(1200px 600px at 80% -10%, rgba(22,199,132,.10), transparent 60%),
        radial-gradient(900px 500px at 0% 110%, rgba(37,99,235,.08), transparent 60%);
    color: rgba(255,255,255,.86);
}
.section--ink p { color: rgba(255,255,255,.74); }
.section--tight {
    padding: 36px 0;
}

@media (max-width: 768px) {
    .section { padding: var(--pad-section-md) 0; }
}

/* =============================================================================
   HERO
   ============================================================================= */
.hero {
    position: relative;
    background: var(--cc-ink);
    color: #fff;
    padding: clamp(72px, 10vw, 128px) 0 56px;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    pointer-events: none;
}
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(1200px 700px at 60% 30%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(1200px 700px at 60% 30%, #000 30%, transparent 80%);
}
.hero-glow {
    position: absolute;
    width: 900px; height: 900px;
    top: -300px; right: -200px;
    background: radial-gradient(closest-side, rgba(22,199,132,.18), transparent 70%);
    filter: blur(20px);
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}

.hero-copy h1 {
    color: #fff;
    margin-bottom: 1.1rem;
}
.hero-copy h1 .accent {
    color: var(--cc-green);
    background: linear-gradient(180deg, var(--cc-green), #4FE3A8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-sub {
    font-size: 1.13rem;
    color: rgba(255,255,255,.78);
    max-width: 60ch;
    margin: 0 0 2rem;
    line-height: 1.65;
}
.hero-ctas {
    display: flex; gap: 12px; flex-wrap: wrap;
    margin-bottom: 1.6rem;
}
.hero-trust {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-wrap: wrap; gap: 18px;
    font-size: .9rem;
    color: rgba(255,255,255,.7);
}
.hero-trust li {
    display: inline-flex; align-items: center; gap: .4rem;
}
.hero-trust .fa-check {
    color: var(--cc-green);
}

/* Hero live demo screen */
.hero-screen {
    background: #0F1B2D;
    border: 1px solid var(--cc-steel);
    border-radius: var(--r-lg);
    box-shadow: 0 30px 80px -30px rgba(0,0,0,.6), 0 0 0 1px rgba(22,199,132,.10);
    overflow: hidden;
    transform: rotate(-.4deg);
}
.ls-head {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px;
    background: #08111F;
    border-bottom: 1px solid var(--cc-steel);
}
.ls-dots {
    display: inline-flex; gap: 6px;
}
.ls-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #2B3B53;
}
.ls-dots span:first-child { background: #E03A2A; }
.ls-dots span:nth-child(2) { background: #F4A012; }
.ls-dots span:last-child  { background: var(--cc-green); }
.ls-url {
    flex: 1;
    background: #14223a;
    border-radius: var(--r-sm);
    padding: 6px 10px;
    font-family: var(--ff-mono);
    font-size: .76rem;
    color: rgba(255,255,255,.65);
    display: inline-flex; align-items: center; gap: .4rem;
}
.ls-url .fa-lock { color: var(--cc-green); }

.ls-body {
    padding: 18px;
    background:
        radial-gradient(600px 200px at 90% 0%, rgba(22,199,132,.06), transparent 60%),
        #0F1B2D;
}
.ls-carrier {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--cc-steel);
    margin-bottom: 12px;
}
.ls-logo {
    width: 40px; height: 40px;
    border-radius: var(--r-sm);
    background: var(--cc-green);
    color: var(--cc-ink);
    font-weight: 800;
    display: grid; place-items: center;
    font-size: .92rem;
    letter-spacing: -.02em;
}
.ls-name { color: #fff; font-weight: 700; font-size: 1rem; }
.ls-meta {
    font-size: .8rem;
    color: rgba(255,255,255,.6);
}
.ls-status {
    display: inline-flex; align-items: center;
    font-size: .78rem;
    color: rgba(255,255,255,.78);
    padding: .35rem .65rem;
    background: rgba(22,199,132,.08);
    border: 1px solid rgba(22,199,132,.25);
    border-radius: var(--r-pill);
}

.live-demo {
    display: flex; flex-direction: column; gap: 8px;
}
.ld-row {
    display: grid;
    grid-template-columns: 24px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--cc-steel);
    border-radius: var(--r-sm);
    color: rgba(255,255,255,.75);
    font-size: .88rem;
    opacity: .35;
    transform: translateX(-6px);
    transition: opacity 320ms ease, transform 320ms ease, border-color 320ms ease, background 320ms ease;
}
.ld-row > i:first-child {
    color: var(--cc-green);
}
.ld-row .check {
    color: rgba(255,255,255,.35);
    font-size: 1rem;
}
.ld-row.is-on {
    opacity: 1;
    transform: translateX(0);
    border-color: rgba(22,199,132,.35);
    background: rgba(22,199,132,.06);
}
.ld-row.is-on .check {
    color: var(--cc-green);
}
.ld-row--warn.is-on {
    border-color: rgba(244,160,18,.4);
    background: rgba(244,160,18,.07);
}
.ld-row--warn > i:first-child {
    color: var(--cc-amber);
}
.ld-row--warn.is-on .check {
    color: var(--cc-amber);
}

.ls-foot {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--cc-steel);
}
.ls-clock {
    color: rgba(255,255,255,.7);
    font-size: .85rem;
}
.ls-clock strong {
    color: #fff;
    font-family: var(--ff-mono);
    font-weight: 600;
}

/* Logo strip */
.logo-strip {
    margin-top: 64px;
    padding: 28px 24px;
    border-top: 1px solid var(--cc-line-d);
    display: flex; flex-direction: column; gap: 14px;
    align-items: center;
}
.logo-strip-lbl {
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(255,255,255,.5);
    font-weight: 600;
}
.logo-strip-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-wrap: wrap;
    gap: 8px 36px;
    justify-content: center;
}
.logo-strip-list li {
    color: rgba(255,255,255,.78);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -.01em;
}

@media (max-width: 1080px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-screen { transform: none; }
}

/* =============================================================================
   FRAUD REALITY — stat grid + types
   ============================================================================= */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 56px;
}
.stat-card {
    background: var(--cc-paper);
    border: 1px solid var(--cc-line);
    border-radius: var(--r-lg);
    padding: 28px;
    transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.stat-card:hover {
    border-color: var(--cc-line-2);
    transform: translateY(-1px);
    box-shadow: var(--shadow-2);
}
.stat-num {
    font-family: var(--ff-mono);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--cc-text);
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: 12px;
}
.stat-lbl {
    font-size: .96rem;
    color: var(--cc-text-2);
    margin-bottom: 12px;
    line-height: 1.45;
}
.stat-cite {
    font-family: var(--ff-mono);
    font-size: .72rem;
    color: var(--cc-mute);
    text-transform: none;
    letter-spacing: 0;
    border-top: 1px solid var(--cc-line);
    padding-top: 12px;
}

.fraud-types h3 {
    font-size: 1.4rem;
    margin: 0 0 24px;
}
/* 5 fraud-type cards arranged as 3 on row 1, 2 centered on row 2.
   Uses a 6-column grid so all 5 cards have identical width (each spans
   2 of 6 tracks). Row 2 cards sit at cols 2-3 and 4-5, leaving symmetric
   half-column gutters on each side -- no awkward orphan-card stretch. */
.ftype-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.ftype-grid > .ftype { grid-column: span 2; }
.ftype-grid > .ftype:nth-child(4) { grid-column: 2 / span 2; }
.ftype-grid > .ftype:nth-child(5) { grid-column: 4 / span 2; }

@media (max-width: 900px) {
    /* Tablet: 2 columns, the 5th card sits alone on row 3 centered to the
       same width as the others. */
    .ftype-grid { grid-template-columns: 1fr 1fr; }
    .ftype-grid > .ftype,
    .ftype-grid > .ftype:nth-child(4) { grid-column: auto; }
    .ftype-grid > .ftype:nth-child(5) {
        grid-column: 1 / -1;
        max-width: calc(50% - 8px);
        margin: 0 auto;
    }
}
@media (max-width: 560px) {
    .ftype-grid { grid-template-columns: 1fr; }
    .ftype-grid > .ftype:nth-child(5) { grid-column: auto; max-width: none; margin: 0; }
}
.ftype {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 22px;
    background: var(--cc-bone);
    border-radius: var(--r-md);
    border: 1px solid var(--cc-line);
}
.ftype > i {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border-radius: var(--r-sm);
    background: var(--cc-paper);
    border: 1px solid var(--cc-line);
    color: var(--cc-red);
    font-size: 1.05rem;
}
.ftype h4 {
    font-size: 1rem;
    text-transform: none;
    letter-spacing: -.01em;
    color: var(--cc-text);
    margin: 0 0 4px;
}
.ftype p {
    font-size: .93rem;
    color: var(--cc-text-2);
    margin: 0;
    line-height: 1.55;
}
.ftype p em {
    font-style: italic;
    color: var(--cc-text);
}

@media (max-width: 880px) {
    .stat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .stat-grid { grid-template-columns: 1fr; }
}

/* =============================================================================
   PILLARS (on ink)
   ============================================================================= */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.pillar {
    position: relative;
    padding: 28px;
    background: rgba(255,255,255,.02);
    border: 1px solid var(--cc-line-d);
    border-radius: var(--r-lg);
    transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}
.pillar:hover {
    border-color: rgba(22,199,132,.4);
    background: rgba(22,199,132,.04);
    transform: translateY(-2px);
}
.pillar-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px;
}
.pillar-num {
    font-size: .8rem;
    color: rgba(255,255,255,.45);
    font-weight: 600;
    letter-spacing: .04em;
}
.pillar-icon {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border-radius: var(--r-md);
    background: rgba(22,199,132,.12);
    color: var(--cc-green);
    border: 1px solid rgba(22,199,132,.22);
    font-size: 1.15rem;
}
.pillar h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 10px;
}
.pillar-lede {
    color: rgba(255,255,255,.74);
    font-size: .94rem;
    line-height: 1.6;
    margin-bottom: 16px;
}
.pillar-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 8px;
}
.pillar-list li {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 10px;
    align-items: start;
    color: rgba(255,255,255,.82);
    font-size: .9rem;
    line-height: 1.5;
}
.pillar-list .fa-circle-check {
    color: var(--cc-green);
    font-size: .92rem;
    margin-top: 4px;
}

@media (max-width: 980px) {
    .pillars-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .pillars-grid { grid-template-columns: 1fr; }
}

/* =============================================================================
   MONITORING
   ============================================================================= */
.monitor-wrap {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 64px;
    align-items: start;
}
.monitor-actions {
    display: flex; gap: 10px; flex-wrap: wrap;
    margin-top: 12px;
}

.monitor-feed {
    background: var(--cc-paper);
    border: 1px solid var(--cc-line);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-2);
}
.mfeed-row {
    display: grid;
    grid-template-columns: 100px 44px 1fr;
    gap: 14px;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid var(--cc-line);
    transition: background var(--t-fast);
}
.mfeed-row:last-child { border-bottom: 0; }
.mfeed-row:hover { background: var(--cc-bone); }

.mfeed-hz {
    font-size: .78rem;
    font-weight: 600;
    color: var(--cc-green-3);
    background: var(--cc-green-bg);
    padding: 4px 10px;
    border-radius: var(--r-pill);
    text-align: center;
    width: fit-content;
}
.mfeed-icon {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border-radius: var(--r-sm);
    background: var(--cc-bone);
    color: var(--cc-text);
    font-size: 1.05rem;
}
.mfeed-evt {
    font-size: 1rem;
    font-weight: 600;
    color: var(--cc-text);
    margin-bottom: 4px;
}
.mfeed-desc {
    font-size: .88rem;
    color: var(--cc-text-2);
    line-height: 1.5;
}

@media (max-width: 980px) {
    .monitor-wrap { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
    .mfeed-row { grid-template-columns: 1fr; }
    .mfeed-icon { display: none; }
}

/* =============================================================================
   FRAUD WATCH
   ============================================================================= */
.watch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.watch-card {
    background: var(--cc-paper);
    border: 1px solid var(--cc-line);
    border-radius: var(--r-lg);
    padding: 28px;
    transition: border-color var(--t-fast), transform var(--t-fast);
}
.watch-card:hover {
    border-color: var(--cc-line-2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-2);
}
.watch-ic {
    width: 48px; height: 48px;
    display: grid; place-items: center;
    border-radius: var(--r-md);
    background: var(--cc-ink);
    color: var(--cc-green);
    font-size: 1.2rem;
    margin-bottom: 16px;
}
.watch-card h3 {
    font-size: 1.2rem;
    margin: 0 0 10px;
}
.watch-card p {
    margin: 0;
    font-size: .95rem;
    color: var(--cc-text-2);
}
.watch-card em { font-style: italic; color: var(--cc-text); }

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

/* =============================================================================
   AUDIT TRAIL
   ============================================================================= */
.audit-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
    gap: 64px;
    align-items: center;
}
.audit-bullets {
    list-style: none; padding: 0; margin: 1.6rem 0 0;
    display: flex; flex-direction: column; gap: 10px;
}
.audit-bullets li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: start;
    font-size: .98rem;
    color: rgba(255,255,255,.84);
}
.audit-bullets .fa-circle-check {
    color: var(--cc-green);
    margin-top: 5px;
}

.audit-card {
    background: #0F1B2D;
    border: 1px solid var(--cc-steel);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px -30px rgba(0,0,0,.5), 0 0 0 1px rgba(22,199,132,.08);
}
.ac-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px;
    background: #08111F;
    border-bottom: 1px solid var(--cc-steel);
}
.ac-label {
    font-size: .7rem;
    color: rgba(255,255,255,.5);
    letter-spacing: .12em;
    margin-bottom: 4px;
}
.ac-name {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}
.ac-stamp {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: 6px 12px;
    background: rgba(22,199,132,.12);
    color: var(--cc-green);
    border: 1px solid rgba(22,199,132,.3);
    border-radius: var(--r-pill);
    font-weight: 600;
    font-size: .82rem;
}
.ac-rows {
    list-style: none; margin: 0; padding: 0;
}
.ac-rows li {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--cc-steel);
    font-size: .88rem;
}
.ac-rows li:last-child { border-bottom: 0; }
.ac-k {
    color: rgba(255,255,255,.66);
}
.ac-v {
    color: #fff;
    font-family: var(--ff-mono);
    font-size: .82rem;
}
.ac-foot {
    display: flex; justify-content: space-between;
    padding: 12px 20px;
    background: #08111F;
    border-top: 1px solid var(--cc-steel);
    font-size: .74rem;
    color: rgba(255,255,255,.5);
}

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

/* =============================================================================
   INTEGRATIONS
   ============================================================================= */
.integ-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.integ-card {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 16px;
    background: var(--cc-paper);
    border: 1px solid var(--cc-line);
    border-radius: var(--r-md);
    transition: border-color var(--t-fast), background var(--t-fast);
}
.integ-card:hover {
    border-color: var(--cc-line-2);
    background: var(--cc-bone);
}
.integ-card.is-beta { opacity: .85; }
.integ-logo {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    background: var(--cc-ink);
    color: var(--cc-green);
    font-family: var(--ff-mono);
    font-weight: 600;
    font-size: .85rem;
    border-radius: var(--r-sm);
    letter-spacing: -.02em;
}
.integ-name {
    font-size: .94rem;
    font-weight: 600;
    color: var(--cc-text);
    line-height: 1.3;
}
.integ-kind {
    font-size: .76rem;
    color: var(--cc-mute);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 2px;
}
.integ-status {
    font-size: .76rem;
    font-weight: 600;
    color: var(--cc-mute);
    display: inline-flex; align-items: center;
}
.integ-foot {
    margin-top: 24px;
    text-align: center;
    color: var(--cc-text-2);
    font-size: .98rem;
}

@media (max-width: 980px) {
    .integ-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .integ-grid { grid-template-columns: 1fr; }
}

/* =============================================================================
   SOLUTIONS
   ============================================================================= */
.sol-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.sol-card {
    background: var(--cc-paper);
    border: 1px solid var(--cc-line);
    border-radius: var(--r-lg);
    padding: 32px;
    transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.sol-card:hover {
    border-color: var(--cc-line-2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-2);
}
.sol-ic {
    width: 56px; height: 56px;
    display: grid; place-items: center;
    border-radius: var(--r-md);
    background: var(--cc-ink);
    color: var(--cc-green);
    font-size: 1.4rem;
    margin-bottom: 18px;
}
.sol-card h3 {
    font-size: 1.35rem;
    margin: 0 0 12px;
}
.sol-card > p {
    font-size: .96rem;
    color: var(--cc-text-2);
    margin: 0 0 18px;
    line-height: 1.6;
}
.sol-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 8px;
}
.sol-list li {
    display: grid;
    grid-template-columns: 14px 1fr;
    gap: 10px; align-items: start;
    font-size: .92rem;
    color: var(--cc-text-2);
}
.sol-list .fa-arrow-right {
    color: var(--cc-green);
    font-size: .82rem;
    margin-top: 5px;
}

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

/* =============================================================================
   COMPARE TABLE
   ============================================================================= */
.compare-table {
    background: var(--cc-paper);
    border: 1px solid var(--cc-line);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-1);
}
.ct-head, .ct-row {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(4, minmax(0, 1fr));
    align-items: center;
}
.ct-head {
    background: var(--cc-bone);
    border-bottom: 1px solid var(--cc-line);
}
.ct-h {
    padding: 16px;
    font-size: .82rem;
    font-weight: 700;
    color: var(--cc-text);
    text-align: center;
    border-left: 1px solid var(--cc-line);
}
.ct-h--feature {
    text-align: left;
    border-left: 0;
    color: var(--cc-mute);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .74rem;
}
.ct-h--us {
    background: var(--cc-ink);
    color: #fff;
    position: relative;
}
.ct-h--us::after {
    content: 'YOU';
    display: none; /* placeholder */
}
.ct-row {
    border-bottom: 1px solid var(--cc-line);
}
.ct-row:last-child { border-bottom: 0; }
.ct-row:hover {
    background: var(--cc-bone);
}
.ct-feat {
    padding: 16px;
    font-size: .94rem;
    font-weight: 500;
    color: var(--cc-text);
}
.ct-cell {
    padding: 16px;
    text-align: center;
    border-left: 1px solid var(--cc-line);
    font-size: 1.1rem;
}
.ct-cell.is-yes { color: var(--cc-green-3); }
.ct-cell.is-no { color: var(--cc-faint); }
.ct-cell.is-partial { color: var(--cc-amber); }
.ct-cell.is-us {
    background: rgba(22,199,132,.05);
    border-left: 1px solid rgba(22,199,132,.25);
    border-right: 1px solid rgba(22,199,132,.25);
}
.ct-lbl {
    display: none;
}

@media (max-width: 880px) {
    .ct-head { display: none; }
    .ct-row {
        grid-template-columns: 1fr;
        padding: 14px;
    }
    .ct-feat {
        padding: 0 0 10px;
        font-size: .96rem;
        font-weight: 700;
        border-bottom: 1px dashed var(--cc-line);
        margin-bottom: 8px;
    }
    .ct-cell {
        display: grid;
        grid-template-columns: 1fr auto;
        text-align: left;
        border-left: 0;
        padding: 6px 0;
    }
    .ct-cell::before {
        content: attr(data-lbl);
        font-size: .85rem;
        color: var(--cc-text-2);
        font-weight: 500;
    }
    .ct-cell.is-us {
        border-left: 0; border-right: 0;
        background: transparent;
    }
    .ct-lbl {
        display: inline;
        font-size: .85rem;
        margin-left: .4rem;
    }
}

/* =============================================================================
   COMPLIANCE TILES
   ============================================================================= */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto;
}
.trust-tile {
    display: flex; align-items: center; gap: 14px;
    padding: 22px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--cc-line-d);
    border-radius: var(--r-md);
}
.trust-tile > i {
    width: 46px; height: 46px;
    display: grid; place-items: center;
    border-radius: var(--r-sm);
    background: rgba(22,199,132,.12);
    color: var(--cc-green);
    font-size: 1.15rem;
    flex: 0 0 auto;
}
.trust-l {
    color: #fff;
    font-weight: 600;
    font-size: .98rem;
}
.trust-s {
    color: rgba(255,255,255,.62);
    font-size: .82rem;
    margin-top: 2px;
}

@media (max-width: 880px) {
    .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
    .trust-grid { grid-template-columns: 1fr; }
}

/* =============================================================================
   PRICING
   ============================================================================= */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: stretch;
}
.plan {
    position: relative;
    background: var(--cc-paper);
    border: 1px solid var(--cc-line);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    display: flex; flex-direction: column;
    transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.plan:hover {
    border-color: var(--cc-line-2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-2);
}
.plan.is-featured {
    border-color: var(--cc-green);
    box-shadow: var(--shadow-glow);
    background:
        radial-gradient(800px 240px at 50% 0%, rgba(22,199,132,.05), transparent 60%),
        var(--cc-paper);
}
.plan-badge {
    position: absolute; top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--cc-green);
    color: var(--cc-ink);
    font-size: .76rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--r-pill);
    display: inline-flex; align-items: center; gap: .35rem;
    letter-spacing: .04em;
    box-shadow: var(--shadow-1);
}
.plan-tier {
    font-size: .74rem;
    color: var(--cc-mute);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 600;
    margin-bottom: 6px;
}
.plan-name {
    font-size: 1.85rem;
    margin: 0 0 14px;
    letter-spacing: -.025em;
}
.plan-price {
    display: flex; align-items: baseline; gap: 8px;
    margin: 0 0 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--cc-line);
    flex-wrap: wrap;
}
.plan-price .pp {
    font-family: var(--ff-mono);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--cc-text);
    letter-spacing: -.03em;
    line-height: 1;
}
.plan-price .ps {
    font-size: .82rem;
    color: var(--cc-mute);
}
.plan-lede {
    font-size: .94rem;
    color: var(--cc-text-2);
    margin-bottom: 18px;
    line-height: 1.55;
    flex: 0 0 auto;
}
.plan-feats {
    list-style: none; padding: 0;
    margin: 0 0 22px;
    flex: 1 1 auto;
    display: flex; flex-direction: column;
    gap: 9px;
}
.plan-feats li {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 10px;
    align-items: start;
    font-size: .9rem;
    color: var(--cc-text-2);
}
.plan-feats .fa-circle-check {
    color: var(--cc-green-3);
    margin-top: 4px;
    font-size: .92rem;
}
.plan-foot {
    text-align: center;
    margin-top: 28px;
    color: var(--cc-mute);
    font-size: .9rem;
}
.plan-foot .fa-circle-info { color: var(--cc-blue); margin-right: .4rem; }

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

/* =============================================================================
   TESTIMONIALS
   ============================================================================= */
.quote-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.quote-card {
    background: var(--cc-paper);
    border: 1px solid var(--cc-line);
    border-radius: var(--r-lg);
    padding: 28px;
    margin: 0;
    display: flex; flex-direction: column; justify-content: space-between;
    gap: 18px;
    position: relative;
}
.quote-card::before {
    content: '\201C';
    position: absolute;
    top: 14px; right: 22px;
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--cc-green-bg);
    pointer-events: none;
}
.quote-card blockquote {
    margin: 0;
    font-size: 1.04rem;
    color: var(--cc-text);
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: -.005em;
}
.quote-card figcaption {
    border-top: 1px solid var(--cc-line);
    padding-top: 14px;
    display: flex; flex-direction: column; gap: 2px;
}
.qc-name {
    font-size: .96rem;
    font-weight: 700;
    color: var(--cc-text);
}
.qc-role {
    font-size: .82rem;
    color: var(--cc-mute);
    line-height: 1.4;
}

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

/* =============================================================================
   FAQ
   ============================================================================= */
.faq-wrap {
    max-width: 880px;
}
.faq-list {
    border-top: 1px solid var(--cc-line);
}
.faq-item {
    border-bottom: 1px solid var(--cc-line);
}
.faq-q {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 22px 0;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
    text-align: left;
    font-family: var(--ff-sans);
    font-size: 1.06rem;
    font-weight: 600;
    color: var(--cc-text);
    cursor: pointer;
    line-height: 1.4;
}
.faq-q:hover { color: var(--cc-green-3); }
.faq-icon {
    flex: 0 0 auto;
    transition: transform var(--t-fast);
    color: var(--cc-mute);
    font-size: .9rem;
}
.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
    color: var(--cc-green-3);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-mid);
}
.faq-item.is-open .faq-a {
    max-height: 600px;
}
.faq-a p {
    margin: 0;
    padding: 0 0 22px;
    font-size: .98rem;
    color: var(--cc-text-2);
    line-height: 1.65;
    max-width: 70ch;
}

/* =============================================================================
   SOURCES STRIP
   ============================================================================= */
.sources-strip {
    background: var(--cc-bone);
    border: 1px solid var(--cc-line);
    border-radius: var(--r-md);
    padding: 18px 22px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}
.sources-lbl {
    font-weight: 600;
    color: var(--cc-text);
    flex: 0 0 auto;
}
.sources-lbl .fa-book { color: var(--cc-mute); margin-right: .35rem; }
.sources-list {
    list-style: none; padding: 0; margin: 0;
    flex: 1 1 320px;
    display: flex; flex-direction: column; gap: 8px;
    font-size: .92rem;
    color: var(--cc-text-2);
}
.sources-list li {
    display: flex; gap: 10px; align-items: baseline;
}
.src-tag {
    display: inline-block;
    padding: 2px 7px;
    background: var(--cc-paper);
    border: 1px solid var(--cc-line);
    border-radius: var(--r-xs);
    font-size: .72rem;
    color: var(--cc-mute);
}

/* =============================================================================
   FOOTER
   ============================================================================= */
.cc-foot {
    background: var(--cc-ink);
    /* Bumped from .66 to .82 -- the blurb + trust pill text near the brand
       was readable but visibly muted. .82 lifts contrast on cc-ink to ~9:1
       (well clear of WCAG AA's 4.5 floor and AAA's 7:1). */
    color: rgba(255,255,255,.82);
    padding-top: 0;
}

.cc-foot-cta {
    background:
        radial-gradient(900px 400px at 90% 30%, rgba(22,199,132,.16), transparent 60%),
        radial-gradient(700px 320px at 0% 70%, rgba(37,99,235,.10), transparent 60%),
        var(--cc-ink-2);
    border-bottom: 1px solid var(--cc-line-d);
    padding: 64px 0;
}
.cc-foot-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}
.cc-foot-cta h2 {
    color: #fff;
    margin: 0 0 8px;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}
.cc-foot-cta p {
    color: rgba(255,255,255,.72);
    margin: 0;
    font-size: 1.02rem;
    max-width: 56ch;
}
.cc-foot-cta-actions {
    display: flex; gap: 12px; flex-wrap: wrap;
    justify-content: flex-end;
}

@media (max-width: 880px) {
    .cc-foot-cta-inner { grid-template-columns: 1fr; }
    .cc-foot-cta-actions { justify-content: flex-start; }
}

.cc-foot-inner {
    padding: 56px 24px 28px;
}
.cc-foot-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) repeat(4, minmax(0, 1fr));
    gap: 32px;
}
.cc-foot-brand .cc-brand-mark {
    background: rgba(22,199,132,.12);
}
.cc-foot-brand .cc-brand,
.cc-foot-brand .cc-brand:hover {
    color: #fff;
}
.cc-foot-brand .cc-brand-word .accent { color: var(--cc-green); }
.cc-foot-blurb {
    /* Explicit color — the global `p { color: var(--cc-text-2) }` rule
       was winning over the inherited footer text color (specificity),
       which left the blurb as dark slate-blue on dark-ink. ~9:1 on cc-ink. */
    color: rgba(255,255,255,.82);
    font-size: .92rem;
    margin: 14px 0;
    line-height: 1.6;
    max-width: 36ch;
}
.cc-foot-trust {
    list-style: none; padding: 0; margin: 18px 0 0;
    display: flex; flex-wrap: wrap; gap: 6px;
}
.cc-foot-trust li {
    display: inline-flex; align-items: center; gap: .35rem;
    padding: 6px 10px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--cc-line-d);
    border-radius: var(--r-pill);
    font-size: .76rem;
    color: rgba(255,255,255,.78);
    font-weight: 500;
}
.cc-foot-trust .fa-shield-halved,
.cc-foot-trust .fa-lock,
.cc-foot-trust .fa-user-shield {
    color: var(--cc-green);
}

.cc-foot h4 {
    color: #fff;
    font-size: .78rem;
    letter-spacing: .12em;
    margin: 0 0 14px;
}
.cc-foot ul { list-style: none; margin: 0; padding: 0; }
.cc-foot li { margin-bottom: 8px; }
/* Scoped to non-button anchors so the cta-band's .btn--primary keeps its
   own text color instead of inheriting the footer link tone (which was
   making the button text look greenish on the green background). */
.cc-foot a:not(.btn) {
    color: rgba(255,255,255,.82);
    font-size: .92rem;
    text-decoration: none;
    transition: color var(--t-fast);
}
.cc-foot a:not(.btn):hover { color: var(--cc-green); }

.cc-foot-legal {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid var(--cc-line-d);
    font-size: .82rem;
    /* Bumped from .5 to .7 -- copyright + pledge text are de-emphasized
       by design but the previous 50% white was below WCAG AA at this size. */
    color: rgba(255,255,255,.7);
}
.cc-foot-pledge {
    display: inline-flex; gap: 18px; flex-wrap: wrap;
}
.cc-foot-pledge .fa-circle-check,
.cc-foot-pledge .fa-eye {
    color: var(--cc-green);
    margin-right: .35rem;
}

@media (max-width: 980px) {
    .cc-foot-grid { grid-template-columns: 1fr 1fr; }
    .cc-foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
    .cc-foot-grid { grid-template-columns: 1fr; }
}

/* =============================================================================
   AUTH PAGES (login + book-demo)
   ============================================================================= */
.page-auth, .page-demo {
    background: var(--cc-bone);
}
.auth-main, .demo-main {
    padding: 48px 0 96px;
    background:
        radial-gradient(1200px 500px at 90% 0%, rgba(22,199,132,.06), transparent 60%),
        var(--cc-bone);
}

.auth-stage, .demo-stage {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: stretch;
}
@media (max-width: 920px) {
    .auth-stage, .demo-stage { grid-template-columns: 1fr; }
}

/* ---- Auth card (login) ---- */
.auth-card {
    background: var(--cc-paper);
    border: 1px solid var(--cc-line);
    border-radius: var(--r-xl);
    padding: 40px;
    box-shadow: var(--shadow-2);
    align-self: start;
}
.auth-mark {
    width: 56px; height: 56px;
    display: grid; place-items: center;
    border-radius: var(--r-md);
    background: var(--cc-ink);
    color: var(--cc-green);
    font-size: 1.45rem;
    margin-bottom: 22px;
}
.auth-card h1 {
    font-size: clamp(1.6rem, 2.6vw, 2rem);
    margin: 0 0 6px;
    letter-spacing: -.02em;
}
.auth-sub {
    margin: 0 0 24px;
    color: var(--cc-text-2);
}

.auth-sso {
    display: flex; flex-direction: column; gap: 8px;
    margin-bottom: 18px;
}
.auth-sso-btn { font-weight: 500; }

.auth-divider {
    display: flex; align-items: center; gap: 12px;
    margin: 14px 0 18px;
    color: var(--cc-mute);
    font-size: .82rem;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--cc-line);
}

.auth-form {
    display: flex; flex-direction: column; gap: 14px;
}
.field {
    display: flex; flex-direction: column; gap: 6px;
}
.field-row {
    display: flex; justify-content: space-between; align-items: center;
}
.field-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
@media (max-width: 540px) {
    .field-row-2 { grid-template-columns: 1fr; }
}
.field-lbl {
    font-size: .82rem;
    font-weight: 600;
    color: var(--cc-text);
}
.field-link {
    font-size: .82rem;
    color: var(--cc-green-3);
    font-weight: 600;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    background: var(--cc-paper);
    border: 1px solid var(--cc-line-2);
    border-radius: var(--r-sm);
    padding: 11px 13px;
    font-family: var(--ff-sans);
    font-size: .96rem;
    color: var(--cc-text);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--cc-faint); }
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--cc-green);
    box-shadow: 0 0 0 3px rgba(22,199,132,.15);
}
.field textarea { resize: vertical; min-height: 96px; }

.field-input-wrap {
    position: relative;
    display: block;
}
.field-input-wrap input {
    padding-right: 42px;
}
.field-eye {
    position: absolute;
    right: 6px; top: 50%;
    transform: translateY(-50%);
    width: 32px; height: 32px;
    border: 0;
    background: transparent;
    color: var(--cc-mute);
    cursor: pointer;
    border-radius: var(--r-xs);
}
.field-eye:hover { color: var(--cc-text); background: var(--cc-bone); }

.field-check {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .92rem;
    color: var(--cc-text-2);
}
.field-check input { width: 16px; height: 16px; accent-color: var(--cc-green); }

.auth-msg {
    margin-top: 4px;
    padding: 10px 14px;
    border-radius: var(--r-sm);
    font-size: .9rem;
}
.auth-msg--info {
    background: var(--cc-bone);
    border: 1px solid var(--cc-line);
    color: var(--cc-text-2);
}
.auth-msg--info .fa-circle-info { color: var(--cc-blue); margin-right: .4rem; }
.auth-msg a { color: var(--cc-green-3); font-weight: 600; }

.auth-meta {
    margin-top: 18px;
    font-size: .82rem;
    color: var(--cc-mute);
    display: inline-flex; align-items: center; gap: .4rem;
}
.auth-meta .fa-shield-halved { color: var(--cc-green); }

.auth-foot-note {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--cc-line);
    font-size: .94rem;
    color: var(--cc-text-2);
}
.auth-link {
    font-weight: 600;
    color: var(--cc-green-3);
}

/* ---- Auth aside (right rail on login) ---- */
.auth-aside, .demo-aside {
    background: var(--cc-ink);
    color: rgba(255,255,255,.78);
    border-radius: var(--r-xl);
    padding: 40px;
    box-shadow: var(--shadow-2);
    background-image:
        radial-gradient(700px 320px at 90% 0%, rgba(22,199,132,.14), transparent 60%);
}
.auth-aside h2, .demo-aside h2 {
    color: #fff;
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    margin: 0 0 12px;
    letter-spacing: -.02em;
}
.auth-aside p {
    color: rgba(255,255,255,.74);
    margin-bottom: 22px;
}
.auth-aside-list {
    list-style: none; padding: 0; margin: 0 0 28px;
    display: flex; flex-direction: column; gap: 8px;
}
.auth-aside-list li {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 10px;
    align-items: start;
    color: rgba(255,255,255,.84);
    font-size: .94rem;
}
.auth-aside-list .fa-circle-check {
    color: var(--cc-green);
    margin-top: 5px;
}

.auth-aside-quote {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--cc-line-d);
    border-radius: var(--r-md);
    padding: 22px;
    position: relative;
}
.auth-aside-quote .fa-quote-left {
    color: var(--cc-green);
    font-size: 1.2rem;
    margin-bottom: 8px;
    display: inline-block;
}
.auth-aside-quote p {
    margin: 0 0 14px;
    color: #fff;
    font-size: .98rem;
    line-height: 1.55;
    font-style: italic;
}
.aaq-name {
    font-size: .85rem;
    color: rgba(255,255,255,.85);
    font-weight: 600;
}
.aaq-name span {
    color: rgba(255,255,255,.6);
    font-weight: 400;
}

/* ---- Demo card (book-demo) ---- */
.demo-card {
    background: var(--cc-paper);
    border: 1px solid var(--cc-line);
    border-radius: var(--r-xl);
    padding: 40px;
    box-shadow: var(--shadow-2);
}
.demo-card h1 {
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    margin: .6rem 0 14px;
    letter-spacing: -.025em;
}
.demo-sub { color: var(--cc-text-2); margin-bottom: 22px; }
.demo-promise {
    list-style: none; padding: 0; margin: 0 0 26px;
    display: flex; flex-direction: column; gap: 8px;
    background: var(--cc-bone);
    border: 1px solid var(--cc-line);
    border-radius: var(--r-md);
    padding: 18px 20px;
}
.demo-promise li {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 10px; align-items: start;
    font-size: .92rem;
    color: var(--cc-text-2);
}
.demo-promise .fa-circle-check {
    color: var(--cc-green-3);
    margin-top: 4px;
}

.demo-form {
    display: flex; flex-direction: column; gap: 14px;
}
.demo-plan-tag {
    background: var(--cc-green-bg);
    border: 1px solid rgba(22,199,132,.3);
    color: var(--cc-green-3);
    border-radius: var(--r-sm);
    padding: 10px 14px;
    font-size: .9rem;
    margin: 0;
}
.demo-plan-tag .fa-tag { color: var(--cc-green-3); margin-right: .35rem; }
.demo-plan-tag a {
    color: var(--cc-green-3);
    font-weight: 600;
    margin-left: .4rem;
}

.demo-msg {
    padding: 12px 14px;
    border-radius: var(--r-sm);
    font-size: .94rem;
}
.demo-msg--ok {
    background: var(--cc-green-bg);
    color: var(--cc-green-3);
    border: 1px solid rgba(22,199,132,.3);
    font-weight: 500;
}
.demo-msg--ok .fa-circle-check { color: var(--cc-green-3); margin-right: .4rem; }

.demo-fine {
    font-size: .8rem;
    color: var(--cc-mute);
    margin: 6px 0 0;
    line-height: 1.55;
}

/* Demo aside (right rail) */
.demo-steps {
    list-style: none; padding: 0; margin: 0 0 28px;
    display: flex; flex-direction: column; gap: 18px;
    counter-reset: step;
}
.demo-steps li {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--cc-line-d);
}
.demo-steps li:last-child { border-bottom: 0; padding-bottom: 0; }
.ds-num {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    background: rgba(22,199,132,.12);
    border: 1px solid rgba(22,199,132,.25);
    color: var(--cc-green);
    border-radius: var(--r-sm);
    font-weight: 600;
    font-size: .94rem;
}
.demo-steps h3 {
    color: #fff;
    font-size: 1.04rem;
    margin: 0 0 4px;
    letter-spacing: -.01em;
}
.demo-steps p {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: .9rem;
    line-height: 1.55;
}

.demo-stat-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--cc-line-d);
    border-radius: var(--r-md);
    padding: 18px;
}
.demo-stat-strip > div { text-align: center; }
.ds-num-big {
    font-family: var(--ff-mono);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1;
    margin-bottom: 6px;
}
.ds-l {
    font-size: .76rem;
    color: rgba(255,255,255,.6);
    line-height: 1.4;
}

/* =============================================================================
   FINAL: motion-reduce
   ============================================================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .ld-row { opacity: 1; transform: none; border-color: rgba(22,199,132,.35); background: rgba(22,199,132,.06); }
}
