:root {
    --page-bg: #FFF8FB;
    --surface: #FFFFFF;
    --soft-pink: #FFF0F6;
    --soft-purple: #F7F3FF;
    --soft-gray: #F8F4F6;
    --heading: #32262D;
    --text: #51444C;
    --muted: #7C6D76;
    --subtle: #A09199;
    --brand: #FF5D9E;
    --berry: #D94C83;
    --coral: #FF8EAC;
    --purple: #8C76E8;
    --deep-purple: #6753B5;
    --border: rgba(255, 93, 158, 0.15);
    --shadow: 0 14px 36px rgba(76, 48, 66, 0.08);
    --shadow-strong: 0 18px 46px rgba(217, 76, 131, 0.15);
    --gradient: linear-gradient(135deg, #FF8EAC 0%, #FF5D9E 52%, #8C76E8 100%);
    --footer: #30242B;
    --footer-text: #FFEAF2;
    --container: 1200px;
    --header-height: 76px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    color-scheme: light;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--page-bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    color: inherit;
}

:focus-visible {
    outline: 3px solid rgba(140, 118, 232, 0.48);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 16px;
    z-index: 2000;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--footer);
    color: #fff;
    transform: translateY(-150%);
    transition: transform .18s ease;
}

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

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

.notice-bar {
    position: relative;
    z-index: 121;
    background: linear-gradient(90deg, #FFF0F6, #F7F3FF);
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
}

.notice-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.notice-inner p {
    margin: 0;
}

.notice-links {
    display: flex;
    gap: 18px;
}

.notice-links a:hover {
    color: var(--berry);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 120;
    background: rgba(255, 248, 251, 0.94);
    border-bottom: 1px solid rgba(217, 76, 131, 0.11);
    backdrop-filter: blur(18px);
}

.nav-shell {
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.brand,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--heading);
    white-space: nowrap;
}

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

.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px 14px 18px 14px;
    background: var(--gradient);
    color: white;
    box-shadow: 0 8px 20px rgba(217, 76, 131, .24);
    font-size: 20px;
    line-height: 1;
}

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

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

.primary-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 15px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 650;
    white-space: nowrap;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
    background: var(--soft-pink);
    color: var(--berry);
}

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

.button,
.channel-trigger,
.panel-close {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 750;
    line-height: 1.2;
    white-space: nowrap;
}

.button {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 10px 24px rgba(217, 76, 131, .2);
    transition: transform .18s ease, box-shadow .18s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(217, 76, 131, .27);
}

.button-secondary,
.channel-trigger,
.panel-close {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .82);
    color: var(--berry);
    box-shadow: none;
}

.button-secondary:hover,
.channel-trigger:hover,
.panel-close:hover {
    background: var(--soft-pink);
}

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

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--berry);
    font-weight: 750;
}

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

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

.mobile-channel-trigger,
.mobile-experience {
    display: none;
}

main {
    display: block;
}

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

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

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

.section-white {
    background: rgba(255, 255, 255, .72);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 32px;
}

.section-heading.is-centered {
    margin-inline: auto;
    text-align: center;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--berry);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
    overflow-wrap: anywhere;
}

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

h1 {
    font-size: clamp(38px, 5vw, 68px);
    letter-spacing: -.045em;
}

h2 {
    font-size: clamp(28px, 3.2vw, 44px);
    letter-spacing: -.025em;
}

h3 {
    font-size: 21px;
}

p {
    margin: 0 0 1em;
}

.lead {
    color: var(--muted);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.85;
}

.hero {
    overflow: hidden;
    padding: 76px 0 70px;
}

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

.hero::before,
.page-hero::before {
    width: 340px;
    height: 340px;
    right: -110px;
    top: 30px;
    background: radial-gradient(circle, rgba(255, 142, 172, .3), rgba(255, 142, 172, 0));
}

.hero::after,
.page-hero::after {
    width: 260px;
    height: 260px;
    left: -100px;
    bottom: 0;
    background: radial-gradient(circle, rgba(140, 118, 232, .2), rgba(140, 118, 232, 0));
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .72fr) minmax(230px, .52fr);
    align-items: center;
    gap: 42px;
}

