:root {
    --bg: #FFF7FB;
    --surface: #FFFFFF;
    --surface-pink: #FFF0F6;
    --surface-purple: #F6F1FF;
    --text: #514451;
    --heading: #332631;
    --muted: #807080;
    --brand: #FF629F;
    --brand-deep: #E94D8E;
    --peach: #FF9BBC;
    --purple: #936BFF;
    --border: rgba(255, 98, 159, 0.16);
    --border-strong: rgba(255, 98, 159, 0.28);
    --footer: #30232D;
    --footer-text: #FFEAF3;
    --shadow: 0 18px 48px rgba(87, 49, 73, 0.10);
    --shadow-soft: 0 10px 30px rgba(87, 49, 73, 0.07);
    --gradient: linear-gradient(135deg, #FF9BBC 0%, #FF629F 50%, #936BFF 100%);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: min(1220px, calc(100% - 48px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.drawer-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    pointer-events: auto;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: 10px;
    z-index: 3000;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--heading);
    color: #fff;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid rgba(255, 98, 159, 0.10);
    background: rgba(255, 247, 251, 0.88);
    box-shadow: 0 8px 28px rgba(74, 46, 65, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.nav-shell {
    width: var(--container);
    min-height: 76px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    white-space: nowrap;
}

.brand-mark img,
.drawer-brand img,
.footer-brand img {
    object-fit: contain;
}

.brand-text,
.footer-logo-text {
    display: inline-block;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.04em;
    color: var(--brand-deep);
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 0;
    white-space: nowrap;
}

.desktop-nav a {
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    color: #675866;
    font-size: 15px;
    font-weight: 700;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    color: var(--brand-deep);
    background: var(--surface-pink);
}

.desktop-nav a:active {
    transform: translateY(1px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav-start {
    display: none;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: var(--gradient);
    box-shadow: 0 12px 28px rgba(233, 77, 142, .22);
    color: #fff;
    font-weight: 800;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(233, 77, 142, .28);
    filter: saturate(1.04);
}

.button:active {
    transform: translateY(0);
}

.button-small {
    min-height: 44px;
    padding: 0 18px;
    font-size: 14px;
}

.button-secondary {
    background: #fff;
    color: var(--brand-deep);
    border: 1px solid var(--border-strong);
    box-shadow: none;
}

.button-secondary:hover {
    background: var(--surface-pink);
    box-shadow: var(--shadow-soft);
}

.text-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    gap: 8px;
    color: var(--brand-deep);
    font-weight: 800;
}

.text-link::after {
    content: "→";
    transition: transform .2s ease;
}

.text-link:hover::after {
    transform: translateX(4px);
}

.icon-button,
.drawer-close {
    width: 46px;
    height: 46px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    color: var(--heading);
    box-shadow: 0 6px 20px rgba(81, 68, 81, .07);
}

.icon-button span {
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    pointer-events: none;
}

.icon-button:hover,
.drawer-close:hover {
    border-color: var(--border-strong);
    background: var(--surface-pink);
    color: var(--brand-deep);
}

:focus-visible {
    outline: 3px solid rgba(147, 107, 255, .35);
    outline-offset: 3px;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 1990;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: rgba(37, 24, 34, .42);
    transition: opacity .25s ease, visibility .25s ease;
}

.drawer-overlay.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.site-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    width: min(410px, 88vw);
    padding: 22px;
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateX(104%);
    background: #fff;
    box-shadow: -22px 0 60px rgba(48, 35, 45, .18);
    transition: transform .28s ease, opacity .25s ease, visibility .25s ease;
}

.site-drawer.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.drawer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.drawer-brand small {
    color: var(--muted);
}

.drawer-close {
    flex: 0 0 auto;
    font-size: 27px;
    line-height: 1;
}

.drawer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 18px 0;
}

.drawer-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 13px;
    border: 1px solid transparent;
    border-radius: 14px;
    background: #FFF9FC;
    color: #5f505e;
    font-weight: 700;
}

