/* ══════════════════════════════════════════════════════════════════
   Koce — The Science of Winning
   The Record-Grounded Litigation Work-Product Platform (koce.com)
   ══════════════════════════════════════════════════════════════════ */

/* ── Brand Font (Self-Hosted Gotham Bold) ── */
@font-face {
    font-family: 'Gotham';
    src: url('fonts/GothamBold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ── Design Tokens & System Variables ── */
:root {
    /* Brand Navy & Dark Palette */
    --navy-void:        #040810;
    --navy-deep:        #08101E;
    --navy-main:        #0F1B2D;
    --navy-surface:     #162337;
    --navy-surface-hover: #1E304C;
    --navy-card:        rgba(15, 27, 45, 0.75);
    --navy-border:      rgba(203, 157, 73, 0.22);
    --navy-border-subtle: rgba(255, 255, 255, 0.08);

    /* Burnished Gold & Platinum Metallics */
    --gold-primary:     #CB9D49;
    --gold-light:       #E5B869;
    --gold-bright:      #FCD34D;
    --gold-pale:        #FFF6E0;
    --gold-glow:        rgba(203, 157, 73, 0.28);
    --gold-glow-soft:   rgba(203, 157, 73, 0.12);

    /* Trust Blues & Accents */
    --blue-electric:    #2563EB;
    --blue-hover:       #1D4ED8;
    --blue-light:       #EFF6FF;
    --blue-accent:      #3B82F6;
    --blue-cyan:        #38BDF8;
    --orange-accent:    #D97706;
    --emerald-audit:    #10B981;
    --brand-blue:       #38BDF8;
    --brand-blue-light: rgba(56, 189, 248, 0.12);

    /* Typography Colors */
    --text-hero-title:  #F8FAFC;
    --text-hero-sub:    #CBD5E1;
    --text-hero-dim:    #94A3B8;
    --text-muted:       #64748B;

    /* Typography Stacks */
    --font-brand:       'Gotham', 'Outfit', -apple-system, sans-serif;
    --font-heading:     'Outfit', -apple-system, sans-serif;
    --font-body:        'Inter', -apple-system, sans-serif;
    --font-mono:        'JetBrains Mono', monospace;

    /* Spacing */
    --max-width:        1280px;
    --radius-sm:        6px;
    --radius-md:        12px;
    --radius-lg:        18px;
    --radius-full:      9999px;
}

/* ── Reset & Baseline ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body.dark-theme, body {
    background-color: var(--navy-deep);
    color: var(--text-hero-sub);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

/* ── Ambient Background Lighting ── */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
}

.glow-gold {
    width: min(700px, 85vw);
    height: 420px;
    background: radial-gradient(circle, rgba(203, 157, 73, 0.16) 0%, rgba(203, 157, 73, 0.02) 60%, transparent 80%);
}

.glow-blue {
    width: 550px;
    height: 420px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
}

/* ── Typography & Gradients ── */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-hero-title);
    line-height: 1.15;
}

.gradient-gold-text {
    background: linear-gradient(135deg, #FFF8E7 0%, #E5B869 45%, #CB9D49 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(203, 157, 73, 0.35));
}

.gradient-text {
    background: linear-gradient(135deg, #60A5FA 0%, #E5B869 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── Navigation ── */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(8, 16, 30, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--navy-border-subtle);
    z-index: 100;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.85rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-brand);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 3.5px;
    color: #FFFFFF;
    white-space: nowrap;
}

.brand-badge {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: var(--gold-light);
    padding: 0.2rem 0.55rem;
    background: rgba(8, 16, 30, 0.7);
    border: 1px solid rgba(203, 157, 73, 0.35);
    border-radius: 4px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.nav-links {
    display: flex;
    gap: clamp(0.75rem, 1.4vw, 1.5rem);
    align-items: center;
    flex-shrink: 1;
}

.nav-links a {
    color: var(--text-hero-sub);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #FFFFFF;
}

.nav-links a.nav-active {
    color: var(--gold-light);
    font-weight: 600;
}

.btn-work-with-us {
    color: var(--gold-light) !important;
    font-weight: 600;
    font-size: 0.8125rem;
    white-space: nowrap;
    border: 1px solid rgba(203, 157, 73, 0.4);
    padding: 0.45rem 0.95rem;
    min-height: 36px;
    border-radius: var(--radius-full);
    background: rgba(8, 16, 30, 0.7);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.btn-work-with-us:hover {
    background: rgba(203, 157, 73, 0.18);
    border-color: var(--gold-light);
    transform: translateY(-1px);
}

/* ── Mobile Navigation Controls ── */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    padding: 12px 10px;
    background: rgba(22, 35, 55, 0.7);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    z-index: 120;
    transition: all 0.2s ease;
}

.mobile-menu-btn:hover {
    background: rgba(30, 48, 76, 0.9);
    border-color: var(--gold-light);
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-hero-title);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.mobile-menu-btn.active .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background-color: var(--gold-bright);
}

.mobile-menu-btn.active .hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background-color: var(--gold-bright);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    height: calc(100vh - 68px);
    background: rgba(6, 12, 22, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--navy-border);
    padding: 1.5rem 1.25rem 3rem;
    overflow-y: auto;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.mobile-nav-drawer.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    max-width: 440px;
    margin: 0 auto;
}

.mobile-nav-content a {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-hero-title);
    padding: 0.85rem 1.15rem;
    border-radius: var(--radius-md);
    background: rgba(22, 35, 55, 0.5);
    border: 1px solid var(--navy-border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    transition: all 0.2s ease;
}

.mobile-nav-content a:hover, .mobile-nav-content a:active {
    background: rgba(30, 48, 76, 0.85);
    border-color: var(--gold-primary);
    color: var(--gold-bright);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 0.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--navy-border-subtle);
}

/* ── Buttons ── */
.btn-primary, .btn-primary-small, .btn-secondary, .btn-card-link, .btn-whitepaper-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: var(--radius-full);
    cursor: pointer;
    border: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary-small {
    padding: 0.45rem 1.1rem;
    font-size: 0.8125rem;
    min-height: 36px;
    white-space: nowrap;
    background: var(--blue-electric);
    color: #FFFFFF !important;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.35);
    flex-shrink: 0;
}

.btn-primary-small:hover {
    background: var(--blue-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.45);
}

.btn-primary {
    padding: 0.95rem 2rem;
    font-size: 1rem;
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #FFFFFF !important;
    box-shadow: 0 4px 18px rgba(37, 99, 235, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.45);
}

.btn-secondary {
    padding: 0.95rem 2rem;
    font-size: 1rem;
    background: rgba(22, 35, 55, 0.7);
    border: 1px solid var(--navy-border);
    color: var(--text-hero-title);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(30, 48, 76, 0.9);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.w-full {
    width: 100%;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION — SPLIT GRID (GENIUS FLAGSHIP CARD + 3D OWL)
   ═══════════════════════════════════════════════════════════ */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 7.5rem 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: crosshair;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-split-grid {
    position: relative;
    z-index: 3;
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

/* ── LEFT COLUMN: GENIUS FLAGSHIP CARD ── */
.flagship-hero-card {
    background: rgba(15, 27, 45, 0.78);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg);
    padding: 2.75rem 2.5rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 30px rgba(203, 157, 73, 0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.flagship-hero-card:hover {
    border-color: var(--gold-light);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 40px rgba(203, 157, 73, 0.15);
}

.flagship-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.flagship-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.85rem;
    background: linear-gradient(135deg, rgba(203, 157, 73, 0.25) 0%, rgba(203, 157, 73, 0.1) 100%);
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold-bright);
    box-shadow: 0 0 12px rgba(203, 157, 73, 0.25);
}

.comparison-header-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.4);
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--blue-cyan);
    transition: all 0.2s ease;
}

.comparison-header-pill:hover {
    background: rgba(37, 99, 235, 0.3);
    border-color: var(--blue-cyan);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

.comparison-header-pill .pill-pulse {
    font-size: 0.75rem;
    animation: pulse-glow 2s infinite ease-in-out;
}

.star-icon {
    font-size: 0.8rem;
    color: var(--gold-bright);
}

.provenance-tag {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-hero-dim);
    letter-spacing: 0.05em;
}

.flagship-title {
    font-family: var(--font-brand);
    font-size: clamp(2.5rem, 4.5vw, 3.75rem);
    font-weight: 700;
    letter-spacing: 2px;
    color: #FFFFFF;
    margin-bottom: 0.4rem;
}

.flagship-tagline {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
    line-height: 1.35;
}

.flagship-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-hero-sub);
    margin-bottom: 1.75rem;
}

.flagship-capabilities-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 2rem;
}

.cap-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: rgba(22, 35, 55, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-hero-title);
}

.cap-check {
    color: var(--gold-light);
    font-weight: 700;
}

.flagship-actions {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.btn-arrow {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateY(2px);
}

.flagship-footer-note {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-hero-dim);
    border-top: 1px solid var(--navy-border-subtle);
    padding-top: 1rem;
}

/* ── RIGHT COLUMN: 3D INTERACTIVE OWL ── */
.owl-hero-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.system-beacon {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0.95rem;
    background: rgba(15, 27, 45, 0.85);
    border: 1px solid rgba(203, 157, 73, 0.35);
    border-radius: var(--radius-full);
    backdrop-filter: blur(12px);
    margin-bottom: 2rem;
    user-select: none;
}

.beacon-pulse {
    position: relative;
    width: 8px;
    height: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold-bright);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold-bright);
}

.pulse-ring {
    position: absolute;
    width: 14px;
    height: 14px;
    border: 1.5px solid var(--gold-primary);
    border-radius: 50%;
    animation: beacon-ripple 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes beacon-ripple {
    0% { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.beacon-tag {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--gold-light);
}

.beacon-divider {
    color: rgba(203, 157, 73, 0.4);
    font-size: 0.75rem;
}

.beacon-domain {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    color: var(--text-hero-sub);
}

.owl-stage-container {
    perspective: 1000px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.owl-hologram {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.hud-reticle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    transform-style: preserve-3d;
}

.reticle-outer {
    width: 210px;
    height: 210px;
    border: 1px dashed rgba(203, 157, 73, 0.35);
    animation: hud-rotate-cw 32s linear infinite;
}

.reticle-inner {
    width: 165px;
    height: 165px;
    border: 1px dotted rgba(59, 130, 246, 0.45);
    animation: hud-rotate-ccw 22s linear infinite;
}

.hud-crosshair {
    position: absolute;
    background: rgba(203, 157, 73, 0.3);
    pointer-events: none;
}

.crosshair-horiz {
    width: 225px;
    height: 1px;
}

.crosshair-vert {
    width: 1px;
    height: 225px;
}

@keyframes hud-rotate-cw {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes hud-rotate-ccw {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.owl-svg {
    width: 150px;
    height: 150px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 20px rgba(203, 157, 73, 0.3));
}

.owl-facets {
    transition: stroke 0.3s ease;
}

.owl-stage-container:hover .owl-facets {
    stroke: var(--gold-light);
    stroke-opacity: 0.9;
}

.telemetry-bar {
    width: 100%;
    max-width: 440px;
}

.telemetry-inner {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.9rem;
    background: rgba(15, 27, 45, 0.65);
    border: 1px solid var(--navy-border-subtle);
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    color: var(--text-hero-dim);
}

.telemetry-icon {
    color: var(--gold-bright);
}

/* ═══════════════════════════════════════════════════════════
   SUB-HERO ROW — 3 INFORMATION CARDS (ABOUT, EDITS, SIGNAL)
   ═══════════════════════════════════════════════════════════ */
.subhero-cards-section {
    position: relative;
    z-index: 5;
    max-width: var(--max-width);
    margin: -1.5rem auto 5rem;
    padding: 0 2rem;
}

.subhero-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.subhero-card {
    background: rgba(15, 27, 45, 0.75);
    border: 1px solid var(--navy-border-subtle);
    border-radius: var(--radius-md);
    padding: 2rem;
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.subhero-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-light);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(203, 157, 73, 0.12);
}

.subhero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.subhero-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold-light);
}

.eyebrow-orange {
    color: #F59E0B;
}

.eyebrow-blue {
    color: #38BDF8;
}

.subhero-avatar-group {
    display: flex;
    align-items: center;
}

.mini-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--navy-surface);
    object-fit: cover;
    margin-left: -8px;
}

