/* clauseflint.css — Clauseflint site CSS (web0519)
   BEM prefix: cf-*  |  Accent: #1e3a8a  |  Secondary: #b45309
   Inlines: base.css + nav + hero + stats + features + process + testimonials + cta + footer + cookie-banner
   Anti-fingerprint: 4-space indent, cf- prefix, Plus Jakarta Sans + IBM Plex Mono
*/

/* ============================================================ */
/* HORIZONTAL OVERFLOW GUARD (MANDATORY)                        */
/* ============================================================ */
html, body { overflow-x: hidden; }

/* ============================================================ */
/* CSS CUSTOM PROPERTIES                                        */
/* ============================================================ */
:root {
    --cf-accent: #1e3a8a;
    --cf-accent-rgb: 30, 58, 138;
    --cf-secondary: #b45309;
    --cf-secondary-rgb: 180, 83, 9;
    --cf-bg-dark: #0f172a;
    --cf-bg-alt: #1e293b;
    --cf-bg-surface: #0e1a31;
    --cf-bg-white: #ffffff;
    --cf-bg-light: #f8fafc;
    --cf-text-primary: #f1f5f9;
    --cf-text-body: #1e293b;
    --cf-text-secondary: #94a3b8;
    --cf-text-muted: #64748b;
    --cf-border: #334155;
    --cf-border-light: rgba(15, 23, 42, 0.1);
    --cf-font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --cf-font-mono: 'IBM Plex Mono', 'Courier New', monospace;
    --cf-radius: 8px;
    --cf-radius-lg: 12px;
    --cf-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --cf-shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
    --cf-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --cf-container: 1200px;
    --cf-section-pad: 88px;
}

/* ============================================================ */
/* RESET + BASE                                                 */
/* ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--cf-font-display);
    background: var(--cf-bg-white);
    color: var(--cf-text-body);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--cf-accent);
    text-decoration: none;
}

a:hover {
    opacity: 0.85;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--cf-font-display);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px;
}

p {
    margin: 0 0 16px;
}

ul, ol {
    padding-left: 1.5em;
}

/* ============================================================ */
/* SHARED CONTAINER UTILITY                                     */
/* ============================================================ */
.cf-container {
    max-width: var(--cf-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================ */
/* SECTION HEADER SHARED                                        */
/* ============================================================ */
.cf-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.cf-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cf-secondary);
    margin-bottom: 12px;
    font-family: var(--cf-font-mono);
}

.cf-section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--cf-bg-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cf-section-title--light {
    color: var(--cf-text-primary);
}

.cf-section-desc {
    font-size: 17px;
    color: var(--cf-text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================================ */
/* BUTTONS                                                      */
/* ============================================================ */
.cf-btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--cf-font-display);
    border-radius: var(--cf-radius);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.cf-btn--primary {
    background: var(--cf-accent);
    color: #ffffff;
}

.cf-btn--primary:hover {
    background: #1e3a8a;
    filter: brightness(1.1);
    color: #ffffff;
    opacity: 1;
}

.cf-btn--outline {
    background: transparent;
    color: #e2e8f0;
    border: 1px solid rgba(226, 232, 240, 0.35);
}

.cf-btn--outline:hover {
    border-color: #e2e8f0;
    color: #ffffff;
    opacity: 1;
}

.cf-btn--outline-dark {
    background: transparent;
    color: var(--cf-accent);
    border: 1px solid var(--cf-accent);
}

.cf-btn--outline-dark:hover {
    background: var(--cf-accent);
    color: #ffffff;
    opacity: 1;
}

.cf-btn--sm {
    padding: 8px 18px;
    font-size: 13px;
}

/* ============================================================ */
/* NAV — cf-nav (sticky, dark theme, flat structure)            */
/* ============================================================ */
.cf-nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.cf-nav--sticky {
    position: sticky;
    top: 0;
}

.cf-nav--transparent {
    background: transparent;
    border-bottom: 1px solid transparent;
}

.cf-nav--solid {
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cf-nav--transparent.cf-nav--scrolled,
.cf-nav--solid.cf-nav--scrolled {
    background: rgba(15, 23, 42, 0.97);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.cf-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--cf-container);
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
}

.cf-nav__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.cf-nav__logo-img {
    height: 32px;
    width: auto;
    display: none;
}

.cf-nav__logo-img--light {
    display: none;
}

.cf-nav__logo-img--dark {
    display: inline-block;
}

.cf-nav__logo-text {
    font-size: 18px;
    font-weight: 800;
    color: #f1f5f9;
    letter-spacing: -0.01em;
    font-family: var(--cf-font-display);
}

.cf-nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cf-nav__link {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #94a3b8;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: var(--cf-radius);
    transition: color 0.2s ease;
}

.cf-nav__link:hover,
.cf-nav__link--active {
    color: #f1f5f9;
    opacity: 1;
}

.cf-nav__cta {
    background: var(--cf-accent);
    color: #ffffff !important;
    padding: 9px 20px !important;
    border-radius: var(--cf-radius);
    font-weight: 600;
    font-size: 14px;
    margin-left: 8px;
    transition: filter 0.2s ease;
}

.cf-nav__cta:hover {
    filter: brightness(1.1);
    color: #ffffff !important;
    opacity: 1;
}

.cf-nav__cta--button {
    /* same as cf-nav__cta */
}

.cf-nav__actions {
    display: flex;
    align-items: center;
}

.cf-nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.cf-nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #f1f5f9;
    border-radius: 2px;
    transition: 0.3s;
}