.drawer-links a:hover,
.drawer-links a.is-active {
    border-color: var(--border);
    background: var(--surface-pink);
    color: var(--brand-deep);
}

.drawer-note {
    padding: 18px;
    border-radius: 18px;
    background: var(--surface-purple);
}

.drawer-note strong {
    color: var(--heading);
}

.drawer-note p {
    margin: 7px 0 0;
    color: #706273;
    font-size: 14px;
}

main {
    display: block;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.section {
    position: relative;
    padding: 86px 0;
}

.section-tight {
    padding: 62px 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255, 240, 246, .72), rgba(255, 247, 251, .25));
}

.section-purple {
    background: var(--surface-purple);
}

.section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-head.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.eyebrow,
.kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 3px 12px;
    border-radius: 999px;
    background: var(--surface-pink);
    color: var(--brand-deep);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .06em;
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
    color: var(--heading);
    line-height: 1.25;
    letter-spacing: -.025em;
}

h1 {
    margin-bottom: 22px;
    font-size: clamp(42px, 6vw, 78px);
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(30px, 4vw, 48px);
}

h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

p {
    margin-top: 0;
}

.lead {
    max-width: 820px;
    font-size: clamp(18px, 2vw, 22px);
    color: #675866;
}

.muted {
    color: var(--muted);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 76px;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.hero::before {
    width: 460px;
    height: 460px;
    top: -210px;
    right: -100px;
    background: radial-gradient(circle, rgba(255, 155, 188, .34), rgba(255, 155, 188, 0) 68%);
}

.hero::after {
    width: 380px;
    height: 380px;
    left: -180px;
    bottom: -190px;
    background: radial-gradient(circle, rgba(147, 107, 255, .18), rgba(147, 107, 255, 0) 70%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
    align-items: center;
    gap: clamp(40px, 7vw, 88px);
}

.hero-copy {
    max-width: 760px;
}

.hero-copy .eyebrow {
    margin-bottom: 20px;
}

.hero-title-sub {
    display: block;
    margin-top: 12px;
    font-size: clamp(26px, 4vw, 46px);
    color: #6c5668;
}

.hero-actions,
.action-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.feature-pills li {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 4px 13px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    color: #6f5d6d;
    font-size: 14px;
    font-weight: 700;
}

.hero-visual {
    position: relative;
    min-height: 440px;
    display: grid;
    place-items: center;
}

.hero-image-wrap {
    width: min(100%, 430px);
    padding: 16px;
    border: 1px solid rgba(255, 98, 159, .16);
    border-radius: 34px;
    background: rgba(255, 255, 255, .72);
    box-shadow: var(--shadow);
}

.hero-image-wrap img {
    width: 100%;
    max-height: 470px;
    object-fit: contain;
    border-radius: 24px;
}

.hero-card-stack {
    position: relative;
    width: min(100%, 420px);
    min-height: 410px;
}

.float-card {
    position: absolute;
    width: min(310px, 78%);
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--shadow-soft);
}

.float-card:nth-child(1) {
    top: 10px;
    left: 0;
    transform: rotate(-3deg);
}

.float-card:nth-child(2) {
    top: 132px;
    right: 0;
    background: var(--surface-pink);
    transform: rotate(3deg);
}

.float-card:nth-child(3) {
    left: 42px;
    bottom: 12px;
    background: var(--surface-purple);
    transform: rotate(-1deg);
}

.float-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--heading);
    font-size: 19px;
}

.float-card p {
    margin: 0;
    color: #766675;
    font-size: 14px;
}

