:root {
    --bg: #FFF7FB;
    --white: #FFFFFF;
    --pink-soft: #FFF0F6;
    --purple-soft: #F6F1FF;
    --title: #332631;
    --text: #514451;
    --muted: #807080;
    --brand: #FF629F;
    --brand-deep: #E94D8E;
    --peach: #FF9BBC;
    --purple: #936BFF;
    --line: rgba(255, 98, 159, 0.16);
    --footer: #30232D;
    --footer-text: #FFEAF3;
    --shadow: 0 18px 50px rgba(117, 66, 103, 0.10);
    --shadow-soft: 0 10px 28px rgba(117, 66, 103, 0.08);
    --radius-lg: 30px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --max: 1220px;
    --gradient: linear-gradient(135deg, #FF9BBC 0%, #FF629F 50%, #936BFF 100%);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 8%, rgba(255, 155, 188, 0.18), transparent 28rem),
        radial-gradient(circle at 95% 16%, rgba(147, 107, 255, 0.10), transparent 26rem),
        var(--bg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.75;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.drawer-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

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

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

button {
    font: inherit;
}

p,
h1,
h2,
h3,
h4 {
    margin-top: 0;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 247, 251, 0.88);
    box-shadow: 0 8px 28px rgba(72, 38, 64, 0.06);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.header-inner {
    width: min(calc(100% - 40px), 1260px);
    min-height: 76px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
}

.brand-link,
.drawer-brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    flex: 0 0 auto;
}

.brand-logo,
.drawer-logo,
.footer-logo {
    width: auto;
    height: 42px;
    object-fit: contain;
}

.brand-wordmark {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--title);
}

.brand-wordmark::before {
    content: "";
    width: 34px;
    height: 34px;
    margin-right: 10px;
    border-radius: 12px 16px 10px 18px;
    background: var(--gradient);
    box-shadow: 0 9px 20px rgba(255, 98, 159, 0.25);
    pointer-events: none;
}

.desktop-nav {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2vw, 30px);
    white-space: nowrap;
}

.desktop-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 2px;
    color: #5F5060;
    font-size: 0.96rem;
    font-weight: 700;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 5px;
    height: 3px;
    border-radius: 999px;
    background: var(--gradient);
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity .2s ease, transform .2s ease;
    pointer-events: none;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-active {
    color: var(--brand-deep);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    white-space: nowrap;
}

.header-cta,
.primary-button,
.secondary-button,
.text-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.header-cta,
.primary-button {
    color: #fff;
    background: var(--gradient);
    box-shadow: 0 10px 24px rgba(233, 77, 142, 0.22);
}

.header-cta:hover,
.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(233, 77, 142, 0.28);
}

.secondary-button {
    color: var(--brand-deep);
    border: 1px solid rgba(233, 77, 142, 0.24);
    background: rgba(255, 255, 255, 0.88);
}

.secondary-button:hover {
    transform: translateY(-2px);
    border-color: rgba(233, 77, 142, 0.45);
    box-shadow: var(--shadow-soft);
}

.text-button {
    min-height: 44px;
    padding: 0 3px;
    color: var(--brand-deep);
    border-radius: 8px;
}

.text-button::after,
.card-link::after,
.inline-link::after {
    content: "→";
    margin-left: 7px;
    transition: transform .18s ease;
    pointer-events: none;
}

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

.menu-trigger,
.drawer-close {
    position: relative;
    z-index: 1;
    min-width: 46px;
    min-height: 46px;
    border: 0;
    border-radius: 15px;
    color: var(--title);
    background: var(--white);
    box-shadow: 0 8px 20px rgba(93, 54, 80, 0.08);
    cursor: pointer;
}

.menu-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 14px;
}

.menu-trigger span {
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--brand-deep);
    pointer-events: none;
}

.menu-trigger b {
    margin-left: 4px;
    font-size: 0.88rem;
}

.mobile-menu-trigger {
    display: none;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 990;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: rgba(38, 23, 35, 0.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;
    z-index: 1000;
    width: min(410px, 88vw);
    height: 100dvh;
    padding: 22px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateX(105%);
    background: #fff;
    box-shadow: -18px 0 60px rgba(50, 30, 46, 0.18);
    transition: transform .28s ease, opacity .24s ease, visibility .28s ease;
    overflow-y: auto;
    overscroll-behavior: contain;
}

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

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

.drawer-close {
    padding: 0 16px;
    color: var(--brand-deep);
    font-weight: 800;
}

.drawer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-top: 18px;
}

.drawer-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 98, 159, 0.10);
    border-radius: 14px;
    color: #5B4C59;
    background: var(--bg);
    font-weight: 700;
}

.drawer-nav a:hover,
.drawer-nav a:focus-visible,
.drawer-nav a.is-active {
    color: var(--brand-deep);
    border-color: rgba(255, 98, 159, 0.30);
    background: var(--pink-soft);
}