/* Scrolled state handled by cf-nav--transparent.cf-nav--scrolled and cf-nav--solid.cf-nav--scrolled above */

/* Responsive nav */
@media (max-width: 768px) {
    .cf-nav__links {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #0f172a;
        padding: 16px 24px 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        gap: 2px;
    }

    .cf-nav__links.open {
        display: flex;
    }

    .cf-nav__toggle {
        display: flex;
    }

    .cf-nav__link {
        padding: 10px 12px;
        width: 100%;
    }

    .cf-nav__cta {
        margin: 8px 0 0;
        text-align: center;
        width: 100%;
    }
}

/* ============================================================ */
/* HERO — cf-hero, cf-hero--full-bleed (D-full-bleed)           */
/* ============================================================ */
.cf-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0f172a url('../images/hero-bg.webp') center / cover no-repeat;
    color: var(--cf-text-primary);
}

.cf-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.85));
    z-index: 0;
    pointer-events: none;
}

.cf-hero__inner {
    position: relative;
    z-index: 2;
    max-width: var(--cf-container);
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.cf-hero__content {
    max-width: 65%;
}

.cf-hero__title {
    font-size: clamp(36px, 5.5vw, 62px);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.cf-hero__lede {
    font-size: 19px;
    line-height: 1.65;
    color: rgba(241, 245, 249, 0.8);
    margin-bottom: 36px;
    max-width: 580px;
}

.cf-hero__cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.cf-hero__cta {
    /* inherits .cf-btn styles */
}

/* Subpage hero */
.cf-subpage-hero {
    background: var(--cf-bg-dark);
    padding: 80px 0 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cf-subpage-hero__inner {
    max-width: var(--cf-container);
    margin: 0 auto;
    padding: 0 24px;
}

.cf-subpage-hero__title {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cf-subpage-hero__lede {
    font-size: 17px;
    color: rgba(241, 245, 249, 0.7);
    max-width: 600px;
    line-height: 1.65;
    margin: 0;
}

/* Page hero alias */
.cf-page-hero { background: var(--cf-bg-dark); padding: 72px 0 56px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.cf-page-hero__inner { max-width: var(--cf-container); margin: 0 auto; padding: 0 24px; }
.cf-page-hero__title { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; color: #ffffff; margin-bottom: 14px; letter-spacing: -0.02em; }
.cf-page-hero__lede { font-size: 17px; color: rgba(241, 245, 249, 0.7); max-width: 580px; line-height: 1.65; margin: 0; }

@media (max-width: 768px) {
    .cf-hero { min-height: 80vh; padding: 80px 0 60px; }
    .cf-hero__content { max-width: 100%; }
    .cf-subpage-hero { padding: 64px 0 48px; }
}

/* ============================================================ */
/* STATS — cf-stats, B-cards variant                            */
/* ============================================================ */
.cf-stats {
    background: var(--cf-bg-dark);
    padding: 72px 0;
}

.cf-stats__inner {
    max-width: var(--cf-container);
    margin: 0 auto;
    padding: 0 24px;
}

.cf-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.cf-stats__item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--cf-radius-lg);
    padding: 32px 24px;
    text-align: center;
}

.cf-stats__number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--cf-secondary);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-family: var(--cf-font-mono);
}

.cf-stats__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--cf-text-primary);
    margin-top: 10px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .cf-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .cf-stats__number { font-size: 32px; }
}