.grid-2,
.grid-3,
.grid-4,
.grid-5 {
    display: grid;
    gap: 22px;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card {
    position: relative;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.card.soft-pink {
    background: var(--surface-pink);
}

.card.soft-purple {
    background: var(--surface-purple);
}

.card p:last-child,
.card ul:last-child {
    margin-bottom: 0;
}

.card-number {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 14px;
    background: var(--gradient);
    color: #fff;
    font-weight: 900;
}

.mini-card {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, .9);
}

.mini-card h3 {
    font-size: 19px;
}

.mini-card .text-link {
    margin-top: 8px;
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.channel-card {
    min-height: 178px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.channel-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-soft);
}

.channel-card h3 {
    font-size: 18px;
}

.channel-card p {
    flex: 1;
    color: var(--muted);
    font-size: 14px;
}

.channel-card .text-link {
    min-height: 36px;
    font-size: 14px;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: 1.3fr .85fr .85fr;
    grid-auto-rows: minmax(160px, auto);
    gap: 18px;
}

.mosaic-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 190px;
    padding: 26px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: #fff;
}

.mosaic-card.large {
    grid-row: span 2;
    min-height: 400px;
    background: linear-gradient(155deg, #fff 0%, #FFF0F6 100%);
}

.mosaic-card:nth-child(3n) {
    background: var(--surface-purple);
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 0;
}

.tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 2px 10px;
    border-radius: 999px;
    background: rgba(255, 98, 159, .10);
    color: var(--brand-deep);
    font-size: 12px;
    font-weight: 800;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
    align-items: center;
    gap: clamp(38px, 7vw, 84px);
}

.split.reverse {
    grid-template-columns: minmax(320px, .82fr) minmax(0, 1fr);
}

.split-media {
    min-height: 360px;
    display: grid;
    place-items: center;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: linear-gradient(145deg, #fff, var(--surface-pink));
    box-shadow: var(--shadow-soft);
}

.split-media img {
    width: 100%;
    max-height: 440px;
    object-fit: contain;
}

.visual-placeholder {
    width: 100%;
    min-height: 300px;
    display: grid;
    place-items: center;
    padding: 30px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 98, 159, .22), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(147, 107, 255, .18), transparent 34%),
        linear-gradient(145deg, #fff, #FFF0F6);
    color: var(--heading);
    text-align: center;
}

.visual-placeholder span {
    display: block;
    max-width: 270px;
    font-size: 24px;
    font-weight: 900;
}

.check-list,
.plain-list,
.timeline,
.steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list {
    display: grid;
    gap: 12px;
}

.check-list li {
    position: relative;
    padding-left: 30px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 98, 159, .12);
    color: var(--brand-deep);
    font-size: 13px;
    font-weight: 900;
}

.plain-list {
    display: grid;
    gap: 10px;
}

.plain-list li {
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
}

.plain-list li:last-child {
    border-bottom: 0;
}

.steps {
    counter-reset: step;
    display: grid;
    gap: 18px;
}

.steps li {
    counter-increment: step;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: start;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
}

.steps li::before {
    content: counter(step, decimal-leading-zero);
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--gradient);
    color: #fff;
    font-weight: 900;
}

.steps h3 {
    margin-bottom: 6px;
    font-size: 19px;
}

.steps p {
    margin: 0;
}

.timeline {
    position: relative;
    display: grid;
    gap: 22px;
    padding-left: 24px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(var(--peach), var(--purple));
}

.timeline li {
    position: relative;
    padding: 0 0 0 22px;
}

.timeline li::before {
    content: "";
    position: absolute;
    left: -25px;
    top: 8px;
    width: 12px;
    height: 12px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 2px rgba(255, 98, 159, .22);
}

.timeline h3 {
    font-size: 19px;
    margin-bottom: 5px;
}

.notice {
    padding: 22px 24px;
    border: 1px solid rgba(147, 107, 255, .18);
    border-left: 4px solid var(--purple);
    border-radius: 16px;
    background: var(--surface-purple);
}

.notice strong {
    display: block;
    margin-bottom: 6px;
    color: var(--heading);
}

.notice p:last-child {
    margin-bottom: 0;
}

.warning-soft {
    border-left-color: var(--brand-deep);
    background: var(--surface-pink);
}

.quote-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
}

.quote-card p {
    margin-bottom: 14px;
}

.quote-card span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-list details {
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(87, 49, 73, .05);
}

