/* =========================================================================
   THE REPORT DESK / NO-CODE LAB — main.css
   Single stylesheet serving two distinct design systems:
   - body.pub-theme   → "publication" family (newspaper-classic advertorial)
   - body.offer-theme → "offer" family (webinar-style registration funnel)
   Shared: reset, spacing/layout mechanics, accessibility helpers.
   ========================================================================= */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; min-height: 100vh; overflow-x: hidden; }
h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
table { border-collapse: collapse; width: 100%; }
input, textarea, select, button { font-family: inherit; }

.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: 0.5rem; top: -3rem;
    background: #111; color: #fff;
    padding: 0.6rem 1rem;
    z-index: 200;
    transition: top 0.15s ease;
    border-radius: 0 0 6px 0;
}
.skip-link:focus { top: 0; }

:focus-visible {
    outline: 3px solid var(--focus-color, #1a73e8);
    outline-offset: 2px;
}

/* ---------- Shared layout mechanics ---------- */
.container {
    width: 100%;
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: 1rem;
}
@media (min-width: 480px) {
    .container { padding-inline: 1.5rem; }
}
@media (min-width: 1024px) {
    .container { padding-inline: 2rem; }
}

/* =========================================================================
   THEME TOKENS
   ========================================================================= */
body.pub-theme {
    --bg: #ffffff;
    --surface: #f6f5f2;
    --surface-strong: #efece6;
    --fg: #151312;
    --muted: #5c5854;
    --accent: #cf1a34;
    --accent-ink: #ffffff;
    --line: #151312;
    --line-soft: #ddd9d2;
    --header-bg: #0c0b0a;
    --header-fg: #f7f5f0;
    --font-display: Georgia, 'Times New Roman', Times, serif;
    --font-body: Georgia, 'Times New Roman', Times, serif;
    --font-meta: Arial, Helvetica, sans-serif;
    --radius-sm: 0px;
    --radius-md: 0px;
    --radius-lg: 0px;
    --focus-color: #cf1a34;
    background: var(--bg);
    color: var(--fg);
    font-family: var(--font-body);
}

body.offer-theme {
    --bg: #eef4f7;
    --surface: #ffffff;
    --surface-strong: #e3edf1;
    --fg: #0f2436;
    --muted: #4d6577;
    --accent: #0e8f8a;
    --accent-strong: #0a6e7d;
    --primary: #0f3a5c;
    --primary-ink: #ffffff;
    --line-soft: #d3e2e9;
    --header-bg: #ffffff;
    --header-fg: #0f3a5c;
    --font-display: Georgia, 'Palatino Linotype', Palatino, serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-meta: var(--font-body);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 30px;
    --focus-color: #0a6e7d;
    background: var(--bg);
    color: var(--fg);
    font-family: var(--font-body);
}

body { line-height: 1.55; }

/* =========================================================================
   PUBLICATION THEME
   ========================================================================= */

/* --- header / masthead --- */
.pub-topbar {
    background: var(--header-bg);
    color: var(--header-fg);
    padding-block: 0.7rem;
}
.pub-topbar .container {
    display: grid;
    grid-template-areas: "brand date";
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.5rem;
}
.pub-brand {
    grid-area: brand;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-meta);
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: clamp(0.95rem, 0.85rem + 0.4vw, 1.15rem);
    text-decoration: none;
    text-transform: uppercase;
}
.pub-brand-mark {
    width: 1.6em; height: 1.6em;
    border: 2px solid var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1em;
    flex-shrink: 0;
}
.pub-date {
    grid-area: date;
    font-family: var(--font-meta);
    font-size: 0.78rem;
    opacity: 0.8;
    white-space: nowrap;
}

.pub-ribbon {
    background: var(--accent);
    color: var(--accent-ink);
}
.pub-ribbon .container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-block: 0.55rem;
    flex-wrap: wrap;
}
.pub-ribbon-tag {
    font-family: var(--font-meta);
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid var(--accent-ink);
    padding: 0.15rem 0.5rem;
    flex-shrink: 0;
}
.pub-ribbon-text {
    font-family: var(--font-meta);
    font-size: 0.82rem;
}