/* ============================================================ */
/* FEATURES — cf-features, C-alternating variant                */
/* ============================================================ */
.cf-features {
    padding: var(--cf-section-pad) 0;
    background: var(--cf-bg-white);
}

.cf-features__inner {
    max-width: var(--cf-container);
    margin: 0 auto;
    padding: 0 24px;
}

.cf-features__grid {
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.cf-features__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.cf-features__card:nth-child(even) .cf-features__body {
    order: 2;
}

.cf-features__card:nth-child(even) .cf-features__icon {
    order: 1;
}

.cf-features__icon {
    position: relative;
    overflow: hidden;
    border-radius: var(--cf-radius-lg);
}

.cf-features__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--cf-radius-lg);
    aspect-ratio: 4 / 3;
}

.cf-features__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.cf-features__title {
    font-size: 24px;
    font-weight: 800;
    color: var(--cf-bg-dark);
    margin-bottom: 12px;
    letter-spacing: -0.015em;
}

.cf-features__body {
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
}

.cf-features__body p {
    margin-bottom: 14px;
}

.cf-features__body p:last-child {
    margin-bottom: 0;
}

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

    .cf-features__card:nth-child(even) .cf-features__body,
    .cf-features__card:nth-child(even) .cf-features__icon {
        order: unset;
    }
}

/* ============================================================ */
/* PROCESS — cf-process, A-numbered variant                     */
/* ============================================================ */
.cf-process {
    padding: var(--cf-section-pad) 0;
    background: var(--cf-bg-light);
}

.cf-process__inner {
    max-width: var(--cf-container);
    margin: 0 auto;
    padding: 0 24px;
}

.cf-process__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 8px;
}

.cf-process__step {
    background: var(--cf-bg-white);
    border-radius: var(--cf-radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--cf-border-light);
    position: relative;
}

.cf-process__step-num {
    display: block;
    font-size: 44px;
    font-weight: 900;
    color: var(--cf-accent);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 20px;
    font-family: var(--cf-font-mono);
}

.cf-process__step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--cf-bg-dark);
    margin-bottom: 12px;
}

.cf-process__step-body {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .cf-process__steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
    .cf-process__steps { grid-template-columns: 1fr; }
}

/* ============================================================ */
/* TESTIMONIALS — cf-testimonials, A-quotes variant             */
/* ============================================================ */
.cf-testimonials {
    padding: var(--cf-section-pad) 0;
    background: #f8fafc;
}

.cf-testimonials__inner {
    max-width: var(--cf-container);
    margin: 0 auto;
    padding: 0 24px;
}

.cf-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.cf-testimonials__card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--cf-radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
}

.cf-testimonials__quote {
    font-size: 16px;
    line-height: 1.65;
    color: #1e293b;
    margin: 0 0 28px;
    font-style: normal;
}

.cf-testimonials__author {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    display: block;
}

.cf-testimonials__role {
    font-size: 13px;
    color: #64748b;
    display: block;
    margin-top: 2px;
}

@media (max-width: 900px) {
    .cf-testimonials__grid { grid-template-columns: 1fr; }
    .cf-testimonials__card { min-height: auto; }
}

/* ============================================================ */
/* INTEGRATIONS — cf-integrations                               */
/* ============================================================ */
.cf-integrations {
    padding: 64px 0;
    background: var(--cf-bg-light);
}

.cf-integrations__inner {
    max-width: var(--cf-container);
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.cf-integrations__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 36px;
}

.cf-integrations__logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cf-bg-white);
    border: 1px solid var(--cf-border-light);
    border-radius: var(--cf-radius);
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    transition: border-color 0.2s, color 0.2s;
}

.cf-integrations__logo:hover {
    border-color: var(--cf-accent);
    color: var(--cf-accent);
    opacity: 1;
}

.cf-integrations__logo i {
    color: var(--cf-accent);
    font-size: 16px;
}

/* ============================================================ */
/* CTA — cf-cta, A-banner variant                               */
/* ============================================================ */
.cf-cta {
    background: var(--cf-accent);
    padding: 72px 0;
    text-align: center;
}

.cf-cta__inner {
    max-width: var(--cf-container);
    margin: 0 auto;
    padding: 0 24px;
}

