/*
 * nerativ.css — Shared design system for Nerativ.co
 * This file is the single source of truth for the global navbar, hero system,
 * and shared page patterns across the site.
 *
 * Design tokens are kept aligned with the homepage styles — do not diverge.
 */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

/* ─── Design Tokens ─── */
:root {
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --weight-thin: 200;
    --weight-regular: 400;
    --weight-bold: 700;

    --bg: #f2f0eb;
    --bg-alt: #e8e5de;
    --bg-dark: #1a1a1a;
    --text: #111111;
    --text-light: #555555;
    --text-muted: #999999;
    --accent: #e63322;
    --accent-dark: #c42a1c;
    --white: #ffffff;
    --border: #111111;
    --border-light: #cccccc;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
    --hero-space-top: clamp(132px, 14vw, 172px);
    --hero-space-bottom: clamp(64px, 8vw, 92px);
    --hero-title-size: clamp(3.15rem, 8.1vw, 6.85rem);
    --hero-copy-size: clamp(1rem, 1.4vw, 1.15rem);
    --hero-title-max: 25ch;
    --hero-copy-max: 62ch;
}

/* ─── Base ─── */
body {
    font-family: var(--font-body);
    font-weight: var(--weight-thin);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: 0.01em;
}

/* Grid background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
}

/* Noise texture */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 0;
}

.page-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

/* ─── Scroll Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.2s; }
.stagger-4 { transition-delay: 0.28s; }
.stagger-5 { transition-delay: 0.36s; }
.stagger-6 { transition-delay: 0.44s; }

/* ─── Layout ─── */
.container {
    width: min(100%, 1280px);
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: 120px 0;
    position: relative;
}

.section-sm {
    padding: 80px 0;
    position: relative;
}

.divider {
    border: none;
    height: 3px;
    background: var(--border);
}

