:root {
    --bg: #fff7fb;
    --surface: #ffffff;
    --surface-pink: #fff0f6;
    --surface-purple: #f6f1ff;
    --title: #332631;
    --text: #514451;
    --muted: #807080;
    --pink: #ff629f;
    --pink-dark: #e94d8e;
    --peach: #ff9bbc;
    --purple: #936bff;
    --border: rgba(255, 98, 159, 0.16);
    --footer: #30232d;
    --footer-text: #ffeaf3;
    --shadow: 0 18px 52px rgba(86, 48, 75, 0.09);
    --shadow-soft: 0 10px 32px rgba(86, 48, 75, 0.07);
    --radius-lg: 30px;
    --radius-md: 22px;
    --radius-sm: 15px;
    --content: 1220px;
    --header-height: 78px;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 8% 4%, rgba(255, 155, 188, 0.18), transparent 28rem),
        radial-gradient(circle at 94% 10%, rgba(147, 107, 255, 0.12), transparent 30rem),
        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;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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 {
    border: 0;
}

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

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1300;
    padding: 10px 16px;
    border-radius: 12px;
    background: var(--title);
    color: white;
    transform: translateY(-150%);
    transition: transform 0.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.09);
    background: rgba(255, 247, 251, 0.88);
    box-shadow: 0 8px 26px rgba(69, 43, 62, 0.05);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

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

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

.brand-mark img,
.footer-logo img {
    width: auto;
    max-height: 46px;
    object-fit: contain;
}

.brand-word,
.footer-logo span {
    font-weight: 850;
    font-size: 1.42rem;
    letter-spacing: -0.04em;
    color: var(--title);
}

.brand-word::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 5px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    vertical-align: 0.7em;
}

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

.desktop-nav a {
    position: relative;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 999px;
    color: #665863;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-current {
    background: rgba(255, 98, 159, 0.10);
    color: var(--pink-dark);
}

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

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

.button {
    min-height: 48px;
    padding: 11px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff9bbc 0%, #ff629f 50%, #936bff 100%);
    box-shadow: 0 10px 24px rgba(233, 77, 142, 0.22);
    color: white;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(147, 107, 255, 0.22);
    filter: saturate(1.05);
}

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

.button-secondary {
    border-color: var(--border);
    background: white;
    box-shadow: none;
    color: var(--pink-dark);
}

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

.button-compact {
    min-height: 44px;
    padding: 10px 18px;
    font-size: 0.94rem;
}

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

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

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

.menu-trigger,
.drawer-close {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    color: var(--title);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: inset 0 0 0 1px var(--border);
}

.menu-trigger {
    flex-direction: column;
    gap: 4px;
}

.menu-trigger span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    pointer-events: none;
}

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

.drawer-close {
    font-size: 2rem;
    line-height: 1;
}

.site-overlay {
    position: fixed;
    inset: 0;
    z-index: 1090;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: rgba(47, 29, 43, 0.46);
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.site-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1100;
    width: min(400px, 88vw);
    height: 100dvh;
    padding: 22px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateX(105%);
    background: #fffafc;
    box-shadow: -22px 0 60px rgba(47, 29, 43, 0.18);
    transition: transform 0.28s ease, opacity 0.22s ease, visibility 0.28s ease;
}

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

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

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

.drawer-head strong {
    display: block;
    margin-top: 3px;
    color: var(--title);
    font-size: 1.2rem;
}

.eyebrow {
    color: var(--pink-dark);
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.drawer-nav {
    display: grid;
    gap: 7px;
    padding: 18px 0;
}

.drawer-nav a {
    min-height: 48px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-radius: 14px;
    color: #5f505c;
    font-weight: 750;
}

.drawer-nav a:hover,
.drawer-nav a.is-current {
    background: linear-gradient(135deg, rgba(255, 155, 188, 0.15), rgba(147, 107, 255, 0.10));
    color: var(--pink-dark);
}

.drawer-note {
    padding: 16px;
    border-radius: 16px;
    background: var(--surface-purple);
    color: #6e6170;
    font-size: 0.88rem;
}

main {
    display: block;
}

.site-main {
    overflow: clip;
}

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

.narrow {
    width: min(calc(100% - 40px), 860px);
    margin: 0 auto;
}

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

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

.section-soft {
    background: rgba(255, 255, 255, 0.52);
    border-top: 1px solid rgba(255, 98, 159, 0.07);
    border-bottom: 1px solid rgba(255, 98, 159, 0.07);
}

.section-pink {
    background: linear-gradient(180deg, rgba(255, 240, 246, 0.9), rgba(255, 247, 251, 0.55));
}

.section-purple {
    background: linear-gradient(180deg, rgba(246, 241, 255, 0.9), rgba(255, 247, 251, 0.55));
}

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

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

.section-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    align-items: center;
    gap: 8px;
    color: var(--pink-dark);
    font-size: 0.84rem;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.section-kicker::before {
    content: "";
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pink), var(--purple));
}

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