.pub-nav-bar {
    border-bottom: 1px solid var(--line-soft);
    background: var(--bg);
}
.pub-nav-bar .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    min-height: 3rem;
}
.pub-nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: 1px solid var(--line);
    padding: 0.5rem 0.75rem;
    min-height: 44px;
    font-family: var(--font-meta);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
}
.pub-nav-toggle:hover { background: var(--surface); }
.pub-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    flex-basis: 100%;
    padding-block: 0.5rem 1rem;
}
.pub-nav.is-open { display: flex; }
.pub-nav a {
    display: block;
    padding: 0.65rem 0.1rem;
    font-family: var(--font-meta);
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid var(--line-soft);
    min-height: 44px;
    display: flex;
    align-items: center;
}
.pub-nav a[aria-current="page"] { color: var(--accent); font-weight: 700; }
@media (min-width: 768px) {
    .pub-nav-toggle { display: none; }
    .pub-nav {
        display: flex !important;
        flex-direction: row;
        gap: 1.75rem;
        padding-block: 0;
    }
    .pub-nav a { border-bottom: none; padding: 0.9rem 0; min-height: auto; }
}

/* --- article shell --- */
.pub-article-head {
    padding-block: 2rem 1.5rem;
}
.pub-kicker {
    display: inline-block;
    font-family: var(--font-meta);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--accent);
    color: var(--accent-ink);
    padding: 0.3rem 0.6rem;
    margin-bottom: 1rem;
}
.pub-headline {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.08;
    font-size: clamp(1.9rem, 1.55rem + 2.2vw, 3.2rem);
    letter-spacing: -0.01em;
}
.pub-dek {
    margin-top: 1rem;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--muted);
    font-size: clamp(1.05rem, 0.98rem + 0.4vw, 1.3rem);
    max-width: 44ch;
}
.pub-byline-row {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line-soft);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-family: var(--font-meta);
    font-size: 0.82rem;
    color: var(--muted);
}
.pub-byline-row strong { color: var(--fg); }

.pub-figure {
    margin-block: 1.75rem;
}
.pub-figure img, .pub-figure video {
    width: 100%;
    object-fit: cover;
}
.pub-figure figcaption {
    font-family: var(--font-meta);
    font-size: 0.78rem;
    color: var(--muted);
    padding-top: 0.5rem;
    border-top: 3px solid var(--line);
    margin-top: 0.5rem;
}
.pub-video-frame {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #000;
}
.pub-video-frame video { width: 100%; height: 100%; object-fit: cover; }

.pub-prose {
    padding-block: 0.5rem 0;
}
.pub-prose > p, .pub-prose > h2 {
    max-width: 68ch;
}
.pub-prose p {
    font-size: clamp(1.02rem, 0.98rem + 0.15vw, 1.12rem);
    margin-bottom: 1.15rem;
}
.pub-prose p:first-of-type::first-letter {
    font-family: var(--font-display);
    font-size: 3.4em;
    font-weight: 700;
    float: left;
    line-height: 0.85;
    padding-right: 0.1em;
    margin-top: 0.05em;
    color: var(--accent);
}
.pub-subhead {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.35rem, 1.2rem + 0.8vw, 1.9rem);
    margin-top: 2.2rem;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    border-top: 4px solid var(--line);
}
.pub-pullquote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.3rem, 1.15rem + 0.7vw, 1.7rem);
    line-height: 1.35;
    border-left: 4px solid var(--accent);
    padding-left: 1.25rem;
    margin-block: 1.75rem;
    max-width: 60ch;
}