main {
    display: block;
    min-height: 60vh;
}

.section,
.page-hero,
.home-hero {
    position: relative;
    padding: 88px 0;
}

.section-compact {
    padding: 60px 0;
}

.container {
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
}

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

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

.eyebrow,
.kicker {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    margin-bottom: 14px;
    padding: 6px 13px;
    border: 1px solid rgba(255, 98, 159, 0.16);
    border-radius: 999px;
    color: var(--brand-deep);
    background: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.06em;
}

h1,
h2,
h3,
h4 {
    color: var(--title);
    line-height: 1.28;
}

h1 {
    margin-bottom: 22px;
    font-size: clamp(2.55rem, 6vw, 5.4rem);
    letter-spacing: -0.055em;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(1.85rem, 3.7vw, 3.2rem);
    letter-spacing: -0.035em;
}

h3 {
    margin-bottom: 11px;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.lead {
    max-width: 760px;
    color: #665566;
    font-size: clamp(1.02rem, 1.5vw, 1.18rem);
    line-height: 1.9;
}

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

.home-hero {
    padding-top: 86px;
    padding-bottom: 72px;
    overflow: clip;
}

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

.home-hero::before {
    width: 280px;
    height: 280px;
    left: -90px;
    top: 90px;
    background: rgba(255, 155, 188, 0.16);
}

.home-hero::after {
    width: 240px;
    height: 240px;
    right: -80px;
    bottom: 30px;
    background: rgba(147, 107, 255, 0.10);
}

.hero-grid,
.split-grid,
.media-split,
.dual-panel,
.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(300px, .78fr);
    align-items: center;
    gap: clamp(36px, 6vw, 78px);
}

.hero-copy {
    position: relative;
    z-index: 1;
}

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

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

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-points span,
.tag,
.pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 13px;
    border: 1px solid rgba(255, 98, 159, 0.16);
    border-radius: 999px;
    color: #6A5362;
    background: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
    font-weight: 700;
}

.hero-visual,
.media-frame,
.page-visual {
    position: relative;
    min-height: 430px;
    display: grid;
    place-items: center;
    padding: 34px;
    border: 1px solid rgba(255, 98, 159, 0.14);
    border-radius: 40px;
    background:
        linear-gradient(150deg, rgba(255,255,255,.92), rgba(255,240,246,.80)),
        var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-visual::before,
.media-frame::before,
.page-visual::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -90px;
    top: -80px;
    border-radius: 50%;
    background: rgba(147, 107, 255, 0.12);
    pointer-events: none;
}

.hero-visual::after,
.media-frame::after,
.page-visual::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    left: -70px;
    bottom: -65px;
    border-radius: 50%;
    background: rgba(255, 98, 159, 0.15);
    pointer-events: none;
}

.content-image,
.hero-image,
.page-image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 520px;
    object-fit: contain;
}

.css-visual {
    position: relative;
    z-index: 1;
    width: min(100%, 330px);
    aspect-ratio: 4 / 5;
    padding: 22px;
    border-radius: 36px;
    background: linear-gradient(165deg, #fff, #FFF0F6);
    box-shadow: 0 24px 52px rgba(114, 62, 98, 0.15);
}

.css-visual .visual-screen {
    height: 100%;
    padding: 18px;
    border-radius: 26px;
    background: linear-gradient(165deg, #FFF6FA, #F4EEFF);
}

.visual-chip {
    width: 58%;
    height: 12px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(255, 98, 159, 0.22);
}

.visual-card {
    min-height: 112px;
    margin-bottom: 14px;
    padding: 18px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(94, 58, 84, 0.08);
}

.visual-card::before,
.visual-card::after {
    content: "";
    display: block;
    border-radius: 999px;
    background: rgba(147, 107, 255, 0.14);
    pointer-events: none;
}

.visual-card::before {
    width: 72%;
    height: 11px;
    margin-bottom: 13px;
}

.visual-card::after {
    width: 45%;
    height: 9px;
}

.grid-2,
.grid-3,
.grid-4,
.grid-5,
.service-grid,
.channel-grid,
.topic-grid,
.review-grid,
.link-grid,
.faq-grid,
.stat-grid {
    display: grid;
    gap: 22px;
}

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

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

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

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

.card,
.feature-card,
.channel-card,
.topic-card,
.review-card,
.info-card,
.step-card,
.notice-card,
.faq-card,
.link-card,
.stat-card {
    position: relative;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
}

.card,
.feature-card,
.channel-card,
.topic-card,
.review-card,
.info-card,
.step-card,
.notice-card,
.link-card,
.stat-card {
    padding: 26px;
}

.feature-card,
.channel-card,
.topic-card,
.review-card,
.step-card,
.link-card {
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.feature-card:hover,
.channel-card:hover,
.topic-card:hover,
.review-card:hover,
.step-card:hover,
.link-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 98, 159, 0.30);
    box-shadow: var(--shadow);
}

.card-icon,
.number-badge {
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 16px;
    color: var(--brand-deep);
    background: linear-gradient(145deg, var(--pink-soft), var(--purple-soft));
    font-weight: 900;
}

.card p,
.feature-card p,
.channel-card p,
.topic-card p,
.review-card p,
.info-card p,
.step-card p,
.notice-card p,
.link-card p,
.stat-card p {
    color: #6B5B69;
}

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

.tint-pink {
    background: linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(255, 240, 246, .92));
}