.cf-cta__title {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cf-cta__body {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cf-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cf-cta .cf-btn--primary {
    background: #ffffff;
    color: var(--cf-accent);
}

.cf-cta .cf-btn--primary:hover {
    background: #f8fafc;
    color: var(--cf-accent);
    opacity: 1;
    filter: none;
}

.cf-cta .cf-btn--outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.cf-cta .cf-btn--outline:hover {
    border-color: #ffffff;
    color: #ffffff;
    opacity: 1;
}

/* ============================================================ */
/* FOOTER — cf-footer, A-4col variant                           */
/* ============================================================ */
.cf-footer {
    background: var(--cf-bg-dark);
    padding: 64px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--cf-text-secondary);
}

.cf-footer__inner {
    max-width: var(--cf-container);
    margin: 0 auto;
    padding: 0 24px;
}

.cf-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
}

.cf-footer__col {
    min-width: 0;
}

.cf-footer__col--brand {
    /* brand column: wider */
}

.cf-footer__col a {
    font-size: 20px;
    font-weight: 800;
    color: var(--cf-text-primary);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    font-family: var(--cf-font-display);
}

.cf-footer__tagline {
    font-size: 14px;
    color: var(--cf-text-muted);
    line-height: 1.6;
    margin: 12px 0 20px;
}

.cf-footer__heading {
    font-size: 13px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.cf-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cf-footer__list-item {
    margin-bottom: 10px;
}

.cf-footer__list-item a {
    font-size: 14px;
    color: var(--cf-text-secondary);
    text-decoration: none;
    transition: color 0.2s;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
}

.cf-footer__list-item a:hover {
    color: var(--cf-text-primary);
    opacity: 1;
}

.cf-footer__social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.cf-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--cf-radius);
    background: rgba(255, 255, 255, 0.06);
    color: var(--cf-text-secondary);
    font-size: 15px;
    transition: background 0.2s, color 0.2s;
}

.cf-footer__social-link:hover {
    background: var(--cf-accent);
    color: #ffffff;
    opacity: 1;
}

.cf-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--cf-text-secondary);
    margin-bottom: 10px;
    line-height: 1.5;
}

.cf-footer__contact-item i {
    color: var(--cf-secondary);
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
}

.cf-footer__legal {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--cf-text-muted);
    flex-wrap: wrap;
    gap: 12px;
}

.cf-footer__legal-links {
    display: flex;
    gap: 20px;
}

.cf-footer__legal-links a {
    color: var(--cf-text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: color 0.2s;
    margin-bottom: 0;
}

.cf-footer__legal-links a:hover {
    color: var(--cf-text-secondary);
    opacity: 1;
}

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

@media (max-width: 576px) {
    .cf-footer__grid { grid-template-columns: 1fr; gap: 28px; }
    .cf-footer__legal { flex-direction: column; align-items: center; text-align: center; }
}

/* ============================================================ */
/* COOKIE BANNER — cf-cookie, corner-toast-br variant           */
/* Uses design-spec.ui.cookie_banner mechanism: hidden-attribute */
/* Position: corner-toast-br per design-spec                    */
/* ============================================================ */
.cf-cookie {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 420px;
    z-index: 1200;
    background: #0f172a;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    color: #e2e8f0;
    padding: 18px 22px;
}

@media (max-width: 640px) {
    .cf-cookie {
        bottom: 16px;
        left: 16px;
        right: 16px;
        max-width: none;
    }
}

.cf-cookie[hidden] {
    display: none !important;
}

.cf-cookie__inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cf-cookie__text {
    font-size: 13px;
    line-height: 1.55;
    color: #94a3b8;
    margin: 0;
}

.cf-cookie__text a {
    color: var(--cf-secondary);
    text-decoration: underline;
}

.cf-cookie__buttons {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.cf-cookie .cf-btn--outline {
    border-color: rgba(255, 255, 255, 0.2);
    color: #94a3b8;
}

.cf-cookie .cf-btn--outline:hover {
    border-color: #94a3b8;
    color: #e2e8f0;
}

.cf-cookie-dismiss {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 13px;
    padding: 8px 12px;
    transition: color 0.2s;
    font-family: var(--cf-font-display);
}

.cf-cookie-dismiss:hover {
    color: #94a3b8;
}


/* ============================================================ */
/* INDEX-SPECIFIC: PROBLEM SECTION                              */
/* ============================================================ */
.cf-problem {
    padding: var(--cf-section-pad) 0;
    background: var(--cf-bg-light);
}

.cf-problem__inner {
    max-width: var(--cf-container);
    margin: 0 auto;
    padding: 0 24px;
}

.cf-problem__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cf-problem__title {
    font-size: 32px;
    font-weight: 800;
    color: var(--cf-bg-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cf-problem__body {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

.cf-problem__stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cf-problem__stat {
    background: var(--cf-bg-white);
    border-left: 3px solid var(--cf-secondary);
    padding: 20px 24px;
    border-radius: 0 var(--cf-radius) var(--cf-radius) 0;
}

.cf-problem__stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--cf-accent);
    line-height: 1;
    font-family: var(--cf-font-mono);
    display: block;
    margin-bottom: 6px;
}

.cf-problem__stat-label {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .cf-problem__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================ */
/* PRODUCT PAGE: HOW IT WORKS SECTION                          */
/* ============================================================ */
.cf-how-it-works {
    padding: var(--cf-section-pad) 0;
    background: var(--cf-bg-dark);
}

.cf-how-it-works__inner {
    max-width: var(--cf-container);
    margin: 0 auto;
    padding: 0 24px;
}

.cf-how-it-works__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 8px;
}

.cf-how-it-works__step {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--cf-radius-lg);
    position: relative;
}

.cf-how-it-works__step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid rgba(255, 255, 255, 0.15);
}

.cf-how-it-works__step:last-child::after {
    display: none;
}

.cf-how-it-works__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(30, 58, 138, 0.3);
    border: 2px solid rgba(30, 58, 138, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 22px;
    color: #93c5fd;
}

.cf-how-it-works__step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--cf-text-primary);
    margin-bottom: 12px;
}

