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

:root {
    --accent-gold: #FFB020;
    --accent-orange: #FF6036;
    --accent-purple: #8442FF;
    --accent-pink: #FF3EB5;
    --bg: #FFFFFF;
    --bg-soft: #F7F8FB;
    --bg-alt: #FAFBFE;
    --bg-dark: #0B0C16;
    --text: #12141C;
    --text-soft: #4E5468;
    --text-muted: #8B92A8;
    --border: #E8EAF0;
    --border-soft: #EEF0F5;
    --gradient: linear-gradient(135deg, #FFB020 0%, #FF6036 55%, #8442FF 100%);
    --gradient-warm: linear-gradient(135deg, #FFB020 0%, #FF6036 100%);
    --gradient-cool: linear-gradient(135deg, #8442FF 0%, #FF3EB5 100%);
    --shadow-sm: 0 2px 8px rgba(16, 20, 34, 0.05);
    --shadow-md: 0 10px 30px rgba(16, 20, 34, 0.08);
    --shadow-lg: 0 20px 60px rgba(16, 20, 34, 0.12);
    --shadow-glow: 0 20px 55px rgba(132, 66, 255, 0.20);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { width: 100%; max-width: 100%; overflow-x: clip; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

/* Progress bar */
.progress-bar {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: var(--gradient);
    z-index: 200;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(132, 66, 255, 0.55);
}

/* Top nav */
.top-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border-soft);
    z-index: 150;
    padding: 12px 0;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}
.top-nav.scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 4px 20px rgba(16, 20, 34, 0.05);
}
.top-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 17px;
    color: var(--text);
}
.brand-sub {
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 4px;
    font-size: 14px;
}
.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-soft);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent-purple); }
.lang-selector select {
    padding: 8px 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-soft);
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
}
.lang-selector select:hover {
    border-color: var(--accent-purple);
}
.lang-selector select:focus { outline: none; border-color: var(--accent-purple); }

/* Hero */
.hero {
    padding: 160px 0 80px;
    background:
        radial-gradient(1200px 500px at 90% -10%, rgba(255, 96, 54, 0.12), transparent 55%),
        radial-gradient(900px 400px at -10% 20%, rgba(132, 66, 255, 0.10), transparent 60%),
        linear-gradient(180deg, #FFFFFF 0%, var(--bg-soft) 100%);
    border-bottom: 1px solid var(--border-soft);
}
.eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(132, 66, 255, 0.08);
    color: var(--accent-purple);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.grad {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-sub {
    font-size: clamp(16px, 1.8vw, 20px);
    color: var(--text-soft);
    max-width: 720px;
    margin-bottom: 48px;
}
.hero-sub strong { color: var(--text); }
.hero-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}
.hero-meta > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.meta-num {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.01em;
}
.meta-lab {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Table of contents */
.toc {
    margin: 60px auto;
    padding: 32px clamp(20px, 4vw, 40px);
    background: var(--bg-soft);
    border-radius: 20px;
    border: 1px solid var(--border-soft);
}
.toc h3 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-purple);
    margin-bottom: 20px;
}
.toc ol {
    list-style: none;
    counter-reset: toc;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 6px 24px;
}
.toc ol li {
    counter-increment: toc;
    padding: 8px 0;
    font-size: 15px;
    border-bottom: 1px dashed var(--border-soft);
}
.toc ol li::before {
    content: counter(toc, decimal-leading-zero);
    color: var(--accent-purple);
    font-weight: 700;
    margin-right: 12px;
    font-size: 13px;
}
.toc a { color: var(--text-soft); transition: color 0.2s; }
.toc a:hover { color: var(--accent-purple); }

/* Sections */
.section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-soft);
}
.section.alt { background: var(--bg-alt); }
.section.final {
    background: linear-gradient(135deg, #0B0C16 0%, #1A1D2E 100%);
    color: white;
}
.section.final .section-head h2 { color: white; }
.section.final .section-lead { color: rgba(255,255,255,0.7); }
.section.final .section-num {
    background: rgba(255,255,255,0.1);
    color: white;
}
.section-head {
    margin-bottom: 40px;
    max-width: 780px;
}
.section-num {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(132, 66, 255, 0.10);
    color: var(--accent-purple);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}
.section-head h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.section-lead {
    font-size: 17px;
    color: var(--text-soft);
    line-height: 1.6;
}
.section.final .section-lead strong { color: white; }

/* Quote card */
.quote-card {
    background: white;
    border-radius: 20px;
    padding: 32px 36px;
    border-left: 4px solid var(--accent-purple);
    box-shadow: var(--shadow-md);
    font-size: 16px;
    color: var(--text-soft);
}
.quote-card p { margin-bottom: 12px; }
.quote-card p:last-child { margin-bottom: 0; }
.quote-card strong { color: var(--text); }
.quote-card ul {
    padding-left: 22px;
    margin: 14px 0;
}
.quote-card ul li { margin-bottom: 4px; }
.quote-card.highlight {
    border-left-color: var(--accent-orange);
    background: linear-gradient(135deg, rgba(255,176,32,0.05), rgba(255,96,54,0.05));
}

.note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
}
.note.center { text-align: center; }