/* ─── Typography ─── */
.display-xl {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.92;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.display-lg {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.display-md {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.display-sm {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.05;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.mono {
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.body-lg {
    font-size: 1.15rem;
    font-weight: var(--weight-thin);
    line-height: 1.8;
    color: var(--text-light);
    max-width: 520px;
}
.accent {
    color: var(--accent);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s var(--ease);
}
.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 18px 36px;
}
.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--text);
    padding: 16px 34px;
    border: 3px solid var(--border);
}
.btn-outline:hover {
    background: var(--border);
    color: var(--white);
}
.btn-white {
    background: var(--white);
    color: var(--accent);
    padding: 18px 36px;
}
.btn-white:hover {
    background: var(--bg);
    transform: translateY(-2px);
}
.btn-ghost-white {
    background: transparent;
    color: var(--white);
    padding: 16px 34px;
    border: 3px solid var(--white);
}
.btn-ghost-white:hover {
    background: var(--white);
    color: var(--accent);
}
.btn-link {
    background: none;
    color: var(--accent);
    padding: 0;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2px;
    font-size: 0.9rem;
}
.btn-link:hover {
    gap: 16px;
}
.btn-arrow::after {
    content: '→';
    transition: transform 0.3s var(--ease);
}
.btn-arrow:hover::after {
    transform: translateX(4px);
}

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.3s;
}
.nav.scrolled {
    background: rgba(242, 240, 235, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 3px solid var(--border);
    padding: 14px 0;
}
.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    flex-shrink: 0;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 28px;
    overflow: visible;
}
.nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
    align-items: center;
    overflow: visible;
}
.nav-links > li {
    position: relative;
}
.nav-links > li > a {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.nav-links > li > a:hover,
.nav-links > li > a[aria-expanded="true"] {
    color: var(--accent);
}

/* Dropdown */
.nav-has-dropdown {
    position: relative;
}
.nav-has-dropdown > a::after {
    content: '';
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transform-origin: center;
    opacity: 0.7;
    transition: transform 0.35s var(--ease), opacity 0.2s var(--ease);
}
.nav-dropdown {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    min-width: min(92vw, 290px);
    padding: 14px;
    background: rgba(248, 246, 241, 0.94);
    border: 1px solid rgba(17, 17, 17, 0.16);
    border-radius: 26px;
    box-shadow: 0 28px 80px rgba(17, 17, 17, 0.16), 0 8px 24px rgba(17, 17, 17, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(18px) scale(0.96);
    transform-origin: top center;
    display: grid;
    gap: 10px;
    transition:
        opacity 0.28s var(--ease),
        transform 0.45s var(--ease),
        visibility 0s linear 0.28s;
    z-index: 200;
}
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    width: 18px;
    height: 18px;
    background: rgba(248, 246, 241, 0.94);
    border-top: 1px solid rgba(17, 17, 17, 0.16);
    border-left: 1px solid rgba(17, 17, 17, 0.16);
    transform: translateX(-50%) rotate(45deg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.nav-has-dropdown.dropdown-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
    transition-delay: 0s;
}
.nav-has-dropdown.dropdown-open > a::after {
    transform: rotate(225deg) translateY(-1px);
    opacity: 1;
}
.nav-has-dropdown.dropdown-open > a {
    color: var(--accent);
}
.nav-dropdown li {
    list-style: none;
}
.nav-has-dropdown:nth-child(2) .nav-dropdown {
    min-width: min(92vw, 410px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.nav-dropdown a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 14px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.58);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    transition:
        background 0.2s var(--ease),
        color 0.2s var(--ease),
        border-color 0.2s var(--ease),
        transform 0.2s var(--ease);
}
.nav-dropdown a::after {
    content: '↗';
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.nav-dropdown a:hover {
    background: var(--white);
    color: var(--accent);
    border-color: rgba(230, 51, 34, 0.22);
    transform: translateY(-2px);
}
.nav-dropdown a:hover::after {
    opacity: 0.85;
    transform: translateX(0);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 3px solid var(--border);
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.nav-toggle-lines {
    width: 18px;
    height: 12px;
    position: relative;
}
.nav-toggle-lines span {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border);
    transition: transform 0.25s var(--ease), opacity 0.2s var(--ease), top 0.25s var(--ease);
}
.nav-toggle-lines span:nth-child(1) { top: 0; }
.nav-toggle-lines span:nth-child(2) { top: 5px; }
.nav-toggle-lines span:nth-child(3) { top: 10px; }
body.nav-open .nav-toggle-lines span:nth-child(1) { top: 5px; transform: rotate(45deg); }
body.nav-open .nav-toggle-lines span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle-lines span:nth-child(3) { top: 5px; transform: rotate(-45deg); }

/* Mobile nav panel */
.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    padding-top: 88px;
    background: rgba(242, 240, 235, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 3px solid var(--border);
}
body.nav-open .nav-mobile {
    display: block;
}
.nav-mobile-inner {
    padding: 16px 0 28px;
}
.nav-mobile-section {
    margin-bottom: 20px;
}
.nav-mobile-section-title {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0 0 8px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 12px;
}
.nav-mobile-links {
    list-style: none;
    display: grid;
    gap: 12px;
}
.nav-mobile-links a {
    display: inline-flex;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
}
.nav-mobile-links a:hover {
    color: var(--accent);
}

/* ─── Footer ─── */
.footer {
    border-top: 3px solid var(--border);
    padding-top: 64px;
    padding-bottom: 40px;
}
.footer-top {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 80px;
    padding-bottom: 48px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border-light);
}
.footer-brand .footer-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 14px;
    color: var(--text);
    text-decoration: none;
}
.footer-tagline {
    font-size: 0.82rem;
    font-weight: var(--weight-thin);
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 200px;
}
.footer-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.footer-col-title {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 16px;
    display: block;
}
.footer-col ul {
    list-style: none;
    display: grid;
    gap: 10px;
}
.footer-col a {
    font-family: var(--font-mono);
    font-size: 0.63rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1;
}
.footer-col a:hover {
    color: var(--accent);
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-copy,
.footer-legal {
    font-family: var(--font-mono);
    font-size: 0.63rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

/* ─── Visually Hidden (LLM-readable) ─── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ─── Inline accent red ─── */
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }

/* ─── Breadcrumb ─── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.breadcrumb li {
    display: flex;
    align-items: center;
}
.breadcrumb li + li::before {
    content: '/';
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--text-muted);
    margin: 0 6px;
}
.breadcrumb a {
    font-family: var(--font-mono);
    font-size: 0.63rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb li:last-child span {
    font-family: var(--font-mono);
    font-size: 0.63rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ─── Unified Hero System ─── */
.page-hero,
.hero.hero-unified {
    padding: var(--hero-space-top) 0 var(--hero-space-bottom);
    position: relative;
}
.page-hero > .container,
.hero.hero-unified > .container {
    width: min(100%, 1280px);
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}
.page-hero {
    border-bottom: 3px solid var(--border);
}
.hero.hero-unified {
    min-height: min(100vh, 900px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.page-hero-label,
.hero.hero-unified .hero-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}
.page-hero-label .line,
.hero.hero-unified .hero-label .line {
    width: 40px;
    height: 3px;
    background: var(--accent);
}
.page-hero h1,
.hero.hero-unified h1 {
    margin-bottom: 24px;
    text-wrap: balance;
}
.page-hero .display-xl,
.hero.hero-unified .display-xl {
    font-size: var(--hero-title-size);
    line-height: 0.92;
    max-width: var(--hero-title-max);
}
.page-hero-desc,
.hero.hero-unified .hero-subtitle,
.hero.hero-unified .aeo-hero-subtitle,
.hero.hero-unified .geo-hero-subtitle {
    font-size: var(--hero-copy-size);
    font-weight: var(--weight-thin);
    color: var(--text-light);
    max-width: var(--hero-copy-max);
    line-height: 1.72;
    margin: 0;
}
.hero.hero-unified .hero-subtitle strong,
.hero.hero-unified .aeo-hero-subtitle strong,
.hero.hero-unified .geo-hero-subtitle strong {
    font-weight: var(--weight-bold);
    color: var(--text);
}
.hero.hero-unified .hero-subtitle .subtitle-line2 {
    display: block;
    margin-top: 8px;
}
.page-hero-ctas,
.hero.hero-unified .hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.page-hero-stats,
.hero.hero-unified .hero-stat-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 3px;
    background: var(--border);
    margin-top: 56px;
}
.page-hero-stats .stat-block,
.hero.hero-unified .hero-stat-row .stat-block {
    background: var(--bg);
    padding: 32px 28px;
    min-height: 100%;
}
.page-hero-stats .stat-block-number,
.hero.hero-unified .hero-stat-row .stat-block-number {
    font-size: clamp(2.45rem, 5vw, 3.5rem);
}
.page-hero-stats .stat-block-text,
.hero.hero-unified .hero-stat-row .stat-block-text {
    font-size: 0.66rem;
    line-height: 1.6;
}

/* Dark hero variant */
.page-hero-dark {
    background: var(--bg-dark);
    color: var(--white);
}
.page-hero-dark .page-hero-desc {
    color: rgba(255,255,255,0.6);
}
.page-hero-dark h1 {
    color: var(--white);
}
.page-hero-dark .mono {
    color: var(--accent);
}

/* ─── Stat Block (reused from homepage) ─── */
.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    background: var(--border);
    margin-top: 60px;
}
.stat-row-2col {
    grid-template-columns: repeat(2, 1fr);
}
.stat-block {
    background: var(--bg);
    padding: 32px;
    position: relative;
}
.stat-block-dark {
    background: var(--bg-dark);
}
.stat-block-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1;
    letter-spacing: 0.02em;
}
.stat-block-number .accent { color: var(--accent); }
.stat-block-text {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 12px;
    line-height: 1.6;
}
.stat-block-dark .stat-block-number { color: var(--white); }
.stat-block-dark .stat-block-text { color: rgba(255,255,255,0.45); }