h1,
h2,
h3 {
    color: var(--title);
    line-height: 1.24;
    letter-spacing: -0.03em;
}

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

h2 {
    margin-bottom: 16px;
    font-size: clamp(1.85rem, 3.2vw, 3rem);
}

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

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

.lead {
    max-width: 760px;
    color: #675765;
    font-size: clamp(1.04rem, 1.8vw, 1.2rem);
    line-height: 1.9;
}

.hero {
    min-height: calc(100dvh - var(--header-height));
    padding: 68px 0 84px;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    align-items: center;
    gap: clamp(42px, 6vw, 92px);
}

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

.hero-copy .lead {
    max-width: 720px;
    margin-bottom: 28px;
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 18px;
}

.hero-points {
    margin: 28px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
}

.hero-points li,
.tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 13px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #705f6b;
    font-size: 0.88rem;
    font-weight: 700;
}

.hero-art,
.page-art {
    position: relative;
    min-height: 430px;
    pointer-events: none;
}

.orbit {
    position: absolute;
    border-radius: 50%;
    filter: blur(0.2px);
}

.orbit-one {
    inset: 3% 10% 18% 4%;
    background: linear-gradient(145deg, rgba(255, 155, 188, 0.72), rgba(255, 98, 159, 0.20));
    box-shadow: 0 28px 80px rgba(233, 77, 142, 0.19);
}

.orbit-two {
    width: 58%;
    aspect-ratio: 1;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(147, 107, 255, 0.50), rgba(246, 241, 255, 0.95));
}

.mock-phone {
    position: absolute;
    z-index: 2;
    top: 5%;
    left: 17%;
    width: min(240px, 58%);
    aspect-ratio: 0.55;
    padding: 12px;
    border: 8px solid #332631;
    border-radius: 38px;
    transform: rotate(5deg);
    background: white;
    box-shadow: 0 30px 70px rgba(53, 34, 49, 0.22);
}

.mock-screen {
    height: 100%;
    padding: 20px 14px;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(180deg, #fff0f6, #f6f1ff);
}

.mock-pill {
    width: 44%;
    height: 8px;
    margin: 0 auto 18px;
    border-radius: 999px;
    background: #332631;
}

.mock-story {
    height: 112px;
    margin-bottom: 12px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ff9bbc, #936bff);
}

.mock-line {
    height: 8px;
    margin: 9px 0;
    border-radius: 999px;
    background: rgba(81, 68, 81, 0.18);
}

.mock-line.short {
    width: 62%;
}

.floating-note {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 12%;
    width: 195px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.floating-note strong {
    display: block;
    margin-bottom: 4px;
    color: var(--title);
}

.floating-note span {
    color: var(--muted);
    font-size: 0.85rem;
}

.page-hero {
    padding: 92px 0 70px;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
    align-items: center;
    gap: 64px;
}

.page-hero h1 {
    max-width: 800px;
    font-size: clamp(2.45rem, 5vw, 4.8rem);
}

.page-hero .lead {
    margin-bottom: 0;
}

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

.page-art .art-card {
    position: absolute;
    inset: 12% 6% 8% 8%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 36px;
    background: linear-gradient(145deg, rgba(255, 155, 188, 0.62), rgba(147, 107, 255, 0.32));
    box-shadow: var(--shadow);
    transform: rotate(3deg);
}

.page-art .art-card::before,
.page-art .art-card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.56);
}

.page-art .art-card::before {
    width: 96px;
    height: 96px;
    top: 24px;
    right: 28px;
}

.page-art .art-card::after {
    width: 46px;
    height: 46px;
    top: 64px;
    right: 96px;
}

.page-art .art-card strong,
.page-art .art-card span {
    position: relative;
    z-index: 1;
}

.page-art .art-card strong {
    color: var(--title);
    font-size: 1.35rem;
}

.page-art .art-card span {
    margin-top: 5px;
    color: #625263;
}

.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;
    min-width: 0;
    padding: 27px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
}

.card > * {
    position: relative;
    z-index: 1;
}

.card::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 155, 188, 0.13), rgba(147, 107, 255, 0.10));
    pointer-events: none;
}

.card p {
    color: #665864;
}

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

.card-number,
.card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 155, 188, 0.32), rgba(147, 107, 255, 0.18));
    color: var(--pink-dark);
    font-weight: 900;
}

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