.mini-avatar:first-child {
    margin-left: 0;
}

.coming-soon-badge {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-hero-dim);
}

.subhero-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.35rem;
}

.subhero-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 0.85rem;
}

.subhero-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-hero-sub);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-card-link {
    background: rgba(203, 157, 73, 0.08);
    border: 1px solid rgba(203, 157, 73, 0.25);
    border-radius: var(--radius-full);
    color: var(--gold-light);
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.55rem 1.15rem;
    min-height: 44px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-card-link:hover {
    background: rgba(203, 157, 73, 0.18);
    border-color: var(--gold-bright);
    color: #FFFFFF;
    transform: translateY(-1px);
}

.link-arrow {
    transition: transform 0.2s ease;
}

.btn-card-link:hover .link-arrow {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════
   DEMONSTRATIVES SHOWCASE SECTION
   ═══════════════════════════════════════════════════════════ */
.demonstratives-section {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto 7rem;
    padding: 0 2rem;
}

.section-header {
    margin-bottom: 3.5rem;
}

.text-center {
    text-align: center;
}

.section-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold-light);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-hero-sub);
    max-width: 780px;
    margin: 0 auto;
}

.demonstratives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.demonstrative-card {
    background: var(--navy-card);
    border: 1px solid var(--navy-border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.demonstrative-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-light);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(203, 157, 73, 0.15);
}

.demonstrative-img-box {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #000000;
    cursor: pointer;
}

.demonstrative-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.demonstrative-img-box:hover .demonstrative-img {
    transform: scale(1.05);
}

.img-zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 16, 30, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.demonstrative-img-box:hover .img-zoom-overlay {
    opacity: 1;
}

.zoom-icon {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: #FFFFFF;
    background: rgba(203, 157, 73, 0.9);
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-full);
}

.demonstrative-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.demonstrative-tag {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.demonstrative-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
}

.demonstrative-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-hero-sub);
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.demonstrative-meta {
    border-top: 1px solid var(--navy-border-subtle);
    padding-top: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.meta-item {
    font-size: 0.8125rem;
    color: var(--text-hero-dim);
}

.meta-item strong {
    color: var(--text-hero-sub);
}

/* ═══════════════════════════════════════════════════════════
   THE PRODUCT SUITE SECTION
   ═══════════════════════════════════════════════════════════ */
.suite-section {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto 7rem;
    padding: 0 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--navy-card);
    border: 1px solid var(--navy-border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.product-card.featured {
    border-color: var(--gold-primary);
    background: rgba(15, 27, 45, 0.85);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5), 0 0 35px rgba(203, 157, 73, 0.12);
}

.product-header-badge {
    align-self: flex-start;
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold-bright);
    background: rgba(203, 157, 73, 0.15);
    border: 1px solid var(--gold-primary);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.coming-soon-tag {
    color: var(--text-hero-dim);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.product-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-cyan);
    margin-bottom: 1.25rem;
}

.product-icon svg {
    width: 24px;
    height: 24px;
}

.product-icon.live-icon {
    background: rgba(203, 157, 73, 0.15);
    border-color: rgba(203, 157, 73, 0.35);
    color: var(--gold-bright);
}

.product-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.35rem;
}

.product-tagline {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.product-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-hero-sub);
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex-grow: 1;
}

.product-features li {
    font-size: 0.875rem;
    color: var(--text-hero-title);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.product-features li span {
    color: var(--gold-light);
    font-weight: 700;
}

.product-card-cta {
    margin-top: auto;
}

/* ═══════════════════════════════════════════════════════════
   WORK WITH US / CASE EVALUATION SECTION
   ═══════════════════════════════════════════════════════════ */
.consultation-section {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto 7rem;
    padding: 0 2rem;
}

.consultation-box {
    background: linear-gradient(135deg, rgba(22, 35, 55, 0.9) 0%, rgba(15, 27, 45, 0.95) 100%);
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    padding: 3.5rem 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(203, 157, 73, 0.15);
}

.consultation-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}

.maggie-profile-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.maggie-large-photo {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 3px solid var(--gold-primary);
    object-fit: cover;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}

.maggie-badge {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold-bright);
    display: block;
    margin-bottom: 0.25rem;
}

.maggie-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
}

.maggie-role {
    font-size: 0.875rem;
    color: var(--text-hero-dim);
}

.consultation-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-hero-sub);
    font-style: italic;
    margin-bottom: 1.75rem;
    border-left: 3px solid var(--gold-primary);
    padding-left: 1.25rem;
}

.consultation-perks {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-hero-title);
}

.perk-icon {
    font-size: 1.1rem;
}

.consultation-form-wrapper {
    background: rgba(8, 16, 30, 0.85);
    border: 1px solid var(--navy-border-subtle);
    border-radius: var(--radius-md);
    padding: 2.25rem;
}

.form-heading {
    font-size: 1.35rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.35rem;
}

.form-subheading {
    font-size: 0.875rem;
    color: var(--text-hero-dim);
    margin-bottom: 1.5rem;
}

.inline-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group-row, .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

input, select, textarea {
    font-size: 16px !important;
}

.glass-input {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: rgba(22, 35, 55, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 1rem !important; /* 16px to completely eliminate iOS Safari auto-zoom */
    min-height: 48px;
    outline: none;
    transition: all 0.2s ease;
}

.glass-input:focus {
    border-color: var(--gold-light);
    box-shadow: 0 0 10px rgba(203, 157, 73, 0.3);
    background: rgba(30, 48, 76, 0.8);
}

.select-input {
    cursor: pointer;
}

.select-input option {
    background: var(--navy-deep);
    color: #FFFFFF;
}

.textarea-input {
    resize: vertical;
}

.form-success {
    text-align: center;
    padding: 2rem 1rem;
}

.success-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--emerald-audit);
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.form-success h3 {
    font-size: 1.25rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--text-hero-sub);
}

.hidden {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE STYLES (about.html)
   ═══════════════════════════════════════════════════════════ */
.about-page-main {
    padding-top: 7rem;
}

.about-hero {
    padding: 4rem 2rem 3rem;
    text-align: center;
}

.about-hero-container {
    max-width: 860px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.about-hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--text-hero-sub);
}

.about-stats-strip {
    max-width: var(--max-width);
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

.stats-strip-container {
    background: rgba(15, 27, 45, 0.75);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-md);
    padding: 1.75rem 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    backdrop-filter: blur(16px);
}

.stat-pill {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gold-light);
}

.stat-meta {
    font-size: 0.8125rem;
    color: var(--text-hero-dim);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--navy-border-subtle);
}

.about-team-section {
    max-width: var(--max-width);
    margin: 0 auto 6rem;
    padding: 0 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
}

.team-card {
    background: var(--navy-card);
    border: 1px solid var(--navy-border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-light);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(203, 157, 73, 0.12);
}

.team-photo-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    background: #060B14;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.team-role-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.75rem;
    background: rgba(8, 16, 30, 0.85);
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-full);
    color: var(--gold-bright);
    backdrop-filter: blur(8px);
}

.concierge-tag {
    border-color: #38BDF8;
    color: #38BDF8;
}

.team-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.team-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
}

.team-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
}

.team-bio {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-hero-sub);
    margin-bottom: 1rem;
}

.team-tags {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    padding-top: 1rem;
    border-top: 1px solid var(--navy-border-subtle);
}

.tag-item {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    color: var(--text-hero-dim);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.55rem;
    border-radius: 4px;
}

.team-cta-row {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--navy-border-subtle);
}

.maggie-status {
    font-size: 0.8125rem;
    color: var(--text-hero-dim);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--emerald-audit);
    box-shadow: 0 0 6px var(--emerald-audit);
}

/* ── 10-Layer Trust Architecture ── */
.trust-architecture-section {
    max-width: var(--max-width);
    margin: 0 auto 6rem;
    padding: 0 2rem;
}

.trust-layers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.layer-card {
    background: rgba(15, 27, 45, 0.65);
    border: 1px solid var(--navy-border-subtle);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: all 0.2s ease;
}

.layer-card:hover {
    border-color: var(--gold-light);
    background: rgba(22, 35, 55, 0.85);
}

.layer-num {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-primary);
    background: rgba(203, 157, 73, 0.1);
    border: 1px solid var(--navy-border);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.layer-content {
    flex: 1;
    min-width: 0;
}

.layer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.35rem;
}

.layer-desc {
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--text-hero-sub);
}

.about-cta-section {
    max-width: var(--max-width);
    margin: 0 auto 6rem;
    padding: 0 2rem;
}

.about-cta-box {
    background: linear-gradient(135deg, rgba(22, 35, 55, 0.95) 0%, rgba(15, 27, 45, 0.95) 100%);
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(203, 157, 73, 0.15);
}

.cta-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gold-bright);
    padding: 0.3rem 0.8rem;
    background: rgba(203, 157, 73, 0.15);
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
}

.cta-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-hero-sub);
    max-width: 680px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer {
    border-top: 1px solid var(--navy-border-subtle);
    background: #050A12;
    padding: 4rem 2rem 3rem;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-brand .logo-text {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--text-hero-dim);
}

.footer-subtext {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-hero-sub);
}

.footer-links a:hover {
    color: var(--gold-light);
}

/* ═══════════════════════════════════════════════════════════
   MODALS (WORK WITH US, DEMONSTRATIVE LIGHTBOX, PREVIEW)
   ═══════════════════════════════════════════════════════════ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 8, 16, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-card {
    position: relative;
    background: #0E1A2C;
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    padding: 2.75rem 2.5rem;
    max-width: 580px;
    width: 100%;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(203, 157, 73, 0.2);
    animation: modal-enter 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-card {
    position: relative;
    background: #0E1A2C;
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    max-width: 960px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 0 0 50px rgba(203, 157, 73, 0.25);
    animation: modal-enter 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modal-enter {
    from { opacity: 0; transform: scale(0.94) translateY(12px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: transparent;
    border: none;
    color: var(--text-hero-dim);
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
}

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

.modal-header-with-avatar {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.modal-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    object-fit: cover;
}

.modal-badge {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold-bright);
    margin-bottom: 0.2rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
}

.modal-subtitle {
    font-size: 0.875rem;
    color: var(--text-hero-dim);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.preview-body {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-hero-sub);
    margin: 1.25rem 0 2rem;
}

.lightbox-image-container {
    width: 100%;
    background: #000000;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-full-img {
    width: 100%;
    max-height: 60vh;
    object-fit: contain;
}

.lightbox-caption {
    padding: 2rem 2.25rem;
}

.lightbox-caption-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.lightbox-caption-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-hero-sub);
    margin-bottom: 1.5rem;
}

.lightbox-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--navy-border-subtle);
    padding-top: 1rem;
}

.lightbox-badge {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--gold-light);
}

/* ═══════════════════════════════════════════════════════════
   CHANGELOG PAGE ARCHITECTURE & FEED STYLING
   ═══════════════════════════════════════════════════════════ */