/* ─── Process / Dark Section ─── */
.dark-section {
    background: var(--bg-dark);
    color: var(--white);
}
.dark-section .mono { color: var(--accent); }
.dark-section .display-lg,
.dark-section .display-md { color: var(--white); }
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-top: 64px;
    background: rgba(255,255,255,0.1);
}
.process-card {
    background: var(--bg-dark);
    padding: 48px 36px;
}
.process-num {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: rgba(255,255,255,0.08);
    margin-bottom: 24px;
}
.process-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--white);
}
.process-desc {
    font-weight: var(--weight-thin);
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
}

/* ─── Benefit Row ─── */
.benefit-row {
    display: flex;
    align-items: stretch;
    border-bottom: 3px solid var(--border);
    transition: background 0.3s;
}
.benefit-row:first-child { border-top: 3px solid var(--border); }
.benefit-row:hover { background: var(--bg-alt); }
.benefit-index {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--border-light);
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-right: 3px solid var(--border);
}
.benefit-content {
    padding: 48px 40px;
    flex: 1;
}
.benefit-title {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.benefit-desc {
    font-weight: var(--weight-thin);
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 560px;
}

/* ─── Case Card ─── */
.case-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    background: var(--border);
    margin-top: 64px;
}
.case-card {
    background: var(--bg);
    padding: 56px 44px;
}
.case-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}
.case-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.1;
}
.case-desc {
    font-weight: var(--weight-thin);
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}
.case-metrics { display: flex; gap: 40px; }
.case-metric-val {
    font-family: var(--font-display);
    font-size: 2.2rem;
    letter-spacing: 0.02em;
    color: var(--accent);
}
.case-metric-lbl {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ─── Testimonial ─── */
.testimonial-block {
    max-width: 800px;
}
.testimonial-text {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: var(--white);
}
.testimonial-text .accent { color: var(--accent); }
.testimonial-attr {
    display: flex;
    align-items: center;
    gap: 16px;
}
.testimonial-attr-line {
    width: 40px;
    height: 3px;
    background: var(--accent);
}
.testimonial-attr-text {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* ─── FAQ Accordion ─── */
.faq-list {
    max-width: 800px;
    margin-top: 64px;
}
.faq-item {
    border-bottom: 3px solid var(--border);
}
.faq-item:first-child {
    border-top: 3px solid var(--border);
}
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    background: none;
    border: none;
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-toggle {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
    margin-left: 24px;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
}
.faq-a-inner {
    padding-bottom: 28px;
    font-weight: var(--weight-thin);
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 600px;
}
.faq-a-inner p { margin-bottom: 12px; }
.faq-a-inner p:last-child { margin-bottom: 0; }

/* ─── CTA Section ─── */
.cta-section {
    background: var(--accent);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: attr(data-watermark);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(10rem, 25vw, 20rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.07);
    white-space: nowrap;
    pointer-events: none;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.95;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.cta-subtitle {
    font-weight: var(--weight-thin);
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    max-width: 500px;
    margin: 0 auto 48px;
    line-height: 1.7;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-note {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 24px;
}

/* ─── Blog Grid ─── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    background: var(--border);
    margin-top: 48px;
}
.blog-card {
    background: var(--bg);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-decoration: none;
    color: var(--text);
    transition: background 0.2s;
}
.blog-card:hover { background: var(--bg-alt); }
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}
.blog-card-tag {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
}
.blog-card-read-time {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.08;
}
.blog-card-desc {
    font-size: 0.9rem;
    font-weight: var(--weight-thin);
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
}
.blog-card-cta {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

/* Blog filter bar */
.blog-filters {
    display: flex;
    gap: 3px;
    background: var(--border);
    margin-top: 48px;
    overflow-x: auto;
}
.blog-filter {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 24px;
    background: var(--bg);
    color: var(--text-muted);
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.blog-filter:hover,
.blog-filter.active {
    background: var(--bg-dark);
    color: var(--white);
}

/* ─── Blog Post Layout ─── */
.post-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 80px;
    align-items: start;
    padding: 80px 0;
}
.post-body {}
.post-body h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 56px 0 20px;
    line-height: 1.05;
}
.post-body h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 36px 0 14px;
}
.post-body h4 {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 28px 0 10px;
}
.post-body p {
    font-size: 1rem;
    font-weight: var(--weight-thin);
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 24px;
}
.post-body p strong {
    font-weight: var(--weight-bold);
    color: var(--text);
}
.post-body ul,
.post-body ol {
    margin: 0 0 28px 24px;
    font-size: 1rem;
    font-weight: var(--weight-thin);
    color: var(--text-light);
    line-height: 1.9;
}
.post-body li { margin-bottom: 10px; }
.post-body blockquote {
    border-left: 6px solid var(--accent);
    padding: 20px 28px;
    margin: 40px 0;
    background: var(--bg-alt);
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.15;
}
.post-body a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.post-body a:hover { color: var(--accent-dark); }

/* Inline data table in posts */
.post-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
}
.post-body table th {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--bg-dark);
    color: var(--white);
    padding: 14px 16px;
    text-align: left;
    border: 3px solid var(--border);
}
.post-body table td {
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    font-size: 0.9rem;
    font-weight: var(--weight-thin);
    color: var(--text-light);
    line-height: 1.6;
    vertical-align: top;
}
.post-body table tr:nth-child(even) td { background: var(--bg-alt); }