.channel-card {
    min-height: 180px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.channel-card p {
    margin-bottom: 12px;
    color: #70616e;
    font-size: 0.92rem;
}

.channel-card .text-link {
    min-height: 34px;
    font-size: 0.9rem;
}

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

.mosaic-card {
    min-height: 210px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: white;
    box-shadow: var(--shadow-soft);
}

.mosaic-card:nth-child(1),
.mosaic-card:nth-child(5) {
    grid-column: span 5;
}

.mosaic-card:nth-child(2),
.mosaic-card:nth-child(6) {
    grid-column: span 4;
}

.mosaic-card:nth-child(3),
.mosaic-card:nth-child(4),
.mosaic-card:nth-child(7),
.mosaic-card:nth-child(8) {
    grid-column: span 3;
}

.mosaic-card:nth-child(1),
.mosaic-card:nth-child(6) {
    min-height: 270px;
    background: linear-gradient(145deg, #fff0f6, #ffffff);
}

.mosaic-card:nth-child(2),
.mosaic-card:nth-child(7) {
    background: linear-gradient(145deg, #f6f1ff, #ffffff);
}

.mosaic-card .tag {
    align-self: flex-start;
    margin-bottom: 14px;
}

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

.split.reverse > :first-child {
    order: 2;
}

.story-panel {
    position: relative;
    min-height: 410px;
    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, #fff0f6, #f6f1ff);
    box-shadow: var(--shadow);
}

.story-panel::before,
.story-panel::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.story-panel::before {
    width: 260px;
    height: 260px;
    top: -80px;
    right: -40px;
    background: rgba(255, 98, 159, 0.24);
}

.story-panel::after {
    width: 190px;
    height: 190px;
    left: -60px;
    bottom: -80px;
    background: rgba(147, 107, 255, 0.20);
}

.story-panel > * {
    position: relative;
    z-index: 1;
}

.story-panel strong {
    max-width: 420px;
    color: var(--title);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.25;
}

.story-panel span {
    margin-top: 10px;
    color: #715f6d;
}

.copy-stack > * + * {
    margin-top: 20px;
}

.check-list,
.link-list,
.timeline,
.step-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

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

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.1em;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 98, 159, 0.12);
    color: var(--pink-dark);
    font-size: 0.78rem;
    font-weight: 900;
}

.notice {
    padding: 24px 26px;
    border: 1px solid rgba(147, 107, 255, 0.18);
    border-radius: 20px;
    background: var(--surface-purple);
}

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

.notice-pink {
    border-color: var(--border);
    background: var(--surface-pink);
}

.quote-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.quote-card {
    padding: 26px;
    border-radius: 22px;
    background: white;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
}

.quote-card p {
    margin-bottom: 16px;
    color: #62535e;
}

.quote-card span {
    color: var(--pink-dark);
    font-size: 0.88rem;
    font-weight: 800;
}

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

.faq-list details {
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 8px 24px rgba(86, 48, 75, 0.05);
}

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

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

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 18px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--surface-pink);
    color: var(--pink-dark);
    font-size: 1.2rem;
}

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

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

.timeline {
    position: relative;
    display: grid;
    gap: 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(var(--pink), rgba(147, 107, 255, 0.18));
}

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

.timeline li:last-child {
    padding-bottom: 0;
}

.timeline li::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 4px;
    width: 20px;
    height: 20px;
    border: 6px solid white;
    border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 0 1px var(--border);
}

.timeline strong {
    display: block;
    margin-bottom: 5px;
    color: var(--title);
    font-size: 1.08rem;
}

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

.step-list li {
    counter-increment: steps;
    position: relative;
    min-height: 88px;
    padding: 18px 20px 18px 76px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: white;
}

.step-list li::before {
    content: counter(steps, decimal-leading-zero);
    position: absolute;
    left: 18px;
    top: 18px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--surface-pink), var(--surface-purple));
    color: var(--pink-dark);
    font-weight: 900;
}

.step-list strong {
    display: block;
    margin-bottom: 3px;
    color: var(--title);
}

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

.data-strip div {
    min-width: 0;
}

.data-strip strong {
    display: block;
    margin-bottom: 4px;
    color: var(--title);
}

.data-strip span {
    color: var(--muted);
    font-size: 0.9rem;
}

.link-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.link-list a {
    min-height: 54px;
    padding: 13px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: white;
    color: var(--title);
    font-weight: 750;
}

.link-list a::after {
    content: "→";
    color: var(--pink-dark);
}

.link-list a:hover {
    background: var(--surface-pink);
}

.cta-band {
    padding: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 90% 10%, rgba(255,255,255,0.42), transparent 14rem),
        linear-gradient(135deg, #ff9bbc 0%, #ff629f 46%, #936bff 100%);
    box-shadow: 0 24px 60px rgba(147, 107, 255, 0.20);
    color: white;
}

.cta-band h2,
.cta-band p {
    color: white;
}

