:root {
    --ink: #111b3d;
    --ink-soft: #526078;
    --paper: #fffdf9;
    --surface: #ffffff;
    --surface-soft: #f4f6fb;
    --surface-blue: #eef3ff;
    --line: #dfe4ed;
    --line-strong: #cad2e2;
    --primary: #2557d6;
    --primary-dark: #1741ad;
    --primary-soft: #dfe8ff;
    --gold: #eaa62c;
    --coral: #e96a5f;
    --success: #19764a;
    --shadow-sm: 0 8px 24px rgba(17, 27, 61, .08);
    --shadow-lg: 0 28px 80px rgba(17, 27, 61, .16);
    --radius-sm: .75rem;
    --radius-md: 1.25rem;
    --radius-lg: 2rem;
    --container: 1180px;
    --header-height: 76px;
}

html[data-theme="dark"] {
    --ink: #f5f7ff;
    --ink-soft: #b9c1d4;
    --paper: #0d1328;
    --surface: #151d37;
    --surface-soft: #11182e;
    --surface-blue: #192850;
    --line: #2d3857;
    --line-strong: #405073;
    --primary: #7da2ff;
    --primary-dark: #a9c0ff;
    --primary-soft: #263b72;
    --gold: #f5bb4f;
    --coral: #ff887c;
    --success: #64d49a;
    --shadow-sm: 0 8px 24px rgba(0, 0, 0, .24);
    --shadow-lg: 0 28px 80px rgba(0, 0, 0, .36);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 1.25rem); }
