/* Digital Dexterity — shared stylesheet (2026 redesign) */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg-dark-1: #0a0e27;
    --bg-dark-2: #1a1f3a;
    --bg-dark-3: #0f1428;
    --accent-amber: #f59e0b;
    --accent-amber-hot: #f97316;
    --accent-teal: #0d9488;
    --text-light: #ffffff;
    --text-muted-dark: rgba(255, 255, 255, 0.72);
    --text-muted-darker: rgba(255, 255, 255, 0.55);
    --text-dark: #101828;
    --text-body: #475467;
    --border-light: #e4e7ec;
    --surface: #ffffff;
    --surface-alt: #f7f9fc;
}

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--surface);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; }

/* Navigation */
nav.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1000;
    padding: 1.5625rem 0;
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 2.1875rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.25rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted-dark);
    font-weight: 500;
    font-size: 1.484375rem;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text-light); }

.nav-cta {
    padding: 1.09375rem 2.1875rem;
    background: var(--accent-amber);
    color: #0a0e27 !important;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: all 0.2s;
}

.nav-cta:hover { background: var(--accent-amber-hot); transform: translateY(-1px); }

/* Mobile nav */
.mobile-nav-actions { display: none; align-items: center; gap: 0.75rem; }
.mobile-menu-btn {
    display: flex; flex-direction: column; gap: 5px;
    padding: 8px; background: none; border: none; cursor: pointer;
}
.mobile-menu-btn span {
    display: block; width: 24px; height: 2px;
    background: var(--text-light); transition: all 0.3s;
}
.mobile-menu {
    display: none; position: fixed; inset: 0;
    background: var(--bg-dark-1); z-index: 1100;
    padding: 2rem; flex-direction: column;
}
.mobile-menu.active { display: flex; }
.mobile-menu-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 2rem;
}
.mobile-menu-close {
    background: none; border: none; font-size: 2rem;
    color: var(--text-light); cursor: pointer; padding: 0.5rem;
}
.mobile-menu-links {
    list-style: none; display: flex; flex-direction: column; gap: 0.5rem;
}
.mobile-menu-links a {
    display: block; padding: 1rem; font-size: 1.1rem;
    color: var(--text-light); text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu-links .nav-cta {
    background: var(--accent-amber); color: #0a0e27 !important;
    border-radius: 8px; text-align: center; margin-top: 1rem;
    border-bottom: none;
}

/* Hero (dark) */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-dark-1) 0%, var(--bg-dark-2) 55%, var(--bg-dark-3) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 8rem 0 6rem;
}

.hero .grid-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.55;
    pointer-events: none;
}

.hero .amber-glow {
    position: absolute;
    right: -10%; top: -10%;
    width: 60%; height: 120%;
    background: radial-gradient(circle at 60% 40%, rgba(245, 158, 11, 0.18), transparent 60%);
    pointer-events: none;
}

.hero-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2.5rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 3.5rem;
    align-items: center;
}

.hero-content { color: var(--text-light); }

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: var(--accent-amber);
    border-radius: 50px;
    font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 1.75rem;
}

.hero-eyebrow::before {
    content: ""; width: 6px; height: 6px;
    background: var(--accent-amber); border-radius: 50%;
}

.hero-headline {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero-headline .accent { color: var(--accent-amber); }

.hero-sub {
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--text-muted-dark);
    margin-bottom: 2.25rem;
    max-width: 42rem;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.25s;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-amber);
    color: #0a0e27;
    box-shadow: 0 10px 28px rgba(245, 158, 11, 0.28);
}
.btn-primary:hover {
    background: var(--accent-amber-hot); transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(245, 158, 11, 0.38);
}

.btn-ghost {
    background: transparent;
    color: var(--text-light);
    border-color: rgba(255,255,255,0.22);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.04); }