.pub-options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-block: 1.5rem 2rem;
}
@media (min-width: 768px) {
    .pub-options-grid { grid-template-columns: repeat(3, 1fr); }
}
.pub-option-card {
    container-type: inline-size;
    border: 1px solid var(--line-soft);
    padding: 1.25rem;
    background: var(--surface);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.pub-option-card .pub-option-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--accent);
}
.pub-option-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
}
.pub-option-card p { font-size: 0.95rem; color: var(--muted); }
.pub-option-card .pub-option-verdict {
    margin-top: auto;
    font-family: var(--font-meta);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    padding-top: 0.6rem;
    border-top: 1px solid var(--line-soft);
}

.pub-table-wrap {
    overflow-x: auto;
    margin-block: 1.5rem 2rem;
    border: 1px solid var(--line);
}
.pub-table { min-width: 620px; }
.pub-table caption {
    text-align: left;
    font-family: var(--font-meta);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 1rem;
    background: var(--header-bg);
    color: var(--header-fg);
}
.pub-table th, .pub-table td {
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--line-soft);
    font-size: 0.92rem;
    vertical-align: top;
}
.pub-table thead th {
    font-family: var(--font-meta);
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    background: var(--surface);
    border-bottom: 2px solid var(--line);
}
.pub-table tbody th { font-weight: 700; white-space: nowrap; }
.pub-table tr.pub-table-winner td, .pub-table tr.pub-table-winner th {
    background: color-mix(in srgb, var(--accent) 10%, var(--bg));
}

.pub-checklist {
    display: grid;
    gap: 0.75rem;
    margin-block: 1.5rem 2rem;
    max-width: 60ch;
}
.pub-checklist li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.98rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--line-soft);
}
.pub-checklist .pub-check-mark {
    flex-shrink: 0;
    width: 1.4rem; height: 1.4rem;
    border: 2px solid var(--accent);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-meta);
    font-size: 0.8rem;
}

.pub-cta-block {
    background: var(--header-bg);
    color: var(--header-fg);
    padding: 1.75rem;
    margin-block: 2rem;
    display: grid;
    gap: 1rem;
    text-align: left;
}
.pub-cta-block h3 {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.6rem);
}
.pub-cta-block p { color: #d9d6d0; max-width: 52ch; }
.pub-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-meta);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.85rem;
    padding: 0.9rem 1.5rem;
    min-height: 44px;
    background: var(--accent);
    color: var(--accent-ink);
    text-decoration: none;
    border: 2px solid var(--accent);
    width: fit-content;
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.pub-button:hover { background: transparent; color: var(--header-fg); transform: translateY(-1px); }
body.pub-theme .pub-article-body .pub-button:hover { color: var(--fg); }
.pub-button--outline {
    background: transparent;
    color: var(--fg);
    border-color: var(--line);
}
.pub-button--outline:hover { background: var(--fg); color: var(--bg); }

.pub-author-box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    border-top: 3px solid var(--line);
    border-bottom: 1px solid var(--line-soft);
    padding-block: 1.5rem;
    margin-block: 2rem;
}
.pub-author-box img {
    width: 4.5rem; height: 4.5rem;
    border-radius: 50%;
    object-fit: cover;
}
.pub-author-avatar {
    width: 4.5rem; height: 4.5rem;
    border-radius: 50%;
    background: var(--accent);
    color: var(--accent-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.pub-author-box h3 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 0.3rem; }
.pub-author-box p { font-size: 0.9rem; color: var(--muted); }

.pub-disclosure-note {
    font-family: var(--font-meta);
    font-size: 0.78rem;
    color: var(--muted);
    max-width: 68ch;
    padding: 1.25rem;
    background: var(--surface);
    border: 1px solid var(--line-soft);
    margin-block: 2rem;
}
.pub-disclosure-note p + p { margin-top: 0.5rem; }

.pub-footer {
    background: var(--header-bg);
    color: var(--header-fg);
    padding-block: 2rem;
    margin-top: 2rem;
}
.pub-footer .pub-brand { color: var(--header-fg); margin-bottom: 1rem; }
.pub-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    margin-block: 1rem;
    font-family: var(--font-meta);
    font-size: 0.8rem;
}
.pub-footer-links a { text-decoration: none; opacity: 0.85; }
.pub-footer-links a:hover { opacity: 1; text-decoration: underline; }
.pub-footer-fine {
    font-family: var(--font-meta);
    font-size: 0.72rem;
    opacity: 0.65;
    max-width: 68ch;
    margin-top: 1rem;
    line-height: 1.6;
}

