@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,500;0,600;0,700;1,500&family=Nunito+Sans:ital,opsz,wght@0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;1,6..12,400&display=swap');

:root {
    --bg: #f4faf6;
    --bg-warm: #e8f3ec;
    --surface: #ffffff;
    --text: #163828;
    --text-soft: #4a6356;
    --accent: #1f7a52;
    --accent-hover: #166341;
    --accent-soft: #d8f0e4;
    --ink: #0f3d2a;
    --ink-light: #1f6b4a;
    --line: #b8d4c4;
    --line-soft: #d6e8dc;
    --green-dark: #1a5c42;
    --green-dark-2: #134e35;
    --green-light: #e6f4ec;
    --green-light-2: #f2faf6;
    --text-on-dark: #f0fdf4;
    --text-soft-on-dark: #c8e6d4;
    --font-heading: 'Lora', Georgia, serif;
    --font-body: 'Nunito Sans', system-ui, sans-serif;
    --max-width: 800px;
    --wide-width: 1080px;
    --section-spacing: 76px;
    --radius: 6px;
    --radius-lg: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scrollbar-gutter: stable; }

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.76;
    color: var(--text);
    background-color: var(--green-light);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--ink-light);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

a:hover { color: var(--accent); }

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--accent);
    z-index: 9999;
    width: 0;
    transition: width 0.1s linear;
}

/* ── Hero ── */
.hero-section {
    padding: 72px 24px 56px;
}

.hero-section.content-block {
    padding-top: 72px;
    padding-bottom: 56px;
}

.hero-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: left;
}

.eyebrow {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--surface);
    border: 2px solid var(--accent);
    padding: 5px 12px;
    border-radius: 2px;
    margin-bottom: 22px;
}

.hero-section h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.95rem, 4.8vw, 2.85rem);
    font-weight: 700;
    line-height: 1.22;
    color: var(--text);
    margin-bottom: 18px;
}

.hero-section .lead,
.hero-section .subtitle {
    font-size: 1.12rem;
    color: var(--text-soft);
    line-height: 1.72;
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-section p:not(.lead):not(.hero-meta):not(.subtitle):not(.article-byline) {
    margin-bottom: 18px;
    font-size: 1.02rem;
    color: #2d4a3c;
}

.article-byline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 0;
    margin: 4px 0 20px;
    padding: 0;
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--text-soft);
    background: none;
    border: none;
}

.article-byline > span,
.article-byline > time {
    display: inline;
}

.article-byline .byline-sep {
    margin: 0 8px;
    color: rgba(45, 74, 60, 0.35);
}

.article-byline a {
    color: var(--ink);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(31, 122, 82, 0.35);
}

.article-byline a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.publisher-about {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    font-size: 0.84rem;
    line-height: 1.55;
    color: #4a6356;
}

.publisher-about a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
}

.hero-meta {
    font-size: 0.8rem;
    color: var(--text-soft);
    margin-top: 20px;
    margin-bottom: 0;
    font-weight: 500;
}

.hero-image {
    margin: 8px 0 28px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--line);
    box-shadow: 6px 6px 0 var(--accent);
    line-height: 0;
}

.hero-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* ── Content blocks ── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.content-block {
    padding: 56px 0;
}

.content-block p {
    margin-bottom: 18px;
    font-size: 1.02rem;
    line-height: 1.76;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.content-block h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 3vw, 1.9rem);
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.3;
    padding-left: 16px;
    border-left: 4px solid currentColor;
}

.block-green-dark {
    background: var(--green-dark);
    color: var(--text-on-dark);
}

.block-green-dark-alt {
    background: var(--green-dark-2);
    color: var(--text-on-dark);
}

.block-green-light {
    background: var(--green-light);
    color: var(--text);
}

.block-green-light-alt {
    background: var(--green-light-2);
    color: var(--text);
}

.block-green-dark p,
.block-green-dark-alt p {
    color: var(--text-soft-on-dark);
}

.block-green-dark p strong,
.block-green-dark-alt p strong {
    color: var(--text-on-dark);
}

.block-green-light p,
.block-green-light-alt p {
    color: #2d4a3c;
}

.block-green-light p strong,
.block-green-light-alt p strong {
    color: var(--text);
}

.block-green-dark h2,
.block-green-dark-alt h2 {
    color: var(--text-on-dark);
    border-left-color: #86efac;
}

.block-green-light h2,
.block-green-light-alt h2 {
    color: var(--ink);
    border-left-color: var(--accent);
}

.editorial-content h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 28px 0 10px;
    color: var(--text);
}

.editorial-content ul {
    margin: 0 0 22px 20px;
    color: #333d48;
}

.editorial-content ul li {
    margin-bottom: 7px;
    font-size: 1rem;
}