body {
    min-width: 280px;
    min-height: 100vh;
    margin: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

body > main { min-width: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.65rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2.05rem, 4.4vw, 3.65rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { color: var(--ink-soft); }

.marketing-container { width: min(calc(100% - 2.5rem), var(--container)); margin-inline: auto; }
.narrow-container { max-width: 780px; }
.section { padding-block: clamp(4.75rem, 9vw, 8rem); }
.center-text { text-align: center; }
.section-heading { max-width: 760px; margin-bottom: clamp(2.25rem, 5vw, 4rem); }
.section-heading.center-text { margin-inline: auto; }
.section-heading h2, .faq-intro h2 { margin: .65rem 0 1rem; }
.section-lead { margin: 0; font-size: clamp(1.05rem, 1.7vw, 1.22rem); }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.08fr .92fr; gap: 5rem; align-items: end; }
.section-heading-action { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.section-heading-action h2 { max-width: 720px; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--primary);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.eyebrow-light { color: #d9e5ff; }
.eyebrow-dot { width: .55rem; height: .55rem; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(234, 166, 44, .17); }
.text-link { color: var(--primary); font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: .3em; }
.sr-only { 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: fixed; z-index: 1000; left: 1rem; top: -5rem; padding: .75rem 1rem; color: white; background: #111b3d; border-radius: .5rem; }
.skip-link:focus { top: 1rem; }

.button {
    min-height: 46px;
    padding: .75rem 1.15rem;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    color: var(--ink);
    background: var(--surface);
    font-size: .95rem;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.button-primary { color: #fff; background: #2557d6; box-shadow: 0 10px 24px rgba(37, 87, 214, .24); }
.button-primary:hover { background: #1741ad; box-shadow: 0 14px 30px rgba(37, 87, 214, .3); }
.button-secondary { color: var(--ink); background: var(--surface); border-color: var(--line-strong); }
.button-secondary:hover { border-color: var(--primary); }
.button-light { color: #111b3d; background: #fff; box-shadow: 0 12px 30px rgba(0, 0, 0, .2); }
.button-small { min-height: 40px; padding: .62rem 1rem; font-size: .88rem; }
.button-large { min-height: 54px; padding: .95rem 1.4rem; }
.button-block { width: 100%; }

.marketing-header {
    position: sticky;
    z-index: 50;
    top: 0;
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    background: color-mix(in srgb, var(--paper) 88%, transparent);
    backdrop-filter: blur(18px);
    transition: box-shadow .2s ease, border-color .2s ease;
}
.marketing-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 25px rgba(17, 27, 61, .07); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; }
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; gap: .55rem; color: var(--ink); font-weight: 900; font-size: 1.2rem; letter-spacing: -.03em; text-decoration: none; }
.brand-logo { width: 36px; height: 34px; object-fit: contain; }
.marketing-nav { display: flex; align-items: center; justify-content: center; gap: clamp(.7rem, 1.7vw, 1.45rem); }
.marketing-nav a, .login-link { color: var(--ink-soft); font-size: .9rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.marketing-nav a:hover, .login-link:hover { color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: .9rem; }
.theme-toggle { width: 40px; height: 40px; padding: 0; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: var(--surface); cursor: pointer; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: .6rem; background: transparent; }
.nav-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: currentColor; }
.notice { margin-top: 1rem; padding: .85rem 1rem; border: 1px solid #9fd4b7; border-radius: var(--radius-sm); }
.notice-success { color: var(--success); background: color-mix(in srgb, var(--success) 8%, var(--surface)); }

.hero-section { position: relative; padding: clamp(3.5rem, 7vw, 7rem) 0 clamp(4.5rem, 8vw, 7.5rem); overflow: hidden; }
.hero-section::before { content: ""; position: absolute; inset: -20% auto auto -12%; width: 48vw; height: 48vw; border-radius: 50%; background: radial-gradient(circle, rgba(37, 87, 214, .12), transparent 67%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); align-items: center; gap: clamp(2.5rem, 6vw, 6rem); }
.hero-copy h1 { max-width: 770px; margin: 1rem 0 1.4rem; }
.hero-lead { max-width: 650px; margin-bottom: 2rem; font-size: clamp(1.12rem, 2vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.hero-note { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0 0; font-size: .9rem; }
.hero-note > span:first-child { color: var(--success); font-weight: 900; }
.hero-visual { position: relative; min-width: 0; }
.hero-visual picture { display: block; overflow: hidden; border-radius: min(3vw, 2.25rem); background: #111b3d; box-shadow: var(--shadow-lg); }
.hero-visual img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: 60% center; }
.hero-float { position: absolute; display: flex; align-items: center; gap: .7rem; min-width: 190px; padding: .75rem .85rem; border: 1px solid rgba(255, 255, 255, .45); border-radius: 1rem; color: #111b3d; background: rgba(255, 255, 255, .92); box-shadow: 0 16px 35px rgba(5, 13, 37, .24); backdrop-filter: blur(12px); }
.hero-float strong, .hero-float small { display: block; }
.hero-float strong { font-size: .85rem; }
.hero-float small { color: #647089; font-size: .72rem; }
.float-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: .7rem; color: #fff; background: #2557d6; font-weight: 900; }
.hero-float-top { top: 8%; right: -5%; }
.hero-float-bottom { left: -7%; bottom: 8%; }
.hero-float-bottom .float-icon { background: #19764a; }

.trust-strip { border-block: 1px solid var(--line); background: var(--surface); }
.stats-row { min-height: 112px; display: flex; align-items: stretch; }
.stats-intro { flex: 1.5; align-self: center; max-width: 270px; margin: 0; padding-right: 2rem; font-size: .88rem; font-weight: 800; }
.stat-item { flex: 1; min-width: 140px; padding: 1.5rem clamp(1rem, 2vw, 2rem); display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--line); }
.stat-item strong { color: var(--ink); font-size: clamp(1.55rem, 3vw, 2.25rem); line-height: 1; }
.stat-item span { margin-top: .45rem; color: var(--ink-soft); font-size: .82rem; text-transform: capitalize; }

.audience-section { background: var(--surface-soft); }
.audience-tabs { margin-bottom: 1.25rem; padding: .35rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: .35rem; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); }
.audience-tab { min-height: 48px; padding: .65rem 1rem; border: 0; border-radius: 999px; color: var(--ink-soft); background: transparent; font-weight: 800; cursor: pointer; }
.audience-tab.is-active { color: #fff; background: #2557d6; box-shadow: 0 7px 18px rgba(37, 87, 214, .22); }
.audience-panel { padding: clamp(1.4rem, 4vw, 3.25rem); display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(2rem, 6vw, 6rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); }
.panel-kicker, .number-label, .price-label { color: var(--primary); font-size: .75rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.audience-panel h3 { margin: .8rem 0 1rem; font-size: clamp(1.8rem, 3.2vw, 2.75rem); }
.audience-panel-copy > p { font-size: 1.04rem; }
.check-list { margin: 1.4rem 0 1.8rem; padding: 0; list-style: none; }
.check-list li { position: relative; margin: .65rem 0; padding-left: 1.75rem; color: var(--ink-soft); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 900; }

.mini-product { min-height: 390px; display: grid; grid-template-columns: 64px 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 1.15rem; color: #17203d; background: #f6f8fc; box-shadow: 0 24px 60px rgba(17, 27, 61, .14); }
.mini-sidebar { padding: 1.1rem .8rem; display: flex; align-items: center; flex-direction: column; gap: 1.25rem; background: #111b3d; }
.mini-logo { width: 33px; height: 33px; display: grid; place-items: center; border-radius: .7rem; color: white; background: #2557d6; font-weight: 900; }
.mini-nav { width: 24px; height: 8px; border-radius: 8px; background: #46506d; }
.mini-nav.is-current { width: 30px; background: #f2b23e; }
.mini-main { min-width: 0; padding: 1.25rem; }
.mini-header { display: flex; align-items: center; justify-content: space-between; font-weight: 800; }
.mini-avatar { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #e96a5f; font-size: .72rem; }
.mini-cards { margin: 1.35rem 0; display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.mini-cards > div { padding: 1rem; border: 1px solid #e1e5ed; border-radius: .8rem; background: white; }
.mini-cards small, .mini-cards span { display: block; color: #6d7689; font-size: .7rem; }
.mini-cards strong { display: block; margin: .45rem 0; font-size: 1.25rem; }
.mini-cards .mini-trend { color: #19764a; }
.mini-list { overflow: hidden; border: 1px solid #e1e5ed; border-radius: .85rem; background: white; }
.mini-list > div { padding: .75rem .9rem; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #edf0f5; font-size: .78rem; }
.mini-list .mini-list-head { border-top: 0; background: #f9fafc; color: #6d7689; }
.dot { width: 7px; height: 7px; margin-right: .5rem; display: inline-block; border-radius: 50%; }
.dot-blue { background: #2557d6; }.dot-gold { background: #eaa62c; }.dot-coral { background: #e96a5f; }

.outcome-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 1.2rem; }
.outcome-card { min-width: 0; padding: clamp(1.5rem, 3vw, 2.5rem); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.outcome-card-large { grid-row: span 2; background: linear-gradient(145deg, var(--surface), var(--surface-blue)); }
.outcome-card h3 { margin: .75rem 0 .85rem; font-size: clamp(1.45rem, 2.5vw, 2.15rem); }
.catalogue-preview { margin-top: 2rem; padding: .8rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--surface); box-shadow: var(--shadow-sm); }
.preview-toolbar { min-height: 52px; padding: .4rem .6rem .85rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line); }
.preview-toolbar span { min-width: 125px; padding: .45rem .65rem; border: 1px solid var(--line); border-radius: .55rem; color: var(--ink-soft); font-size: .7rem; }
.score-row { padding: .9rem .5rem; display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: .75rem; border-bottom: 1px solid var(--line); }
.score-row:last-child { border-bottom: 0; }
.score-row span:nth-child(2) { min-width: 0; }
.score-row strong, .score-row small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.score-row small { color: var(--ink-soft); }
.score-row b { padding: .3rem .5rem; border-radius: 99px; color: var(--success); background: color-mix(in srgb, var(--success) 10%, transparent); font-size: .67rem; }
.score-icon { width: 36px; height: 36px; display: grid; place-items: center; border-radius: .65rem; color: #2557d6; background: #e6edff; }
.event-preview { margin-top: 1.35rem; padding: .85rem; display: grid; grid-template-columns: 50px 1fr auto; align-items: center; gap: .75rem; border: 1px solid var(--line); border-radius: .9rem; background: var(--surface-soft); }
.event-preview strong, .event-preview small { display: block; }
.event-preview small { color: var(--ink-soft); font-size: .72rem; }
.event-date { padding: .4rem; border-radius: .55rem; color: #fff; background: #111b3d; text-align: center; line-height: 1; }
.event-date strong { font-size: 1.15rem; }.event-date span { font-size: .57rem; }
.status-pill { padding: .3rem .55rem; border-radius: 99px; color: var(--success); background: color-mix(in srgb, var(--success) 11%, transparent); font-size: .65rem; font-weight: 800; }
.chart-preview { margin-top: 1rem; padding: 1rem; border-radius: .85rem; color: #2557d6; background: var(--surface-soft); }
.chart-preview > div { display: flex; justify-content: space-between; color: var(--ink); }
.chart-preview svg { width: 100%; height: auto; margin-top: .7rem; }
.chart-preview small { color: var(--ink-soft); font-size: .68rem; }

.workflow-section { background: #111b3d; }
.workflow-section h2, .workflow-section h3 { color: #fff; }
.workflow-grid { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; counter-reset: workflow; }
.workflow-grid li { padding: 1.5rem clamp(1rem, 3vw, 2.5rem); display: grid; grid-template-columns: 46px 1fr; gap: 1rem; border-left: 1px solid #38425f; }
.workflow-grid li:first-child { border-left: 0; }
.workflow-grid li > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; color: #111b3d; background: #f2b23e; font-weight: 900; }
.workflow-grid h3 { margin: .25rem 0 .7rem; letter-spacing: -.02em; }
.workflow-grid p { margin: 0; color: #bbc3d8; }

.events-section { background: var(--surface-soft); }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.event-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-sm); }
.event-image { position: relative; min-height: 220px; display: block; overflow: hidden; color: white; background: linear-gradient(135deg, #1b2b5f, #2557d6); text-decoration: none; }
.event-image img { width: 100%; height: 220px; object-fit: cover; transition: transform .35s ease; }
.event-card:hover .event-image img { transform: scale(1.035); }
.event-placeholder { height: 220px; display: grid; place-items: center; font-size: 3.5rem; opacity: .75; }
.event-image time { position: absolute; top: 1rem; left: 1rem; width: 50px; min-height: 54px; display: grid; place-items: center; border-radius: .65rem; color: #111b3d; background: rgba(255, 255, 255, .94); line-height: 1; box-shadow: 0 8px 18px rgba(0, 0, 0, .18); }
.event-image time strong { font-size: 1.25rem; }.event-image time span { font-size: .62rem; font-weight: 900; text-transform: uppercase; }
.event-card-body { padding: 1.25rem; }
.event-card h3 { margin-bottom: .75rem; }
.event-card h3 a { text-decoration: none; }
.event-card h3 a:hover { color: var(--primary); }
.event-meta, .event-organizer { margin: .35rem 0; font-size: .82rem; }
.event-card-footer { margin-top: 1.1rem; padding-top: .9rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line); font-size: .8rem; font-weight: 800; }
.event-card-footer a { color: var(--primary); text-decoration: none; }

.value-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.value-copy h2 { margin: .8rem 0 1.2rem; }
.value-copy p { font-size: 1.05rem; }
.value-points { display: grid; gap: .9rem; }
.value-points > div { padding: 1.2rem; display: grid; grid-template-columns: 50px 1fr; gap: 1rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--surface); box-shadow: var(--shadow-sm); }
.value-points > div > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: .85rem; color: var(--primary); background: var(--primary-soft); font-size: 1.35rem; font-weight: 900; }
.value-points h3 { margin: .1rem 0 .35rem; font-size: 1.05rem; letter-spacing: -.015em; }
.value-points p { margin: 0; font-size: .86rem; }

.pricing-section { background: var(--surface-blue); }
.free-access-banner { max-width: 850px; margin: -1.5rem auto 2rem; padding: 1rem 1.2rem; display: flex; align-items: center; justify-content: center; gap: .75rem; border: 1px solid var(--line-strong); border-radius: 1rem; background: var(--surface); }
.free-access-banner > span { color: var(--gold); font-size: 1.4rem; }.free-access-banner p { margin: 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; align-items: stretch; }
.pricing-grid-single { max-width: 480px; margin-inline: auto; }
.price-card { padding: clamp(1.4rem, 3vw, 2.2rem); display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.price-card-free { border: 2px solid var(--primary); box-shadow: 0 20px 45px rgba(37, 87, 214, .13); }
.price-card h3 { margin: .75rem 0 1rem; }
.price { min-height: 58px; margin-bottom: 1.1rem; }
.price strong, .price span { display: block; }.price strong { color: var(--ink); font-size: 1.75rem; }.price span { font-size: .8rem; }
.price-description { min-height: 78px; font-size: .88rem; }
.price-card .check-list { flex: 1; }
.pricing-fallback { margin: 1.5rem auto 0; max-width: 660px; text-align: center; font-size: .85rem; }

.faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(2.5rem, 7vw, 7rem); align-items: start; }
.faq-intro { position: sticky; top: calc(var(--header-height) + 2rem); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 1.2rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-weight: 850; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--primary); font-size: 1.35rem; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -.3rem 0 1.25rem; padding-right: 2rem; }

.final-cta-section { padding: 0 0 clamp(4.5rem, 9vw, 8rem); }
.final-cta-card { padding: clamp(2rem, 6vw, 4.5rem); display: flex; align-items: center; justify-content: space-between; gap: 2rem; border-radius: var(--radius-lg); color: #fff; background: linear-gradient(125deg, #111b3d 8%, #214cc1 70%, #376be8); box-shadow: var(--shadow-lg); }
.final-cta-card h2 { max-width: 760px; margin: .8rem 0; color: #fff; font-size: clamp(2rem, 4.3vw, 3.5rem); }
.final-cta-card p { margin: 0; color: #d6def1; }
.final-cta-card .button { flex: 0 0 auto; }

.marketing-footer { padding: 4rem 0 1.5rem; border-top: 1px solid var(--line); background: var(--surface); }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 3rem; }
.footer-grid > div:first-child p { max-width: 360px; margin-top: 1rem; font-size: .9rem; }
.footer-grid h2 { margin: 0 0 .9rem; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: .55rem; }
.footer-grid a:not(.brand) { color: var(--ink-soft); font-size: .86rem; text-decoration: none; }
.footer-grid a:hover { color: var(--primary); }
.footer-bottom { margin-top: 3rem; padding-top: 1.25rem; display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .78rem; }
.mobile-cta { display: none; }

/* Registration and onboarding */
.auth-section { padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 7rem); }
.auth-shell { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-lg); }
.auth-aside { position: relative; padding: clamp(2rem, 5vw, 4rem); color: #fff; background: linear-gradient(150deg, #111b3d, #2557d6); }
.auth-aside::after { content: "♪"; position: absolute; right: 1rem; bottom: -3rem; color: rgba(255,255,255,.08); font-size: 15rem; line-height: 1; transform: rotate(-10deg); }
.auth-aside > * { position: relative; z-index: 1; }
.auth-aside h1 { margin: 1rem 0; color: #fff; font-size: clamp(2rem, 4vw, 3.25rem); }
.auth-aside p { color: #d5dff6; }
.auth-benefits { margin: 2rem 0 0; padding: 0; list-style: none; }
.auth-benefits li { margin: .85rem 0; display: flex; gap: .7rem; color: #eaf0ff; }
.auth-benefits li span { color: #f2b23e; font-weight: 900; }
.auth-form-panel { padding: clamp(1.5rem, 5vw, 4rem); }
.auth-form-header { margin-bottom: 1.75rem; }
.auth-form-header h2 { margin-bottom: .6rem; font-size: clamp(1.7rem, 3vw, 2.35rem); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-label { margin-bottom: .4rem; display: block; color: var(--ink); font-size: .86rem; font-weight: 800; }
.required { color: var(--coral); }
.form-control, .form-select {
    width: 100%; min-height: 50px; padding: .75rem .85rem; border: 1px solid var(--line-strong); border-radius: .7rem; color: var(--ink); background: var(--surface); outline: 0;
}
.form-control::placeholder, textarea::placeholder { color: var(--ink-soft); opacity: 1; }
.form-control:disabled, .form-control[readonly], .form-select:disabled { color: var(--ink-soft); background: var(--surface-soft); opacity: 1; }
.form-control::file-selector-button { color: var(--ink); background: var(--surface-soft); border: 0; border-right: 1px solid var(--line); }
select option { color: var(--ink); background: var(--surface); }
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill { -webkit-text-fill-color: var(--ink); box-shadow: 0 0 0 1000px var(--surface) inset; caret-color: var(--ink); }
textarea.form-control { min-height: 110px; resize: vertical; }
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 15%, transparent); }
.form-help { margin: .35rem 0 0; color: var(--ink-soft); font-size: .75rem; }
.invalid-feedback { margin-top: .35rem; display: block; color: #bb2f3b; font-size: .78rem; }
.is-invalid { border-color: #bb2f3b; }
.form-check { margin: 1rem 0 1.25rem; display: grid; grid-template-columns: 20px 1fr; gap: .55rem; align-items: start; }
.form-check input { width: 18px; height: 18px; margin-top: .2rem; accent-color: #2557d6; }
.form-check label { color: var(--ink-soft); font-size: .82rem; }
.form-check a { color: var(--primary); font-weight: 700; }
.form-alert { margin-bottom: 1rem; padding: .8rem 1rem; border-radius: .7rem; font-size: .86rem; }
.form-alert-error { color: #962933; border: 1px solid #efb0b7; background: #fff0f2; }
html[data-theme="dark"] .form-alert-error { color: #ffb8bf; border-color: #733842; background: #351d25; }
.selected-context { margin-bottom: 1.2rem; padding: .75rem .9rem; border: 1px solid var(--line); border-radius: .7rem; color: var(--ink-soft); background: var(--surface-soft); font-size: .82rem; }
.turnstile-wrap { min-height: 1px; margin: 1rem 0; max-width: 100%; overflow: hidden; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.auth-submit { margin-top: .6rem; }
.auth-login { margin: 1rem 0 0; text-align: center; font-size: .84rem; }
.auth-login a { color: var(--primary); font-weight: 800; }
.password-wrap { position: relative; }
.password-wrap .form-control { padding-right: 4.5rem; }
.password-toggle { position: absolute; right: .5rem; top: 50%; transform: translateY(-50%); padding: .35rem .45rem; border: 0; color: var(--primary); background: transparent; font-size: .75rem; font-weight: 800; cursor: pointer; }
.onboarding-shell { max-width: 880px; margin-inline: auto; }
.onboarding-progress { margin-bottom: 1.5rem; display: flex; align-items: center; gap: .7rem; color: var(--ink-soft); font-size: .78rem; }
.onboarding-progress span { height: 5px; flex: 1; border-radius: 9px; background: var(--line); }
.onboarding-progress span.is-complete { background: var(--primary); }
.onboarding-card { padding: clamp(1.5rem, 5vw, 3.5rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-lg); }
.onboarding-card h1 { margin: .7rem 0; font-size: clamp(2rem, 4vw, 3rem); }
.onboarding-actions { margin-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.skip-link-inline { color: var(--ink-soft); font-size: .85rem; font-weight: 700; }

/* Legal and contact pages */
.legal-shell { max-width: 850px; }
.legal-page h1, .contact-page h1 { margin: .8rem 0; }
.legal-updated { margin-bottom: 2.5rem; }
.legal-content { padding: clamp(1.4rem, 4vw, 3rem); border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.legal-content h2 { margin: 2rem 0 .7rem; font-size: 1.35rem; letter-spacing: -.02em; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content a, .contact-page a { color: var(--primary); }
.contact-grid { margin-top: 2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.contact-card { padding: 1.5rem; display: flex; flex-direction: column; align-items: center; border: 1px solid var(--line); border-radius: 1rem; color: var(--ink) !important; background: var(--surface); text-decoration: none; }
.contact-card span:last-child { color: var(--ink-soft); font-size: .82rem; overflow-wrap: anywhere; }
.contact-icon { width: 45px; height: 45px; margin-bottom: .7rem; display: grid; place-items: center; border-radius: 50%; color: var(--primary); background: var(--primary-soft); }

@media (max-width: 1060px) {
    .marketing-nav { position: fixed; inset: var(--header-height) 1.25rem auto; padding: 1rem; display: none; align-items: stretch; flex-direction: column; border: 1px solid var(--line); border-radius: 1rem; background: var(--surface); box-shadow: var(--shadow-lg); }
    .marketing-nav.is-open { display: flex; }
    .marketing-nav a { padding: .7rem; }
    .nav-toggle { display: block; order: 3; }
    .header-actions { margin-left: auto; }
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .hero-float-top { right: -1rem; }.hero-float-bottom { left: -1rem; }
}

@media (max-width: 820px) {
    :root { --header-height: 68px; }
    .marketing-container { width: min(calc(100% - 2rem), var(--container)); }
    .hero-grid, .audience-panel, .value-grid, .auth-shell, .faq-grid { grid-template-columns: 1fr; }
    .hero-copy { text-align: center; }
    .hero-lead { margin-inline: auto; }
    .hero-actions, .hero-note { justify-content: center; }
    .hero-visual { max-width: 680px; margin-inline: auto; }
    .hero-float { display: none; }
    .stats-row { padding-block: 1.25rem; flex-wrap: wrap; }
    .stats-intro { flex: 1 0 100%; max-width: none; padding: 0 0 .75rem; text-align: center; }
    .stat-item { min-width: 50%; border-left: 0; border-top: 1px solid var(--line); text-align: center; }
    .audience-tabs { grid-template-columns: 1fr 1fr; border-radius: 1.2rem; }
    .audience-panel-copy { text-align: center; }.audience-panel-copy .check-list { display: inline-block; text-align: left; }
    .mini-product { max-width: 620px; width: 100%; margin-inline: auto; }
    .split-heading { grid-template-columns: 1fr; gap: 1rem; }
    .outcome-grid { grid-template-columns: 1fr; }.outcome-card-large { grid-row: auto; }
    .workflow-grid { grid-template-columns: 1fr; max-width: 680px; margin-inline: auto; }
    .workflow-grid li { border-top: 1px solid #38425f; border-left: 0; }.workflow-grid li:first-child { border-top: 0; }
    .events-grid { grid-template-columns: 1fr 1fr; }
    .faq-intro { position: static; }
    .final-cta-card { align-items: flex-start; flex-direction: column; }
    .auth-aside { min-height: auto; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }.footer-grid > div:first-child { grid-column: 1 / -1; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    body.home-page { padding-bottom: 76px; }
    .marketing-container { width: min(calc(100% - 1.25rem), var(--container)); }
    .header-inner { gap: .55rem; }
    .brand { font-size: 1.05rem; }.brand-logo { width: 31px; height: 30px; }
    .header-actions .login-link, .header-actions .button { display: none; }
    .hero-section { padding-top: 2.7rem; }
    .hero-actions { flex-direction: column; }.hero-actions .button { width: 100%; }
    .hero-visual img { aspect-ratio: 4 / 3; object-position: 68% center; }
    .audience-tabs { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; border-radius: 1rem; }
    .audience-tab { min-width: 145px; scroll-snap-align: start; }
    .audience-panel { border-radius: 1.25rem; }
    .mini-product { min-height: 340px; grid-template-columns: 48px 1fr; }.mini-main { padding: .85rem; }.mini-sidebar { padding-inline: .5rem; }
    .mini-cards { grid-template-columns: 1fr; }.mini-cards > div:nth-child(2) { display: none; }
    .score-row { grid-template-columns: 36px 1fr; }.score-row b { display: none; }
    .section-heading-action { align-items: flex-start; flex-direction: column; }
    .events-grid { grid-template-columns: 1fr; }
    .event-image, .event-image img, .event-placeholder { min-height: 200px; height: 200px; }
    .free-access-banner { align-items: flex-start; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }.footer-grid > div:first-child { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; }
    .mobile-cta { position: fixed; z-index: 45; right: .8rem; bottom: .8rem; left: .8rem; display: inline-flex; box-shadow: 0 14px 34px rgba(13, 25, 60, .35); }
    .auth-section { padding-top: 1rem; }.auth-shell { border-radius: 1.25rem; }.auth-aside, .auth-form-panel { padding: 1.4rem; }
    .auth-aside h1 { font-size: 2rem; }.auth-benefits { display: none; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .onboarding-actions { align-items: stretch; flex-direction: column-reverse; }.onboarding-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
/* Shared account experience */
.field-heading{display:flex;align-items:center;justify-content:space-between;gap:1rem}.field-heading a,.account-recovery-actions{font-size:.875rem}.account-recovery-actions{margin-top:.65rem}.verification-shell{max-width:620px;padding:2.5rem;background:var(--surface,#fff);border:1px solid var(--border,#dde4ef);border-radius:24px;box-shadow:0 14px 60px #17254b0a}.verification-shell h1{font-size:clamp(1.85rem,4vw,2.6rem);line-height:1.2;margin:.75rem 0 1rem}.verification-icon{display:grid;place-items:center;width:64px;height:64px;border-radius:20px;background:#e8edff;color:#3457d5;font-size:2rem;margin-bottom:1.5rem}.email-address{overflow-wrap:anywhere}.verification-steps{padding-left:1.4rem;line-height:2.2}.verification-actions{display:flex;gap:1rem;flex-wrap:wrap;align-items:center;margin:1.5rem 0}.auth-help{border-top:1px solid var(--border,#dde4ef);padding-top:1.25rem}.auth-help summary{font-weight:650;cursor:pointer}.otp-input{font-size:2rem;letter-spacing:.45em;text-align:center;font-variant-numeric:tabular-nums}.profile-photo-preview{width:90px;height:90px;border-radius:18px;object-fit:cover;margin-top:.5rem}.experience-notice{position:fixed;bottom:24px;left:50%;transform:translateX(-50%);background:#18243b;color:white;padding:16px 24px;border-radius:14px;max-width:min(540px,calc(100vw - 32px));z-index:2000;box-shadow:0 12px 35px #0003}.experience-notice[hidden],.profile-photo-preview[hidden]{display:none}.form-alert ul{padding-left:1.2rem}.button:disabled{opacity:.65;cursor:wait}.auth-login form{display:inline-block;margin-right:1rem}@media(max-width:600px){.verification-shell{padding:1.4rem}.verification-actions{display:grid}.verification-actions .button{width:100%}.otp-input{font-size:1.65rem}}[data-theme=dark] .verification-shell{background:#152039;color:#edf2ff}