/* Post sidebar / TOC */
.post-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.toc {
    border: 3px solid var(--border);
    padding: 24px 28px;
}
.toc-title {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--text);
    display: block;
}
.toc-list {
    list-style: none;
    display: grid;
    gap: 10px;
}
.toc-list a {
    font-family: var(--font-mono);
    font-size: 0.63rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s;
    padding-left: 12px;
    border-left: 2px solid transparent;
    display: block;
    line-height: 1.6;
}
.toc-list a:hover {
    color: var(--accent);
    border-left-color: var(--accent);
}
.toc-list a.active {
    color: var(--text);
    border-left-color: var(--text);
}

/* Sidebar CTA */
.sidebar-cta {
    background: var(--accent);
    padding: 28px;
    color: var(--white);
}
.sidebar-cta-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
    line-height: 1.05;
}
.sidebar-cta-desc {
    font-size: 0.85rem;
    font-weight: var(--weight-thin);
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Related posts */
.related-posts {
    margin-top: 80px;
    padding-top: 64px;
    border-top: 3px solid var(--border);
}

/* ─── Glossary Grid ─── */
.glossary-alpha-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    background: var(--border);
    margin-top: 48px;
    margin-bottom: 3px;
}
.glossary-alpha-link {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 18px;
    background: var(--bg);
    color: var(--text-muted);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.glossary-alpha-link:hover { background: var(--bg-alt); color: var(--accent); }
.glossary-alpha-link.has-terms { color: var(--text); }
.glossary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    background: var(--border);
}
.glossary-card {
    background: var(--bg);
    padding: 32px 28px;
    text-decoration: none;
    color: var(--text);
    transition: background 0.2s;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.glossary-card:hover { background: var(--bg-alt); }
.glossary-card-term {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.05;
}
.glossary-card-def {
    font-size: 0.88rem;
    font-weight: var(--weight-thin);
    color: var(--text-light);
    line-height: 1.7;
}
.glossary-card-link {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: auto;
}

/* Glossary term page */
.term-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 80px;
    align-items: start;
    padding: 80px 0;
}
.term-body h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 48px 0 18px;
}
.term-body h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 32px 0 14px;
}
.term-body p {
    font-size: 1rem;
    font-weight: var(--weight-thin);
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}
.term-body p strong {
    font-weight: var(--weight-bold);
    color: var(--text);
}
.term-body ul {
    margin: 0 0 24px 24px;
    font-size: 1rem;
    font-weight: var(--weight-thin);
    color: var(--text-light);
    line-height: 1.9;
}
.term-body li { margin-bottom: 8px; }
.term-body a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.related-terms {
    border: 3px solid var(--border);
    padding: 28px;
}
.related-terms-title {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}
.related-terms-list {
    list-style: none;
    display: grid;
    gap: 10px;
}
.related-terms-list a {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    border-left: 3px solid var(--border-light);
    padding-left: 12px;
    transition: color 0.2s, border-color 0.2s;
    display: block;
    line-height: 1.6;
}
.related-terms-list a:hover {
    color: var(--accent);
    border-left-color: var(--accent);
}