.changelog-hero {
    min-height: 34vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 2.5rem;
    text-align: center;
    position: relative;
}

.changelog-hero-content {
    max-width: 820px;
    margin: 0 auto;
}

.changelog-stats-strip {
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.stat-pill-sm {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.8rem;
    background: rgba(22, 35, 55, 0.65);
    border: 1px solid var(--navy-border-subtle);
    border-radius: var(--radius-full);
    font-size: 0.78125rem;
    color: var(--text-hero-sub);
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.stat-pill-sm .stat-dot {
    width: 7px;
    height: 7px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10B981;
    display: inline-block;
}

.stat-pill-sm .stat-lbl {
    color: var(--text-hero-dim);
}

.stat-pill-sm .stat-val {
    color: var(--gold-light);
    font-weight: 600;
    font-family: var(--font-mono);
}

/* Feed Section & Container */
.changelog-section {
    max-width: 860px;
    margin: 0 auto 7rem;
    padding: 0 2rem;
    position: relative;
}

.changelog-container {
    position: relative;
}

/* Live Loading Status Banner */
.changelog-loading-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(22, 35, 55, 0.75);
    border: 1px solid rgba(203, 157, 73, 0.35);
    border-radius: var(--radius-full);
    max-width: 480px;
    margin: 0 auto 2.5rem;
    font-size: 0.875rem;
    color: var(--gold-bright);
    font-weight: 500;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(203, 157, 73, 0.1);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.pulse-beacon {
    width: 8px;
    height: 8px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-shadow: 0 0 10px var(--gold-bright);
    animation: beaconPulse 1.8s infinite;
}

@keyframes beaconPulse {
    0% { transform: scale(0.9); opacity: 1; box-shadow: 0 0 0 0 rgba(203, 157, 73, 0.7); }
    70% { transform: scale(1.1); opacity: 0.8; box-shadow: 0 0 0 8px rgba(203, 157, 73, 0); }
    100% { transform: scale(0.9); opacity: 1; box-shadow: 0 0 0 0 rgba(203, 157, 73, 0); }
}

/* Skeleton Loading State */
.changelog-loading {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.skeleton-release {
    background: rgba(15, 27, 45, 0.75);
    border: 1px solid var(--navy-border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    backdrop-filter: blur(12px);
}

.skeleton-header-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.skeleton {
    background: linear-gradient(90deg,
        rgba(22, 35, 55, 0.5) 25%,
        rgba(30, 48, 76, 0.85) 50%,
        rgba(22, 35, 55, 0.5) 75%
    );
    background-size: 200% 100%;
    animation: shimmerDark 1.6s infinite cubic-bezier(0.4, 0, 0.6, 1);
    border-radius: 6px;
}

.skeleton-version { width: 110px; height: 32px; border-radius: var(--radius-full); }
.skeleton-badge   { width: 75px; height: 24px; border-radius: var(--radius-full); }
.skeleton-date    { width: 140px; height: 16px; margin-left: auto; }
.skeleton-section-header { width: 180px; height: 22px; margin-top: 0.5rem; }
.skeleton-line    { width: 100%; height: 16px; }
.skeleton-line.short { width: 65%; }

@keyframes shimmerDark {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Error & Empty States */
.changelog-error,
.changelog-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(15, 27, 45, 0.75);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg);
    color: var(--text-hero-sub);
}

.error-icon, .empty-icon {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.changelog-error h3,
.changelog-empty h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.changelog-error p,
.changelog-empty p {
    font-size: 0.95rem;
    color: var(--text-hero-dim);
    margin-bottom: 1.75rem;
}

/* Feed List */
.changelog-feed {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    animation: fadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Release Card */
.release-card {
    background: rgba(15, 27, 45, 0.85);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2.25rem;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
}

.release-card:hover {
    border-color: rgba(203, 157, 73, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.45), 0 0 25px rgba(203, 157, 73, 0.08);
}

/* Latest Release Card Highlight */
.release-card-latest {
    border: 1px solid rgba(203, 157, 73, 0.55);
    background: linear-gradient(135deg, rgba(22, 35, 55, 0.92) 0%, rgba(15, 27, 45, 0.96) 100%);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(203, 157, 73, 0.12);
}

.release-card-latest::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}

.release-card-latest:hover {
    border-color: var(--gold-light);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(203, 157, 73, 0.2);
}

/* Card Header */
.release-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--navy-border-subtle);
    gap: 1rem;
    flex-wrap: wrap;
}

.release-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.release-version-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.release-version {
    font-family: var(--font-mono);
    font-size: 1.35rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.release-badge-latest {
    background: linear-gradient(135deg, #CB9D49 0%, #E5B869 100%);
    color: #060C16;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    box-shadow: 0 2px 10px rgba(203, 157, 73, 0.35);
}

.release-badge-prerelease {
    background: rgba(217, 119, 6, 0.18);
    color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.35);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
}

.release-date {
    font-size: 0.875rem;
    color: var(--text-hero-dim);
    font-family: var(--font-mono);
    font-weight: 500;
}

.release-verified-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-mono);
    color: var(--text-hero-sub);
    padding: 0.3rem 0.75rem;
    background: rgba(22, 35, 55, 0.6);
    border: 1px solid var(--navy-border-subtle);
    border-radius: var(--radius-full);
    margin-left: auto;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.release-verified-chip .chip-dot {
    width: 6px;
    height: 6px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 6px #10B981;
    display: inline-block;
}

/* Card Body & Section Categorization */
.release-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.release-section {
    padding: 1.15rem 1.35rem;
    border-radius: var(--radius-md);
    border-left: 3px solid transparent;
    transition: background 0.2s ease;
}

.section-features {
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-left: 4px solid #2563EB;
}

.section-bugfixes {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-left: 4px solid #F59E0B;
}

.section-perf {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-left: 4px solid #10B981;
}

.section-general {
    background: rgba(203, 157, 73, 0.08);
    border: 1px solid rgba(203, 157, 73, 0.2);
    border-left: 4px solid #CB9D49;
}

.release-section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.section-emoji {
    font-size: 1.05rem;
}

.release-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding-left: 0;
    margin: 0;
}

.release-items li {
    font-size: 0.9375rem;
    color: var(--text-hero-title);
    line-height: 1.6;
    padding-left: 1.35rem;
    position: relative;
}

.release-items li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--gold-light);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
}

.release-items li strong {
    color: #FFFFFF;
    font-weight: 600;
}

.release-items li a {
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.release-items li a:hover {
    color: var(--gold-bright);
}

.release-scope-tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-light);
    background: rgba(203, 157, 73, 0.12);
    border: 1px solid rgba(203, 157, 73, 0.25);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    margin-right: 0.35rem;
}

.release-no-notes {
    color: var(--text-hero-dim);
    font-size: 0.9375rem;
    font-style: italic;
    padding: 0.75rem 0;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS & MOBILE ARCHITECTURE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
    .hero-split-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

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

    .consultation-split {
        grid-template-columns: 1fr;
    }

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

    .trust-layers-grid {
        grid-template-columns: 1fr;
    }

    .stats-strip-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }
}

@media (max-width: 1240px) {
    .brand-badge {
        display: none;
    }
}

@media (max-width: 1040px) {
    .nav-links {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-nav-drawer {
        display: block;
    }
}

@media (max-width: 900px) {
    .hero-split-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .owl-hero-column {
        order: 2;
        margin-top: 1.5rem;
    }

    #owl-stage-wrapper {
        max-width: 320px;
        height: 300px;
        margin: 0 auto;
    }

    .owl-canvas-stage {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0.75rem 1.25rem;
    }

    .hero-section {
        padding: 5.5rem 1.25rem 3rem;
        min-height: auto;
    }

    .flagship-hero-card {
        padding: 2rem 1.35rem;
        border-radius: var(--radius-md);
    }

    .flagship-title {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
        letter-spacing: 2px;
    }

    .flagship-tagline {
        font-size: clamp(1.1rem, 4.5vw, 1.45rem);
    }

    .flagship-description {
        font-size: 0.95rem;
    }

    .flagship-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0.85rem;
    }

    .flagship-actions .btn-primary, 
    .flagship-actions .btn-secondary {
        width: 100%;
        min-height: 48px;
    }

    .flagship-capabilities-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0.6rem;
    }

    .cap-pill {
        width: 100%;
        justify-content: flex-start;
        padding: 0.65rem 1rem;
    }

    .subhero-section {
        padding: 0 1.25rem;
        margin-bottom: 5rem;
    }

    .subhero-cards-grid {
        gap: 1.25rem;
    }

    .subhero-card {
        padding: 1.75rem 1.35rem;
        border-radius: var(--radius-md);
    }

    .subhero-action .btn-card-link {
        width: 100%;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.65rem 1.15rem;
        background: rgba(203, 157, 73, 0.08);
        border: 1px solid rgba(203, 157, 73, 0.25);
        border-radius: var(--radius-full);
    }

    .demonstratives-section {
        padding: 0 1.25rem;
        margin-bottom: 5rem;
    }

    .demonstrative-card {
        border-radius: var(--radius-md);
    }

    .demonstrative-body {
        padding: 1.35rem 1.2rem;
    }

    .suite-section {
        padding: 0 1.25rem;
        margin-bottom: 5rem;
    }

    .product-card {
        padding: 2rem 1.35rem;
        border-radius: var(--radius-md);
    }

    .consultation-section {
        padding: 0 1.25rem;
        margin-bottom: 5rem;
    }

    .consultation-box {
        padding: 2rem 1.25rem;
        border-radius: var(--radius-md);
    }

    .form-group-row, .form-row {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .modal-card {
        padding: 2rem 1.25rem;
        max-width: 94vw;
        max-height: 90vh;
        overflow-y: auto;
        border-radius: var(--radius-md);
    }

    .modal-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.85rem;
    }

    .lightbox-card {
        max-width: 95vw;
        max-height: 92vh;
        border-radius: var(--radius-md);
    }

    .lightbox-image-container {
        max-height: 48vh;
    }

    .lightbox-caption {
        padding: 1.35rem 1.15rem;
    }

    .lightbox-caption-title {
        font-size: 1.15rem;
    }

    .lightbox-caption-desc {
        font-size: 0.875rem;
        margin-bottom: 1.15rem;
    }

    .lightbox-footer {
        flex-direction: column;
        gap: 0.85rem;
        align-items: stretch;
    }

    .lightbox-footer .btn-primary {
        width: 100%;
        min-height: 48px;
    }

    /* About Page Mobile */
    .about-hero {
        padding: 6rem 1.25rem 2.5rem;
    }

    .about-hero-title {
        font-size: clamp(1.85rem, 7vw, 3rem);
    }

    .about-stats-strip {
        padding: 0 1.25rem;
        margin-bottom: 4rem;
    }

    .stats-strip-container {
        padding: 1.5rem 1.15rem;
        border-radius: var(--radius-md);
    }

    .about-leadership-section {
        padding: 0 1.25rem;
        margin-bottom: 4rem;
    }

    .team-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 2rem 1.35rem;
        border-radius: var(--radius-md);
    }

    .team-avatar {
        width: 96px;
        height: 96px;
        margin: 0 auto 0.5rem;
    }

    .about-trust-section {
        padding: 0 1.25rem;
        margin-bottom: 4rem;
    }

    .layer-card {
        padding: 1.25rem 1.15rem;
        border-radius: var(--radius-md);
    }

    .about-cta-section {
        padding: 0 1.25rem;
        margin-bottom: 4rem;
    }

    .about-cta-box {
        padding: 2.5rem 1.25rem;
        border-radius: var(--radius-md);
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.85rem;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        min-height: 48px;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }

    .footer-links {
        justify-content: center;
        gap: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.35rem;
        letter-spacing: 2.5px;
    }

    .brand-badge {
        font-size: 0.55rem;
        padding: 0.2rem 0.45rem;
        letter-spacing: 1px;
    }

    .flagship-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .provenance-tag {
        align-self: flex-start;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: clamp(1.65rem, 6.5vw, 2.25rem);
    }

    .section-subtitle {
        font-size: 0.9375rem;
    }
}