.btn-dark {
    background: var(--bg-dark-1);
    color: var(--text-light);
}
.btn-dark:hover { background: var(--bg-dark-2); transform: translateY(-1px); }

.hero-visual {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.hero-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

/* Section primitives */
section { padding: 6rem 0; position: relative; }
.section-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* Gutter ambience for light sections — subtle amber glow + faint grid only in the
   margins beyond the content column. Dark sections opt out via .no-gutter or by
   having their own backgrounds that override this. */
.gutter-ambient {
    position: relative;
    isolation: isolate;
}

.gutter-ambient::before,
.gutter-ambient::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: max(0px, calc((100% - 1320px) / 2));
    pointer-events: none;
    z-index: -1;
    background-image:
        radial-gradient(ellipse 65% 50% at 0% 50%, rgba(245, 158, 11, 0.08), transparent 70%),
        linear-gradient(rgba(16, 24, 40, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 24, 40, 0.035) 1px, transparent 1px);
    background-size: auto, 48px 48px, 48px 48px;
    mask-image: linear-gradient(90deg, black 0%, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, black 0%, black 70%, transparent 100%);
}

.gutter-ambient::before { left: 0; }
.gutter-ambient::after {
    right: 0;
    background-image:
        radial-gradient(ellipse 65% 50% at 100% 50%, rgba(245, 158, 11, 0.08), transparent 70%),
        linear-gradient(rgba(16, 24, 40, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 24, 40, 0.035) 1px, transparent 1px);
    background-size: auto, 48px 48px, 48px 48px;
    mask-image: linear-gradient(90deg, transparent 0%, black 30%, black 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 30%, black 100%);
}

@media (max-width: 1400px) {
    .gutter-ambient::before,
    .gutter-ambient::after { display: none; }
}

.section-head { text-align: center; max-width: 820px; margin: 0 auto 4rem; }
.section-head.left-align { text-align: left; margin-left: 0; }

.eyebrow {
    display: inline-block;
    color: var(--accent-amber);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.eyebrow.on-dark { color: var(--accent-amber); }

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.12;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.section-title.on-dark { color: var(--text-light); }

.section-lead {
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.65;
}
.section-lead.on-dark { color: var(--text-muted-dark); }

/* Three-pillar cards */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.pillar-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 2.5rem;
    transition: all 0.3s;
    display: flex; flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.pillar-card:hover {
    border-color: var(--accent-amber);
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(16, 24, 40, 0.08);
}

.pillar-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(245,158,11,0.14), rgba(249,115,22,0.08));
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-amber-hot);
    margin-bottom: 1.5rem;
}
.pillar-icon svg { width: 26px; height: 26px; }

.pillar-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-amber-hot);
    margin-bottom: 0.5rem;
}

.pillar-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.pillar-card p {
    color: var(--text-body);
    line-height: 1.65;
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pillar-link {
    color: var(--accent-amber-hot);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s;
}
.pillar-card:hover .pillar-link { gap: 0.75rem; }

.pillar-card.flagship {
    background: linear-gradient(135deg, var(--bg-dark-1), var(--bg-dark-2));
    border-color: rgba(245,158,11,0.3);
    color: var(--text-light);
}
.pillar-card.flagship h3 { color: var(--text-light); }
.pillar-card.flagship p { color: var(--text-muted-dark); }
.pillar-card.flagship .pillar-icon {
    background: rgba(245,158,11,0.18);
    color: var(--accent-amber);
}

.flagship-ribbon {
    position: absolute;
    top: 1rem; right: 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-amber);
    background: rgba(245,158,11,0.12);
    border: 1px solid rgba(245,158,11,0.3);
    padding: 0.3rem 0.6rem;
    border-radius: 50px;
}

.pillar-card.flagship { position: relative; }

/* Transition quote block */
.quote-block {
    position: relative;
    padding: 8rem 0;
    background: var(--bg-dark-3);
    color: var(--text-light);
    overflow: hidden;
    isolation: isolate;
}