/* Data table */
.table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    background: white;
}
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.data-table thead th {
    background: var(--bg-soft);
    padding: 16px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--text-soft);
    border-bottom: 1px solid var(--border);
}
.data-table tbody td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-soft);
    color: var(--text-soft);
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody td strong { color: var(--text); font-weight: 700; }
.data-table tbody tr:hover { background: var(--bg-soft); }
.data-table tr.row-accent td {
    background: linear-gradient(90deg, rgba(255,176,32,0.08), rgba(132,66,255,0.08));
    color: var(--text);
    font-size: 16px;
}
.data-table tr.row-accent td strong { color: var(--accent-purple); }

/* Flow diagram */
.flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 0;
}
.flow-node {
    background: white;
    padding: 14px 32px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    min-width: 240px;
}
.flow-node.accent {
    background: var(--gradient);
    color: white;
    border: none;
    box-shadow: var(--shadow-glow);
    font-weight: 800;
    font-size: 18px;
    padding: 18px 40px;
}
.flow-arrow {
    color: var(--accent-purple);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}
.flow.small .flow-node {
    padding: 10px 20px;
    font-size: 13px;
    min-width: 200px;
}
.flow.small .flow-arrow { font-size: 18px; }

/* Calc card */
.calc-card {
    margin-top: 32px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-md);
}
.calc-card.big {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFBFF 100%);
    padding: 48px 32px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}
.calc-card.big::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: var(--gradient);
    border-radius: 20px;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.calc-card h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--accent-purple);
    margin-bottom: 20px;
}
.calc {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 18px;
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 600;
    color: var(--text);
}
.calc .op {
    color: var(--accent-purple);
    font-size: 1.3em;
    font-weight: 800;
}
.calc .result {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-size: 1.3em;
}
.calc-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
}

.explain {
    margin: 32px 0 16px;
    font-size: 16px;
    color: var(--text-soft);
}
.chip-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.chip-list li {
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-soft);
    box-shadow: var(--shadow-sm);
}

/* Two col */
.two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.two-col.mt40 { margin-top: 40px; }
.col-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
}
.col-card.highlight {
    background: linear-gradient(135deg, rgba(255,176,32,0.04), rgba(132,66,255,0.04));
    border-color: rgba(132, 66, 255, 0.20);
    box-shadow: var(--shadow-md);
}
.col-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.col-card ul {
    padding-left: 20px;
    margin-top: 12px;
    color: var(--text-soft);
}
.col-card ul li { margin-bottom: 4px; }
.col-card p { color: var(--text-soft); }
.tag {
    font-size: 13px;
    color: var(--accent-purple);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.tag.muted { color: var(--text-muted); }
.phase-badge {
    padding: 4px 10px;
    background: var(--gradient);
    color: white;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/* Replace card */
.replace-card {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    background: white;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    margin-bottom: 32px;
}
.replace-old h4, .replace-new h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-muted);
    margin-bottom: 14px;
}
.replace-arrow {
    font-size: 36px;
    color: var(--accent-purple);
    font-weight: 800;
    text-align: center;
}
.stack {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.stack span {
    padding: 10px 16px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-soft);
    font-size: 14px;
}
.stack.accent span {
    background: var(--gradient);
    color: white;
    border: none;
    text-align: center;
    padding: 20px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1px;
}
@media (max-width: 700px) {
    .replace-card { grid-template-columns: 1fr; }
    .replace-arrow { transform: rotate(90deg); }
}