/* ══════════════════════════════════════════════════════════════════
   COMPARE MARKETING PAGE: GENIUS BY KOCE VS. CLAUDE LEGAL
   "The Evidentiary Advantage" — Design Tokens & Interactive Components
   ══════════════════════════════════════════════════════════════════ */

/* ── Hero & Header ── */
.compare-hero-section {
    position: relative;
    padding: 9rem 1.5rem 5rem;
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

.compare-eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.1rem;
    border-radius: var(--radius-full);
    background: rgba(203, 157, 73, 0.12);
    border: 1px solid rgba(203, 157, 73, 0.35);
    color: var(--gold-light);
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    box-shadow: 0 0 20px rgba(203, 157, 73, 0.15);
}

.compare-eyebrow-badge .pulse-gold {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-primary);
    box-shadow: 0 0 10px var(--gold-bright);
    animation: pulse-glow 2s infinite ease-in-out;
}

.compare-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.35rem, 5.5vw, 4.25rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--text-hero-title);
    max-width: 1040px;
    margin: 0 auto 1.5rem;
    letter-spacing: -0.025em;
}

.compare-hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-hero-sub);
    max-width: 840px;
    margin: 0 auto 2.5rem;
    line-height: 1.65;
}

.compare-hero-ctas {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

/* ── Hero Key Metrics Strip ── */
.compare-metrics-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.metric-card {
    background: rgba(15, 27, 45, 0.65);
    border: 1px solid var(--navy-border-subtle);
    border-radius: var(--radius-md);
    padding: 1.35rem 1.15rem;
    text-align: left;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.metric-card:hover {
    transform: translateY(-3px);
    border-color: rgba(203, 157, 73, 0.4);
}

.metric-card .metric-val {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--gold-light);
    margin-bottom: 0.35rem;
    line-height: 1.1;
}

.metric-card .metric-label {
    font-size: 0.8125rem;
    color: var(--text-hero-dim);
    line-height: 1.4;
    font-family: var(--font-body);
}

/* ── Section Containers ── */
.compare-section {
    position: relative;
    padding: 6rem 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
    z-index: 1;
}

.compare-section-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 3.5rem;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold-primary);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.compare-section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--text-hero-title);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.compare-section-sub {
    font-size: 1.0625rem;
    color: var(--text-hero-sub);
    line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════════
   WIDGET 1: THE TRIAL-TECH HOT-SEAT DIFFERENCE (4-STAGE STEPPER)
   ══════════════════════════════════════════════════════════════════ */
.workflow-widget {
    background: rgba(15, 27, 45, 0.78);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.workflow-nav-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
    margin-bottom: 2.25rem;
}

.workflow-step-btn {
    background: rgba(22, 35, 55, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 1.15rem 1rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
    color: var(--text-hero-sub);
}

.workflow-step-btn:hover {
    background: rgba(30, 48, 76, 0.7);
    border-color: rgba(203, 157, 73, 0.35);
}

.workflow-step-btn.active {
    background: rgba(203, 157, 73, 0.12);
    border-color: var(--gold-primary);
    box-shadow: 0 0 25px rgba(203, 157, 73, 0.18), inset 0 0 15px rgba(203, 157, 73, 0.08);
}

.workflow-step-btn .step-num {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.workflow-step-btn .step-title {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-hero-title);
}

.workflow-panel {
    display: none;
    animation: fadeIn 0.3s ease forwards;
}

.workflow-panel.active {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.25rem;
    align-items: center;
}

.panel-content h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-hero-title);
    margin-bottom: 0.85rem;
}

.panel-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.35);
    color: var(--blue-cyan);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.panel-content p {
    font-size: 0.975rem;
    color: var(--text-hero-sub);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.panel-key-points {
    list-style: none;
    margin-bottom: 1.5rem;
}

.panel-key-points li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.65rem;
    font-size: 0.9rem;
    color: var(--text-hero-sub);
}

.panel-key-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--emerald-audit);
    font-weight: bold;
}

.panel-code-box {
    background: #040810;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: #E2E8F0;
    overflow-x: auto;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.6);
}

.panel-code-box .code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    color: var(--gold-light);
}

.panel-code-box pre {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
}

/* ══════════════════════════════════════════════════════════════════
   WIDGET 2: INTERACTIVE 8-DIMENSION COMPARISON MATRIX
   ══════════════════════════════════════════════════════════════════ */