.hero-copy .brand-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    color: var(--berry);
    font-size: 14px;
    font-weight: 800;
}

.hero-copy h1 span {
    display: block;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy .lead {
    margin: 24px 0 28px;
    max-width: 670px;
}

.hero-actions,
.section-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.phone-art {
    position: relative;
    width: min(100%, 330px);
    aspect-ratio: 9 / 18;
    margin-inline: auto;
    padding: 12px;
    border-radius: 45px;
    background: #2F252B;
    box-shadow: 0 30px 70px rgba(92, 55, 75, .2);
    transform: rotate(2deg);
}

.phone-art::before {
    content: "";
    position: absolute;
    z-index: 3;
    top: 18px;
    left: 50%;
    width: 86px;
    height: 22px;
    border-radius: 999px;
    background: #2F252B;
    transform: translateX(-50%);
}

.phone-screen {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 35px;
    background: linear-gradient(165deg, #FFF0F6 0%, #FFFFFF 48%, #F7F3FF 100%);
    padding: 44px 17px 18px;
}

.phone-screen::after {
    content: "";
    position: absolute;
    inset: auto -38px -55px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 93, 158, .26), rgba(140, 118, 232, .2));
}

.phone-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    color: var(--heading);
    font-size: 13px;
    font-weight: 800;
}

.phone-feature {
    position: relative;
    min-height: 190px;
    padding: 22px;
    overflow: hidden;
    border-radius: 28px;
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 20px 38px rgba(217, 76, 131, .18);
}

.phone-feature strong {
    display: block;
    max-width: 190px;
    font-size: 24px;
    line-height: 1.35;
}

.phone-feature small {
    display: block;
    margin-top: 9px;
    opacity: .9;
}

.phone-feature::after {
    content: "";
    position: absolute;
    width: 135px;
    height: 135px;
    right: -30px;
    bottom: -26px;
    border-radius: 42% 58% 45% 55%;
    background: rgba(255, 255, 255, .23);
    transform: rotate(24deg);
}

.phone-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}

.phone-card {
    position: relative;
    z-index: 2;
    min-height: 105px;
    padding: 14px;
    border: 1px solid rgba(217, 76, 131, .1);
    border-radius: 20px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 8px 22px rgba(76, 48, 66, .06);
}

.phone-card i {
    display: block;
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
    border-radius: 12px;
    background: var(--soft-pink);
}

.phone-card:nth-child(2) i {
    background: var(--soft-purple);
}

.phone-card strong {
    display: block;
    color: var(--heading);
    font-size: 13px;
}

.hero-side {
    display: grid;
    gap: 18px;
}

.hero-note,
.card,
.soft-card,
.feature-card,
.topic-card,
.faq-card,
.quote-card,
.info-panel,
.step-card,
.notice-card {
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--shadow);
}

.hero-note {
    padding: 24px;
}

.hero-note:nth-child(2) {
    background: linear-gradient(155deg, rgba(247, 243, 255, .92), rgba(255, 255, 255, .96));
}

.hero-note .mini-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 142, 172, .25), rgba(255, 93, 158, .15));
}

.hero-note:nth-child(2) .mini-icon {
    background: linear-gradient(135deg, rgba(140, 118, 232, .25), rgba(103, 83, 181, .12));
}

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

.hero-note p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.topic-strip-wrap {
    margin-top: -4px;
}

.topic-strip {
    display: grid;
    grid-template-columns: repeat(8, minmax(132px, 1fr));
    gap: 12px;
    overflow-x: auto;
    padding: 4px 0 18px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
}

.topic-pill {
    min-width: 132px;
    min-height: 132px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, .8);
    box-shadow: 0 8px 22px rgba(76, 48, 66, .05);
    scroll-snap-align: start;
    transition: transform .18s ease, border-color .18s ease;
}

.topic-pill:hover {
    transform: translateY(-3px);
    border-color: rgba(217, 76, 131, .28);
}

.topic-pill b {
    color: var(--heading);
    font-size: 16px;
}

.topic-pill span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.magazine-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-template-areas:
        "main small1 small2"
        "main small3 small4";
    gap: 18px;
}