.quote-block .bg-image {
    position: absolute; inset: 0;
    background-image: url('/images/dd-universe.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.42;
    z-index: -2;
}

.quote-block .bg-fade {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, var(--bg-dark-1) 0%, rgba(10,14,39,0.35) 50%, var(--bg-dark-3) 100%);
    z-index: -1;
}

.quote-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2.5rem;
    text-align: center;
}

.quote-text {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.25;
    color: var(--text-light);
}

.quote-text em {
    color: var(--accent-amber);
    font-style: normal;
}

/* Dashboard differentiator */
.dashboard-section {
    background: var(--surface-alt);
    padding: 7rem 0;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
}

.dashboard-mockup {
    background: linear-gradient(135deg, var(--bg-dark-1), var(--bg-dark-2));
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 30px 80px rgba(16, 24, 40, 0.25);
    border: 1px solid rgba(255,255,255,0.06);
}

.dashboard-header {
    display: flex; gap: 0.4rem; margin-bottom: 1.25rem;
}
.dashboard-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.25);
}

.dashboard-cards { display: grid; gap: 0.9rem; }

.dashboard-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 1.25rem;
}

.dashboard-card-title {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dash-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dash-row:last-child { border-bottom: none; }
.dash-label { font-size: 0.85rem; color: var(--text-light); font-weight: 500; }
.dash-value { font-size: 0.78rem; color: rgba(255,255,255,0.6); font-weight: 600; }
.dash-value.hot { color: var(--accent-amber); }

.dash-metric-big {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}
.dash-metric-delta {
    font-size: 0.75rem;
    color: #10b981;
    margin-left: 0.4rem;
    font-weight: 600;
}

.progress-track {
    width: 100%; height: 5px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px; overflow: hidden;
    margin-top: 0.5rem;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-amber), var(--accent-amber-hot));
    border-radius: 3px;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 42px; gap: 3px; margin-top: 0.8rem;
}
.bar {
    flex: 1;
    background: linear-gradient(180deg, rgba(245,158,11,0.7), rgba(245,158,11,0.2));
    border-radius: 2px 2px 0 0;
}

.status-pill {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    background: rgba(16, 185, 129, 0.18);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #34d399;
    border-radius: 12px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.status-pill.warn {
    background: rgba(245,158,11,0.18);
    border-color: rgba(245,158,11,0.35);
    color: var(--accent-amber);
}

/* Methodology steps */
.method-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    counter-reset: step;
}

.method-step {
    position: relative;
    padding: 2rem 1.75rem;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: var(--surface);
    counter-increment: step;
}

.method-step::before {
    content: counter(step);
    display: block;
    color: var(--accent-amber-hot);
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -1px;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.method-step h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.65rem;
    letter-spacing: -0.3px;
}