.matrix-filter-bar {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.matrix-filter-btn {
    background: rgba(22, 35, 55, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: 0.6rem 1.35rem;
    color: var(--text-hero-sub);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.matrix-filter-btn:hover {
    background: rgba(30, 48, 76, 0.8);
    border-color: rgba(203, 157, 73, 0.4);
}

.matrix-filter-btn.active {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #040810;
    box-shadow: 0 4px 18px rgba(203, 157, 73, 0.35);
}

.matrix-grid {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.dimension-card {
    background: rgba(15, 27, 45, 0.78);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.dimension-card:hover {
    border-color: rgba(203, 157, 73, 0.45);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(203, 157, 73, 0.08);
}

.dimension-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.dimension-title-group {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.dimension-number-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(203, 157, 73, 0.15);
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 700;
}

.dimension-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-hero-title);
}

.dimension-category-tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-hero-dim);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dimension-comparison-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.contrast-box {
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contrast-box.claude {
    background: rgba(239, 68, 68, 0.04);
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.contrast-box.genius {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.05);
}

.contrast-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.entity-label {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.contrast-box.claude .entity-label {
    color: #F87171;
}

.contrast-box.genius .entity-label {
    color: #34D399;
}

.contrast-tag {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.contrast-box.claude .contrast-tag {
    background: rgba(239, 68, 68, 0.15);
    color: #FCA5A5;
}

.contrast-box.genius .contrast-tag {
    background: rgba(16, 185, 129, 0.15);
    color: #6EE7B7;
}

.contrast-body {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-hero-sub);
    margin-bottom: 1rem;
}

.contrast-footer-note {
    font-size: 0.8125rem;
    font-family: var(--font-mono);
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contrast-box.claude .contrast-footer-note {
    color: #FCA5A5;
}

.contrast-box.genius .contrast-footer-note {
    color: #A7F3D0;
}

/* ── Deep Dive Technical Drawer ── */
.tech-drawer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 0.85rem;
    margin-top: 0.5rem;
}

.tech-drawer-toggle {
    background: none;
    border: none;
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.4rem 0;
    transition: color 0.2s ease;
}

.tech-drawer-toggle:hover {
    color: var(--gold-bright);
}

.tech-drawer-toggle .drawer-icon {
    transition: transform 0.25s ease;
    font-size: 0.75rem;
}

.tech-drawer-toggle.expanded .drawer-icon {
    transform: rotate(90deg);
}

.tech-drawer-content {
    display: none;
    padding: 1.25rem 0 0.5rem;
    animation: fadeIn 0.25s ease forwards;
}

.tech-drawer-content.open {
    display: block;
}

.drawer-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    background: rgba(4, 8, 16, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 1.25rem;
}

.drawer-column h5 {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    color: var(--gold-pale);
    margin-bottom: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.drawer-column p, .drawer-column ul {
    font-size: 0.8125rem;
    color: var(--text-hero-dim);
    line-height: 1.6;
}

.drawer-column ul {
    list-style: none;
    padding-left: 0;
}

.drawer-column ul li {
    margin-bottom: 0.35rem;
    font-family: var(--font-mono);
}

.drawer-column .code-chip {
    display: inline-block;
    background: rgba(255, 255, 255, 0.07);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    color: var(--gold-light);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* ══════════════════════════════════════════════════════════════════
   WIDGET 3: INTERACTIVE DEMONSTRATIVE VIEWER & LIGHTBOX
   ══════════════════════════════════════════════════════════════════ */
.demonstrative-viewer-card {
    background: rgba(15, 27, 45, 0.78);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.demonstrative-tab-nav {
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.demonstrative-tab-btn {
    background: rgba(22, 35, 55, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 0.85rem 1.35rem;
    color: var(--text-hero-sub);
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.demonstrative-tab-btn:hover {
    background: rgba(30, 48, 76, 0.8);
    border-color: rgba(203, 157, 73, 0.35);
}

.demonstrative-tab-btn.active {
    background: rgba(203, 157, 73, 0.15);
    border-color: var(--gold-primary);
    color: var(--gold-light);
    box-shadow: 0 0 25px rgba(203, 157, 73, 0.15);
}

.demonstrative-display-pane {
    display: none;
    animation: fadeIn 0.3s ease forwards;
}

.demonstrative-display-pane.active {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 2rem;
    align-items: center;
}

.demonstrative-image-frame {
    position: relative;
    background: #040810;
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.demonstrative-image-frame:hover {
    transform: scale(1.015);
    border-color: var(--gold-primary);
}

.demonstrative-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-zoom-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(4, 8, 16, 0.85);
    border: 1px solid rgba(203, 157, 73, 0.4);
    border-radius: var(--radius-full);
    padding: 0.35rem 0.85rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    backdrop-filter: blur(8px);
}

.demonstrative-info-panel h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-hero-title);
    margin-bottom: 0.35rem;
}

.demonstrative-rule-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-light);
    background: rgba(203, 157, 73, 0.12);
    border: 1px solid rgba(203, 157, 73, 0.3);
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.demonstrative-info-panel p {
    font-size: 0.9375rem;
    color: var(--text-hero-sub);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.demonstrative-hotspot-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.demonstrative-hotspot-list li {
    background: rgba(22, 35, 55, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    margin-bottom: 0.65rem;
    font-size: 0.875rem;
    color: var(--text-hero-sub);
}

.demonstrative-hotspot-list li strong {
    color: var(--gold-pale);
    display: block;
    margin-bottom: 0.15rem;
    font-family: var(--font-heading);
}

/* ══════════════════════════════════════════════════════════════════
   SECTION 4: SANCTIONS RISK & LEGAL LIABILITY
   ══════════════════════════════════════════════════════════════════ */
.sanctions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.sanction-card {
    background: rgba(15, 27, 45, 0.7);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem;
    backdrop-filter: blur(16px);
    transition: transform 0.25s ease;
}

.sanction-card:hover {
    transform: translateY(-3px);
    border-color: rgba(239, 68, 68, 0.45);
}

.sanction-citation {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: #F87171;
    margin-bottom: 0.35rem;
}

.sanction-court {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-hero-dim);
    margin-bottom: 1rem;
}

.sanction-penalty {
    display: inline-block;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #FCA5A5;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.85rem;
}

.sanction-summary {
    font-size: 0.875rem;
    color: var(--text-hero-sub);
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════
   SECTION 5: ECONOMICS & IOLTA TRUST RECOVERY
   ══════════════════════════════════════════════════════════════════ */
.economics-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.econ-card {
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    backdrop-filter: blur(20px);
}

.econ-card.saas {
    background: rgba(15, 27, 45, 0.6);
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.econ-card.genius {
    background: rgba(15, 27, 45, 0.8);
    border: 1px solid var(--gold-primary);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(203, 157, 73, 0.12);
}

.econ-card-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.econ-model-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-hero-title);
    margin-bottom: 0.35rem;
}

.econ-price-tag {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.econ-card.saas .econ-price-tag {
    color: #F87171;
}

.econ-card.genius .econ-price-tag {
    color: var(--gold-bright);
}

.econ-breakdown-list {
    list-style: none;
    margin-bottom: 1.75rem;
}

.econ-breakdown-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9375rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.econ-bottom-summary {
    background: rgba(4, 8, 16, 0.7);
    border-radius: var(--radius-md);
    padding: 1.15rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.econ-card.saas .econ-bottom-summary {
    color: #F87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.econ-card.genius .econ-bottom-summary {
    color: #34D399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* ══════════════════════════════════════════════════════════════════
   WIDGET 4: MAGGIE CONCIERGE TRUST CARD & SLA
   ══════════════════════════════════════════════════════════════════ */
.maggie-trust-card {
    background: linear-gradient(145deg, rgba(22, 35, 55, 0.85) 0%, rgba(15, 27, 45, 0.95) 100%);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 35px rgba(203, 157, 73, 0.1);
}

.maggie-split-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: center;
}

.maggie-avatar-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(203, 157, 73, 0.2);
}

.maggie-avatar-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.maggie-avatar-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(4, 8, 16, 0.9);
    padding: 0.5rem;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--gold-light);
    border-top: 1px solid rgba(203, 157, 73, 0.4);
    letter-spacing: 1px;
}

.maggie-info-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-hero-title);
    margin-bottom: 0.25rem;
}

.maggie-title {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
}

.maggie-quote {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-hero-sub);
    font-style: italic;
    margin-bottom: 1.75rem;
    border-left: 3px solid var(--gold-primary);
    padding-left: 1.25rem;
}

.sla-badges-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.sla-chip {
    background: rgba(22, 35, 55, 0.7);
    border: 1px solid rgba(203, 157, 73, 0.25);
    border-radius: var(--radius-full);
    padding: 0.45rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-pale);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.sla-chip .chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--emerald-audit);
}

/* ══════════════════════════════════════════════════════════════════
   FAQ ACCORDION & FINAL CTA
   ══════════════════════════════════════════════════════════════════ */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-card {
    background: rgba(15, 27, 45, 0.7);
    border: 1px solid var(--navy-border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.faq-card:hover {
    border-color: rgba(203, 157, 73, 0.35);
}

.faq-header {
    padding: 1.35rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-hero-title);
}

.faq-toggle-icon {
    font-size: 1.15rem;
    color: var(--gold-light);
    transition: transform 0.25s ease;
}

.faq-card.open .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-body {
    display: none;
    padding: 0 1.5rem 1.35rem;
    font-size: 0.9375rem;
    color: var(--text-hero-sub);
    line-height: 1.65;
    animation: fadeIn 0.25s ease forwards;
}

.faq-card.open .faq-body {
    display: block;
}

.final-cta-banner {
    background: linear-gradient(135deg, rgba(15, 27, 45, 0.95) 0%, rgba(37, 99, 235, 0.18) 100%);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    max-width: 1040px;
    margin: 4rem auto 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.final-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-hero-title);
    margin-bottom: 1rem;
}

.final-cta-sub {
    font-size: 1.125rem;
    color: var(--text-hero-sub);
    max-width: 680px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE OVERRIDES FOR COMPARE PAGE
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
    .workflow-panel.active {
        grid-template-columns: 1fr;
    }
    .demonstrative-display-pane.active {
        grid-template-columns: 1fr;
    }
    .dimension-comparison-split {
        grid-template-columns: 1fr;
    }
    .maggie-split-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .maggie-avatar-frame {
        max-width: 240px;
        margin: 0 auto;
    }
    .maggie-quote {
        border-left: none;
        border-top: 2px solid var(--gold-primary);
        padding-left: 0;
        padding-top: 1rem;
    }
    .sla-badges-strip {
        justify-content: center;
    }
    .sanctions-grid {
        grid-template-columns: 1fr;
    }
    .economics-split-grid {
        grid-template-columns: 1fr;
    }
    .compare-metrics-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .drawer-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .compare-hero-section {
        padding: 7rem 1rem 3.5rem;
    }
    .compare-section {
        padding: 4rem 1rem;
    }
    .workflow-nav-bar {
        grid-template-columns: 1fr;
    }
    .workflow-widget,
    .demonstrative-viewer-card,
    .dimension-card,
    .maggie-trust-card {
        padding: 1.5rem 1.15rem;
    }
    .compare-metrics-strip {
        grid-template-columns: 1fr;
    }
    .compare-hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    .compare-hero-ctas .btn-primary,
    .compare-hero-ctas .btn-secondary,
    .compare-hero-ctas .btn-whitepaper-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .final-cta-banner {
        padding: 2.5rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .compare-hero-title {
        font-size: 2rem;
    }
    .dimension-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .dimension-title {
        font-size: 1.15rem;
    }
    .matrix-filter-bar {
        gap: 0.4rem;
    }
    .matrix-filter-btn {
        font-size: 0.75rem;
        padding: 0.45rem 0.9rem;
    }
    .demonstrative-tab-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ── Universal Grid & Overflow Guards for Compare Page ── */
.compare-hero-section,
.compare-section,
.workflow-widget,
.dimension-card,
.demonstrative-viewer-card,
.sanction-card,
.econ-card,
.maggie-trust-card,
.final-cta-banner {
    max-width: 100%;
    box-sizing: border-box;
}

.contrast-box,
.panel-content,
.panel-code-box,
.demonstrative-info-panel,
.maggie-info-content,
.drawer-column {
    min-width: 0;
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contrast-box code,
.panel-code-box code,
.drawer-column code {
    word-break: break-all;
    overflow-wrap: anywhere;
}

.panel-code-box .code-header {
    flex-wrap: wrap;
    gap: 0.5rem;
}

.contrast-box-header {
    flex-wrap: wrap;
    gap: 0.5rem;
}

.dimension-header {
    flex-wrap: wrap;
    gap: 0.75rem;
}

.dimension-comparison-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.workflow-panel.active {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.demonstrative-display-pane.active {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
}

.sanctions-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.economics-split-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.drawer-details-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.compare-metrics-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1080px) {
    .dimension-comparison-split,
    .workflow-panel.active,
    .demonstrative-display-pane.active,
    .sanctions-grid,
    .economics-split-grid,
    .drawer-details-grid {
        grid-template-columns: minmax(0, 1fr) !important;
    }
    .compare-metrics-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 768px) {
    .compare-metrics-strip {
        grid-template-columns: minmax(0, 1fr) !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   EXECUTIVE WHITE PAPER BANNER & 2-STEP MODAL DESIGN SYSTEM
   ═══════════════════════════════════════════════════════════ */

.btn-whitepaper-cta {
    padding: 0.95rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: var(--radius-full);
    background: rgba(22, 35, 55, 0.7);
    border: 1px solid rgba(203, 157, 73, 0.45);
    color: var(--gold-light) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(203, 157, 73, 0.15);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.btn-whitepaper-cta:hover {
    background: rgba(30, 48, 76, 0.95);
    border-color: var(--gold-light);
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(203, 157, 73, 0.3);
}

.btn-whitepaper-cta .btn-icon {
    width: 17px;
    height: 17px;
    stroke: currentColor;
    flex-shrink: 0;
}

/* White Paper Section Banner */
.whitepaper-banner-card {
    background: radial-gradient(circle at 15% 30%, rgba(37, 99, 235, 0.15), transparent 60%),
                radial-gradient(circle at 85% 70%, rgba(203, 157, 73, 0.12), transparent 50%),
                #08101E;
    border: 1px solid rgba(203, 157, 73, 0.35);
    border-radius: var(--radius-lg);
    padding: 3.5rem 3rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(203, 157, 73, 0.12);
    position: relative;
    overflow: hidden;
}

.whitepaper-banner-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), var(--blue-accent), transparent);
}

.whitepaper-banner-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: 3rem;
    align-items: center;
}

.whitepaper-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.5vw, 2.25rem);
    font-weight: 800;
    line-height: 1.25;
    color: #FFFFFF;
    margin-bottom: 1.2rem;
}

.whitepaper-banner-desc {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-hero-dim);
    margin-bottom: 1.5rem;
}

.whitepaper-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.whitepaper-highlights-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-hero-title);
}

.whitepaper-banner-cta-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.whitepaper-instant-tag {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--gold-light);
    letter-spacing: 0.03em;
}

/* PDF Document Floating Mockup */
.pdf-document-mockup {
    background: #0E1A2C;
    border: 1px solid rgba(203, 157, 73, 0.4);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(37, 99, 235, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.pdf-document-mockup:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--gold-light);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 45px rgba(203, 157, 73, 0.3);
}

.mockup-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-badge {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.08em;
}

.mockup-pages {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    color: var(--text-hero-dim);
    background: rgba(255, 255, 255, 0.06);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.mockup-body-preview {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.mockup-doc-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.3;
}

.mockup-doc-sub {
    font-size: 0.8125rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.mockup-doc-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), transparent);
    margin-bottom: 0.25rem;
}

.mockup-line {
    height: 6px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 3px;
}

.mockup-callout-box {
    background: rgba(203, 157, 73, 0.08);
    border-left: 3px solid var(--gold-primary);
    padding: 0.6rem 0.75rem;
    border-radius: 0 4px 4px 0;
    margin-top: 0.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.mockup-callout-tag {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.05em;
}

.mockup-download-prompt {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: rgba(37, 99, 235, 0.15);
    border: 1px dashed rgba(37, 99, 235, 0.4);
    border-radius: var(--radius-sm);
    color: #93C5FD;
    font-size: 0.8125rem;
    font-weight: 600;
    text-align: center;
}

/* 2-Step White Paper Modal */
.whitepaper-modal-card {
    max-width: 600px;
    background: #091322;
    border: 1px solid var(--gold-primary);
}

.whitepaper-step-container {
    animation: modal-enter 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-hero-title);
    margin-bottom: 0.35rem;
}