.faq-list summary {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    color: var(--heading);
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--surface-pink);
    color: var(--brand-deep);
    font-size: 20px;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 20px 20px;
    color: #6f606e;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.stat-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, .88);
}

.stat-item {
    padding: 16px;
    text-align: center;
}

.stat-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--heading);
    font-size: 20px;
}

.info-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: linear-gradient(135deg, #FFF0F6, #F6F1FF);
}

.info-band h2,
.info-band h3,
.info-band p {
    margin-bottom: 6px;
}

.cta-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(32px, 5vw, 58px);
    border-radius: 32px;
    background: linear-gradient(135deg, #3c2b37, #5b4057);
    color: #FFEAF3;
    box-shadow: var(--shadow);
}

.cta-panel::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -80px;
    bottom: -150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 155, 188, .32), transparent 68%);
    pointer-events: none;
}

.cta-panel h2,
.cta-panel h3 {
    color: #fff;
}

.cta-panel p {
    max-width: 740px;
    color: rgba(255, 234, 243, .82);
}

.cta-panel .button-secondary {
    border-color: rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .10);
    color: #fff;
}

.inner-hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0 64px;
    background: linear-gradient(155deg, rgba(255, 240, 246, .92), rgba(246, 241, 255, .74));
}

.inner-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -160px;
    top: -210px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 98, 159, .20), transparent 68%);
    pointer-events: none;
}

.inner-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .65fr);
    align-items: center;
    gap: 50px;
}

.inner-hero h1 {
    font-size: clamp(40px, 5vw, 64px);
}

.inner-hero p {
    max-width: 780px;
    font-size: 18px;
}

.inner-hero-side {
    padding: 24px;
    border: 1px solid rgba(255, 98, 159, .15);
    border-radius: 26px;
    background: rgba(255, 255, 255, .78);
    box-shadow: var(--shadow-soft);
}

.inner-hero-side h2 {
    font-size: 22px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: #806d7c;
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--brand-deep);
    font-weight: 700;
}

.article-prose {
    max-width: 860px;
}

.article-prose h2 {
    margin-top: 44px;
    font-size: 32px;
}

.article-prose h3 {
    margin-top: 28px;
}

.article-prose p {
    margin-bottom: 18px;
}

.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.related-links a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    color: var(--brand-deep);
    font-size: 14px;
    font-weight: 800;
}

.related-links a:hover {
    background: var(--surface-pink);
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
}

.content-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
}

.content-table th,
.content-table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.content-table th {
    background: var(--surface-pink);
    color: var(--heading);
}

.content-table tr:last-child td {
    border-bottom: 0;
}

.site-footer {
    margin-top: 40px;
    padding: 70px 0 26px;
    background: var(--footer);
    color: var(--footer-text);
}

.footer-shell {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr repeat(4, minmax(120px, 1fr));
    gap: 34px;
}

.footer-brand p {
    max-width: 340px;
    margin-top: 18px;
    color: rgba(255, 234, 243, .72);
}

.footer-logo-text {
    color: #fff;
}

.footer-column h2 {
    margin-bottom: 16px;
    color: #fff;
    font-size: 16px;
}

.footer-column a {
    min-height: 36px;
    display: flex;
    align-items: center;
    color: rgba(255, 234, 243, .72);
    font-size: 14px;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    width: var(--container);
    margin: 42px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    display: flex;
    justify-content: space-between;
    gap: 28px;
    color: rgba(255, 234, 243, .62);
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}

.mobile-bottom-nav {
    display: none;
}

@media (max-width: 1080px) {
    :root {
        --container: min(100% - 36px, 1000px);
    }

    .nav-shell {
        gap: 16px;
    }

    .desktop-nav a {
        padding: 0 9px;
        font-size: 14px;
    }

    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid-5,
    .channel-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-shell {
        grid-template-columns: 1.3fr repeat(2, 1fr);
    }

    .footer-brand {
        grid-row: span 2;
    }
}