/* Chapters list (Investor Book) */
.chapters {
    counter-reset: chap;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
    margin-top: 20px;
}
.chapters li {
    counter-increment: chap;
    padding: 16px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.9);
}
.chapters li::before {
    content: counter(chap);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.cta-card {
    margin-top: 40px;
    padding: 28px 32px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    text-align: center;
    color: rgba(255,255,255,0.9);
    font-size: 17px;
}
.cta-card strong { color: white; }

/* Cash snapshot cards */
.cash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}
.cash-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}
.cash-card.positive { border-top: 3px solid #2ECC71; }
.cash-card.negative { border-top: 3px solid var(--accent-orange); }
.cash-card.neutral { border-top: 3px solid var(--accent-purple); }
.cash-card .cash-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: block;
}
.cash-card .cash-value {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text);
}
.cash-card.negative .cash-value { color: var(--accent-orange); }
.cash-card.positive .cash-value { color: #16A34A; }
.cash-card .cash-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Monthly flow table variants */
.data-table td.pos { color: #16A34A; font-weight: 700; }
.data-table td.neg { color: #DC2626; font-weight: 700; }
.data-table td.num { font-variant-numeric: tabular-nums; text-align: right; }
.data-table th.num { text-align: right; }

/* Warning / avoid cards */
.avoid-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    margin-top: 20px;
}
.avoid-card {
    background: #FFF7F5;
    border: 1px solid rgba(255, 96, 54, 0.20);
    border-left: 4px solid var(--accent-orange);
    border-radius: 12px;
    padding: 18px 20px;
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.5;
}
.avoid-card::before {
    content: '✕';
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent-orange);
    color: white;
    font-weight: 800;
    font-size: 12px;
    text-align: center;
    line-height: 22px;
    margin-right: 10px;
    vertical-align: middle;
}

/* Approach list */
.approach-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
    margin-top: 20px;
}
.approach-list .item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 20px;
    font-size: 14px;
    color: var(--text-soft);
    box-shadow: var(--shadow-sm);
}
.approach-list .item::before {
    content: '✓';
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #16A34A;
    color: white;
    font-weight: 800;
    font-size: 12px;
    text-align: center;
    line-height: 22px;
    margin-right: 10px;
    vertical-align: middle;
}

.subheading {
    font-size: 18px;
    font-weight: 700;
    margin: 36px 0 14px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}
.subheading::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--gradient);
    border-radius: 2px;
    display: inline-block;
}

.runway-card {
    margin-top: 24px;
    background: linear-gradient(135deg, rgba(255,176,32,0.06), rgba(255,96,54,0.06));
    border: 1px solid rgba(255, 96, 54, 0.20);
    border-radius: 16px;
    padding: 24px 28px;
}
.runway-card .runway-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-orange);
    margin-bottom: 8px;
}
.runway-card .runway-calc {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}
.runway-card .runway-note {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.5;
}

/* Q&A blocks */
.qa-block {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
}
.qa-block:hover {
    box-shadow: var(--shadow-md);
}
.qa-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}
.qa-num {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    background: var(--gradient);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}
.qa-question {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--text);
    flex: 1;
}
.qa-answer {
    padding-left: 48px;
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.65;
}
.qa-answer p { margin-bottom: 10px; }
.qa-answer p:last-child { margin-bottom: 0; }
.qa-answer strong { color: var(--text); }
.qa-answer ul, .qa-answer ol {
    padding-left: 20px;
    margin: 8px 0;
}
.qa-answer li { margin-bottom: 4px; }
.qa-answer .mini-table {
    margin: 12px 0;
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.qa-answer .mini-table td {
    padding: 8px 12px;
    border-bottom: 1px solid var(--border-soft);
}
.qa-answer .mini-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--text);
    font-variant-numeric: tabular-nums;
}
.qa-answer .mini-table tr:last-child td { border-bottom: none; }
.qa-answer .mini-table tr.total td {
    border-top: 2px solid var(--border);
    padding-top: 12px;
    font-weight: 800;
    color: var(--accent-purple);
}

.qa-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-left: 8px;
    vertical-align: middle;
}
.qa-tag.confirmed { background: rgba(22, 163, 74, 0.10); color: #16A34A; }
.qa-tag.pending { background: rgba(255, 176, 32, 0.12); color: #B45309; }
.qa-tag.dataroom { background: rgba(132, 66, 255, 0.10); color: var(--accent-purple); }
.qa-tag.honest { background: rgba(255, 96, 54, 0.10); color: var(--accent-orange); }

.pillar {
    padding: 100px 0 40px;
    border-bottom: 1px solid var(--border-soft);
    background: white;
}
.pillar.alt { background: var(--bg-alt); }
.pillar-head {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border);
}
.pillar-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gradient);
    color: white;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.pillar-head h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--text);
}

@media (max-width: 700px) {
    .qa-block { padding: 20px; }
    .qa-answer { padding-left: 0; margin-top: 8px; }
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
}
.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.foot-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.foot-brand div {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.foot-brand strong { font-size: 15px; }
.foot-brand span { font-size: 13px; color: var(--text-muted); }
.foot-note {
    font-size: 13px;
    color: var(--text-muted);
}

/* Mobile */
@media (max-width: 780px) {
    .nav-links { display: none; }
    .hero { padding: 130px 0 60px; }
    .section { padding: 60px 0; }
    .flow-node { min-width: 180px; padding: 12px 20px; font-size: 14px; }
    .flow-node.accent { font-size: 15px; padding: 14px 24px; }
    .hero-meta { grid-template-columns: 1fr 1fr; }
    .quote-card { padding: 24px; }
    .brand-text { font-size: 15px; }
    .brand-sub { display: none; }
}