.input-error-msg {
    font-size: 0.75rem;
    color: #F87171;
    margin-top: 0.35rem;
    animation: modal-enter 0.2s ease;
}

.input-invalid {
    border-color: #EF4444 !important;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.35) !important;
}

.form-privacy-note {
    font-size: 0.75rem;
    color: var(--text-hero-dim);
    text-align: center;
    margin-top: 0.85rem;
    margin-bottom: 0;
}

.whitepaper-success-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.success-icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    border: 2px solid #10B981;
    color: #10B981;
    font-size: 1.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.whitepaper-download-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: rgba(22, 35, 55, 0.7);
    border: 1px solid rgba(203, 157, 73, 0.3);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.pdf-preview-icon {
    font-size: 2.25rem;
    line-height: 1;
    flex-shrink: 0;
}

.pdf-download-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    overflow: hidden;
}

.pdf-file-title {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 700;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pdf-file-sub {
    font-size: 0.75rem;
    color: var(--gold-light);
}

.whitepaper-actions {
    margin-bottom: 1.5rem;
}

.whitepaper-followup-box {
    background: rgba(8, 16, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    text-align: center;
}

.whitepaper-followup-box p {
    font-size: 0.8125rem;
    color: var(--text-hero-dim);
    margin-bottom: 0.85rem;
}

@media (max-width: 960px) {
    .whitepaper-banner-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 2rem;
    }
    .whitepaper-banner-card {
        padding: 2.25rem 1.75rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   THE PRACTICE OF ONE — EDITORIAL DESIGN SYSTEM & NAVBAR EXTENSIONS
   ═══════════════════════════════════════════════════════════════════ */

/* ── Desktop "Ideas" Dropdown Menu ── */
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-trigger {
    background: transparent;
    border: none;
    color: var(--text-hero-sub);
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    padding: 0.35rem 0;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nav-dropdown-trigger:hover,
.nav-dropdown.is-open .nav-dropdown-trigger,
.nav-dropdown:hover .nav-dropdown-trigger {
    color: #FFFFFF;
}

.nav-dropdown-trigger.nav-active {
    color: var(--gold-light);
    font-weight: 600;
}

.dropdown-chevron {
    color: inherit;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-dropdown.is-open .dropdown-chevron,
.nav-dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.85rem);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 300px;
    background: rgba(8, 16, 30, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-md);
    padding: 0.6rem;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(203, 157, 73, 0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 150;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

/* Hover bridge preventing loss of hover when moving cursor from trigger to menu */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 12px;
    background: transparent;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
    display: flex;
    flex-direction: column;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.nav-dropdown-item:hover,
.nav-dropdown-item:focus,
.nav-dropdown-item:focus-visible,
.nav-dropdown-item.dropdown-item-active {
    background: rgba(22, 35, 55, 0.7);
    border-color: rgba(203, 157, 73, 0.25);
    outline: none;
}

.nav-dropdown-item.dropdown-item-active {
    border-color: var(--gold-primary);
}

.dropdown-item-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.dropdown-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.dropdown-item-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-hero-title);
    transition: color 0.2s ease;
}

.nav-dropdown-item:hover .dropdown-item-title,
.nav-dropdown-item:focus .dropdown-item-title,
.nav-dropdown-item.dropdown-item-active .dropdown-item-title {
    color: var(--gold-light);
}

.dropdown-item-desc {
    font-size: 0.75rem;
    color: var(--text-hero-dim);
    line-height: 1.35;
}

.dropdown-item-badge {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    text-transform: uppercase;
    white-space: nowrap;
}

.badge-editorial {
    background: rgba(8, 16, 30, 0.7);
    color: var(--gold-light);
    border: 1px solid rgba(203, 157, 73, 0.4);
}

.badge-advantage {
    background: rgba(37, 99, 235, 0.15);
    color: var(--blue-cyan);
    border: 1px solid rgba(56, 189, 248, 0.3);
}

/* ── Mobile Navigation Accordion Submenu ── */
.mobile-nav-accordion {
    display: flex;
    flex-direction: column;
    background: rgba(22, 35, 55, 0.5);
    border: 1px solid var(--navy-border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.mobile-nav-accordion.is-open {
    border-color: var(--navy-border);
    background: rgba(22, 35, 55, 0.75);
}

.mobile-accordion-toggle {
    width: 100%;
    min-height: 48px;
    padding: 0.85rem 1.15rem;
    background: transparent;
    border: none;
    color: var(--text-hero-title);
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.mobile-accordion-toggle:hover,
.mobile-accordion-toggle:focus-visible {
    color: var(--gold-light);
}

.mobile-accordion-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.mobile-badge-new {
    font-family: var(--font-mono);
    font-size: 0.575rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.15rem 0.45rem;
    background: rgba(203, 157, 73, 0.15);
    color: var(--gold-light);
    border: 1px solid rgba(203, 157, 73, 0.35);
    border-radius: 4px;
}

.mobile-accordion-chevron {
    color: var(--text-hero-dim);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
    flex-shrink: 0;
}

.mobile-nav-accordion.is-open .mobile-accordion-chevron {
    transform: rotate(180deg);
    color: var(--gold-light);
}

.mobile-nav-submenu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, padding 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0 0.85rem;
}

.mobile-nav-accordion.is-open .mobile-nav-submenu {
    max-height: 280px;
    opacity: 1;
    padding: 0 0.85rem 0.85rem;
}

.mobile-submenu-link {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0.75rem 0.85rem !important;
    border-radius: var(--radius-sm) !important;
    background: rgba(8, 16, 30, 0.6) !important;
    border: 1px solid var(--navy-border-subtle) !important;
    text-decoration: none !important;
    min-height: 44px !important;
    transition: all 0.2s ease !important;
}

.mobile-submenu-link:hover,
.mobile-submenu-link:active,
.mobile-submenu-link.active-item {
    background: rgba(30, 48, 76, 0.9) !important;
    border-color: var(--gold-primary) !important;
}

.mobile-submenu-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.mobile-submenu-heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-submenu-title {
    font-size: 0.925rem;
    font-weight: 600;
    color: var(--text-hero-title);
}

.mobile-submenu-desc {
    font-size: 0.725rem;
    color: var(--text-hero-dim);
    font-weight: 400;
}

.mobile-submenu-arrow {
    color: var(--text-hero-dim);
    font-size: 1rem;
    margin-left: 0.5rem;
    transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-submenu-link:hover .mobile-submenu-arrow,
.mobile-submenu-link.active-item .mobile-submenu-arrow {
    transform: translateX(3px);
    color: var(--gold-light);
}

/* ── Editorial Body & Hero ── */
.editorial-body {
    background-color: #040810;
    color: #CBD5E1;
    overflow-x: hidden;
}

.editorial-hero {
    position: relative;
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(22, 35, 55, 0.8) 0%, #040810 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Editorial Container & Reading Cadence ── */
.editorial-part {
    position: relative;
    padding: 7rem 1.5rem 8rem;
    overflow: hidden;
}

.editorial-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.editorial-prose {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.82;
    color: #CBD5E1;
}

.editorial-prose p {
    margin-bottom: 1.85rem;
}

.lead-paragraph {
    font-size: 1.35rem;
    line-height: 1.7;
    color: #F8FAFC;
    font-weight: 400;
    margin-bottom: 2.25rem;
}

/* ── Part Thematic Modes ── */
.part-monochrome {
    background-color: #040810;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.part-forensic {
    background: radial-gradient(circle at 50% 0%, #0D1B2E 0%, #08101E 100%);
    border-bottom: 1px solid rgba(203, 157, 73, 0.15);
}

.part-golden {
    background: radial-gradient(circle at 50% 10%, rgba(203, 157, 73, 0.08) 0%, #08101E 80%);
}

/* ── Editorial Badges & Headlines ── */
.part-header-block {
    max-width: 860px;
    margin: 0 auto 3.5rem;
    text-align: left;
}

.part-index-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    color: var(--text-hero-dim);
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.mono-num {
    font-family: var(--font-mono);
    font-weight: 700;
}

.badge-separator {
    color: var(--text-muted);
}

.badge-label {
    letter-spacing: 0.1em;
}

.badge-gold-glow {
    background: rgba(203, 157, 73, 0.12);
    border-color: rgba(203, 157, 73, 0.3);
    color: var(--gold-light);
}

.part-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4.8vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: var(--text-hero-title);
    margin-bottom: 1.25rem;
}

.part-subdeck {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    line-height: 1.6;
    color: var(--text-hero-sub);
    font-weight: 400;
    margin-bottom: 2rem;
}

.editorial-byline-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.byline-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.byline-role {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    color: var(--gold-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.byline-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #FFFFFF;
}

.section-subheading {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    font-weight: 700;
    color: #FFFFFF;
    margin: 3.5rem 0 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

/* ── Editorial Figures & Photographs ── */
.editorial-figure {
    margin: 3.5rem auto;
    text-align: center;
    width: 100%;
}

.editorial-figure.full-breakout {
    max-width: 1060px;
}

.editorial-figure.mid-breakout {
    max-width: 840px;
}

.editorial-img-full,
.editorial-img-rounded,
.editorial-img-contained {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    box-sizing: border-box;
}

.editorial-img-full {
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7);
}

.editorial-img-rounded {
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.editorial-img-contained {
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    max-width: 896px;
    margin: 0 auto;
}

.editorial-figcaption {
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    line-height: 1.5;
}

.fig-label {
    color: var(--gold-light);
    font-weight: 600;
}

/* ── Pullquotes ── */
.editorial-pullquote {
    margin: 3.5rem 0;
    padding: 2rem 2.5rem;
    background: rgba(15, 27, 45, 0.4);
    border-left: 3px solid #CBD5E1;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-family: 'Newsreader', Georgia, serif;
    font-style: italic;
    font-size: clamp(1.3rem, 2.2vw, 1.65rem);
    line-height: 1.55;
    color: #F8FAFC;
}

.editorial-pullquote.quote-gold {
    border-left-color: var(--gold-primary);
    background: rgba(203, 157, 73, 0.06);
}

/* ── Bullet Lists ── */
.editorial-bullet-list {
    margin: 1.5rem 0 2rem 1.5rem;
    padding-left: 1rem;
    color: #CBD5E1;
    line-height: 1.8;
}

.editorial-bullet-list li {
    margin-bottom: 0.75rem;
}

/* ── Stat Cards Grid ── */
.editorial-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 2.5rem 0 3.5rem;
}

.stat-card {
    background: rgba(22, 35, 55, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold-light);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gold-bright);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #F8FAFC;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--text-hero-dim);
    margin-bottom: 0 !important;
}

/* ── Archetypes Grid ── */
.archetype-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin: 2.5rem 0 3.5rem;
}

.archetype-card {
    background: rgba(15, 27, 45, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: all 0.25s ease;
}

.archetype-card:hover {
    border-color: rgba(203, 157, 73, 0.4);
    background: rgba(22, 35, 55, 0.7);
    transform: translateY(-2px);
}

.archetype-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.archetype-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
}

.archetype-label {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.archetype-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-hero-sub);
    margin-bottom: 0 !important;
}

/* ── Rules Matrix Grid ── */
.rules-matrix-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 2.5rem 0 3.5rem;
}

.rule-box {
    background: rgba(15, 27, 45, 0.65);
    border: 1px solid rgba(203, 157, 73, 0.2);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: all 0.25s ease;
}

.rule-box:hover {
    border-color: var(--gold-primary);
    background: rgba(22, 35, 55, 0.8);
}

.rule-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.rule-badge {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--gold-bright);
    background: rgba(203, 157, 73, 0.15);
    border: 1px solid rgba(203, 157, 73, 0.35);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.rule-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.rule-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-hero-sub);
    margin-bottom: 0 !important;
}

/* ── Transformation Table ── */
.transformation-table-wrapper {
    overflow-x: auto;
    margin: 2.5rem 0 3.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(203, 157, 73, 0.2);
    background: rgba(15, 27, 45, 0.7);
    max-width: 100%;
}

.transformation-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    text-align: left;
    min-width: 600px;
}

.transformation-table th {
    background: rgba(8, 16, 30, 0.95);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--gold-light);
    text-transform: uppercase;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(203, 157, 73, 0.2);
}

.transformation-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: top;
    line-height: 1.55;
}