/* about page specific */
.pub-about-hero {
    padding-block: 2.5rem;
    display: grid;
    gap: 1.5rem;
}
.pub-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-block: 1.5rem 2.5rem;
}
@media (min-width: 768px) {
    .pub-values-grid { grid-template-columns: repeat(3, 1fr); }
}
.pub-value-card {
    border-top: 4px solid var(--accent);
    padding-top: 1rem;
}
.pub-value-card h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.5rem; }
.pub-value-card p { font-size: 0.92rem; color: var(--muted); }

/* =========================================================================
   OFFER THEME
   ========================================================================= */

.offer-topbar {
    background: var(--header-bg);
    border-bottom: 1px solid var(--line-soft);
    position: sticky;
    top: 0;
    z-index: 50;
}
.offer-topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4rem;
    gap: 1rem;
}
.offer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--header-fg);
}
.offer-brand-mark {
    width: 2rem; height: 2rem;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    flex-shrink: 0;
}
.offer-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line-soft);
    background: var(--surface);
    cursor: pointer;
}
.offer-nav-toggle:hover { background: var(--surface-strong); }
.offer-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--surface);
    border-bottom: 1px solid var(--line-soft);
    flex-direction: column;
    padding: 0.5rem 1rem 1.25rem;
}
.offer-nav.is-open { display: flex; }
.offer-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--line-soft);
}
.offer-nav a[aria-current="page"] { color: var(--accent-strong); }
.offer-nav .offer-nav-cta { margin-top: 0.75rem; border-bottom: none; }
@media (min-width: 768px) {
    .offer-nav-toggle { display: none; }
    .offer-nav {
        display: flex !important;
        position: static;
        flex-direction: row;
        align-items: center;
        gap: 1.75rem;
        border-bottom: none;
        padding: 0;
        background: transparent;
    }
    .offer-nav a { border-bottom: none; min-height: auto; font-size: 0.92rem; }
    .offer-nav .offer-nav-cta { margin-top: 0; }
}

.offer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 1.6rem;
    min-height: 44px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--primary-ink);
    text-decoration: none;
    border: 2px solid var(--primary);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    cursor: pointer;
}
.offer-button:hover { background: var(--accent-strong); border-color: var(--accent-strong); transform: translateY(-2px); box-shadow: 0 10px 24px -12px rgba(15, 58, 92, 0.5); }
.offer-button--ghost {
    background: transparent;
    color: var(--primary);
}
.offer-button--ghost:hover { background: var(--surface-strong); color: var(--primary); box-shadow: none; }

.offer-hero {
    padding-block: 2.5rem 3rem;
    display: grid;
    grid-template-areas: "eyebrow" "copy" "form";
    gap: 2rem;
}
.offer-hero-eyebrow {
    grid-area: eyebrow;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-strong);
    background: color-mix(in srgb, var(--accent) 14%, white);
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    width: fit-content;
}
.offer-hero-copy { grid-area: copy; }
.offer-hero-form { grid-area: form; }
.offer-headline {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.06;
    font-size: clamp(2rem, 1.5rem + 3vw, 3.6rem);
    color: var(--primary);
    letter-spacing: -0.01em;
}
.offer-subhead {
    margin-top: 1.1rem;
    font-size: clamp(1.02rem, 0.96rem + 0.3vw, 1.2rem);
    color: var(--muted);
    max-width: 52ch;
}
.offer-trust-row {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.4rem;
}
.offer-trust-row li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
}
.offer-trust-row li::before {
    content: "";
    width: 0.55rem; height: 0.55rem;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}