.cta-band h2 {
    margin-bottom: 8px;
}

.cta-band p {
    max-width: 720px;
    margin-bottom: 0;
    opacity: 0.92;
}

.cta-band .button {
    flex: 0 0 auto;
    background: white;
    box-shadow: none;
    color: var(--pink-dark);
}

.topic-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.topic-tabs .tag {
    background: white;
}

.prose {
    color: #62545f;
}

.prose p {
    margin-bottom: 1.2em;
}

.prose h2 {
    margin-top: 1.8em;
}

.prose h3 {
    margin-top: 1.5em;
}

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

.footer-inner {
    width: min(calc(100% - 40px), var(--content));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.65fr repeat(4, minmax(0, 0.75fr));
    gap: 38px;
}

.footer-brand p {
    max-width: 380px;
    margin-top: 16px;
    color: rgba(255, 234, 243, 0.72);
    font-size: 0.93rem;
}

.footer-logo span {
    color: white;
}

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

.footer-group a {
    min-height: 36px;
    display: flex;
    align-items: center;
    color: rgba(255, 234, 243, 0.72);
    font-size: 0.9rem;
}

.footer-group a:hover {
    color: white;
}

.footer-bottom {
    width: min(calc(100% - 40px), var(--content));
    margin: 48px auto 0;
    padding: 24px 0 28px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255, 234, 243, 0.12);
    color: rgba(255, 234, 243, 0.60);
    font-size: 0.84rem;
}

.footer-bottom p {
    margin: 0;
}

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

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

    .desktop-nav a {
        padding-right: 10px;
        padding-left: 10px;
        font-size: 0.9rem;
    }

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

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

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

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

@media (max-width: 880px) {
    :root {
        --header-height: 68px;
    }

    .header-inner {
        width: min(calc(100% - 24px), var(--content));
        grid-template-columns: 44px 1fr auto;
        gap: 10px;
    }

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

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

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

    .brand-word {
        font-size: 1.24rem;
    }

    .header-actions {
        gap: 0;
    }

    .button-compact {
        min-height: 44px;
        padding-right: 14px;
        padding-left: 14px;
        font-size: 0.87rem;
    }

    .container,
    .narrow {
        width: min(calc(100% - 30px), var(--content));
    }

    .section {
        padding: 72px 0;
    }

    .hero {
        min-height: auto;
        padding: 58px 0 76px;
    }

    .hero-grid,
    .page-hero-grid,
    .split {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .hero-art {
        min-height: 390px;
        max-width: 540px;
        width: 100%;
        margin: 0 auto;
    }

    .page-art {
        min-height: 270px;
    }

    .split.reverse > :first-child {
        order: initial;
    }

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

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

    .mosaic-card:nth-child(n) {
        grid-column: span 6;
        min-height: 220px;
    }

    .data-strip {
        grid-template-columns: 1fr;
    }

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

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

    .footer-brand {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

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

    .section {
        padding: 58px 0;
    }

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

    .page-hero {
        padding: 62px 0 48px;
    }

    h1 {
        font-size: clamp(2.3rem, 14vw, 3.8rem);
    }

    h2 {
        font-size: clamp(1.7rem, 8vw, 2.35rem);
    }

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

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

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

    .mock-phone {
        left: 14%;
        width: 56%;
    }

    .floating-note {
        right: 2%;
        width: 170px;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5,
    .channel-grid,
    .quote-grid,
    .link-list {
        grid-template-columns: 1fr;
    }

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

    .mosaic-card:nth-child(n) {
        grid-column: auto;
        min-height: 210px;
    }

    .card,
    .quote-card,
    .channel-card {
        padding: 22px;
    }

    .story-panel {
        min-height: 330px;
        padding: 28px;
    }

    .cta-band {
        padding: 30px 24px;
        border-radius: 24px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
    }

    .footer-bottom {
        padding-bottom: 34px;
        flex-direction: column;
    }

    .mobile-bottom-nav {
        position: fixed;
        right: 10px;
        bottom: calc(8px + env(safe-area-inset-bottom));
        left: 10px;
        z-index: 900;
        min-height: 62px;
        padding: 5px;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        border: 1px solid rgba(255, 98, 159, 0.14);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 15px 44px rgba(69, 43, 62, 0.16);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .mobile-bottom-nav a {
        min-height: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1px;
        border-radius: 15px;
        color: #756674;
        font-size: 0.75rem;
        font-weight: 800;
    }

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

    .mobile-bottom-nav a.is-current {
        background: var(--surface-pink);
        color: var(--pink-dark);
    }
}

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

    .brand-word {
        font-size: 1.08rem;
    }

    .button-compact {
        padding-right: 11px;
        padding-left: 11px;
        font-size: 0.8rem;
    }

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

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