.transformation-table .role-name {
    font-weight: 600;
    color: #FFFFFF;
    white-space: nowrap;
}

.transformation-table .old-way {
    color: var(--text-hero-dim);
}

.transformation-table .new-way {
    color: #E2E8F0;
}

.transformation-table .highlight-advocacy-row td {
    background: rgba(203, 157, 73, 0.08);
    border-top: 1px solid rgba(203, 157, 73, 0.3);
    border-bottom: 1px solid rgba(203, 157, 73, 0.3);
}

.transformation-table .highlight-advocacy-row .new-way {
    color: var(--gold-bright);
}

/* ── Split Images Grid ── */
.editorial-image-split-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.editorial-image-split-grid .editorial-figure {
    margin: 0;
}

/* ── Delta Lawyer Visual Card ── */
.delta-lawyer-card {
    background: linear-gradient(145deg, rgba(22, 35, 55, 0.8) 0%, rgba(15, 27, 45, 0.95) 100%);
    border: 1px solid rgba(203, 157, 73, 0.3);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.delta-triangle-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.delta-symbol {
    font-family: var(--font-brand);
    font-size: 2.5rem;
    color: var(--gold-bright);
    line-height: 1;
}

.delta-triangle-header h3,
.delta-triangle-header h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.delta-pillars-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.delta-pillar {
    background: rgba(8, 16, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.pillar-number {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-light);
    display: block;
    margin-bottom: 0.5rem;
}

.delta-pillar h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.delta-pillar p {
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--text-hero-sub);
    margin-bottom: 0 !important;
}

.manifesto-concluding-line {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold-bright);
    margin-top: 2rem;
}

/* ── Editorial Call to Action Card ── */
.editorial-cta-card {
    background: radial-gradient(circle at 50% 0%, rgba(203, 157, 73, 0.15) 0%, rgba(15, 27, 45, 0.95) 75%);
    border: 1px solid rgba(203, 157, 73, 0.35);
    border-radius: var(--radius-lg);
    padding: 4rem 2.5rem;
    text-align: center;
    margin: 5rem auto 2rem;
    max-width: 860px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.editorial-cta-card .cta-badge {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--gold-bright);
    margin-bottom: 1rem;
}

.editorial-cta-card .cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.editorial-cta-card .cta-desc {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--text-hero-sub);
    max-width: 680px;
    margin: 0 auto 2rem;
}

.editorial-cta-card .cta-button-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.editorial-cta-card .cta-trust-footer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-hero-dim);
    flex-wrap: wrap;
}

/* ── Reading Progress Bar & Chapter HUD ── */
.reading-progress-bar {
    position: fixed;
    top: 60px;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #CB9D49 0%, #FCD34D 100%);
    width: 0%;
    z-index: 95;
    transition: width 0.1s linear;
}

.sticky-chapter-hud {
    position: sticky;
    top: 63px;
    z-index: 90;
    background: rgba(8, 16, 30, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.chapter-hud-pill {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-hero-dim);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    transition: all 0.2s ease;
    text-decoration: none;
}

.chapter-hud-pill:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
}

.chapter-hud-pill.active {
    color: var(--gold-bright);
    background: rgba(203, 157, 73, 0.15);
    border-color: rgba(203, 157, 73, 0.35);
}

/* Additional utility / footer classes referenced */
.site-footer {
    border-top: 1px solid var(--navy-border-subtle);
    background: #050A12;
    padding: 4rem 2rem 3rem;
}

.footer-tagline {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.footer-email {
    font-family: var(--font-mono);
    color: var(--gold-light);
}

.footer-sub {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.modal-success-msg {
    text-align: center;
    padding: 2rem 1rem;
}

.success-icon {
    font-size: 2.5rem;
    color: var(--emerald-audit);
    margin-bottom: 1rem;
}

.gradient-gold-text {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--gold-light) 50%, var(--gold-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gold {
    color: var(--gold-light) !important;
}

.btn-arrow {
    margin-left: 0.4rem;
    display: inline-block;
    transition: transform 0.2s ease;
}

.btn-primary:hover .btn-arrow,
.btn-secondary:hover .btn-arrow {
    transform: translateX(4px);
}

/* ── Responsive Media Queries ── */
@media (max-width: 900px) {
    .editorial-stat-grid,
    .archetype-grid,
    .delta-pillars-row,
    .editorial-image-split-grid {
        grid-template-columns: 1fr;
    }
    
    .editorial-part {
        padding: 4.5rem 1.25rem 5rem;
    }
    
    .editorial-pullquote {
        padding: 1.5rem;
    }
    
    .sticky-chapter-hud {
        gap: 0.4rem;
    }
    
    .chapter-hud-pill {
        font-size: 0.6875rem;
        padding: 0.25rem 0.5rem;
    }

    .editorial-byline-row {
        gap: 1rem;
    }
}

/* ══════════════════════════════════════════════════════════════════
   Koce — Bespoke Legal Engineering & Consulting Styles
   ══════════════════════════════════════════════════════════════════ */

/* ── Hero Section & HUD Canvas ── */
.consulting-hero {
    position: relative;
    padding: 9.5rem 2rem 5.5rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 85vh;
}

.consulting-hud-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.65;
}

.consulting-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.consulting-eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 1.15rem;
    background: rgba(203, 157, 73, 0.12);
    border: 1px solid rgba(203, 157, 73, 0.35);
    border-radius: var(--radius-full);
    color: var(--gold-light);
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    box-shadow: 0 0 20px rgba(203, 157, 73, 0.15);
}

.consulting-eyebrow-badge .pulse-gold {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-primary);
    box-shadow: 0 0 10px var(--gold-bright);
    animation: pulse-glow 2s infinite ease-in-out;
}

.consulting-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.35rem, 5.2vw, 4.15rem);
    font-weight: 800;
    line-height: 1.14;
    color: var(--text-hero-title);
    max-width: 1060px;
    margin: 0 auto 1.5rem;
    letter-spacing: -0.025em;
}

.consulting-hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    line-height: 1.7;
    color: var(--text-hero-sub);
    max-width: 820px;
    margin: 0 auto 2.25rem;
}

.consulting-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.btn-ghost-cta {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-light);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(203, 157, 73, 0.25);
    background: rgba(203, 157, 73, 0.05);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
}

.btn-ghost-cta:hover {
    background: rgba(203, 157, 73, 0.15);
    border-color: var(--gold-primary);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* ── 4-Card Value Metrics Strip ── */
.consulting-metrics-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    width: 100%;
    max-width: 1140px;
    margin-top: 1rem;
}

.metric-card {
    background: rgba(15, 27, 45, 0.75);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-md);
    padding: 1.65rem 1.25rem;
    text-align: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.25s ease;
}

.metric-card:hover {
    border-color: rgba(203, 157, 73, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(203, 157, 73, 0.12);
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}

.metric-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-hero-title);
    margin-bottom: 0.4rem;
}

.metric-desc {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--text-hero-dim);
}

.text-emerald {
    color: var(--emerald-audit) !important;
}

.text-blue {
    color: var(--blue-cyan) !important;
}

/* ── General Consulting Section Framework ── */
.consulting-section {
    padding: 6.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header-block {
    max-width: 840px;
    margin: 0 auto 3.5rem;
}

.section-header-block.text-center {
    text-align: center;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.4px;
    color: var(--gold-light);
    background: rgba(203, 157, 73, 0.1);
    border: 1px solid rgba(203, 157, 73, 0.28);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-hero-title);
    margin-bottom: 1.15rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.7;
    color: var(--text-hero-sub);
}

/* ── Comparison Matrix Section ── */
.comparison-matrix-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ── Vertical Deep-Dives Tab Switcher ── */
.vertical-deep-dives-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.vertical-tab-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.75rem;
    background: rgba(8, 16, 30, 0.8);
    padding: 0.5rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--navy-border-subtle);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.vertical-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.85rem 1.35rem;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    background: transparent;
    color: var(--text-hero-dim);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.vertical-tab-btn:hover {
    color: var(--text-hero-title);
    background: rgba(255, 255, 255, 0.04);
}

.vertical-tab-btn.active {
    background: rgba(203, 157, 73, 0.18);
    border-color: rgba(203, 157, 73, 0.45);
    color: var(--gold-bright);
    box-shadow: 0 4px 18px rgba(203, 157, 73, 0.2);
}

.vertical-tab-btn .tab-icon {
    font-size: 1.15rem;
}

.vertical-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vertical-panel.active {
    display: block;
    opacity: 1;
}

.vertical-sub-header {
    background: rgba(15, 27, 45, 0.6);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-md);
    padding: 1.75rem 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.vertical-panel-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.vertical-panel-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-hero-sub);
}

.engine-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.engine-card {
    background: rgba(15, 27, 45, 0.75);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-md);
    padding: 1.85rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s ease;
}

.engine-card:hover {
    border-color: rgba(203, 157, 73, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.engine-badge {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--gold-primary);
    margin-bottom: 0.65rem;
}

.engine-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-hero-title);
    margin-bottom: 0.75rem;
}

.engine-desc {
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--text-hero-sub);
    margin-bottom: 1.15rem;
}

.engine-note {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--gold-pale);
    background: rgba(203, 157, 73, 0.08);
    border-left: 3px solid var(--gold-primary);
    padding: 0.65rem 0.85rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-top: 0.85rem;
}

.engine-stat-row {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.stat-pill {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.06);
    color: var(--blue-cyan);
    border: 1px solid rgba(56, 189, 248, 0.25);
}

/* ── Waterfall List & Reg F Table ── */
.waterfall-tiers-list {
    background: rgba(8, 16, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin: 0.85rem 0;
}

.waterfall-tier-item {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-hero-sub);
    display: flex;
    gap: 0.5rem;
}

.tier-num {
    color: var(--gold-light);
    font-weight: 700;
    white-space: nowrap;
}

.reg-f-table {
    background: rgba(8, 16, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin: 0.85rem 0;
}

.reg-f-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    padding: 0.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.reg-f-row:last-child {
    border-bottom: none;
}

.reg-f-col1 {
    color: var(--gold-light);
    font-weight: 600;
}

.reg-f-col2 {
    color: var(--text-hero-dim);
    text-align: right;
}

/* ── 4-Stage Legal Engineering Framework ── */
.engagement-framework-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.35rem;
}