@media (min-width: 1024px) {
    .offer-hero {
        grid-template-areas: "eyebrow eyebrow" "copy form";
        grid-template-columns: 1.05fr 0.95fr;
        align-items: start;
        gap: 2.5rem;
    }
}

.offer-form-panel {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: 0 30px 60px -30px rgba(15, 58, 92, 0.35);
    border: 1px solid var(--line-soft);
}
.offer-form-panel h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.35rem;
}
.offer-form-panel > p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.25rem; }

.offer-field-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 480px) {
    .offer-field-row--split { grid-template-columns: 1fr 1fr; }
}
.offer-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}
.offer-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}
.offer-field input,
.offer-field textarea {
    font-size: 1rem;
    padding: 0.75rem 0.9rem;
    min-height: 44px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line-soft);
    background: var(--bg);
    color: var(--fg);
    width: 100%;
}
.offer-field input:focus, .offer-field textarea:focus {
    border-color: var(--accent-strong);
}
.offer-field textarea { min-height: 90px; resize: vertical; }

.offer-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 1.25rem;
}
.offer-consent input {
    margin-top: 0.2rem;
    width: 1.15rem; height: 1.15rem;
    flex-shrink: 0;
}
.offer-consent a { color: var(--accent-strong); }

.offer-form-note {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 1rem;
    text-align: center;
}

.offer-success {
    display: none;
    text-align: center;
    padding: 1.5rem 0.5rem;
}
.offer-success.is-visible { display: block; }
.offer-success-icon {
    width: 3rem; height: 3rem;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1rem;
}
.offer-success h2 { font-family: var(--font-display); color: var(--primary); margin-bottom: 0.6rem; }
.offer-success p { color: var(--muted); }
.offer-lead-form.is-submitted .offer-lead-form-fields { display: none; }

.offer-section {
    padding-block: var(--section-pad, 2.75rem);
}
.offer-section--tint { background: var(--surface-strong); }
.offer-section--dark {
    background: var(--primary);
    color: #eaf3f6;
}
.offer-section--dark .offer-section-title { color: #ffffff; }
.offer-section--dark .offer-section-lead { color: #c3dbe4; }

.offer-section-head {
    max-width: 62ch;
    margin-bottom: 2rem;
}
.offer-eyebrow {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-strong);
    margin-bottom: 0.6rem;
}
.offer-section--dark .offer-eyebrow { color: #7fd8d1; }
.offer-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 1.3rem + 1vw, 2.3rem);
    color: var(--primary);
    line-height: 1.15;
}
.offer-section-lead {
    margin-top: 0.75rem;
    color: var(--muted);
    font-size: 1.02rem;
}
.offer-section-head--center { margin-inline: auto; text-align: center; }

.offer-stat-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .offer-stat-strip { grid-template-columns: repeat(4, 1fr); }
}
.offer-stat-strip li { text-align: center; }
.offer-stat-strip strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
    color: var(--primary);
}
.offer-stat-strip span { font-size: 0.85rem; color: var(--muted); }

.offer-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .offer-card-grid--3 { grid-template-columns: repeat(3, 1fr); }
    .offer-card-grid--2 { grid-template-columns: repeat(2, 1fr); }
}

.offer-step-card {
    container-type: inline-size;
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid var(--line-soft);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.offer-step-card .offer-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem; height: 2.4rem;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-family: var(--font-display);
}
.offer-step-card h3 { font-size: 1.1rem; color: var(--primary); font-weight: 700; }
.offer-step-card p { font-size: 0.92rem; color: var(--muted); }

.offer-curriculum-list {
    display: grid;
    gap: 0.9rem;
}
.offer-curriculum-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: center;
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    border: 1px solid var(--line-soft);
}
.offer-curriculum-list .offer-curriculum-index {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--accent-strong);
    font-weight: 700;
}
.offer-curriculum-list p { font-weight: 600; color: var(--fg); }