.tint-purple {
    background: linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(246, 241, 255, .95));
}

.band {
    background: linear-gradient(145deg, rgba(255, 240, 246, 0.72), rgba(246, 241, 255, 0.72));
    border-top: 1px solid rgba(255, 98, 159, 0.08);
    border-bottom: 1px solid rgba(147, 107, 255, 0.08);
}

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.inspiration-card {
    grid-column: span 3;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.90);
    box-shadow: var(--shadow-soft);
}

.inspiration-card.large {
    grid-column: span 6;
    min-height: 280px;
}

.inspiration-card.tall {
    grid-row: span 2;
    min-height: 310px;
}

.inspiration-card .tag-row,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.quote-mark {
    color: var(--peach);
    font-size: 2.8rem;
    line-height: 1;
    font-weight: 900;
}

.review-meta {
    margin-top: 18px;
    color: var(--brand-deep);
    font-size: 0.88rem;
    font-weight: 800;
}

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

.faq-list details,
.faq-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.90);
    box-shadow: 0 8px 22px rgba(93, 55, 82, 0.06);
}

.faq-list details {
    overflow: hidden;
}

.faq-list summary {
    position: relative;
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 17px 52px 17px 20px;
    color: var(--title);
    font-weight: 850;
    cursor: pointer;
    list-style: none;
}

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

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--brand-deep);
    background: var(--pink-soft);
    transform: translateY(-50%);
    pointer-events: none;
}

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

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

.callout,
.cta-panel {
    position: relative;
    padding: clamp(30px, 5vw, 56px);
    border: 1px solid rgba(255, 98, 159, 0.14);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 92% 18%, rgba(147, 107, 255, 0.13), transparent 18rem),
        linear-gradient(145deg, #fff, #FFF0F6);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.callout::after,
.cta-panel::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -90px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 155, 188, 0.16);
    pointer-events: none;
}

.callout > *,
.cta-panel > * {
    position: relative;
    z-index: 1;
}

.page-hero {
    padding-top: 76px;
    padding-bottom: 70px;
    overflow: hidden;
}

.page-hero::before {
    width: 320px;
    height: 320px;
    right: -110px;
    top: 20px;
    background: rgba(255, 155, 188, 0.14);
}

.page-hero h1 {
    font-size: clamp(2.35rem, 5vw, 4.5rem);
}

.page-hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
}

.page-visual {
    min-height: 320px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: .88rem;
}

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

.list-clean,
.check-list,
.timeline,
.process-list {
    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%;
    color: #fff;
    background: var(--gradient);
    font-size: .74rem;
    font-weight: 900;
    pointer-events: none;
}

.timeline {
    display: grid;
    gap: 18px;
}

.timeline li {
    position: relative;
    padding: 2px 0 20px 38px;
    border-left: 2px solid rgba(255, 98, 159, 0.18);
}

.timeline li::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 4px;
    width: 14px;
    height: 14px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--gradient);
    box-shadow: 0 0 0 2px rgba(255, 98, 159, 0.18);
    pointer-events: none;
}

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