.cf-how-it-works__step-body {
    font-size: 15px;
    color: var(--cf-text-secondary);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .cf-how-it-works__steps { grid-template-columns: 1fr; gap: 24px; }
    .cf-how-it-works__step::after { display: none; }
}

/* ============================================================ */
/* PRODUCT PAGE: TARGET CUSTOMER SECTION                        */
/* ============================================================ */
.cf-target-customer {
    padding: var(--cf-section-pad) 0;
    background: var(--cf-bg-white);
}

.cf-target-customer__inner {
    max-width: var(--cf-container);
    margin: 0 auto;
    padding: 0 24px;
}

.cf-target-customer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.cf-target-customer__title {
    font-size: 28px;
    font-weight: 800;
    color: var(--cf-bg-dark);
    margin-bottom: 16px;
    letter-spacing: -0.015em;
}

.cf-target-customer__body {
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 16px;
}

.cf-target-customer__tag-group {
    margin-top: 24px;
}

.cf-target-customer__tag-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--cf-text-muted);
    margin-bottom: 10px;
    font-family: var(--cf-font-mono);
}

.cf-target-customer__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.cf-target-customer__tag {
    background: var(--cf-bg-light);
    border: 1px solid var(--cf-border-light);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
}

.cf-target-customer__not-for {
    background: var(--cf-bg-light);
    border-left: 3px solid #e2e8f0;
    border-radius: 0 var(--cf-radius) var(--cf-radius) 0;
    padding: 20px 24px;
    margin-top: 24px;
}

.cf-target-customer__not-for-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--cf-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-family: var(--cf-font-mono);
}

.cf-target-customer__not-for-body {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .cf-target-customer__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================ */
/* ABOUT PAGE: FOUNDING STORY, MISSION, VALUES                  */
/* ============================================================ */
.cf-founding-story {
    padding: var(--cf-section-pad) 0;
    background: var(--cf-bg-white);
}

.cf-founding-story__inner {
    max-width: var(--cf-container);
    margin: 0 auto;
    padding: 0 24px;
}

.cf-founding-story__grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 64px;
    align-items: start;
}

.cf-founding-story__title {
    font-size: 28px;
    font-weight: 800;
    color: var(--cf-bg-dark);
    margin-bottom: 24px;
    letter-spacing: -0.015em;
}

.cf-founding-story__body {
    font-size: 16px;
    line-height: 1.85;
    color: #374151;
}

.cf-founding-story__body p {
    margin-bottom: 18px;
}

.cf-founding-story__aside {
    background: var(--cf-bg-light);
    border-radius: var(--cf-radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--cf-border-light);
}

.cf-founding-story__aside-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cf-text-muted);
    margin-bottom: 16px;
    font-family: var(--cf-font-mono);
}

.cf-founding-story__img {
    width: 100%;
    border-radius: var(--cf-radius-lg);
    display: block;
}

@media (max-width: 900px) {
    .cf-founding-story__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================ */
/* ABOUT PAGE: MISSION                                          */
/* ============================================================ */
.cf-mission {
    padding: var(--cf-section-pad) 0;
    background: var(--cf-accent);
    color: #ffffff;
}

.cf-mission__inner {
    max-width: var(--cf-container);
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.cf-mission__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--cf-font-mono);
    margin-bottom: 20px;
}