/* ─── Comparison Table ─── */
.comparison-wrap {
    overflow-x: auto;
    margin: 40px 0;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.comparison-table th {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 18px 20px;
    background: var(--bg-dark);
    color: var(--white);
    text-align: left;
    border: 3px solid var(--border);
}
.comparison-table th:first-child {
    background: var(--bg-dark);
    min-width: 160px;
}
.comparison-table td {
    padding: 16px 20px;
    border: 1px solid var(--border-light);
    font-size: 0.9rem;
    font-weight: var(--weight-thin);
    color: var(--text-light);
    line-height: 1.6;
    vertical-align: top;
}
.comparison-table .row-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    background: var(--bg);
}
.comparison-table tr:nth-child(even) td:not(.row-label) { background: var(--bg-alt); }
.check-yes { color: var(--accent); font-weight: var(--weight-bold); }
.check-partial { color: var(--text-muted); }

/* ─── Industry / Vertical Grid ─── */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    background: var(--border);
    margin-top: 48px;
}
.industry-card {
    background: var(--bg);
    padding: 40px 36px;
    text-decoration: none;
    color: var(--text);
    transition: background 0.2s;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.industry-card:hover { background: var(--bg-alt); }
.industry-card-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.05;
}
.industry-card-desc {
    font-size: 0.9rem;
    font-weight: var(--weight-thin);
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
}
.industry-card-cta {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
}