.process-list {
    counter-reset: process;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.process-list li {
    counter-increment: process;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.process-list li::before {
    content: counter(process, decimal-leading-zero);
    display: block;
    margin-bottom: 14px;
    color: var(--brand-deep);
    font-weight: 900;
    letter-spacing: .08em;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

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

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

.info-table th {
    color: var(--title);
    background: var(--pink-soft);
}

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

.page-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.page-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--brand-deep);
    background: rgba(255,255,255,.78);
    font-weight: 750;
}

.page-links a:hover {
    border-color: rgba(255,98,159,.35);
    background: var(--pink-soft);
}

.notice-strip {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 22px;
    border: 1px solid rgba(147, 107, 255, 0.16);
    border-radius: 18px;
    background: var(--purple-soft);
}

.notice-strip strong {
    flex: 0 0 auto;
    color: var(--purple);
}

.site-footer {
    position: relative;
    z-index: 1;
    margin-top: 30px;
    padding: 68px 0 24px;
    color: var(--footer-text);
    background:
        radial-gradient(circle at 8% 10%, rgba(255, 98, 159, .16), transparent 24rem),
        var(--footer);
}

.footer-inner {
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(0, 1.6fr);
    gap: 60px;
}

.footer-brand-block p {
    max-width: 410px;
    color: rgba(255, 234, 243, .76);
}

.footer-brand .brand-wordmark {
    color: #fff;
}

.footer-notice {
    font-size: .9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.footer-links section {
    min-width: 0;
}

.footer-links h2 {
    margin-bottom: 14px;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0;
}

.footer-links a {
    display: flex;
    align-items: center;
    min-height: 38px;
    color: rgba(255, 234, 243, .74);
    font-size: .92rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: #fff;
}

.footer-bottom {
    width: min(calc(100% - 40px), var(--max));
    margin: 44px auto 0;
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.10);
    color: rgba(255, 234, 243, .66);
    font-size: .88rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

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

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

@media (max-width: 1080px) {
    .header-inner {
        gap: 18px;
    }

    .desktop-nav {
        gap: 16px;
    }

    .desktop-nav a {
        font-size: .9rem;
    }

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

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

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

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

@media (max-width: 900px) {
    .header-inner {
        min-height: 70px;
    }

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

    .mobile-menu-trigger {
        display: inline-flex;
        justify-self: start;
    }

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

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

    .header-cta {
        min-height: 44px;
        padding: 0 17px;
        font-size: .9rem;
    }

    .hero-grid,
    .split-grid,
    .media-split,
    .page-hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual,
    .media-frame,
    .page-visual {
        min-height: 340px;
    }

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

    .inspiration-card,
    .inspiration-card.large {
        grid-column: span 6;
    }

    .inspiration-card.tall {
        grid-row: auto;
    }

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

@media (max-width: 680px) {
    body {
        padding-bottom: calc(76px + env(safe-area-inset-bottom));
    }

    .header-inner,
    .container,
    .footer-inner,
    .footer-bottom {
        width: min(calc(100% - 28px), var(--max));
    }

    .header-inner {
        grid-template-columns: 48px minmax(0, 1fr) auto;
        gap: 10px;
    }

    .brand-logo,
    .drawer-logo,
    .footer-logo {
        max-width: 132px;
        height: 36px;
    }

    .brand-wordmark {
        font-size: 1.03rem;
    }

    .brand-wordmark::before {
        width: 27px;
        height: 27px;
        margin-right: 7px;
        border-radius: 10px 12px 9px 13px;
    }

    .header-cta {
        padding: 0 13px;
        font-size: .84rem;
    }

    .mobile-menu-trigger {
        width: 46px;
        padding: 0;
    }

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

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

    .section,
    .page-hero,
    .home-hero {
        padding: 62px 0;
    }

    .section-compact {
        padding: 44px 0;
    }

    h1 {
        font-size: clamp(2.3rem, 13vw, 3.5rem);
    }

    h2 {
        font-size: clamp(1.75rem, 9vw, 2.45rem);
    }

    .lead {
        font-size: 1rem;
    }

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

    .hero-actions .primary-button,
    .hero-actions .secondary-button,
    .action-row .primary-button,
    .action-row .secondary-button {
        flex: 1 1 170px;
    }

    .hero-visual,
    .media-frame,
    .page-visual {
        min-height: 290px;
        padding: 22px;
        border-radius: 28px;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5,
    .service-grid,
    .channel-grid,
    .topic-grid,
    .review-grid,
    .faq-grid,
    .stat-grid,
    .dual-panel,
    .process-list {
        grid-template-columns: 1fr;
    }

    .card,
    .feature-card,
    .channel-card,
    .topic-card,
    .review-card,
    .info-card,
    .step-card,
    .notice-card,
    .link-card,
    .stat-card {
        padding: 22px;
    }

    .inspiration-grid {
        grid-template-columns: 1fr;
    }

    .inspiration-card,
    .inspiration-card.large {
        grid-column: auto;
        min-height: 210px;
    }

    .callout,
    .cta-panel {
        border-radius: 24px;
    }

    .footer-links {
        gap: 26px 18px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 880;
        min-height: 68px;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
        border-top: 1px solid rgba(255, 98, 159, .14);
        background: rgba(255, 255, 255, .94);
        box-shadow: 0 -10px 30px rgba(75, 42, 67, .10);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
    }

    .mobile-bottom-nav a {
        min-height: 52px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        border-radius: 14px;
        color: #766474;
        font-size: .78rem;
        font-weight: 760;
    }

    .mobile-bottom-nav a span {
        font-size: 1.15rem;
        line-height: 1;
    }

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

@media (max-width: 390px) {
    .header-cta {
        padding: 0 11px;
        font-size: .78rem;
    }

    .brand-wordmark {
        font-size: .93rem;
    }

    .brand-wordmark::before {
        display: none;
    }

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}