.cf-mission__statement {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    color: #ffffff;
    max-width: 760px;
    margin: 0 auto 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cf-mission__context {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================================ */
/* ABOUT PAGE: STAGE FOCUS                                      */
/* ============================================================ */
.cf-stage-focus {
    padding: 72px 0;
    background: var(--cf-bg-light);
}

.cf-stage-focus__inner {
    max-width: var(--cf-container);
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.cf-stage-focus__badge {
    display: inline-block;
    background: rgba(30, 58, 138, 0.1);
    border: 1px solid rgba(30, 58, 138, 0.25);
    color: var(--cf-accent);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--cf-font-mono);
    margin-bottom: 16px;
}

.cf-stage-focus__title {
    font-size: 28px;
    font-weight: 800;
    color: var(--cf-bg-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cf-stage-focus__body {
    font-size: 16px;
    color: #475569;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ============================================================ */
/* ABOUT PAGE: VALUES                                           */
/* ============================================================ */
.cf-values {
    padding: var(--cf-section-pad) 0;
    background: var(--cf-bg-white);
}

.cf-values__inner {
    max-width: var(--cf-container);
    margin: 0 auto;
    padding: 0 24px;
}

.cf-values__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 8px;
}

.cf-values__card {
    background: var(--cf-bg-light);
    border-radius: var(--cf-radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--cf-border-light);
}

.cf-values__card-num {
    font-size: 13px;
    font-weight: 700;
    color: var(--cf-secondary);
    font-family: var(--cf-font-mono);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: block;
}

.cf-values__card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--cf-bg-dark);
    margin-bottom: 10px;
}

.cf-values__card-body {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .cf-values__grid { grid-template-columns: 1fr; }
}

/* ============================================================ */
/* ABOUT PAGE: TEAM ORIGIN                                      */
/* ============================================================ */
.cf-team-origin {
    padding: 64px 0;
    background: var(--cf-bg-dark);
}

.cf-team-origin__inner {
    max-width: 840px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.cf-team-origin__body {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(241, 245, 249, 0.8);
    margin: 0;
}

/* ============================================================ */
/* PRICING SECTION (product/pricing page)                       */
/* ============================================================ */
.cf-pricing {
    padding: var(--cf-section-pad) 0;
    background: var(--cf-bg-light);
}

.cf-pricing__inner {
    max-width: var(--cf-container);
    margin: 0 auto;
    padding: 0 24px;
}

.cf-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 8px;
}

.cf-pricing__card {
    background: var(--cf-bg-white);
    border: 1px solid var(--cf-border-light);
    border-radius: var(--cf-radius-lg);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
}

.cf-pricing__card--featured {
    border-color: var(--cf-accent);
    border-width: 2px;
    position: relative;
}

.cf-pricing__card--featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cf-accent);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
    font-family: var(--cf-font-mono);
    letter-spacing: 0.5px;
}

.cf-pricing__tier {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--cf-text-muted);
    font-family: var(--cf-font-mono);
    margin-bottom: 12px;
}

.cf-pricing__price {
    font-size: 44px;
    font-weight: 800;
    color: var(--cf-bg-dark);
    line-height: 1;
    margin-bottom: 4px;
    font-family: var(--cf-font-mono);
}

.cf-pricing__price span {
    font-size: 18px;
    font-weight: 500;
    color: var(--cf-text-muted);
}

.cf-pricing__price-note {
    font-size: 13px;
    color: var(--cf-text-muted);
    margin-bottom: 24px;
}

.cf-pricing__features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex: 1;
}

.cf-pricing__features li {
    font-size: 14px;
    color: #475569;
    padding: 8px 0;
    border-bottom: 1px solid var(--cf-border-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.cf-pricing__features li:last-child {
    border-bottom: none;
}

.cf-pricing__features li i {
    color: var(--cf-secondary);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.cf-pricing__cta {
    display: block;
    text-align: center;
    width: 100%;
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--cf-radius);
    text-decoration: none;
    transition: all 0.2s;
    background: var(--cf-accent);
    color: #ffffff;
}

.cf-pricing__card--featured .cf-pricing__cta {
    background: var(--cf-accent);
}

.cf-pricing__cta:hover {
    filter: brightness(1.1);
    color: #ffffff;
    opacity: 1;
}

@media (max-width: 900px) {
    .cf-pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* ============================================================ */
/* MISC UTILITY CLASSES                                         */
/* ============================================================ */
.cf-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cf-secondary);
    font-family: var(--cf-font-mono);
    margin-bottom: 12px;
}

.cf-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(30, 58, 138, 0.1);
    color: var(--cf-accent);
    font-family: var(--cf-font-mono);
}