/* Subreddit list */
.subreddit-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    background: var(--border);
    margin-top: 40px;
}
.subreddit-item {
    background: var(--bg);
    padding: 28px 32px;
}
.subreddit-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--accent);
}
.subreddit-meta {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.subreddit-desc {
    font-size: 0.88rem;
    font-weight: var(--weight-thin);
    color: var(--text-light);
    line-height: 1.7;
}

/* ─── Big Quote ─── */
.big-quote {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    position: relative;
    padding-left: 32px;
    border-left: 6px solid var(--accent);
}

/* ─── Inline highlight box ─── */
.callout {
    border: 3px solid var(--border);
    padding: 28px 32px;
    margin: 40px 0;
    background: var(--bg-alt);
}
.callout-accent {
    border-left: 6px solid var(--accent);
    border-top: none;
    border-right: none;
    border-bottom: none;
    padding: 20px 28px;
    background: var(--bg-alt);
}
.callout-title {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
}
.callout p {
    font-size: 0.95rem;
    font-weight: var(--weight-thin);
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* ─── Tag ─── */
.tag {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 12px;
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    color: var(--text-light);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.tag:hover { background: var(--border); color: var(--white); }
.tag-accent {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

/* ─── Typeform modal ─── */
.typeform-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.typeform-modal.is-open { display: flex; }
.typeform-modal-content {
    position: relative;
    background: var(--bg);
    border-radius: 8px;
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}
.typeform-modal-content [data-tf-live] {
    width: 100%;
    height: 70vh;
    min-height: 400px;
}
.typeform-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.typeform-modal-close:hover { background: var(--white); }

/* ─── Two-column content layout ─── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.two-col-narrow {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .post-layout { grid-template-columns: 1fr; }
    .term-layout { grid-template-columns: 1fr; }
    .post-sidebar { position: static; }
    .two-col { grid-template-columns: 1fr; gap: 48px; }
    .two-col-narrow { grid-template-columns: 1fr; gap: 48px; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .section-sm { padding: 60px 0; }
    .container { width: 100%; padding: 0 24px; }
    .nav .container,
    .nav-mobile .container,
    .page-hero > .container,
    .hero.hero-unified > .container { width: 100%; padding: 0 24px; }
    .nav { padding: 14px 0; }
    .nav.scrolled { padding: 12px 0; }
    .nav-links { display: none; }
    .nav-toggle { display: inline-flex; }
    .nav-logo {
        font-size: clamp(1.45rem, 7.8vw, 1.75rem);
        letter-spacing: 0.12em;
    }
    .nav-right {
        gap: 10px;
        margin-left: auto;
    }
    .nav > .container .nav-right > .btn-primary {
        display: none;
    }
    .blog-grid { grid-template-columns: 1fr; }
    .glossary-grid { grid-template-columns: 1fr 1fr; }
    .industry-grid { grid-template-columns: 1fr; }
    .subreddit-list { grid-template-columns: 1fr; }
    .stat-row { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: 1fr; }
    .case-layout { grid-template-columns: 1fr; }
    .footer-nav { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .benefit-index { width: 80px; font-size: 2.5rem; }
    .benefit-content { padding: 32px 24px; }
    .page-hero,
    .hero.hero-unified { padding: 136px 0 64px; min-height: auto; }
    .page-hero .display-xl,
    .hero.hero-unified .display-xl {
        font-size: clamp(2.35rem, 19vw, 10.55rem);
        line-height: 0.9;
        max-width: min(100%, 8.6ch);
        letter-spacing: 0.01em;
    }
    .page-hero-desc,
    .hero.hero-unified .hero-subtitle,
    .hero.hero-unified .aeo-hero-subtitle,
    .hero.hero-unified .geo-hero-subtitle {
        max-width: min(100%, 34ch);
        font-size: 1rem;
        line-height: 1.65;
    }
    .page-hero-ctas,
    .hero.hero-unified .hero-ctas { flex-direction: column; align-items: stretch; }
    .page-hero-ctas .btn,
    .hero.hero-unified .hero-ctas .btn {
        width: 100%;
        justify-content: center;
        padding: 18px 20px;
    }
    .page-hero-stats,
    .hero.hero-unified .hero-stat-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
    .container { width: 100%; padding: 0 16px; }
    .nav .container,
    .nav-mobile .container,
    .page-hero > .container,
    .hero.hero-unified > .container { width: 100%; padding: 0 16px; }
    .nav-logo {
        font-size: clamp(1.3rem, 8.5vw, 1.55rem);
        letter-spacing: 0.1em;
    }
    .glossary-grid { grid-template-columns: 1fr; }
    .footer-nav { grid-template-columns: 1fr 1fr; }
    .page-hero,
    .hero.hero-unified { padding: 124px 0 56px; }
    .page-hero-label,
    .hero.hero-unified .hero-label { gap: 10px; margin-bottom: 22px; }
    .page-hero .display-xl,
    .hero.hero-unified .display-xl {
        font-size: clamp(2.35rem, 19vw, 10.55rem);
        line-height: 0.92;
        letter-spacing: 0.01em;
        max-width: min(100%, 8ch);
    }
    .page-hero-desc,
    .hero.hero-unified .hero-subtitle,
    .hero.hero-unified .aeo-hero-subtitle,
    .hero.hero-unified .geo-hero-subtitle {
        font-size: 0.96rem;
        line-height: 1.6;
        max-width: min(100%, 31ch);
    }
    .page-hero-ctas,
    .hero.hero-unified .hero-ctas { margin-top: 28px; }
    .page-hero-stats,
    .hero.hero-unified .hero-stat-row {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }
    .page-hero-stats .stat-block,
    .hero.hero-unified .hero-stat-row .stat-block { padding: 24px 20px; }
    .page-hero-stats .stat-block-number,
    .hero.hero-unified .hero-stat-row .stat-block-number { font-size: 2.25rem; }
    .page-hero-stats .stat-block-text,
    .hero.hero-unified .hero-stat-row .stat-block-text { font-size: 0.6rem; }
}

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