.highlight-box {
    background: var(--surface);
    border: 2px solid var(--line);
    padding: 22px 26px;
    margin: 34px 0;
    border-radius: var(--radius);
}

.highlight-box p {
    margin-bottom: 0 !important;
    font-size: 1rem;
    color: var(--text);
}

.highlight-box i {
    color: var(--accent);
    margin-right: 8px;
}

.inline-image {
    margin: 42px 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--line);
    box-shadow: 4px 4px 0 rgba(30, 58, 95, 0.12);
}

.inline-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.inline-image figcaption {
    font-size: 0.78rem;
    color: var(--text-soft);
    padding: 10px 16px;
    background: var(--surface);
    border-top: 1px solid var(--line-soft);
}

.specs-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 38px 0;
    background: var(--surface);
    border: 2px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.spec-item {
    text-align: center;
    padding: 24px 12px;
    border-right: 1px solid var(--line-soft);
}

.spec-item:last-child { border-right: none; }

.spec-item .spec-value {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    line-height: 1.1;
    margin-bottom: 4px;
    color: var(--accent);
    font-weight: 700;
}

.spec-item .spec-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.chart-panel {
    margin: 36px 0;
    padding: 22px;
    background: var(--surface);
    border: 2px solid var(--line);
    border-radius: var(--radius);
}

.chart-wrap {
    position: relative;
    height: 280px;
}

.chart-wrap--tall {
    height: 320px;
}

.chart-caption {
    margin: 12px 0 0 !important;
    font-size: 0.78rem !important;
    color: var(--text-soft) !important;
    text-align: center;
}

.cta-block {
    margin: 46px 0;
    padding: 32px 28px;
    background: var(--surface);
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 5px 5px 0 var(--accent-soft);
}

.cta-block-text { margin-bottom: 18px; }

.cta-block h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 6px;
    font-weight: 700;
}

.cta-block p {
    margin-bottom: 0 !important;
    font-size: 0.92rem;
    color: var(--text-soft) !important;
}

.cta-btn {
    display: inline-block;
    padding: 13px 30px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.2s;
    letter-spacing: 0.02em;
}

.cta-btn:hover {
    background: var(--accent-hover);
    color: #fff;
}

/* Scenario cards */
.scenario-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 28px 0;
}

.scenario-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 24px;
    background: var(--surface);
    border: 2px solid var(--line);
    border-radius: var(--radius);
}

.scenario-num {
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    padding-top: 2px;
}

.scenario-body h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: var(--ink);
}

.scenario-body p {
    margin-bottom: 0 !important;
    font-size: 0.95rem;
    color: var(--text-soft);
}

.section-note {
    font-size: 0.84rem;
    color: var(--text-soft);
    font-style: italic;
    margin-bottom: 18px;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 26px 0;
}

.testimonial-card {
    background: var(--surface);
    border: 2px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 22px 22px 26px;
    border-left: 5px solid var(--ink);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 0.82rem;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.94rem;
    color: #333d48;
    margin-bottom: 12px;
    line-height: 1.62;
}

.testimonial-author {
    font-weight: 700;
    font-size: 0.86rem;
    color: var(--text);
}

.testimonial-role {
    font-size: 0.78rem;
    color: var(--text-soft);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 34px 0;
    font-size: 0.9rem;
    background: var(--surface);
    border: 2px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.comparison-table th {
    background: var(--bg-warm);
    color: var(--ink);
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 2px solid var(--line);
}

.comparison-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--line-soft);
}

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table .check { color: #15803d; font-weight: 600; }
.comparison-table .cross { color: var(--accent); }

.info-panel {
    margin: 42px 0;
    padding: 28px 28px;
    background: var(--surface);
    border: 2px solid var(--ink);
    border-radius: var(--radius);
}

.info-panel .info-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.info-panel h2 {
    margin-top: 0;
    padding-left: 0;
    border-left: none;
}

.info-panel .info-quote {
    margin: 14px 0 0;
    padding: 12px 16px;
    background: var(--bg);
    border-radius: var(--radius);
    font-size: 0.92rem;
    color: var(--text-soft);
    font-style: italic;
    border: 1px solid var(--line-soft);
}

/* FAQ accordion */
.faq-accordion {
    margin: 24px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--surface);
    border: 2px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-item[open] {
    border-color: var(--ink);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 44px 16px 18px;
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--ink);
    position: relative;
    user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--accent);
    line-height: 1;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item summary:hover {
    background: var(--bg);
}

.faq-answer {
    padding: 0 18px 16px;
    border-top: 1px solid var(--line-soft);
}

.faq-answer p {
    margin-bottom: 0 !important;
    font-size: 0.92rem;
    color: var(--text-soft);
    padding-top: 12px;
}