.method-step p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why DD / founder bar */
.founder-bar {
    background: var(--bg-dark-1);
    color: var(--text-light);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.founder-bar .grid-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.founder-creds {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.cred {
    padding: 1.25rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
}

.cred-label {
    font-size: 0.72rem;
    color: var(--accent-amber);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.cred-text {
    color: var(--text-light);
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.45;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--bg-dark-1), var(--bg-dark-3));
    color: var(--text-light);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta .amber-glow {
    position: absolute;
    left: 50%; top: 50%;
    width: 80%; height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(245,158,11,0.14), transparent 55%);
    pointer-events: none;
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    position: relative;
}

.final-cta p {
    font-size: 1.15rem;
    color: var(--text-muted-dark);
    max-width: 620px;
    margin: 0 auto 2rem;
    position: relative;
}

.final-cta .btn { position: relative; }

/* Pillar page hero */
.page-hero {
    background: linear-gradient(135deg, var(--bg-dark-1) 0%, var(--bg-dark-2) 100%);
    color: var(--text-light);
    padding: 10rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.page-hero .grid-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.page-hero .amber-glow {
    position: absolute;
    right: -15%; top: -20%;
    width: 50%; height: 130%;
    background: radial-gradient(circle at 50% 50%, rgba(245,158,11,0.16), transparent 55%);
    pointer-events: none;
}

.page-hero-inner {
    max-width: 1320px; margin: 0 auto; padding: 0 2.5rem;
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    margin-left: 0;
}

.page-hero-wrap {
    max-width: 1320px; margin: 0 auto; padding: 0 2.5rem;
    position: relative;
    z-index: 1;
}

.page-hero-eyebrow {
    display: inline-block;
    color: var(--accent-amber);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 4.2vw, 3.75rem);
    font-weight: 800;
    letter-spacing: -1.2px;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    max-width: 820px;
}

.page-hero .lead {
    font-size: 1.2rem;
    color: var(--text-muted-dark);
    max-width: 720px;
    line-height: 1.65;
    margin-bottom: 2rem;
}

/* Content blocks (pillar pages) */
.prose-section {
    background: var(--surface);
    padding: 5rem 0;
}

.prose-section.alt { background: var(--surface-alt); }

.prose-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.prose-inner.wide { max-width: 1100px; }

.prose-inner p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-body);
    margin-bottom: 1.25rem;
}

.prose-inner p:last-child { margin-bottom: 0; }

.prose-inner h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.8px;
    margin-bottom: 1.5rem;
}

.prose-inner h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.3px;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

/* Two-column feature list */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feat-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.75rem;
}

.feat-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.feat-card p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contrast callout */
.contrast-callout {
    background: linear-gradient(135deg, var(--bg-dark-1), var(--bg-dark-2));
    color: var(--text-light);
    padding: 4rem 0;
    margin: 5rem 0;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.contrast-callout .amber-glow {
    position: absolute;
    left: -10%; top: -20%;
    width: 50%; height: 130%;
    background: radial-gradient(circle, rgba(245,158,11,0.15), transparent 60%);
}

.contrast-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
}

.contrast-callout h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.contrast-callout p {
    color: var(--text-muted-dark);
    font-size: 1.1rem;
    line-height: 1.65;
}

/* Engagement model */
.engagement {
    background: var(--surface-alt);
    padding: 3rem;
    border-radius: 14px;
    border: 1px solid var(--border-light);
    margin-top: 2rem;
}

.engagement-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}
.engagement-row:last-child { border-bottom: none; }

.engagement-label {
    color: var(--text-body);
    font-weight: 500;
}
.engagement-value {
    color: var(--text-dark);
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--bg-dark-1);
    color: var(--text-muted-dark);
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 28rem;
}

.footer-col h5 {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a {
    color: var(--text-muted-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-light); }

.footer-bottom {
    max-width: 1320px;
    margin: 0 auto;
    padding: 1.5rem 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { max-width: 520px; margin: 0 auto; aspect-ratio: 4 / 3; }
    .pillars { grid-template-columns: 1fr; }
    .dashboard-grid { grid-template-columns: 1fr; }
    .method-steps { grid-template-columns: repeat(2, 1fr); }
    .founder-grid { grid-template-columns: 1fr; }
    .feat-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-container { padding: 0 1.25rem; }
    .nav-links { display: none; }
    .mobile-nav-actions { display: flex; }
    .hero { padding: 7rem 0 4rem; }
    .hero-container, .section-container, .page-hero-wrap,
    .prose-inner, .quote-container, .contrast-inner, .footer-inner, .footer-bottom {
        padding-left: 1.25rem; padding-right: 1.25rem;
    }
    section { padding: 4rem 0; }
    .quote-block { padding: 5rem 0; }
    .page-hero { padding: 8rem 0 4rem; }
    .method-steps { grid-template-columns: 1fr; }
    .founder-creds { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .engagement { padding: 1.75rem; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .hero-ctas .btn { text-align: center; }
}
