:root {
    /* Claude Design tokens — CollFin design system.
       NB: --mint / --mint-dark keep their names so existing rules cascade,
       but now carry the design's accent-blue values. */
    --navy: #0B1220;
    --navy-2: #0F1729;
    --mint: #2E6FF2;          /* accent blue (primary) */
    --mint-dark: #1E4FB8;     /* accent blue dark (hover) */
    --soft-blue: #EAF0FB;     /* blue badge/hover/avatar bg */
    --cyan: #2E6FF2;
    --ink: #171B22;
    --muted: #667085;
    --faint: #98A2B3;
    --paper: #FFFFFF;
    --paper-2: #F4F5F7;       /* app/section-alt background */
    --surface-2: #FAFBFC;     /* table header / stat tiles */
    --border: #E6E8EC;
    --divider: #F0F1F4;
    --success: #1E9E6A;
    --success-ink: #177A4F;
    --success-bg: #E3F6EC;
    --amber: #E8A33D;
    --amber-ink: #9A6700;
    --amber-bg: #FFF4E0;
    --danger: #D9483B;
    --danger-ink: #B3261E;
    --danger-bg: #FDEBE9;
    --radius: 12px;
    --maxw: 1120px;
    --font-sans: 'Public Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
    --hero-grad: linear-gradient(120deg, #9BB8FA 0%, #2E6FF2 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Public Sans (800) for all display headings */
h1, h2, h3, h4 {
    font-family: var(--font-sans);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
}

/* Tabular numerals wherever money/counts appear (design requirement) */
.num, .hero-stats dt, .price-card .price { font-variant-numeric: tabular-nums; }

/* Gradient text utility */
.gradient-text {
    background: var(--hero-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

p { margin: 0 0 1rem; }

a { color: var(--mint-dark); text-decoration: none; }

a:hover { text-decoration: underline; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

.narrow { max-width: 800px; }

.muted { color: var(--muted); }

.accent { color: var(--mint); }

.eyebrow {
    display: inline-block;
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 0.75rem;
}

/* ---------- buttons ---------- */
.btn {
    display: inline-block;
    padding: 0.6rem 1.1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 150ms ease-out, background 150ms ease-out, border-color 150ms ease-out;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-lg { padding: 0.85rem 1.5rem; font-size: 1.05rem; }

.btn-primary { background: var(--mint); color: #FFFFFF; }

.btn-primary:hover { background: var(--mint-dark); }

.btn-ghost { background: transparent; border-color: var(--border); color: var(--ink); }

.btn-ghost:hover { border-color: var(--mint); }

/* ---------- header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-inner { display: flex; align-items: center; gap: 1.5rem; height: 68px; }

.brand { display: inline-flex; align-items: center; gap: 0.55rem; font-weight: 700; color: var(--ink); font-size: 1.05rem; }

.brand:hover { text-decoration: none; }

.brand-mark { width: 22px; height: 22px; border-radius: 7px; background: linear-gradient(135deg, var(--mint), #22D3EE); display: inline-block; }

.site-nav { display: flex; gap: 1.25rem; margin-left: 1rem; }

.site-nav a { color: var(--ink); font-weight: 500; font-size: 0.95rem; }

.header-actions { margin-left: auto; display: flex; gap: 0.6rem; align-items: center; }

/* ---------- hero ---------- */
.hero { background: radial-gradient(1200px 500px at 50% -10%, #16233c 0%, var(--navy) 60%); color: #E5E7EB; padding: 5.5rem 0 4.5rem; text-align: center; }

.hero-inner { max-width: 860px; margin: 0 auto; }

.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; color: #F8FAFC; }

.lede { font-size: 1.2rem; color: #B6C2D4; max-width: 680px; margin: 1rem auto 0; }

.hero .lede { color: #AeB9CC; }

.hero-cta { display: flex; gap: 0.8rem; justify-content: center; margin: 2rem 0 0; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 2.5rem; justify-content: center; margin: 3rem 0 0; padding: 0; flex-wrap: wrap; }

.hero-stats div { text-align: center; }

.hero-stats dt { font-weight: 700; font-size: 1.25rem; color: var(--mint); }

.hero-stats dd { margin: 0.2rem 0 0; color: #94A3B8; font-size: 0.9rem; }

/* ---------- hero: 2-column with product-preview mock ---------- */
.hero-main { text-align: left; padding-bottom: 0; overflow: hidden; }
.hero-2col { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center; }
.hero-copy { max-width: 560px; }
.hero-main h1 { font-size: clamp(2.4rem, 4.6vw, 3.25rem); }
.hero-main .lede { margin-left: 0; }
.hero-main .hero-cta { justify-content: flex-start; }

.hero-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); border-radius: 11px; overflow: hidden; margin: 2.75rem 0 0; max-width: 480px; padding: 0; }
.hero-tiles div { background: #0F1729; padding: 0.9rem 1.05rem; text-align: left; }
.hero-tiles dt { font-weight: 700; font-size: 0.85rem; color: #F8FAFC; }
.hero-tiles dd { margin: 0.2rem 0 0; color: #8A94A8; font-size: 0.72rem; }

/* dashboard mock rising from the section's bottom edge */
.hero-mock { align-self: end; background: var(--paper-2); border-radius: 14px 14px 0 0; border: 1px solid rgba(255,255,255,0.14); border-bottom: none; box-shadow: 0 -20px 60px rgba(0,0,0,0.35); overflow: hidden; }
.hero-mock-bar { background: #fff; border-bottom: 1px solid var(--border); padding: 0.7rem 1.05rem; display: flex; align-items: center; justify-content: space-between; }
.hero-mock-title { font-size: 0.78rem; font-weight: 700; color: var(--ink); }
.hero-mock-live { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.04em; color: var(--success-ink); background: var(--success-bg); border-radius: 999px; padding: 0.18rem 0.55rem; }
.hero-mock-body { padding: 1rem 1.05rem; display: flex; flex-direction: column; gap: 0.7rem; }
.hero-mock-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.hero-mock-kpi { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 0.7rem 0.8rem; display: flex; flex-direction: column; }
.hero-mock-kpi .k-label { font-size: 0.62rem; font-weight: 600; color: var(--muted); }
.hero-mock-kpi .k-val { font-size: 1.2rem; font-weight: 800; color: var(--ink); margin-top: 0.2rem; }
.hero-mock-kpi .k-delta { font-size: 0.62rem; font-weight: 600; color: var(--muted); margin-top: 0.1rem; }
.hero-mock-kpi .k-delta.up { color: var(--success); }
.hero-mock-chart { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 0.75rem 0.8rem; }
.hero-mock-chart-title { font-size: 0.68rem; font-weight: 700; color: var(--ink); }
.hero-mock-bars { display: flex; align-items: flex-end; gap: 0.5rem; height: 72px; margin-top: 0.55rem; }
.hero-mock-bars span { flex: 1; background: #C9D7F5; border-radius: 4px 4px 1px 1px; }
.hero-mock-bars span.cur { background: var(--mint); }
.hero-mock-remit { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 0.65rem 0.8rem; display: flex; align-items: center; justify-content: space-between; font-size: 0.72rem; font-weight: 600; color: var(--ink); }

@media (max-width: 860px) {
    .hero-2col { grid-template-columns: 1fr; gap: 2rem; }
    .hero-mock { display: none; }
    .hero-tiles { max-width: none; }
}

/* ---------- page hero (inner pages) ---------- */
.page-hero { background: var(--paper-2); border-bottom: 1px solid var(--border); padding: 3.5rem 0; }

.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; }

.page-hero .lede { color: var(--muted); margin-left: 0; }

/* ---------- sections ---------- */
.section { padding: 4.5rem 0; }

.section-alt { background: var(--paper-2); }

.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; text-align: center; }

.section-sub { color: var(--muted); text-align: center; max-width: 640px; margin: 0.5rem auto 2.5rem; }

/* ---------- grids + cards ---------- */
.grid { display: grid; gap: 1.25rem; }

.grid-2 { grid-template-columns: repeat(2, 1fr); }

.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card { background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; transition: border-color 150ms ease-out, transform 150ms ease-out, box-shadow 150ms ease-out; }

.card:hover { border-color: var(--mint); transform: translateY(-3px); box-shadow: 0 12px 30px -18px rgba(15, 23, 42, 0.25); }

.card h3 { font-size: 1.15rem; }

.card p { color: var(--muted); margin: 0; }

/* ---------- steps ---------- */
.steps { list-style: none; counter-reset: step; padding: 0; margin: 2rem 0 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

.steps li { background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }

.step-n { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 10px; background: var(--navy); color: var(--mint); font-weight: 700; margin-bottom: 0.75rem; }

.steps h3 { font-size: 1.1rem; }

.steps p { color: var(--muted); margin: 0; }

/* ---------- pricing ---------- */
.pricing .price-card { display: flex; flex-direction: column; position: relative; }

.price-card .price { font-size: 1.2rem; font-weight: 700; margin: 0.25rem 0 0.5rem; }

.price-card.featured { border-color: var(--mint); box-shadow: 0 16px 40px -24px rgba(5, 150, 105, 0.5); }

.badge { position: absolute; top: -12px; right: 16px; background: var(--mint); color: #FFFFFF; font-size: 0.72rem; font-weight: 700; padding: 0.25rem 0.6rem; border-radius: 999px; }

.ticks { list-style: none; padding: 0; margin: 1rem 0 1.5rem; flex-grow: 1; }

.ticks li { padding-left: 1.6rem; position: relative; margin-bottom: 0.6rem; color: var(--ink); }

.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--mint-dark); font-weight: 700; }

/* ---------- cta band ---------- */
.cta-band { background: var(--navy); color: #E5E7EB; padding: 4rem 0; text-align: center; }

.cta-band h2 { color: #F8FAFC; font-size: clamp(1.6rem, 3vw, 2.2rem); }

.cta-inner p { color: #94A3B8; margin-bottom: 1.5rem; }

/* ---------- forms ---------- */
.contact-form { background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }

.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; }

.field label { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.35rem; }

.input { padding: 0.7rem 0.85rem; border: 1px solid var(--border); border-radius: 10px; font: inherit; color: var(--ink); background: var(--paper); }

.input:focus { outline: none; border-color: var(--mint); box-shadow: 0 0 0 3px rgba(46, 111, 242, 0.18); }

.field-error { color: #DC2626; font-size: 0.85rem; margin-top: 0.3rem; }

.alert { padding: 1rem 1.25rem; border-radius: 10px; margin-bottom: 1.25rem; }

.alert:empty { display: none; }

.alert-success { background: #ECFDF5; border: 1px solid #A7F3D0; color: #065F46; }

.alert-error { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-section { font-size: 1rem; font-weight: 700; margin: 1.5rem 0 0.75rem; padding-bottom: 0.4rem; border-bottom: 1px solid var(--border); }

.opt { font-weight: 400; color: var(--muted); font-size: 0.85rem; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Honeypot — visually and from assistive tech, but present in the DOM for bots. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: #94A3B8; padding: 3rem 0 1.5rem; }

.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid #1F2937; }

.site-footer .brand { color: #F8FAFC; }

.site-footer h4 { color: #E5E7EB; font-size: 0.95rem; margin-bottom: 0.75rem; }

.site-footer nav { display: flex; flex-direction: column; gap: 0.4rem; }

.site-footer nav a { color: #94A3B8; font-size: 0.92rem; }

.site-footer nav a:hover { color: var(--mint); }

.footer-legal { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.25rem; font-size: 0.82rem; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr 1fr; }
    .site-nav { display: none; }
    .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
    .steps { grid-template-columns: 1fr; }
    .header-actions .btn-ghost { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; scroll-behavior: auto; }
}

/* ---------- blog listing ---------- */
.blog-list { display: flex; flex-direction: column; gap: 1.25rem; }

.blog-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    text-decoration: none;
    color: var(--ink);
    transition: border-color 150ms ease-out, transform 150ms ease-out, box-shadow 150ms ease-out;
}

.blog-card:hover {
    border-color: var(--mint);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px -16px rgba(15, 23, 42, 0.2);
    text-decoration: none;
}

.blog-card-inner { flex: 1 1 auto; }

.blog-card-top { margin-bottom: 0.6rem; }

.blog-card-title { font-size: 1.2rem; font-weight: 700; margin: 0 0 0.5rem; line-height: 1.3; }

.blog-card-desc { color: var(--muted); margin: 0 0 0.75rem; font-size: 0.95rem; }

.blog-card-arrow { color: var(--mint-dark); font-size: 1.2rem; flex-shrink: 0; margin-top: 0.2rem; }

.tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--soft-blue);
    border: 1px solid #CFE0FB;
    color: var(--mint-dark);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem 0;
    font-size: 0.82rem;
    color: var(--muted);
    align-items: center;
}

.meta-dot { margin: 0 0.4rem; color: var(--border); }

.mt-1 { margin-top: 0.4rem; }

.blog-cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: var(--navy);
    color: #E5E7EB;
    border-radius: var(--radius);
    padding: 2rem 2.25rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.blog-cta-strip h3 { color: #F8FAFC; font-size: 1.15rem; margin: 0 0 0.25rem; }

.blog-cta-strip p { color: #94A3B8; margin: 0; font-size: 0.95rem; }

/* ---------- blog post ---------- */
.post-page-hero { padding-bottom: 2.5rem; }

.post-breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; }

.post-breadcrumb a { color: var(--muted); }

.post-breadcrumb a:hover { color: var(--mint-dark); }

.prose { font-size: 1.05rem; line-height: 1.75; }

.prose h2 { font-size: 1.45rem; font-weight: 700; margin: 2.25rem 0 0.6rem; padding-top: 0.5rem; }

.prose h3 { font-size: 1.15rem; font-weight: 600; margin: 1.5rem 0 0.4rem; color: var(--ink); }

.prose p { margin: 0 0 1.1rem; }

.prose ul, .prose ol { margin: 0 0 1.1rem 1.4rem; }

.prose li { margin-bottom: 0.45rem; }

.prose li > ul, .prose li > ol { margin: 0.35rem 0 0 1.2rem; }

.prose strong { font-weight: 600; }

.prose a { color: var(--mint-dark); text-decoration: underline; text-decoration-color: rgba(5,150,105,0.35); }

.prose a:hover { text-decoration-color: var(--mint-dark); }

.prose em { font-style: italic; color: var(--muted); }

.post-cta-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: var(--paper-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 2.25rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.post-cta-text h3 { font-size: 1.1rem; margin: 0 0 0.3rem; }

.post-cta-text p { color: var(--muted); margin: 0; font-size: 0.95rem; }

.post-nav { margin-top: 2rem; }

/* ---------- legal pages ---------- */
.legal-prose h2 { font-size: 1.25rem; font-weight: 700; margin: 2rem 0 0.5rem; padding-top: 0.5rem; border-top: 1px solid var(--border); }

.legal-prose h2:first-of-type { border-top: none; padding-top: 0; }

.legal-prose h3 { font-size: 1rem; font-weight: 600; margin: 1.2rem 0 0.35rem; }

.legal-prose address { font-style: normal; background: var(--paper-2); border: 1px solid var(--border); border-radius: 10px; padding: 1rem 1.25rem; margin-top: 0.5rem; }

/* ---------- footer: brand + 4 nav columns on wide, stack on mobile ---------- */
.footer-inner { grid-template-columns: 2fr repeat(4, 1fr); }

@media (max-width: 860px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .blog-card { flex-direction: column; gap: 0.75rem; }
    .blog-card-arrow { display: none; }
    .post-cta-block, .blog-cta-strip { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
    .footer-inner { grid-template-columns: 1fr; }
}

/* ---------- dual-audience homepage ---------- */
.accent-2 { color: #22D3EE; }

.hero-dual { padding-bottom: 5.5rem; }

.audience-chooser { padding: 3rem 0; background: var(--paper); border-bottom: 1px solid var(--border); }

.audience-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.audience-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 2.25rem;
    text-decoration: none;
    color: var(--ink);
    transition: border-color 150ms ease-out, transform 150ms ease-out, box-shadow 150ms ease-out;
}

.audience-card:hover { text-decoration: none; transform: translateY(-3px); box-shadow: 0 14px 36px -20px rgba(15,23,42,0.22); }

.audience-card.for-carriers { border-left: 4px solid var(--mint); }
.audience-card.for-carriers:hover { border-color: var(--mint); }
.audience-card.for-agencies { border-left: 4px solid #22D3EE; }
.audience-card.for-agencies:hover { border-color: #22D3EE; }

.audience-icon { flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.audience-icon-carriers { background: rgba(52,211,153,0.1); }
.audience-icon-agencies { background: rgba(34,211,238,0.1); }

.audience-body { flex: 1 1 auto; }

.audience-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin: 0 0 0.3rem; }

.audience-title { font-size: 1.35rem; font-weight: 700; margin: 0 0 0.6rem; line-height: 1.25; }

.audience-desc { font-size: 0.95rem; color: var(--muted); margin: 0 0 1rem; }

.audience-cta { font-size: 0.92rem; font-weight: 600; color: var(--mint-dark); }
.audience-cta-2 { color: #0891B2; }

/* ---------- section alignment helpers ---------- */
.section-title-left { text-align: left; }
.section-sub-left { text-align: left; margin-left: 0; }

/* ---------- section CTA row ---------- */
.section-cta-row { margin-top: 2rem; display: flex; gap: 0.8rem; align-items: center; flex-wrap: wrap; }

/* ---------- btn-primary-2 (cyan / platform) ---------- */
.btn-primary-2 { background: #22D3EE; color: #0A2233; }
.btn-primary-2:hover { background: #06B6D4; }

/* ---------- dual CTA band ---------- */
.dual-cta-band { background: var(--navy); color: #E5E7EB; padding: 4rem 0; }

.dual-cta-inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 3rem; align-items: center; }

.dual-cta-block h3 { color: #F8FAFC; font-size: 1.4rem; margin: 0.5rem 0 0.6rem; }

.dual-cta-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #64748B; margin: 0 0 0.2rem; }

.dual-cta-block p { color: #94A3B8; margin-bottom: 1.5rem; }

.dual-cta-divider { width: 1px; background: #1E293B; align-self: stretch; }

/* ---------- about dual layout ---------- */
.about-dual { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.about-entity { border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 2.25rem; }

.about-entity-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }

.about-entity-header h2 { font-size: 1.4rem; margin: 0; }

.about-entity-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.about-entity-dot-mint { background: var(--mint); }
.about-entity-dot-cyan { background: #22D3EE; }

.about-entity p { color: var(--muted); }

.about-entity a { margin-top: 0.5rem; }

/* ---------- pricing tabs ---------- */
.pricing-audience-tabs { display: flex; gap: 1.25rem; }

.pricing-tab {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--ink);
    transition: border-color 150ms ease-out;
    min-width: 200px;
}

.pricing-tab:hover { border-color: var(--mint); text-decoration: none; }

.pricing-tab-active { border-color: var(--mint); }

.pricing-tab-platform:hover { border-color: #22D3EE; }

.pricing-tab-label { font-weight: 700; font-size: 1rem; }

.pricing-tab-sub { font-size: 0.85rem; color: var(--muted); margin-top: 0.2rem; }

/* featured-2: platform featured card (cyan) */
.price-card.featured-2 { border-color: #22D3EE; box-shadow: 0 16px 40px -24px rgba(34,211,238,0.35); }

.badge-2 { position: absolute; top: -12px; right: 16px; background: #22D3EE; color: #0A2233; font-size: 0.72rem; font-weight: 700; padding: 0.25rem 0.6rem; border-radius: 999px; }

/* ---------- contingency table ---------- */
.contingency-table { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-top: 1.5rem; }

.contingency-row { display: grid; grid-template-columns: 1.5fr 1fr 2fr; gap: 1rem; padding: 0.9rem 1.25rem; border-bottom: 1px solid var(--border); align-items: center; }

.contingency-row:last-child { border-bottom: none; }

.contingency-header { background: var(--paper-2); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.03em; color: var(--muted); text-transform: uppercase; }

.contingency-rate { font-weight: 700; font-size: 1.05rem; color: var(--mint-dark); }

/* ---------- for-carriers page hero ---------- */
.page-hero-carriers { background: linear-gradient(135deg, #0B1220 0%, #0F1E38 100%); color: #E5E7EB; padding: 4rem 0; }

.page-hero-carriers h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; color: #F8FAFC; }

.page-hero-carriers .lede { color: #AeB9CC; margin-left: 0; max-width: 720px; }

.page-hero-carriers .eyebrow { color: var(--mint); }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 0.1rem; margin-top: 1.5rem; }

.faq-item { border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 0.75rem; }

.faq-item h3 { font-size: 1.05rem; margin: 0 0 0.6rem; }

.faq-item p { color: var(--muted); margin: 0; }
.faq-item summary { cursor: pointer; font-weight: 700; font-size: 1.05rem; color: var(--ink); list-style-position: outside; }
.faq-item summary::marker { color: var(--mint); }
.faq-item[open] summary { margin-bottom: 0.6rem; }

/* ---------- trust bar ---------- */
.trust-bar { background: var(--navy-2); border-bottom: 1px solid #1F2937; overflow: hidden; }

.trust-bar-inner {
    display: flex;
    gap: 2.5rem;
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94A3B8;
    justify-content: center;
}

.trust-bar-inner::-webkit-scrollbar { display: none; }

.trust-bar-inner span { flex-shrink: 0; }

/* ---------- hero-main (homepage dark hero) ---------- */
.hero-main { position: relative; overflow: hidden; }

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(52, 211, 153, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(52, 211, 153, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* ---------- card-accent ---------- */
.card-accent {
    border-left: 3px solid var(--mint);
    padding-left: calc(1.5rem - 2px);
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(52, 211, 153, 0.1);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

/* ---------- btn-ghost-light (for dark backgrounds) ---------- */
.btn-ghost-light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #E5E7EB;
}

.btn-ghost-light:hover {
    border-color: var(--mint);
    color: var(--mint);
}

/* ---------- footer partner link ---------- */
.footer-partner-link {
    color: #64748B !important;
    font-size: 0.82rem !important;
    opacity: 0.75;
    transition: opacity 150ms ease-out, color 150ms ease-out;
}

.footer-partner-link:hover {
    color: var(--mint) !important;
    opacity: 1;
}

/* ---------- steps-4 (explicit 4-col alias) ---------- */
.steps-4 { grid-template-columns: repeat(4, 1fr); }
.steps-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .steps-3 { grid-template-columns: 1fr; } }

/* ---------- brand-mark-img (SVG logo) ---------- */
.brand-mark-img {
    display: inline-block;
    border-radius: 7px;
    flex-shrink: 0;
}

/* ---------- offering cards ---------- */
.offering-card { position: relative; display: flex; flex-direction: column; }

.offering-num {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 0.6rem;
}

.offering-num-accent { color: var(--mint-dark); }

.offering-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }

.offering-card p { flex: 1 1 auto; }

.offering-link {
    display: inline-block;
    margin-top: 1.1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--mint-dark);
    text-decoration: none;
}

.offering-link:hover { color: var(--ink); text-decoration: none; }

.offering-card-featured {
    border-color: var(--mint);
    background: linear-gradient(160deg, rgba(52,211,153,0.05) 0%, var(--paper) 60%);
    box-shadow: 0 16px 40px -20px rgba(52,211,153,0.2);
}

/* ---------- responsive: dual-audience ---------- */
@media (max-width: 860px) {
    .audience-cards { grid-template-columns: 1fr; }
    .audience-card { flex-direction: column; }
    .about-dual { grid-template-columns: 1fr; }
    .dual-cta-inner { grid-template-columns: 1fr; gap: 2rem; }
    .dual-cta-divider { width: auto; height: 1px; background: #1E293B; }
    .pricing-audience-tabs { flex-direction: column; }
    .contingency-row { grid-template-columns: 1fr 1fr; }
    .contingency-row span:last-child { display: none; }
    .steps { grid-template-columns: 1fr 1fr; }
}

/* ============ Rich page components (site/ handoff layouts) ============ */

/* Navy hero, 2-column */
.rich-hero { background: var(--navy); color: #fff; padding: 4.5rem 0; }
.rich-hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3.5rem; align-items: center; }
.rich-hero h1 { font-size: clamp(2.1rem, 4.4vw, 2.9rem); font-weight: 800; color: #fff; line-height: 1.08; margin: 1.1rem 0 0; }
.rich-hero .lede { color: #B9C1CF; max-width: 480px; margin: 1.1rem 0 0; }
.rich-hero .hero-cta { justify-content: flex-start; margin-top: 1.75rem; }
.rich-hero .eyebrow { color: #9BB8FA; }

/* Navy inset panel with number rows (hero-right / contingency math) */
.num-panel { background: #0F1729; border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 1.5rem; }
.num-panel .eyebrow { color: var(--faint); margin-bottom: 1rem; }
.num-row { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 0.3rem 0; }
.num-row span:first-child { color: #8A94A8; }
.num-row span:last-child { font-weight: 700; font-variant-numeric: tabular-nums; }
.num-rule { height: 1px; background: rgba(255,255,255,0.14); margin: 0.4rem 0; }
.num-total { font-weight: 800; font-size: 0.95rem; }
.num-total span:first-child { color: #fff; }
.num-meta { margin-top: 1rem; font-size: 0.64rem; color: #8A94A8; font-family: var(--mono); letter-spacing: 0.04em; }

/* Stat tiles — navy + light */
.navy-tiles, .stat-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.navy-tile { background: #0F1729; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 1rem 1.1rem; }
.stat-tile { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 0.95rem 1rem; }
.navy-tile b, .stat-tile b { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; display: block; }
.navy-tile span, .stat-tile span { font-size: 0.7rem; font-weight: 600; margin-top: 0.25rem; display: block; line-height: 1.4; }
.navy-tile span { color: #8A94A8; }
.stat-tile span { color: var(--muted); }

/* Full-width navy band */
.band { background: var(--navy); color: #fff; padding: 3.5rem 0; }
.band-inner { display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; }
.band h2 { font-size: clamp(1.3rem, 2.5vw, 1.55rem); color: #fff; }
.band p { color: #8A94A8; margin: 0.5rem 0 0; max-width: 580px; }
.band .eyebrow { color: var(--mint); }
.band-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; margin-top: 1.75rem; }
.band-card { background: #0F1729; border: 1px solid rgba(255,255,255,0.09); border-radius: 12px; padding: 1.25rem; }
.band-card h3 { font-size: 0.9rem; color: #fff; margin: 0; }
.band-card p { color: #8A94A8; font-size: 0.78rem; margin: 0.5rem 0 0; max-width: none; }

/* Glyph tile on cards */
.card-glyph { width: 34px; height: 34px; border-radius: 9px; background: var(--soft-blue); color: var(--mint-dark); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 800; font-family: var(--mono); margin-bottom: 0.85rem; }

/* Checkmark + dot lists */
.check-list, .dot-list { display: flex; flex-direction: column; gap: 0.65rem; margin: 1.25rem 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.9rem; line-height: 1.5; color: #3A4353; }
.check-list li::before { content: "✓"; flex: none; width: 18px; height: 18px; border-radius: 999px; background: var(--success-bg); color: var(--success-ink); display: flex; align-items: center; justify-content: center; font-size: 0.62rem; font-weight: 800; margin-top: 0.1rem; }
.dot-list li { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.86rem; line-height: 1.5; }
.dot-list li::before { content: ""; flex: none; width: 7px; height: 7px; border-radius: 2px; background: var(--mint); margin-top: 0.45rem; }

/* 2-column split + navy card */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.split-2-wide { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.card-navy { background: var(--navy); color: #fff; border-radius: 14px; padding: 1.75rem; }
.card-navy h3, .card-navy .card-navy-title { color: #fff; }
.card-navy p { color: #B9C1CF; }
.card-navy .eyebrow { color: var(--mint); }
.card-navy .dot-list li { color: #B9C1CF; }

/* Pills, definition rows, tile cards, logo pills, FAQ rows */
.pills { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem; }
.pill { font-size: 0.7rem; font-weight: 700; padding: 0.3rem 0.75rem; border-radius: 999px; background: var(--soft-blue); color: var(--mint-dark); }
.def-list { display: flex; flex-direction: column; margin-top: 1rem; }
.def-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.8rem 0; border-bottom: 1px solid var(--divider); }
.def-row b { font-size: 0.88rem; font-weight: 700; }
.def-row span { font-size: 0.78rem; color: var(--muted); text-align: right; }
.tile-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 1rem; }
.tile-card { background: var(--surface-2); border: 1px solid #EEF0F3; border-radius: 10px; padding: 0.8rem 0.95rem; font-size: 0.82rem; font-weight: 700; }
.logo-pills { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.1rem; }
.logo-pill { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 0.75rem 1.25rem; font-size: 0.9rem; font-weight: 800; }
.faq-rows { display: flex; flex-direction: column; margin-top: 1rem; }
.faq-row { border-bottom: 1px solid var(--border); padding: 1rem 0; }
.faq-row h3 { font-size: 0.95rem; font-weight: 700; margin: 0; }
.faq-row p { font-size: 0.85rem; color: var(--muted); margin: 0.4rem 0 0; line-height: 1.6; }

/* Product-mock queue (hero-right) */
.mock-rows { display: flex; flex-direction: column; gap: 0.5rem; padding: 0.9rem 1rem; }
.mock-row { background: #fff; border: 1px solid var(--border); border-radius: 9px; padding: 0.6rem 0.8rem; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.mock-row b { font-size: 0.75rem; font-weight: 700; display: block; }
.mock-row .m { font-size: 0.58rem; color: var(--faint); font-family: var(--mono); margin-top: 0.15rem; display: block; }
.st { font-size: 0.6rem; font-weight: 700; padding: 0.18rem 0.55rem; border-radius: 999px; white-space: nowrap; flex: none; }
.st-green { background: var(--success-bg); color: var(--success-ink); }
.st-blue { background: var(--soft-blue); color: var(--mint-dark); }
.st-amber { background: var(--amber-bg); color: var(--amber-ink); }
.st-gray { background: var(--divider); color: #3A4353; }

@media (max-width: 860px) {
    .rich-hero-grid, .split-2, .split-2-wide { grid-template-columns: 1fr; gap: 2rem; }
    .band-cards { grid-template-columns: 1fr 1fr; }
    .band-inner { flex-direction: column; align-items: flex-start; }
    .rich-hero-hide-sm { display: none; }
}

/* Grid table (controls, comparisons) */
.gtable { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: #fff; margin-top: 2rem; }
.gtable-head, .gtable-row { display: grid; gap: 0.75rem; padding: 0.85rem 1.25rem; align-items: center; }
.gtable-head { background: var(--surface-2); border-bottom: 1px solid var(--border); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.05em; color: var(--faint); text-transform: uppercase; }
.gtable-row { border-bottom: 1px solid var(--divider); font-size: 0.8rem; }
.gtable-row:last-child { border-bottom: none; }
.gtable-row b { font-weight: 700; }
.gtable-row .muted { color: var(--muted); line-height: 1.5; }
.st-red { background: var(--danger-bg); color: var(--danger-ink); }

/* Mono audit/log panel (navy) */
.mono-log { background: #0F1729; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 1.25rem 1.35rem; font-family: var(--mono); }
.log-row { display: flex; gap: 0.9rem; padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 0.68rem; }
.log-row .t { color: #8A94A8; flex: none; width: 84px; }
.log-row .e { color: #D5DAE3; flex: 1; }
.log-row .h { color: var(--mint); flex: none; }
.log-meta { font-size: 0.6rem; color: #8A94A8; margin-top: 0.85rem; letter-spacing: 0.04em; }

@media (max-width: 860px) {
    .gtable-head { display: none; }
    .gtable-row { grid-template-columns: 1fr !important; gap: 0.3rem; }
}

/* Vertical numbered stepper (How it works) */
.vsteps { display: flex; flex-direction: column; max-width: 880px; margin: 0 auto; }
.vstep { display: flex; gap: 1.5rem; }
.vstep-rail { display: flex; flex-direction: column; align-items: center; width: 44px; flex: none; }
.vstep-num { width: 44px; height: 44px; border-radius: 999px; background: var(--mint); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 800; font-family: var(--mono); flex: none; }
.vstep-line { width: 2px; flex: 1; min-height: 28px; background: #C9D7F5; }
.vstep-body { flex: 1; padding-bottom: 2rem; }
.vstep-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.vstep-head h3 { font-size: 1.2rem; margin: 0; }
.vstep-tag { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em; color: var(--faint); font-family: var(--mono); white-space: nowrap; }

/* Consumer pages — lighter, calmer than the B2B navy */
.soft-hero { background: #F7F9FC; padding: 4rem 0 3.75rem; text-align: center; border-bottom: 1px solid var(--border); }
.soft-hero .eyebrow { color: var(--mint); }
.soft-hero h1 { font-size: clamp(1.9rem, 4vw, 2.35rem); font-weight: 800; }
.soft-hero .lede { color: var(--muted); max-width: 560px; margin: 1rem auto 0; }
.consumer-wrap { max-width: 760px; margin: 0 auto; }
.rights-list { display: flex; flex-direction: column; gap: 0.9rem; }
.rights-card { border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem 1.65rem; display: flex; gap: 1rem; align-items: flex-start; background: #fff; }
.num-tile { width: 38px; height: 38px; flex: none; border-radius: 10px; background: var(--soft-blue); color: var(--mint-dark); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 800; font-family: var(--mono); }
.rights-card h3 { font-size: 1.05rem; margin: 0; }
.rights-card > div { flex: 1; }
.honor { margin-top: 0.75rem; background: #F7F9FC; border: 1px solid #EEF0F3; border-radius: 10px; padding: 0.7rem 0.9rem; display: flex; gap: 0.55rem; align-items: flex-start; font-size: 0.8rem; line-height: 1.55; color: #3A4353; }
.honor::before { content: "✓"; flex: none; width: 16px; height: 16px; border-radius: 999px; background: var(--success-bg); color: var(--success-ink); display: flex; align-items: center; justify-content: center; font-size: 0.55rem; font-weight: 800; margin-top: 0.1rem; }
.action-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.action-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 1.35rem 1.5rem; display: block; color: var(--ink); transition: border-color 150ms ease; }
.action-card:hover { border-color: var(--mint); text-decoration: none; }
.action-card b { font-size: 1rem; font-weight: 800; color: var(--ink); display: block; }
.action-card span { font-size: 0.8rem; color: var(--muted); margin-top: 0.3rem; display: block; line-height: 1.5; }
.disclosure { font-size: 0.72rem; color: var(--faint); line-height: 1.6; border-top: 1px solid var(--border); padding-top: 1.25rem; margin-top: 1.5rem; }
@media (max-width: 860px) { .action-cards { grid-template-columns: 1fr; } }