.story-card {
    position: relative;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 28px;
    border-radius: 26px;
    background: linear-gradient(145deg, #FFF0F6, #FFFFFF);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.story-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -48px;
    top: -50px;
    border-radius: 45% 55% 64% 36%;
    background: linear-gradient(135deg, rgba(255, 93, 158, .2), rgba(140, 118, 232, .17));
    transform: rotate(24deg);
}

.story-card:nth-child(3)::before,
.story-card:nth-child(5)::before {
    background: linear-gradient(135deg, rgba(140, 118, 232, .2), rgba(103, 83, 181, .12));
}

.story-card.main-story {
    grid-area: main;
    min-height: 500px;
    padding: 38px;
    background: linear-gradient(155deg, #FFE4EE 0%, #FFF8FB 58%, #EEE9FF 100%);
}

.story-card:nth-child(2) { grid-area: small1; }
.story-card:nth-child(3) { grid-area: small2; }
.story-card:nth-child(4) { grid-area: small3; }
.story-card:nth-child(5) { grid-area: small4; }

.story-content {
    position: relative;
    z-index: 1;
}

.story-card h3 {
    margin-bottom: 10px;
}

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

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 14px 0;
}

.tag {
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .75);
    color: var(--berry);
    font-size: 12px;
    font-weight: 750;
}

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

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

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

.card,
.soft-card,
.feature-card,
.topic-card,
.step-card,
.notice-card {
    padding: 26px;
}

.card p,
.soft-card p,
.feature-card p,
.topic-card p,
.step-card p,
.notice-card p,
.info-panel p {
    color: var(--muted);
}

.card .card-index,
.step-number {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 15px;
    background: var(--soft-pink);
    color: var(--berry);
    font-weight: 850;
}

.card:nth-child(2n) .card-index,
.step-card:nth-child(2n) .step-number {
    background: var(--soft-purple);
    color: var(--deep-purple);
}

.card h3,
.soft-card h3,
.feature-card h3,
.topic-card h3,
.step-card h3,
.notice-card h3 {
    margin-bottom: 10px;
}

.timeline {
    position: relative;
    display: grid;
    gap: 0;
    padding-left: 30px;
}

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

.timeline-item {
    position: relative;
    padding: 0 0 30px 28px;
}

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

.timeline-item::before {
    content: "";
    position: absolute;
    top: 8px;
    left: -29px;
    width: 14px;
    height: 14px;
    border: 4px solid var(--page-bg);
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 2px rgba(255, 93, 158, .22);
}

.timeline-item:nth-child(even)::before {
    background: var(--purple);
    box-shadow: 0 0 0 2px rgba(140, 118, 232, .2);
}

.timeline-item h3 {
    margin-bottom: 8px;
}

.timeline-item p {
    max-width: 850px;
    color: var(--muted);
}

.timeline-note {
    display: inline-flex;
    margin-top: 2px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--soft-gray);
    color: var(--muted);
    font-size: 12px;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.info-panel {
    position: relative;
    overflow: hidden;
    padding: 34px;
}

.info-panel::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 93, 158, .07);
    pointer-events: none;
}

.info-panel:nth-child(2)::after {
    background: rgba(140, 118, 232, .08);
}

.check-list,
.link-list,
.plain-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li,
.plain-list li {
    position: relative;
    padding-left: 26px;
    margin: 10px 0;
    color: var(--muted);
}

.check-list li::before,
.plain-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand);
    font-weight: 900;
}

.plain-list li::before {
    content: "•";
    font-size: 20px;
    line-height: 1.3;
}

.app-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(290px, .65fr);
    gap: 50px;
    align-items: center;
    padding: 52px;
    border: 1px solid var(--border);
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(255, 240, 246, .88), rgba(255, 255, 255, .94) 52%, rgba(247, 243, 255, .9));
    box-shadow: var(--shadow-strong);
}

.app-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 26px 0;
}

.app-point {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .8);
    border: 1px solid rgba(217, 76, 131, .09);
}

.app-point strong {
    display: block;
    margin-bottom: 4px;
    color: var(--heading);
}

.app-point span {
    color: var(--muted);
    font-size: 13px;
}

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

.quote-card {
    position: relative;
    padding: 26px;
}