.offer-outcome-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 600px) {
    .offer-outcome-grid { grid-template-columns: repeat(2, 1fr); }
}
.offer-outcome-grid li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.96rem;
}
.offer-outcome-check {
    flex-shrink: 0;
    width: 1.6rem; height: 1.6rem;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.offer-media-feature {
    display: grid;
    gap: 1.75rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .offer-media-feature {
        grid-template-columns: 1fr 1fr;
    }
    .offer-media-feature--reverse .offer-media-figure { order: 2; }
}
.offer-media-figure img, .offer-media-figure video {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
}
.offer-video-frame {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #001;
}
.offer-video-frame video { width: 100%; height: 100%; object-fit: cover; }
.offer-media-caption {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.6rem;
}

.offer-service-panel {
    background: var(--surface);
    border-left: 5px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 1.5rem 1.75rem;
}
.offer-service-panel h3 { font-family: var(--font-display); color: var(--primary); font-size: 1.2rem; margin-bottom: 0.6rem; }
.offer-service-panel p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0.6rem; }
.offer-service-panel p:last-child { margin-bottom: 0; }

.offer-faq { display: grid; gap: 0.9rem; max-width: 72ch; }
.offer-faq details {
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
}
.offer-faq summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--primary);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 44px;
}
.offer-faq summary::-webkit-details-marker { display: none; }
.offer-faq summary::after {
    content: "+";
    font-size: 1.4rem;
    color: var(--accent-strong);
    flex-shrink: 0;
    transition: transform 0.15s ease;
}
.offer-faq details[open] summary::after { transform: rotate(45deg); }
.offer-faq p { margin-top: 0.75rem; color: var(--muted); font-size: 0.95rem; }

.offer-final-cta {
    text-align: center;
    display: grid;
    gap: 1.25rem;
    justify-items: center;
}
.offer-final-cta p { max-width: 52ch; color: var(--muted); }
.offer-section--dark .offer-final-cta p { color: #c3dbe4; }

.offer-footer {
    background: #0a2033;
    color: #cfe1e9;
    padding-block: 2.5rem 2rem;
}
.offer-footer-grid {
    display: grid;
    gap: 1.75rem;
}
@media (min-width: 768px) {
    .offer-footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}
.offer-footer h3 { color: #fff; font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 0.75rem; }
.offer-footer address { font-style: normal; font-size: 0.85rem; line-height: 1.7; color: #a9c3ce; }
.offer-footer-links { display: grid; gap: 0.55rem; }
.offer-footer-links a { color: #cfe1e9; text-decoration: none; font-size: 0.88rem; }
.offer-footer-links a:hover { text-decoration: underline; }
.offer-footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 0.76rem;
    color: #8fa9b5;
    line-height: 1.7;
}

/* legal pages within offer theme */
.offer-legal-header {
    padding-block: 2.5rem 1.5rem;
}
.offer-legal-header h1 {
    font-family: var(--font-display);
    color: var(--primary);
    font-size: clamp(1.8rem, 1.5rem + 1.5vw, 2.6rem);
}
.offer-legal-header p { color: var(--muted); margin-top: 0.75rem; }
.offer-legal-body {
    padding-block: 0.5rem 3rem;
    display: grid;
    gap: 1.5rem;
    max-width: 72ch;
}
.offer-legal-body h2 {
    font-family: var(--font-display);
    color: var(--primary);
    font-size: 1.3rem;
    margin-top: 1rem;
}
.offer-legal-body p, .offer-legal-body li { color: var(--fg); font-size: 0.98rem; }
.offer-legal-body ul { display: grid; gap: 0.5rem; }
.offer-legal-body ul li { padding-left: 1.25rem; position: relative; }
.offer-legal-body ul li::before {
    content: "—";
    position: absolute; left: 0; color: var(--accent-strong);
}
.offer-legal-body .offer-company-card {
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
}
.offer-company-card address { font-style: normal; line-height: 1.8; }