@media (max-width: 860px) {
    :root {
        --container: min(100% - 30px, 760px);
    }

    .site-header {
        position: sticky;
    }

    .nav-shell {
        min-height: 68px;
        grid-template-columns: 48px 1fr auto;
        gap: 10px;
    }

    .mobile-nav-start {
        display: block;
    }

    .brand-mark {
        justify-self: center;
    }

    .brand-mark img {
        max-width: 130px;
        max-height: 38px;
    }

    .brand-text {
        font-size: 22px;
    }

    .desktop-nav,
    .desktop-menu {
        display: none;
    }

    .nav-actions {
        justify-self: end;
    }

    .nav-actions .button {
        min-height: 44px;
        padding: 0 15px;
        font-size: 13px;
    }

    .hero {
        padding: 62px 0;
    }

    .hero-grid,
    .inner-hero-grid,
    .split,
    .split.reverse {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 380px;
    }

    .inner-hero {
        padding: 58px 0 48px;
    }

    .inner-hero-side {
        max-width: 620px;
    }

    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mosaic-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mosaic-card.large {
        grid-column: span 2;
        grid-row: auto;
        min-height: 260px;
    }

    .channel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-shell {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: span 2;
        grid-row: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .info-band {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    :root {
        --container: calc(100% - 24px);
    }

    body {
        padding-bottom: calc(76px + env(safe-area-inset-bottom));
    }

    .section {
        padding: 62px 0;
    }

    .section-tight {
        padding: 46px 0;
    }

    h1 {
        font-size: clamp(38px, 13vw, 58px);
    }

    h2 {
        font-size: 31px;
    }

    .lead {
        font-size: 17px;
    }

    .hero {
        padding-top: 48px;
    }

    .hero-grid {
        gap: 34px;
    }

    .hero-title-sub {
        font-size: 28px;
    }

    .hero-actions,
    .action-row {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button,
    .hero-actions .text-link,
    .action-row .button,
    .action-row .text-link {
        width: 100%;
        justify-content: center;
    }

    .hero-visual {
        min-height: 340px;
    }

    .hero-card-stack {
        min-height: 340px;
    }

    .float-card {
        padding: 18px;
    }

    .float-card:nth-child(2) {
        top: 108px;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5,
    .channel-grid,
    .mosaic-grid,
    .stat-strip {
        grid-template-columns: 1fr;
    }

    .mosaic-card.large {
        grid-column: auto;
    }

    .card,
    .mosaic-card,
    .cta-panel {
        padding: 22px;
        border-radius: 22px;
    }

    .channel-card {
        min-height: 150px;
    }

    .split-media,
    .visual-placeholder {
        min-height: 260px;
    }

    .steps li {
        grid-template-columns: 44px 1fr;
        padding: 18px;
    }

    .steps li::before {
        width: 42px;
        height: 42px;
    }

    .drawer-links {
        grid-template-columns: 1fr;
    }

    .site-drawer {
        width: min(88vw, 360px);
        padding: 18px;
    }

    .footer-shell {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .site-footer {
        padding-top: 54px;
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 980;
        min-height: 68px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
        border-top: 1px solid var(--border);
        background: rgba(255, 255, 255, .95);
        box-shadow: 0 -10px 30px rgba(68, 43, 60, .09);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .mobile-bottom-nav a {
        min-height: 52px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        border-radius: 14px;
        color: #796b78;
        font-size: 12px;
        font-weight: 800;
    }

    .mobile-bottom-nav a.is-active {
        background: var(--surface-pink);
        color: var(--brand-deep);
    }

    .nav-dot {
        width: 18px;
        height: 18px;
        display: block;
        border: 2px solid currentColor;
        border-radius: 7px;
        pointer-events: none;
    }
}

@media (max-width: 390px) {
    .nav-shell {
        width: calc(100% - 16px);
    }

    .nav-actions .button {
        padding: 0 12px;
        font-size: 12px;
    }

    .brand-text {
        font-size: 20px;
    }

    .footer-shell {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