.disclaimer-inline {
    background: var(--surface);
    border: 2px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 24px;
    margin-top: 40px;
    font-size: 0.84rem;
    color: var(--text-soft);
    line-height: 1.65;
}

.disclaimer-inline p {
    margin-bottom: 8px !important;
    font-size: 0.84rem !important;
}

.disclaimer-inline p:last-child { margin-bottom: 0 !important; }

/* Use cases */
.usecase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 8px;
}

.usecase-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    padding: 20px 18px;
}

.block-green-light .usecase-card {
    background: var(--surface);
    border: 2px solid var(--line);
}

.usecase-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 8px;
}

.usecase-card h3 {
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: inherit;
}

.usecase-card p {
    margin: 0 !important;
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
}

.spec-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.spec-list li {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    font-size: 0.96rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.block-green-light .spec-list li {
    background: var(--surface);
    border: 1px solid var(--line);
    color: #2d4a3c;
}

.block-green-dark .specs-strip,
.block-green-dark-alt .specs-strip {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.block-green-dark .spec-item,
.block-green-dark-alt .spec-item {
    border-right-color: rgba(255, 255, 255, 0.12);
}

.block-green-dark .spec-item .spec-value,
.block-green-dark-alt .spec-item .spec-value {
    color: #86efac;
}

.block-green-dark .spec-item .spec-label,
.block-green-dark-alt .spec-item .spec-label {
    color: var(--text-soft-on-dark);
}

.block-green-dark .inline-image,
.block-green-dark-alt .inline-image {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
}

.block-green-dark .inline-image figcaption,
.block-green-dark-alt .inline-image figcaption {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-soft-on-dark);
    border-top-color: rgba(255, 255, 255, 0.12);
}

.block-green-dark .comparison-table {
    border-color: rgba(255, 255, 255, 0.15);
}

.block-green-dark .comparison-table th {
    background: rgba(0, 0, 0, 0.15);
    color: var(--text-on-dark);
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.block-green-dark .comparison-table td {
    color: var(--text-soft-on-dark);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.block-green-dark .cta-block {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.12);
}

.block-green-dark .cta-block h3,
.block-green-dark .cta-block p {
    color: var(--text-on-dark) !important;
}

.block-green-dark .disclaimer-inline,
.block-green-dark-alt .disclaimer-inline {
    background: rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-soft-on-dark);
}

.block-green-dark .disclaimer-inline p,
.block-green-dark-alt .disclaimer-inline p {
    color: var(--text-soft-on-dark) !important;
}

.block-green-dark .disclaimer-inline a,
.block-green-dark-alt .disclaimer-inline a {
    color: #bbf7d0;
}

footer {
    margin-top: var(--section-spacing);
    background: var(--surface);
    border-top: 2px solid var(--ink);
    box-shadow: 0 -8px 32px rgba(30, 58, 95, 0.06);
}

.footer-shell {
    max-width: var(--wide-width);
    margin: 0 auto;
    padding: 36px 24px 28px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 28px 40px;
    padding-bottom: 28px;
    border-bottom: 1px dashed var(--line);
}

.footer-brand-block {
    flex: 1 1 280px;
    max-width: 420px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
}

.footer-logo:hover {
    color: var(--accent);
}

.footer-tagline {
    font-size: 0.88rem;
    color: var(--text-soft);
    line-height: 1.55;
    margin: 0 0 10px;
}

.footer-back {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
}

.footer-back:hover {
    text-decoration: underline;
}

.footer-publisher {
    flex: 1 1 260px;
    text-align: right;
}

.footer-publisher-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 6px;
}

.footer-publisher-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 4px;
}

.footer-publisher-meta {
    font-size: 0.8rem;
    color: var(--text-soft);
    margin: 0 0 4px;
    line-height: 1.5;
}

.footer-publisher-meta a {
    color: var(--ink-light);
    text-decoration: none;
}

.footer-publisher-meta a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 22px 0;
}

.footer-nav-btn {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 10px 16px;
    border: 2px solid var(--line);
    border-radius: 999px;
    background: var(--bg);
    color: var(--ink);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.footer-nav-btn:hover,
.footer-nav-btn:focus-visible {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
    outline: none;
}

.footer-notice {
    background: var(--accent-soft);
    border: 1px solid rgba(31, 122, 82, 0.2);
    border-radius: var(--radius);
    padding: 14px 18px;
    margin-bottom: 20px;
}

.footer-notice p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.6;
    color: #2d4a3c;
}

.footer-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: var(--text-soft);
}

.footer-bar-sep {
    opacity: 0.5;
}