.quote-card::before {
    content: "“";
    display: block;
    height: 34px;
    color: rgba(217, 76, 131, .3);
    font-family: Georgia, serif;
    font-size: 54px;
    line-height: .8;
}

.quote-card p {
    margin: 8px 0 0;
    color: var(--muted);
}

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

.faq-list details {
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 8px 22px rgba(76, 48, 66, .04);
}

.faq-list summary {
    position: relative;
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 16px 54px 16px 20px;
    color: var(--heading);
    cursor: pointer;
    font-weight: 760;
    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%;
    background: var(--soft-pink);
    color: var(--berry);
    transform: translateY(-50%);
}

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

.faq-answer {
    padding: 0 20px 20px;
    color: var(--muted);
}

.about-banner,
.service-banner {
    display: grid;
    grid-template-columns: 1.2fr auto;
    gap: 34px;
    align-items: center;
    padding: 44px;
    border-radius: 30px;
    background: var(--footer);
    color: var(--footer-text);
}

.about-banner h2,
.service-banner h2 {
    color: #fff;
}

.about-banner p,
.service-banner p {
    margin: 12px 0 0;
    color: rgba(255, 234, 242, .8);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 58px;
    background: linear-gradient(180deg, rgba(255, 240, 246, .62), rgba(255, 248, 251, 0));
}

.page-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(250px, .65fr);
    align-items: center;
    gap: 44px;
}

.page-hero h1 {
    font-size: clamp(36px, 4.8vw, 60px);
}

.page-hero .lead {
    max-width: 820px;
    margin-top: 20px;
}

.hero-summary-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: rgba(255, 255, 255, .8);
    box-shadow: var(--shadow);
}

.hero-summary-card h2 {
    font-size: 20px;
    margin-bottom: 12px;
}

.hero-summary-card ul {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 30px;
    align-items: start;
}

.content-main {
    min-width: 0;
}

.content-main > * + * {
    margin-top: 24px;
}

.content-sidebar {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 16px;
}

.sidebar-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 8px 24px rgba(76, 48, 66, .05);
}

.sidebar-card h2,
.sidebar-card h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.sidebar-card a {
    display: block;
    padding: 9px 0;
    color: var(--muted);
    border-bottom: 1px dashed rgba(217, 76, 131, .13);
}

.sidebar-card a:last-child {
    border-bottom: 0;
}

.sidebar-card a:hover {
    color: var(--berry);
}

.article-section {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: rgba(255, 255, 255, .86);
    box-shadow: var(--shadow);
}

.article-section h2 {
    margin-bottom: 16px;
    font-size: clamp(25px, 3vw, 34px);
}

.article-section h3 {
    margin: 22px 0 10px;
}

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

.article-section.is-tinted {
    background: linear-gradient(145deg, rgba(255, 240, 246, .86), rgba(255, 255, 255, .94));
}

.article-section.is-purple {
    background: linear-gradient(145deg, rgba(247, 243, 255, .9), rgba(255, 255, 255, .94));
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.mini-card {
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .76);
    border: 1px solid rgba(217, 76, 131, .1);
}

.mini-card h3 {
    margin: 0 0 8px;
    font-size: 17px;
}

.mini-card p {
    margin: 0;
    font-size: 14px;
}

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

.notice-band {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: start;
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 240, 246, .95), rgba(247, 243, 255, .95));
    border: 1px solid var(--border);
}

.notice-band .notice-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #fff;
    color: var(--berry);
    font-weight: 900;
}

.notice-band h2,
.notice-band h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.notice-band p {
    margin: 0;
    color: var(--muted);
}

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

.related-links a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 15px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    color: var(--berry);
    font-weight: 700;
}

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

.service-tip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 28px;
    border-radius: 24px;
    background: var(--footer);
    color: var(--footer-text);
}

.service-tip h2 {
    font-size: 24px;
    color: #fff;
}

.service-tip p {
    margin: 6px 0 0;
    color: rgba(255, 234, 242, .78);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.55fr repeat(4, minmax(0, .75fr));
    gap: 34px;
}

.footer-brand p {
    max-width: 330px;
    margin-top: 18px;
    color: rgba(255, 234, 242, .7);
    font-size: 14px;
}