.framework-card {
    background: rgba(15, 27, 45, 0.78);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-md);
    padding: 1.85rem 1.35rem;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}

.framework-card:hover {
    border-color: rgba(203, 157, 73, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(203, 157, 73, 0.1);
}

.framework-badge-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.stage-number {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold-bright);
    background: rgba(203, 157, 73, 0.15);
    border: 1px solid rgba(203, 157, 73, 0.35);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.stage-timing {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-hero-dim);
}

.stage-price {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-light);
    width: 100%;
    margin-top: 0.35rem;
}

.framework-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-hero-title);
    margin-bottom: 0.85rem;
    line-height: 1.25;
}

.framework-scope {
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-hero-sub);
    margin-bottom: 1.25rem;
}

.framework-deliverables-list {
    list-style: none;
    padding: 0;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1rem;
}

.framework-deliverables-list li {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--text-hero-dim);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.15rem;
    line-height: 1.45;
}

.framework-deliverables-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold-light);
    font-weight: 700;
}

/* ── Evidentiary Defense & Security Architecture ── */
.security-architecture-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.security-card {
    background: rgba(15, 27, 45, 0.75);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-md);
    padding: 2.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}

.security-card:hover {
    border-color: rgba(203, 157, 73, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.security-icon {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

.security-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-hero-title);
    margin-bottom: 0.85rem;
}

.security-desc {
    font-family: var(--font-body);
    font-size: 0.925rem;
    line-height: 1.65;
    color: var(--text-hero-sub);
    margin-bottom: 1.25rem;
}

.security-citation {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--gold-pale);
    background: rgba(203, 157, 73, 0.08);
    border-left: 3px solid var(--gold-primary);
    padding: 0.75rem 0.95rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-top: auto;
}

/* ── Terminal Lead Capture Form Section ── */
.terminal-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8rem;
}

.consulting-terminal-card {
    background: rgba(15, 27, 45, 0.85);
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    max-width: 860px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(203, 157, 73, 0.15);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.terminal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.terminal-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--emerald-audit);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.pulse-live {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--emerald-audit);
    box-shadow: 0 0 8px var(--emerald-audit);
    animation: pulse-glow 2s infinite ease-in-out;
}

.terminal-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    color: var(--text-hero-title);
    margin-bottom: 0.75rem;
}

.terminal-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-hero-sub);
    max-width: 620px;
    margin: 0 auto;
}

.consulting-terminal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-field-wrapper {
    position: relative;
    width: 100%;
}

.glass-input.select-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23CB9D49' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.glass-input.select-input option {
    background-color: var(--navy-surface);
    color: var(--text-hero-title);
    padding: 0.5rem;
}

.glass-input.textarea-input {
    resize: vertical;
    min-height: 90px;
}

.form-privacy-footnote {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-hero-dim);
    text-align: center;
    margin-top: 0.5rem;
}

.form-success {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.form-success .success-icon {
    font-size: 3rem;
    color: var(--emerald-audit);
    margin-bottom: 1rem;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-hero-title);
    margin-bottom: 0.75rem;
}

.form-success p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-hero-sub);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Responsive Breakpoints for Consulting Page ── */
@media (max-width: 1024px) {
    .consulting-metrics-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .framework-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 600px) {
    .consulting-hero {
        padding: 7.5rem 1rem 4rem;
    }

    .consulting-metrics-strip {
        grid-template-columns: 1fr;
    }

    .consulting-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .consulting-hero-actions a,
    .consulting-hero-actions button {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .form-grid-2col {
        grid-template-columns: 1fr;
    }

    .consulting-terminal-card {
        padding: 2rem 1.25rem;
    }

    .vertical-tab-bar {
        flex-direction: column;
        border-radius: var(--radius-md);
    }

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

    .dimension-comparison-split {
        grid-template-columns: 1fr;
    }

    .reg-f-row {
        flex-direction: column;
        gap: 0.2rem;
    }

    .reg-f-col2 {
        text-align: left;
    }
}

/* ══════════════════════════════════════════════════════════════════
   LEGAL, TERMS OF SERVICE & PRIVACY POLICY PAGES
   ══════════════════════════════════════════════════════════════════ */

.terms-hero {
    min-height: 36vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9.5rem 2rem 3.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.terms-hero-content {
    max-width: 860px;
    margin: 0 auto;
}

.terms-hero .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-hero-title);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.terms-hero .hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.7;
    color: var(--text-hero-sub);
    max-width: 760px;
    margin: 0 auto 2rem;
}

.terms-meta-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.875rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius-full);
    background: rgba(15, 27, 45, 0.85);
    border: 1px solid rgba(203, 157, 73, 0.25);
    font-size: 0.8125rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.meta-label {
    color: var(--text-hero-dim);
    font-weight: 500;
}

.meta-value {
    color: var(--gold-light);
    font-weight: 700;
    font-family: var(--font-mono);
}

/* Layout */
.terms-layout-section {
    padding: 1.5rem 2rem 8rem;
    position: relative;
    z-index: 1;
}

.terms-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 3.5rem;
    align-items: start;
    position: relative;
}

/* Sticky Sidebar TOC */
.terms-sidebar {
    position: sticky;
    top: 96px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding: 1.5rem 1.25rem;
    background: rgba(15, 27, 45, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(203, 157, 73, 0.22);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.terms-sidebar::-webkit-scrollbar {
    width: 5px;
}

.terms-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.terms-sidebar::-webkit-scrollbar-thumb {
    background: rgba(203, 157, 73, 0.3);
    border-radius: 4px;
}

.terms-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

.toc-header {
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.toc-title {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-hero-title);
}

.toc-group-label {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.12em;
    margin: 1.25rem 0 0.5rem 0.25rem;
    text-transform: uppercase;
}

.toc-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.toc-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 0.65rem;
    border-radius: var(--radius-sm);
    color: var(--text-hero-sub);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
    line-height: 1.4;
}

.toc-num {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-hero-dim);
    min-width: 1.3rem;
    flex-shrink: 0;
}

.toc-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #FFFFFF;
    transform: translateX(2px);
}

.toc-link:hover .toc-num {
    color: var(--gold-light);
}

.toc-link.active {
    background: rgba(203, 157, 73, 0.14);
    color: var(--gold-bright);
    border-left-color: var(--gold-primary);
    font-weight: 600;
}

.toc-link.active .toc-num {
    color: var(--gold-bright);
}

.highlight-link {
    border-left: 2px solid transparent;
}

.highlight-link.active {
    border-left-color: var(--gold-bright);
}

/* Reading Pane & Content */
.terms-content {
    display: flex;
    flex-direction: column;
    gap: 2.75rem;
    min-width: 0;
}

.terms-preamble-card {
    background: linear-gradient(145deg, rgba(22, 35, 55, 0.88) 0%, rgba(15, 27, 45, 0.96) 100%);
    border: 1px solid rgba(203, 157, 73, 0.32);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2.25rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    scroll-margin-top: 100px;
}

.terms-preamble-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    margin-bottom: 1.15rem;
}

.terms-preamble-card p {
    color: var(--text-hero-sub);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.preamble-notice {
    font-family: var(--font-mono);
    font-size: 0.8125rem !important;
    background: rgba(203, 157, 73, 0.1);
    color: var(--gold-pale) !important;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(203, 157, 73, 0.35);
    font-weight: 600;
    line-height: 1.65 !important;
    letter-spacing: 0.01em;
}

/* Article Sections */
.terms-section {
    background: rgba(15, 27, 45, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2.75rem 2.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    scroll-margin-top: 100px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.terms-section:hover {
    border-color: rgba(203, 157, 73, 0.3);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.45);
}

.terms-section-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.article-badge {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--gold-bright);
    background: rgba(203, 157, 73, 0.15);
    border: 1px solid rgba(203, 157, 73, 0.35);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    white-space: nowrap;
}

.terms-section-header h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.01em;
    margin: 0;
    line-height: 1.3;
}

.terms-section p {
    font-size: 0.975rem;
    line-height: 1.8;
    color: var(--text-hero-sub);
    margin-bottom: 1.35rem;
}

.terms-section p:last-child {
    margin-bottom: 0;
}

.terms-section strong {
    color: #FFFFFF;
    font-weight: 600;
}

.terms-section a {
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.terms-section a:hover {
    color: var(--gold-bright);
}

.legal-subheading {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 2rem 0 0.85rem;
}

.legal-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.25rem 0 1.75rem;
    padding-left: 0;
}

.legal-list li {
    font-size: 0.95rem;
    color: var(--text-hero-sub);
    line-height: 1.75;
    padding-left: 2rem;
    position: relative;
}

.legal-list li strong {
    color: #FFFFFF;
}

.legal-list li .item-bullet {
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--gold-light);
}

/* Callout Boxes (Trust Anchors) */
.legal-callout {
    border-radius: var(--radius-md);
    padding: 1.5rem 1.75rem;
    margin: 1.75rem 0;
    border-left: 4px solid;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.callout-blue {
    background: rgba(37, 99, 235, 0.12);
    border-left-color: var(--blue-cyan);
    border-top: 1px solid rgba(56, 189, 248, 0.2);
    border-right: 1px solid rgba(56, 189, 248, 0.2);
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
}

.callout-blue .callout-title {
    color: #BAE6FD;
}

.callout-orange {
    background: rgba(217, 119, 6, 0.12);
    border-left-color: #F59E0B;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
    border-right: 1px solid rgba(245, 158, 11, 0.2);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.callout-orange .callout-title {
    color: #FDE68A;
}

.callout-emerald {
    background: rgba(16, 185, 129, 0.12);
    border-left-color: #10B981;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    border-right: 1px solid rgba(16, 185, 129, 0.2);
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.callout-emerald .callout-title {
    color: #A7F3D0;
}

.callout-red {
    background: rgba(239, 68, 68, 0.12);
    border-left-color: #EF4444;
    border-top: 1px solid rgba(239, 68, 68, 0.2);
    border-right: 1px solid rgba(239, 68, 68, 0.2);
    border-bottom: 1px solid rgba(239, 68, 68, 0.2);
}

.callout-red .callout-title {
    color: #FECACA;
}

.callout-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.callout-title svg {
    flex-shrink: 0;
}

.callout-body {
    font-size: 0.92rem !important;
    line-height: 1.7 !important;
    color: var(--text-hero-sub) !important;
    margin-bottom: 0 !important;
}

/* Capitalized Conspicuous Clauses */
.conspicuous-clause {
    font-family: var(--font-mono);
    font-size: 0.8125rem !important;
    line-height: 1.7 !important;
    color: var(--gold-pale) !important;
    font-weight: 600;
    letter-spacing: 0.01em;
    background: rgba(8, 16, 30, 0.75);
    padding: 1.35rem 1.6rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(203, 157, 73, 0.3);
    margin: 1.5rem 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .terms-container {
        grid-template-columns: 1fr;
    }

    .terms-sidebar {
        display: none; /* Hide sidebar on mobile / narrow tablet */
    }

    .terms-hero {
        padding-top: 7.5rem;
        padding-bottom: 2.5rem;
    }

    .terms-section {
        padding: 2rem 1.5rem;
    }

    .terms-preamble-card {
        padding: 2rem 1.5rem;
    }
}