/* Legal modals */
.legal-modals {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.legal-modals[hidden],
.legal-modal[hidden] {
    display: none !important;
}

.legal-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(34, 42, 53, 0.55);
    backdrop-filter: blur(3px);
}

.legal-modal {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 640px;
    display: flex;
    flex-direction: column;
}

.legal-modal-panel {
    background: var(--surface);
    border: 2px solid var(--ink);
    border-radius: var(--radius-lg);
    box-shadow: 8px 8px 0 rgba(30, 58, 95, 0.15);
    display: flex;
    flex-direction: column;
    max-height: min(88vh, 720px);
    width: 100%;
}

.legal-modal-header {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    border-bottom: 2px solid var(--line);
    background: var(--bg);
}

.legal-modal-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
}

.legal-modal-close {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border: 2px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 0.2s, border-color 0.2s;
}

.legal-modal-close:hover {
    background: var(--accent-soft);
    border-color: var(--accent);
    color: var(--accent);
}

.legal-modal-body {
    padding: 20px 22px;
    max-height: calc(min(88vh, 720px) - 8.75rem);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.legal-prose h2 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 22px 0 8px;
    color: var(--ink);
    padding: 0;
    border: none;
}

.legal-prose h2:first-child {
    margin-top: 0;
}

.legal-prose p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: #333d48;
    margin-bottom: 12px;
}

.legal-prose p:last-child {
    margin-bottom: 0;
}

.legal-prose a {
    color: var(--ink-light);
}

.legal-modal-footer {
    flex-shrink: 0;
    padding: 12px 20px;
    border-top: 1px solid var(--line-soft);
    background: var(--bg);
    text-align: right;
}

.legal-modal-btn {
    font-family: var(--font-body);
    font-size: 0.84rem;
    font-weight: 600;
    padding: 10px 22px;
    border: none;
    border-radius: 2px;
    background: var(--accent);
    color: #fff;
    cursor: pointer;
}

.legal-modal-btn:hover {
    background: var(--accent-hover);
}

html.modal-open,
body.modal-open {
    overflow: hidden;
}

.cookie-link-btn {
    font: inherit;
    font-weight: 600;
    color: var(--ink-light);
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    display: inline;
}

.cookie-link-btn:hover {
    color: var(--accent);
}

.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface);
    border-top: 2px solid var(--line);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 200;
    padding: 14px 20px;
}

.cookie-inner {
    max-width: var(--wide-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cookie-inner p {
    margin: 0;
    font-size: 0.84rem;
    flex: 1;
    min-width: 220px;
    color: var(--text);
}

.cookie-actions { display: flex; gap: 8px; }

.btn-cookie {
    padding: 9px 18px;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-accept {
    background: var(--accent);
    color: #fff;
}

.btn-decline {
    background: var(--bg);
    color: var(--text);
    border: 2px solid var(--line);
}

.legal-wrap { padding-top: 48px; }

.back-link {
    margin-bottom: 22px;
    font-size: 0.88rem;
}

.back-link a {
    text-decoration: none;
    font-weight: 600;
    color: var(--ink);
}

.back-link a:hover { color: var(--accent); }

.legal-page { padding: 0 0 60px; }

.legal-page h1 {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    margin-bottom: 22px;
    color: var(--ink);
    font-weight: 700;
}

.legal-page h2 {
    font-size: 1.1rem;
    margin: 26px 0 10px;
    color: var(--text);
    padding-left: 0;
    border-left: none;
}

.legal-page p {
    margin-bottom: 14px;
    color: #333d48;
    font-size: 0.94rem;
}

.legal-page ul {
    margin: 10px 0 18px 20px;
    font-size: 0.94rem;
}

.fade-in {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 860px) {
    .hero-section { padding: 56px 20px 44px; }
    .content-block { padding: 44px 0; }
    .usecase-grid { grid-template-columns: 1fr; }
    .article-byline { font-size: 0.78rem; }
    .specs-strip { grid-template-columns: repeat(2, 1fr); }
    .spec-item:nth-child(2) { border-right: none; }
    .spec-item { border-bottom: 1px solid var(--line-soft); }
    .spec-item:nth-child(3),
    .spec-item:nth-child(4) { border-bottom: none; }
    .footer-top { flex-direction: column; }
    .footer-publisher { text-align: left; }
    .footer-nav { gap: 8px; }
    .chart-wrap { height: 240px; }
    .chart-wrap--tall { height: 260px; }
}

@media (max-width: 560px) {
    .hero-section h1 { font-size: 1.75rem; }
    .specs-strip { grid-template-columns: 1fr; }
    .spec-item { border-right: none !important; }
    .spec-item:last-child { border-bottom: none; }
    .cta-btn { padding: 12px 24px; font-size: 0.86rem; }
    .scenario-card { flex-direction: column; gap: 8px; }
}