.footer-logo {
    color: #fff;
    font-size: 20px;
}

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

.footer-column a {
    display: block;
    padding: 5px 0;
    color: rgba(255, 234, 242, .72);
    font-size: 14px;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 234, 242, .12);
    color: rgba(255, 234, 242, .56);
    font-size: 12px;
}

.footer-bottom p {
    margin: 0;
}

.channel-overlay {
    position: fixed;
    inset: 0;
    z-index: 110;
    visibility: hidden;
    pointer-events: none;
    background: rgba(48, 36, 43, .35);
    opacity: 0;
    transition: opacity .22s ease, visibility .22s ease;
}

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

.desktop-channel-panel {
    position: fixed;
    z-index: 140;
    top: calc(34px + var(--header-height));
    left: 0;
    right: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-18px);
    opacity: 0;
    transition: transform .22s ease, opacity .22s ease, visibility .22s ease;
}

.desktop-channel-panel.is-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    opacity: 1;
}

.channel-panel-inner {
    padding: 28px;
    border: 1px solid var(--border);
    border-top: 0;
    border-radius: 0 0 28px 28px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 26px 60px rgba(48, 36, 43, .14);
}

.panel-heading,
.sheet-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.panel-heading h2,
.sheet-heading h2 {
    font-size: 24px;
}

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

.channel-group {
    min-width: 0;
}

.channel-group h3 {
    margin-bottom: 10px;
    color: var(--berry);
    font-size: 14px;
}

.channel-group a {
    display: block;
    padding: 10px 12px;
    border-radius: 14px;
}

.channel-group a:hover {
    background: var(--soft-pink);
}

.channel-group strong,
.channel-group span {
    display: block;
}

.channel-group strong {
    color: var(--heading);
    font-size: 14px;
}