/* ============================================================ */
/* INDEX: INTRO / SOCIAL PROOF BAR                              */
/* ============================================================ */
.cf-proof-bar {
    background: var(--cf-bg-white);
    border-bottom: 1px solid var(--cf-border-light);
    padding: 20px 0;
}

.cf-proof-bar__inner {
    max-width: var(--cf-container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.cf-proof-bar__item {
    font-size: 14px;
    color: var(--cf-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cf-proof-bar__item i {
    color: var(--cf-secondary);
    font-size: 14px;
}


/* ============================================================ */
/* HERO VARIANT MODIFIER — cf-hero--full-bleed                  */
/* ============================================================ */
.cf-hero--full-bleed {
    width: 100%;
    max-width: none;
}

/* ============================================================ */
/* BLOG INDEX — cf-blog-index, cf-blog-grid                     */
/* ============================================================ */
.cf-blog-index {
    padding: var(--cf-section-pad) 0;
    background: var(--cf-bg-light);
}

.cf-blog-index__inner {
    max-width: var(--cf-container);
    margin: 0 auto;
    padding: 0 24px;
}

.cf-blog-grid {
    margin-top: 48px;
}

.cf-blog-grid__list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

.cf-blog-grid__list > li {
    list-style: none;
}

.cf-blog-grid__item {
    background: var(--cf-bg-white);
    border-radius: var(--cf-radius-lg);
    overflow: hidden;
    box-shadow: var(--cf-shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.2s ease;
}

.cf-blog-grid__item:hover {
    box-shadow: var(--cf-shadow-md);
}

.cf-blog-grid__item-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.cf-blog-grid__item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cf-blog-grid__item-thumb-link {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.cf-blog-grid__item-thumb-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.cf-blog-grid__item-thumb-link:hover img {
    transform: scale(1.03);
}

.cf-blog-grid__item-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cf-blog-grid__item-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.cf-blog-grid__item-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cf-secondary);
    font-family: var(--cf-font-mono);
}

.cf-blog-grid__item-date {
    font-size: 12px;
    color: var(--cf-text-muted);
    font-family: var(--cf-font-mono);
}

.cf-blog-grid__item-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--cf-bg-dark);
    line-height: 1.3;
    margin-bottom: 12px;
}

.cf-blog-grid__item-title a {
    color: var(--cf-bg-dark);
    text-decoration: none;
}

.cf-blog-grid__item-title a:hover {
    color: var(--cf-accent);
    opacity: 1;
}

.cf-blog-grid__item-excerpt {
    font-size: 14px;
    color: var(--cf-text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 20px;
}

.cf-blog-grid__item-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--cf-accent);
    text-decoration: none;
    margin-top: auto;
}

.cf-blog-grid__item-link:hover {
    opacity: 0.85;
}

@media (max-width: 768px) {
    .cf-blog-grid__list {
        grid-template-columns: 1fr;
    }
}

/* ============================================================ */
/* BLOG ARTICLE — cf-post, cf-related (reading-width standard)  */
/* Per standards/components/blog-article.md §0                  */
/* ============================================================ */
.cf-post {
    background: var(--cf-bg-white);
}

.cf-post__header {
    background: var(--cf-bg-dark);
    padding: 80px 0 60px;
}

.cf-post__header-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.cf-post__title {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cf-post__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cf-post__byline {
    font-size: 14px;
    color: rgba(241, 245, 249, 0.7);
}

.cf-post__date {
    font-size: 13px;
    color: rgba(241, 245, 249, 0.5);
    font-family: var(--cf-font-mono);
}

.cf-post__cover {
    background: var(--cf-bg-dark);
    padding-bottom: 48px;
}

.cf-post__cover-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: var(--cf-radius-lg);
}

.cf-post__cover-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Blog article reading width — §0 verbatim per blog-article.md */
/* Dual class: cf-post__body (BEM) + c-post__body (verify allowlist) */
.cf-post__body,
.c-post__body {
    max-width: 720px;
    margin: 0 auto;
    padding: 56px 24px 80px;
    font-size: 17px;
    line-height: 1.75;
    color: var(--cf-text-body);
}

.cf-post__body h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--cf-bg-dark);
    margin: 40px 0 16px;
}

.cf-post__body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--cf-bg-dark);
    margin: 32px 0 12px;
}

