:root {
    --ink: #17181d;
    --ink-soft: #4f5158;
    --paper: #fbfaf6;
    --sand: #f2ecdf;
    --sand-deep: #e7dcc7;
    --white: #fff;
    --gold: #b58236;
    --gold-dark: #75501e;
    --gold-pale: #f3e7d1;
    --sage: #335d4b;
    --sage-pale: #e6efe9;
    --lilac: #65587d;
    --lilac-pale: #eeeaf4;
    --line: #dcd5c7;
    --radius: 20px;
    --shadow: 0 24px 70px rgb(27 24 18 / 10%);
    color-scheme: light;
    font-family: "Segoe UI", Arial, sans-serif;
    font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-size: 16px; line-height: 1.65; }
body.menu-open { overflow: hidden; }
button, input { font: inherit; }
a { color: inherit; text-underline-offset: 4px; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.08; letter-spacing: -.025em; }
h1 { margin-bottom: 1.5rem; font-size: clamp(3rem, 6.4vw, 6.2rem); }
h2 { margin-bottom: 1.2rem; font-size: clamp(2.2rem, 4.4vw, 4rem); }
h3 { margin-bottom: .75rem; font-size: clamp(1.35rem, 2vw, 1.75rem); }
em { color: var(--gold-dark); font-weight: 500; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.shell { width: min(1180px, calc(100% - 2rem)); margin-inline: auto; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.skip-link { position: fixed; z-index: 200; top: .5rem; left: .5rem; padding: .8rem 1rem; border: 2px solid var(--gold); background: var(--white); transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.eyebrow { margin-bottom: .9rem; color: var(--gold-dark); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.microcopy { color: #6b6861; font-size: .8rem; }

.site-header { position: relative; z-index: 100; border-bottom: 1px solid rgb(117 80 30 / 14%); background: rgb(251 250 246 / 92%); backdrop-filter: blur(16px); }
.header-inner { display: flex; min-height: 88px; align-items: center; justify-content: space-between; gap: 2rem; }
.wordmark { display: inline-flex; align-items: center; gap: .8rem; color: var(--ink); text-decoration: none; }
.wordmark-logo { display: grid; width: 104px; height: 52px; place-items: center; padding: .35rem .55rem; background: var(--white); }
.wordmark img { width: 90px; height: 40px; object-fit: contain; }
.wordmark > span:last-child { padding-left: .8rem; border-left: 1px solid var(--line); font-family: Georgia, serif; font-size: 1.1rem; }
.site-navigation { display: flex; align-items: center; gap: 2rem; }
.site-navigation a { position: relative; color: #45464b; font-size: .88rem; font-weight: 700; text-decoration: none; }
.site-navigation a:not(.header-login)::after { position: absolute; right: 0; bottom: -.5rem; left: 0; height: 2px; background: var(--gold); content: ""; transform: scaleX(0); transition: transform .2s ease; }
.site-navigation a:hover::after, .site-navigation a.is-current::after { transform: scaleX(1); }
.header-login { padding: .68rem 1rem; border: 1px solid var(--ink); border-radius: 999px; }
.header-login:hover { color: var(--white); background: var(--ink); }
.menu-button { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); }
.menu-button > span:last-child, .menu-button > span:last-child::before, .menu-button > span:last-child::after { display: block; width: 18px; height: 2px; margin: auto; background: var(--ink); content: ""; transition: .2s ease; }
.menu-button > span:last-child::before { transform: translateY(-6px); }
.menu-button > span:last-child::after { transform: translateY(4px); }

.hero { position: relative; overflow: hidden; padding: clamp(5rem, 10vw, 9rem) 0; background: radial-gradient(circle at 88% 18%, #ede0c8 0, transparent 30%), linear-gradient(135deg, var(--paper), var(--sand)); }
.hero::before { position: absolute; top: -15rem; left: -12rem; width: 34rem; height: 34rem; border: 1px solid rgb(181 130 54 / 18%); border-radius: 50%; content: ""; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr); align-items: center; gap: clamp(3rem, 8vw, 7rem); }
.hero-copy { max-width: 720px; }
.hero-copy h1 em { display: inline-block; }
.hero-lead { max-width: 670px; margin-bottom: 2rem; color: var(--ink-soft); font-size: clamp(1.05rem, 2vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; margin-bottom: 1.2rem; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: .75rem; padding: .85rem 1.25rem; border: 1px solid transparent; border-radius: 999px; font-size: .9rem; font-weight: 800; text-align: center; text-decoration: none; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: #303139; }
.button-light { border-color: var(--line); background: rgb(255 255 255 / 72%); }
.button-light:hover { border-color: var(--gold); background: var(--white); }
.button-gold { color: var(--ink); background: #d9aa5c; }
.button-gold:hover { background: #e7bd77; }
.button-outline-dark { color: var(--white); border-color: #6a6b71; background: transparent; }
.button-outline-dark:hover { border-color: var(--white); }
.quiet-link { color: var(--gold-dark); font-size: .9rem; font-weight: 800; }
.hero-points { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin: 1.5rem 0 0; padding: 0; color: #66645e; font-size: .78rem; font-weight: 700; list-style: none; }
.hero-points li::before { margin-right: .45rem; color: var(--gold); content: "✓"; }

.hero-stage { position: relative; min-height: 500px; }
.stage-glow { position: absolute; inset: 10% 2% 6% 10%; border-radius: 50%; background: rgb(181 130 54 / 15%); filter: blur(1px); }
.stage-card { position: absolute; display: flex; width: min(285px, 68%); min-height: 205px; flex-direction: column; padding: 1.5rem; border: 1px solid rgb(255 255 255 / 70%); border-radius: var(--radius); background: rgb(255 255 255 / 88%); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.stage-card strong { font-family: Georgia, serif; font-size: 1.6rem; font-weight: 500; }
.stage-card small { color: #6a6965; }
.stage-label { align-self: flex-start; margin-bottom: 1.5rem; padding: .28rem .55rem; border-radius: 999px; color: var(--gold-dark); background: var(--gold-pale); font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.stage-shop { top: 3%; left: 0; transform: rotate(-3deg); }
.stage-creator { right: 0; bottom: 9%; transform: rotate(3deg); }
.stage-row { display: flex; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); justify-content: space-between; }
.stage-row span { color: #6a6965; font-size: .8rem; }
.creator-avatar, .large-avatar { display: grid; width: 58px; height: 58px; margin-bottom: .7rem; place-items: center; border-radius: 50%; color: var(--white); background: var(--sage); font-weight: 800; }
.stage-link { position: absolute; z-index: 3; top: 44%; left: 47%; display: grid; width: 66px; height: 66px; place-items: center; border: 8px solid var(--sand); border-radius: 50%; color: var(--white); background: var(--gold-dark); font-size: 1.5rem; }
.stage-result { position: absolute; z-index: 4; right: 10%; bottom: 0; display: flex; padding: .8rem 1rem; align-items: center; gap: .7rem; border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: 0 12px 30px rgb(27 24 18 / 12%); }
.stage-result > span { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; color: var(--white); background: var(--sage); }
.stage-result strong, .stage-result small { display: block; }
.stage-result strong { font-size: .82rem; }
.stage-result small { color: #77746c; font-size: .68rem; }
.stage-disclaimer { position: absolute; right: 0; bottom: -2.2rem; margin: 0; color: #77746c; font-size: .65rem; }

.proof-strip { border-block: 1px solid var(--line); background: var(--white); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-grid p { display: flex; min-height: 96px; margin: 0; padding: 1rem 2rem; align-items: center; gap: .8rem; border-right: 1px solid var(--line); color: #4f504f; font-size: .84rem; font-weight: 700; }
.proof-grid p:last-child { border-right: 0; }
.proof-grid span { color: var(--gold-dark); font-family: Georgia, serif; }
.section { padding: clamp(5rem, 10vw, 9rem) 0; }
.section-heading { margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.narrow { max-width: 800px; }
.section-heading > p:last-child { max-width: 680px; margin-inline: auto; color: var(--ink-soft); }
.audience-section { background: var(--paper); }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.audience-card { position: relative; min-height: 500px; padding: clamp(2rem, 5vw, 4rem); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); }
.audience-card::after { position: absolute; right: -6rem; bottom: -8rem; width: 20rem; height: 20rem; border: 1px solid rgb(117 80 30 / 14%); border-radius: 50%; content: ""; }
.audience-shop-card { background: var(--sand); }
.audience-creator-card { background: var(--lilac-pale); }
.audience-card h3 { max-width: 480px; font-size: clamp(2rem, 3.2vw, 3rem); }
.audience-card > p:not(.eyebrow) { max-width: 520px; color: var(--ink-soft); }
.audience-number { position: absolute; top: 2rem; right: 2rem; color: rgb(23 24 29 / 18%); font-family: Georgia, serif; font-size: 3rem; }
.check-list { display: grid; gap: .6rem; margin: 1.8rem 0; padding: 0; list-style: none; }
.check-list li { color: #414249; }
.check-list li::before { display: inline-grid; width: 22px; height: 22px; margin-right: .65rem; place-items: center; border-radius: 50%; color: var(--white); background: var(--sage); content: "✓"; font-size: .7rem; }
.text-cta { position: relative; z-index: 1; display: inline-flex; margin-top: 1rem; gap: .6rem; color: var(--gold-dark); font-weight: 800; text-decoration: none; }
.text-cta:hover span { transform: translateX(4px); }
.process-section { color: var(--white); background: var(--ink); }
.process-section .eyebrow { color: #e1b66f; }
.split-heading { display: grid; margin-bottom: 4rem; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 4rem; }
.split-heading > p { max-width: 520px; color: #77766f; }
.process-section .split-heading > p { color: #babac0; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #3b3c43; }
.process-grid article { padding: 2rem 2rem 1rem 0; border-right: 1px solid #3b3c43; }
.process-grid article + article { padding-left: 2rem; }
.process-grid article:last-child { border-right: 0; }
.process-grid span { display: block; margin-bottom: 3rem; color: #e1b66f; font-family: Georgia, serif; }
.process-grid p { color: #b8b9bf; }
.final-cta { color: var(--white); background: linear-gradient(120deg, #26272d, #17181d); text-align: center; }
.final-cta-inner { display: grid; place-items: center; }
.final-cta h2 { max-width: 850px; }
.final-cta p:not(.eyebrow) { max-width: 620px; color: #c5c5c8; }
.final-cta .eyebrow { color: #e1b66f; }

/* Funnel previews */
.funnel-hero h1 { font-size: clamp(3rem, 5.8vw, 5.5rem); }
.dashboard-preview, .creator-profile-preview { position: relative; padding: 1.4rem; border: 1px solid rgb(255 255 255 / 80%); border-radius: 24px; background: rgb(255 255 255 / 91%); box-shadow: var(--shadow); transform: rotate(1.5deg); }
.preview-top { display: flex; padding-bottom: 1rem; justify-content: space-between; border-bottom: 1px solid var(--line); color: #77756e; font-size: .72rem; }
.preview-top b { color: var(--ink); }
.preview-title { position: relative; padding: 1.6rem 0 .8rem; }
.preview-title small, .preview-title strong { display: block; }
.preview-title small { color: #77756e; }
.preview-title strong { font-family: Georgia, serif; font-size: 2.5rem; font-weight: 500; }
.preview-title span { position: absolute; right: 0; bottom: 1.2rem; padding: .25rem .5rem; border-radius: 999px; color: var(--sage); background: var(--sage-pale); font-size: .7rem; font-weight: 800; }
.preview-chart { display: flex; height: 140px; padding: 1rem 0; align-items: end; gap: .55rem; border-bottom: 1px solid var(--line); }
.preview-chart i { width: 100%; height: var(--h); border-radius: 5px 5px 0 0; background: linear-gradient(var(--gold), #dfbd82); }
.preview-list > div { display: flex; padding: .85rem 0; align-items: center; gap: .7rem; border-bottom: 1px solid #ebe7de; }
.preview-avatar { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: var(--white); background: var(--sage); font-size: .68rem; font-weight: 800; }
.preview-list p { flex: 1; margin: 0; }
.preview-list strong, .preview-list small { display: block; }
.preview-list strong, .preview-list b { font-size: .78rem; }
.preview-list small { color: #77756e; font-size: .65rem; }
.preview-note { margin: .8rem 0 0; color: #8a877f; font-size: .62rem; text-align: center; }
.problem-section { background: var(--paper); }
.problem-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 9vw, 8rem); }
.problem-list { display: grid; }
.problem-list article { display: flex; padding: 1.6rem 0; gap: 1.4rem; border-bottom: 1px solid var(--line); }
.problem-list article:first-child { padding-top: 0; }
.problem-list span { color: var(--gold-dark); font-family: Georgia, serif; }
.problem-list p { margin-bottom: 0; color: var(--ink-soft); }
.feature-section { background: var(--sand); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.feature-grid article { min-height: 290px; padding: 2rem; border: 1px solid #d6cbb9; border-radius: 16px; background: rgb(255 255 255 / 52%); }
.feature-grid p { color: var(--ink-soft); }
.feature-icon { display: grid; width: 46px; height: 46px; margin-bottom: 2rem; place-items: center; border-radius: 50%; color: var(--white); background: var(--ink); }
.compensation-section { color: var(--white); background: var(--sage); }
.compensation-section .eyebrow { color: #e9c98e; }
.compensation-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 9vw, 8rem); }
.compensation-grid > div:first-child > p:last-child { color: #d1ddd6; }
.compensation-stack article { display: flex; padding: 1.3rem 0; gap: 1.2rem; border-bottom: 1px solid rgb(255 255 255 / 20%); }
.compensation-stack span { display: grid; width: 40px; height: 40px; flex: 0 0 auto; place-items: center; border: 1px solid rgb(255 255 255 / 35%); border-radius: 50%; }
.compensation-stack p { margin: 0; color: #d1ddd6; }
.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 9vw, 8rem); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 1.4rem 2.5rem 1.4rem 0; cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { float: right; margin-right: -2rem; color: var(--gold-dark); content: "+"; font-size: 1.25rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding-right: 2rem; color: var(--ink-soft); }

/* Creator funnel */
.theme-creator em, .theme-creator .eyebrow, .theme-creator .quiet-link { color: var(--lilac); }
.creator-hero { background: radial-gradient(circle at 85% 15%, #ded4ec 0, transparent 32%), linear-gradient(135deg, var(--paper), var(--lilac-pale)); }
.creator-profile-preview { transform: rotate(-1.5deg); }
.profile-cover { height: 105px; margin: -1.4rem -1.4rem 0; border-radius: 24px 24px 0 0; background: linear-gradient(125deg, var(--lilac), #ad94b6 60%, #dccb9d); }
.profile-head { display: flex; margin-top: -28px; align-items: end; gap: .8rem; }
.profile-head .large-avatar { width: 68px; height: 68px; margin: 0; border: 5px solid var(--white); background: var(--lilac); }
.profile-head > div { flex: 1; padding-bottom: .3rem; }
.profile-head strong, .profile-head small { display: block; }
.profile-head strong { font-family: Georgia, serif; font-size: 1.25rem; }
.profile-head small { color: #77756e; }
.verified { margin-bottom: .45rem; padding: .25rem .5rem; border-radius: 999px; color: var(--lilac); background: var(--lilac-pale); font-size: .65rem; font-weight: 800; }
.profile-topics { display: flex; gap: .4rem; margin: 1.2rem 0; }
.profile-topics span { padding: .3rem .55rem; border: 1px solid var(--line); border-radius: 999px; font-size: .65rem; }
.profile-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.profile-stats div { padding: 1rem; text-align: center; }
.profile-stats div + div { border-left: 1px solid var(--line); }
.profile-stats strong, .profile-stats small { display: block; }
.profile-stats strong { font-family: Georgia, serif; font-size: 1.4rem; }
.profile-stats small { color: #77756e; font-size: .65rem; }
.profile-offer { margin-top: 1rem; padding: 1rem; border-radius: 12px; background: var(--lilac-pale); }
.profile-offer span, .profile-offer strong, .profile-offer small { display: block; }
.profile-offer span { color: var(--lilac); font-size: .62rem; font-weight: 800; text-transform: uppercase; }
.profile-offer strong { font-family: Georgia, serif; }
.profile-offer small { color: #65616a; }
.benefit-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.benefit-cards article { padding: 2rem; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.benefit-cards span { display: block; margin-bottom: 3rem; color: var(--lilac); font-family: Georgia, serif; }
.benefit-cards p { color: var(--ink-soft); }
.channel-section { background: var(--lilac-pale); }
.channel-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(3rem, 9vw, 8rem); }
.channel-board { padding: 2rem; border: 1px solid #d4cade; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.channel-main { display: flex; align-items: center; gap: 1rem; }
.channel-main .large-avatar { margin: 0; background: var(--lilac); }
.channel-main strong, .channel-main small { display: block; }
.channel-main small { color: #77756e; }
.channel-lines { display: flex; height: 54px; justify-content: space-around; }
.channel-lines span { width: 1px; height: 100%; background: #d4cade; }
.channel-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
.channel-items article { display: flex; padding: .8rem; align-items: center; gap: .6rem; border: 1px solid #ded5e5; border-radius: 10px; }
.channel-items b { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 8px; color: var(--white); background: var(--lilac); font-size: .65rem; }
.channel-items span, .channel-items small { display: block; }
.channel-items span { font-size: .7rem; font-weight: 800; }
.channel-items small { color: #77756e; font-size: .58rem; font-weight: 400; }
.journey-section { color: var(--white); background: var(--lilac); }
.journey-section .eyebrow { color: #e2d7ed; }
.journey-line { display: grid; grid-template-columns: repeat(4, 1fr); }
.journey-line article { padding: 0 1.4rem; border-left: 1px solid rgb(255 255 255 / 24%); }
.journey-line span { display: grid; width: 38px; height: 38px; margin-bottom: 3rem; place-items: center; border: 1px solid rgb(255 255 255 / 50%); border-radius: 50%; }
.journey-line p { color: #e3ddea; }
.creator-extra-section { background: var(--paper); }
.extra-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.extra-grid article { padding: 2rem; border-top: 3px solid var(--lilac); background: var(--white); box-shadow: 0 8px 30px rgb(55 43 70 / 7%); }
.extra-grid p:last-child { color: var(--ink-soft); }

.pilot-section { display: grid; min-height: calc(100vh - 88px); padding: 5rem 0; place-items: center; background: radial-gradient(circle at 80% 15%, var(--gold-pale), transparent 35%), var(--sand); }
.pilot-card { max-width: 780px; padding: clamp(2rem, 6vw, 5rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); text-align: center; }
.pilot-card h1 { font-size: clamp(2.6rem, 6vw, 4.7rem); }
.pilot-card > p:not(.eyebrow, .microcopy) { color: var(--ink-soft); font-size: 1.08rem; }
.pilot-actions { display: flex; margin: 2rem 0 1rem; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1rem; }

.site-footer { padding: 4rem 0 1.5rem; border-top: 1px solid #303138; color: #c8c8cc; background: #1b1c21; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 3rem; }
.footer-wordmark { margin-bottom: 1rem; color: var(--white); }
.footer-grid > div:first-child p { max-width: 420px; color: #9f9fa5; }
.footer-grid h2 { margin-bottom: 1rem; color: var(--white); font-family: "Segoe UI", Arial, sans-serif; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) a { display: block; margin-bottom: .65rem; color: #c8c8cc; font-size: .85rem; text-decoration: none; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; margin-top: 3rem; padding-top: 1.5rem; justify-content: space-between; border-top: 1px solid #303138; color: #7d7e84; font-size: .7rem; }

/* Legal pages */
.legal-hero { padding: clamp(4.5rem, 9vw, 7.5rem) 0; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 84% 10%, var(--gold-pale), transparent 34%), var(--sand); }
.legal-shell { max-width: 860px; }
.legal-hero h1 { margin-bottom: 1rem; font-size: clamp(3rem, 7vw, 5.5rem); overflow-wrap: anywhere; }
.legal-lead { max-width: 760px; margin-bottom: 0; color: var(--ink-soft); font-size: clamp(1rem, 2vw, 1.2rem); }
.legal-content { padding: clamp(3.5rem, 8vw, 7rem) 0; background: var(--paper); }
.legal-stack { display: grid; gap: 0; }
.legal-stack article { padding: 2.25rem 0; border-bottom: 1px solid var(--line); }
.legal-stack article:first-of-type { padding-top: 0; }
.legal-stack article:last-child { border-bottom: 0; }
.legal-stack h2 { margin-bottom: 1rem; font-size: clamp(1.65rem, 3vw, 2.25rem); }
.legal-stack p, .legal-stack li, .legal-stack address, .legal-stack dd { color: var(--ink-soft); }
.legal-stack address { font-style: normal; }
.legal-stack a { color: var(--gold-dark); }
.legal-stack ul { padding-left: 1.25rem; }
.legal-stack li + li { margin-top: .55rem; }
.legal-facts { display: grid; margin: 0; gap: 0; }
.legal-facts div { display: grid; padding: .7rem 0; grid-template-columns: minmax(210px, .8fr) 1.2fr; gap: 1.5rem; border-bottom: 1px solid #ebe5d9; }
.legal-facts div:last-child { border-bottom: 0; }
.legal-facts dt { font-weight: 800; }
.legal-facts dd { margin: 0; }
.legal-note, .legal-status { padding: 1.25rem 1.4rem; border-left: 4px solid var(--sage); background: var(--sage-pale); }
.legal-status { margin-bottom: 3rem; }
.legal-status strong { display: block; margin-bottom: .35rem; }
.legal-status p { margin: 0; color: #354b40; }
.legal-status-warning { border-left-color: var(--gold); background: var(--gold-pale); }
.legal-status-warning p { color: #5d4728; }

@media (max-width: 900px) {
    .menu-button { display: block; }
    .site-navigation { position: fixed; inset: 88px 0 auto; display: grid; padding: 1.5rem 1rem 2rem; gap: .3rem; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: 0 20px 40px rgb(23 24 29 / 12%); transform: translateY(-130%); transition: transform .25s ease; }
    .site-navigation.is-open { transform: none; }
    .site-navigation a { padding: .9rem 1rem; }
    .header-login { margin-top: .6rem; text-align: center; }
    .hero-grid, .problem-grid, .compensation-grid, .faq-grid, .channel-grid { grid-template-columns: 1fr; }
    .hero-grid { gap: 4rem; }
    .hero-stage { min-height: 450px; }
    .dashboard-preview, .creator-profile-preview { width: min(560px, 100%); margin-inline: auto; }
    .proof-grid, .audience-grid, .process-grid, .feature-grid, .benefit-cards, .extra-grid { grid-template-columns: 1fr; }
    .proof-grid p { min-height: 70px; border-right: 0; border-bottom: 1px solid var(--line); }
    .proof-grid p:last-child { border-bottom: 0; }
    .audience-card { min-height: auto; }
    .split-heading { grid-template-columns: 1fr; gap: 1rem; }
    .process-grid article, .process-grid article + article { padding: 2rem 0; border-right: 0; border-bottom: 1px solid #3b3c43; }
    .process-grid article:last-child { border-bottom: 0; }
    .process-grid span { margin-bottom: 1.5rem; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .journey-line { grid-template-columns: 1fr 1fr; gap: 2.5rem 0; }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
    h1 { font-size: clamp(2.65rem, 14vw, 4rem); }
    .header-inner { min-height: 76px; }
    .site-navigation { inset-block-start: 76px; }
    .wordmark-logo { width: 92px; }
    .hero { padding: 4.5rem 0; }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .hero-stage { min-height: 390px; }
    .stage-card { width: 72%; min-height: 175px; padding: 1.1rem; }
    .stage-link { width: 56px; height: 56px; }
    .stage-result { right: 0; }
    .feature-grid, .journey-line, .channel-items, .footer-grid { grid-template-columns: 1fr; }
    .journey-line article { padding: 0 0 2rem; border-left: 0; border-bottom: 1px solid rgb(255 255 255 / 24%); }
    .channel-lines { display: none; }
    .channel-items { margin-top: 1rem; }
    .footer-grid > div:first-child { grid-column: auto; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: .4rem; }
    .legal-facts div { grid-template-columns: 1fr; gap: .1rem; }
}

@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; }
}