.channel-group span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.mobile-channel-sheet,
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 1040px) {
    .nav-shell {
        gap: 16px;
    }

    .primary-nav a {
        padding-inline: 11px;
        font-size: 14px;
    }

    .nav-actions .button {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1.1fr .78fr;
    }

    .hero-side {
        grid-column: 1 / -1;
        grid-template-columns: 1fr 1fr;
    }

    .magazine-grid {
        grid-template-columns: 1.2fr 1fr;
        grid-template-areas:
            "main small1"
            "main small2"
            "small3 small4";
    }

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

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

@media (max-width: 860px) {
    .primary-nav {
        gap: 0;
    }

    .primary-nav a:nth-child(4) {
        display: none;
    }

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

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

    .content-layout {
        grid-template-columns: 1fr;
    }

    .content-sidebar {
        position: static;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    :root {
        --header-height: 66px;
    }

    html {
        scroll-padding-bottom: 90px;
    }

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

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

    .notice-inner {
        min-height: 32px;
    }

    .notice-community {
        display: none;
    }

    .notice-links {
        gap: 0;
    }

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

    .primary-nav,
    .nav-actions {
        display: none;
    }

    .brand {
        justify-self: center;
        min-width: 0;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
        border-radius: 12px 12px 15px 12px;
        font-size: 18px;
    }

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

    .brand img {
        height: 36px;
    }

    .mobile-channel-trigger {
        justify-self: start;
        display: inline-flex;
        min-width: 44px;
        padding: 0 10px;
        border: 0;
        background: transparent;
        box-shadow: none;
        font-size: 0;
    }

    .mobile-channel-trigger span:last-child {
        display: none;
    }

    .menu-lines {
        width: 23px;
        display: grid;
        gap: 5px;
    }

    .menu-lines i {
        display: block;
        height: 2px;
        border-radius: 999px;
        background: var(--heading);
    }

    .mobile-experience {
        justify-self: end;
        display: inline-flex;
        min-height: 42px;
        padding-inline: 15px;
        font-size: 13px;
    }

    .section {
        padding: 58px 0;
    }

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

    .hero {
        padding: 54px 0 48px;
    }

    .hero-grid,
    .page-hero-grid,
    .app-showcase,
    .split-layout,
    .about-banner,
    .service-banner {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 34px;
    }

    .hero-side {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .hero-note {
        padding: 20px;
    }

    .hero-note h2 {
        font-size: 18px;
    }

    .phone-art {
        width: min(84vw, 305px);
        transform: rotate(0);
    }

    .topic-strip {
        grid-template-columns: repeat(8, 150px);
        margin-right: -16px;
    }

    .magazine-grid {
        grid-template-columns: 1fr;
        grid-template-areas: none;
    }

    .story-card,
    .story-card.main-story,
    .story-card:nth-child(n) {
        grid-area: auto;
        min-height: 270px;
    }

    .app-showcase {
        padding: 30px 22px;
        gap: 34px;
    }

    .service-tip {
        align-items: flex-start;
        flex-direction: column;
    }

    .page-hero {
        padding: 54px 0 42px;
    }

    .hero-summary-card {
        padding: 22px;
    }

    .content-sidebar {
        grid-template-columns: 1fr;
    }

    .article-section {
        padding: 24px;
        border-radius: 22px;
    }

    .channel-overlay {
        z-index: 180;
    }

    .desktop-channel-panel {
        display: none;
    }

    .mobile-channel-sheet {
        position: fixed;
        z-index: 190;
        left: 0;
        right: 0;
        bottom: 0;
        max-height: 85vh;
        display: block;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 10px 16px calc(24px + env(safe-area-inset-bottom));
        border-radius: 28px 28px 0 0;
        background: #fff;
        box-shadow: 0 -24px 60px rgba(48, 36, 43, .2);
        visibility: hidden;
        pointer-events: none;
        transform: translateY(105%);
        transition: transform .26s ease, visibility .26s ease;
    }

    .mobile-channel-sheet.is-open {
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .sheet-handle {
        width: 48px;
        height: 5px;
        margin: 2px auto 14px;
        border-radius: 999px;
        background: #E6DDE2;
    }

    .sheet-heading {
        position: sticky;
        top: -10px;
        z-index: 2;
        margin: 0 -16px 10px;
        padding: 12px 16px;
        background: rgba(255, 255, 255, .96);
        border-bottom: 1px solid var(--border);
        backdrop-filter: blur(12px);
    }

    .sheet-heading h2 {
        font-size: 20px;
    }

    .mobile-channel-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .mobile-channel-list a {
        min-height: 76px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 13px 14px;
        border: 1px solid var(--border);
        border-radius: 17px;
        background: var(--page-bg);
        color: var(--heading);
        font-weight: 800;
    }

    .mobile-channel-list a span {
        margin-top: 3px;
        color: var(--muted);
        font-size: 11px;
        font-weight: 500;
        line-height: 1.45;
    }

    .mobile-channel-list a.is-active {
        border-color: rgba(217, 76, 131, .25);
        background: var(--soft-pink);
        color: var(--berry);
    }

    .mobile-bottom-nav {
        position: fixed;
        z-index: 110;
        left: 0;
        right: 0;
        bottom: 0;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        min-height: calc(62px + env(safe-area-inset-bottom));
        padding: 5px 8px env(safe-area-inset-bottom);
        border-top: 1px solid rgba(217, 76, 131, .13);
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 -8px 28px rgba(76, 48, 66, .08);
        backdrop-filter: blur(14px);
    }

    .mobile-bottom-nav a {
        min-width: 0;
        min-height: 52px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        border-radius: 14px;
        color: var(--muted);
        font-size: 11px;
        font-weight: 700;
    }

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

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 560px) {
    h1 {
        font-size: 39px;
    }

    .hero-side,
    .card-grid,
    .card-grid.two,
    .card-grid.four,
    .quote-grid,
    .steps,
    .mini-grid {
        grid-template-columns: 1fr;
    }

    .app-points {
        grid-template-columns: 1fr;
    }

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

    .hero-actions .button,
    .hero-actions .button-secondary,
    .section-actions .button,
    .section-actions .button-secondary {
        width: 100%;
    }

    .story-card.main-story,
    .story-card {
        min-height: 250px;
        padding: 25px;
    }

    .info-panel {
        padding: 26px;
    }

    .about-banner,
    .service-banner {
        padding: 30px 24px;
    }

    .mobile-channel-list {
        grid-template-columns: 1fr;
    }

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

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