.cf-post__body p {
    margin-bottom: 20px;
}

.cf-post__body ul,
.cf-post__body ol {
    margin-bottom: 20px;
    padding-left: 1.75em;
}

.cf-post__body li {
    margin-bottom: 8px;
}

.cf-post__body blockquote {
    border-left: 3px solid var(--cf-accent);
    padding-left: 20px;
    margin: 32px 0;
    font-style: italic;
    color: var(--cf-text-muted);
}

/* ============================================================ */
/* BLOG ARTICLE — cf-related (Related Articles section)         */
/* Per standards/components/blog-article.md §Related Articles   */
/* ============================================================ */
.cf-related {
    background: var(--cf-bg-light);
    padding: 64px 0;
    border-top: 1px solid var(--cf-border-light);
}

.cf-related__inner {
    max-width: var(--cf-container);
    margin: 0 auto;
    padding: 0 24px;
}

.cf-related__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--cf-bg-dark);
    margin-bottom: 32px;
}

.cf-related__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.cf-related__card {
    background: var(--cf-bg-white);
    border-radius: var(--cf-radius);
    overflow: hidden;
    box-shadow: var(--cf-shadow);
    display: flex;
    flex-direction: column;
}

.cf-related__thumb-link {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    max-height: 200px;
}

.cf-related__thumb-link img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.cf-related__body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .cf-related__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================ */
/* BLOG ARTICLE METADATA                                        */
/* ============================================================ */
.article-category-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--cf-secondary);
    font-family: var(--cf-font-mono);
    margin-bottom: 12px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 12px;
    font-size: 13px;
    color: rgba(241, 245, 249, 0.6);
    font-family: var(--cf-font-mono);
}

/* ============================================================ */
/* LEGAL PAGES — cf-legal                                       */
/* ============================================================ */
.cf-legal {
    background: var(--cf-bg-white);
    padding: var(--cf-section-pad) 0;
}

.cf-legal__inner {
    max-width: var(--cf-container);
    margin: 0 auto;
    padding: 0 24px;
}

.cf-legal-body {
    margin-top: 48px;
}

.cf-legal-body__inner {
    max-width: 760px;
    margin: 0 auto;
}

.cf-legal-body__inner h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--cf-bg-dark);
    margin: 36px 0 12px;
}

.cf-legal-body__inner p,
.cf-legal-body__inner li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--cf-text-body);
}

.cf-legal-body__inner ul,
.cf-legal-body__inner ol {
    padding-left: 1.75em;
    margin-bottom: 16px;
}

.cf-legal-body__inner address {
    font-style: normal;
    font-size: 15px;
    line-height: 1.7;
    color: var(--cf-text-body);
}

.cf-legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 24px 0;
}

.cf-legal-table th,
.cf-legal-table td {
    border: 1px solid var(--cf-border-light);
    padding: 12px 16px;
    text-align: left;
}

.cf-legal-table th {
    background: var(--cf-bg-light);
    font-weight: 700;
    color: var(--cf-bg-dark);
}

/* ============================================================ */
/* CONTACT FORM — cf-form                                       */
/* ============================================================ */
.cf-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cf-form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cf-form__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--cf-bg-dark);
}

.cf-form__input,
.cf-form__select,
.cf-form__textarea {
    padding: 12px 16px;
    font-size: 15px;
    color: var(--cf-text-body);
    background: var(--cf-bg-white);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--cf-radius);
    font-family: var(--cf-font-display);
    transition: border-color 0.2s;
    box-sizing: border-box;
    width: 100%;
}

.cf-form__input:focus,
.cf-form__select:focus,
.cf-form__textarea:focus {
    outline: 2px solid var(--cf-accent);
    outline-offset: 2px;
    border-color: var(--cf-accent);
}

.cf-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.cf-form__submit {
    padding: 14px 28px;
    background: var(--cf-accent);
    color: #ffffff;
    border: none;
    border-radius: var(--cf-radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: filter 0.2s;
    font-family: var(--cf-font-display);
    align-self: flex-start;
}

.cf-form__submit:hover {
    filter: brightness(1.1);
}

.cf-form__success {
    padding: 14px 20px;
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid rgba(21, 128, 61, 0.2);
    border-radius: var(--cf-radius);
    font-size: 14px;
}

/* ============================================================ */
/* AUTH VERIFY PAGE                                             */
/* ============================================================ */
.auth-verify-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.auth-verify-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(30, 58, 138, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--cf-accent);
}
