:root {
    --page: #FFF7FB;
    --surface: #FFFFFF;
    --surface-pink: #FFF0F6;
    --surface-purple: #F6F1FF;
    --ink: #332631;
    --text: #514451;
    --muted: #807080;
    --pink: #FF629F;
    --deep-pink: #E94D8E;
    --peach: #FF9BBC;
    --purple: #936BFF;
    --line: rgba(255, 98, 159, .16);
    --footer: #30232D;
    --shadow: 0 18px 48px rgba(91, 48, 75, .10);
    --small-shadow: 0 10px 28px rgba(91, 48, 75, .08);
    --radius: 24px;
    --max: 1220px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    overflow-x: hidden;
    background: var(--page);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}
body.drawer-open { overflow: hidden; }
a { color: inherit; text-decoration: none; pointer-events: auto; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; height: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 2000; padding: 10px 16px; border-radius: 12px; background: var(--ink); color: #fff; }
.skip-link:focus { top: 16px; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    width: 100%;
    background: rgba(255, 247, 251, .88);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 30px rgba(85, 40, 70, .06);
}
.nav-shell { max-width: 1260px; min-height: 76px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; gap: 24px; }
.brand, .footer-brand, .drawer-brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-size: 20px; font-weight: 800; white-space: nowrap; }
.brand img, .footer-brand img, .drawer-brand img { max-height: 44px; width: auto; object-fit: contain; }
.brand-mark { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 13px; color: #fff; font-weight: 900; background: linear-gradient(135deg, var(--peach), var(--pink) 52%, var(--purple)); box-shadow: 0 8px 18px rgba(255,98,159,.24); }
.desktop-nav { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; min-width: 0; }
.desktop-nav a { min-height: 44px; display: inline-flex; align-items: center; padding: 0 14px; border-radius: 14px; color: #645564; font-size: 15px; font-weight: 700; white-space: nowrap; }
.desktop-nav a:hover, .desktop-nav a:focus-visible, .desktop-nav a.is-active { background: #fff; color: var(--deep-pink); box-shadow: var(--small-shadow); }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.experience-button, .primary-button, .secondary-button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 0 22px; font-weight: 800; white-space: nowrap; }
.experience-button, .primary-button { color: #fff; background: linear-gradient(135deg, var(--peach) 0%, var(--pink) 50%, var(--purple) 100%); box-shadow: 0 12px 28px rgba(255,98,159,.25); }
.experience-button:hover, .primary-button:hover { transform: translateY(-1px); box-shadow: 0 15px 32px rgba(255,98,159,.3); }
.secondary-button { border: 1px solid var(--line); background: #fff; color: var(--deep-pink); }
.menu-button { width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 15px; background: #fff; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; box-shadow: var(--small-shadow); }
.menu-button span { width: 19px; height: 2px; border-radius: 99px; background: var(--ink); pointer-events: none; }
.mobile-only { display: none; }
.drawer-overlay { position: fixed; inset: 0; z-index: 1100; background: rgba(42, 28, 39, .44); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .25s ease, visibility .25s ease; }
.site-drawer { position: fixed; top: 0; right: 0; z-index: 1200; width: min(410px, 88vw); height: 100dvh; overflow-y: auto; padding: 24px; background: #fff; box-shadow: -24px 0 60px rgba(42,28,39,.18); transform: translateX(104%); opacity: 0; visibility: hidden; pointer-events: none; transition: transform .28s ease, opacity .28s ease, visibility .28s ease; }
.drawer-open .drawer-overlay { opacity: 1; visibility: visible; pointer-events: auto; }
.drawer-open .site-drawer { transform: translateX(0); opacity: 1; visibility: visible; pointer-events: auto; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.drawer-close { width: 44px; height: 44px; border: 0; border-radius: 14px; background: var(--surface-pink); color: var(--ink); font-size: 30px; line-height: 1; cursor: pointer; }
.drawer-intro { margin: 18px 0; color: var(--muted); font-size: 14px; }
.drawer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.drawer-nav a { min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 14px; background: #fff; font-size: 14px; font-weight: 700; }
.drawer-nav a:hover, .drawer-nav a:focus-visible, .drawer-nav a.is-active { border-color: rgba(255,98,159,.38); background: var(--surface-pink); color: var(--deep-pink); }
main { min-height: 60vh; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.hero, .page-hero { position: relative; overflow: hidden; }
.hero { padding: 84px 0 72px; }
.page-hero { padding: 74px 0 56px; }
.hero::before, .page-hero::before { content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; top: -150px; right: -120px; background: radial-gradient(circle, rgba(255,155,188,.30), rgba(147,107,255,.08) 55%, transparent 72%); pointer-events: none; }
.hero::after, .page-hero::after { content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%; left: -140px; bottom: -160px; background: radial-gradient(circle, rgba(147,107,255,.18), transparent 70%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); align-items: center; gap: 64px; z-index: 1; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 18px; padding: 7px 12px; border-radius: 999px; background: rgba(255,255,255,.82); border: 1px solid var(--line); color: var(--deep-pink); font-size: 13px; font-weight: 800; letter-spacing: .08em; }
h1, h2, h3 { color: var(--ink); line-height: 1.22; margin-top: 0; }
h1 { margin-bottom: 20px; font-size: clamp(40px, 6vw, 78px); letter-spacing: -.04em; }
.page-hero h1 { font-size: clamp(36px, 5vw, 62px); }
h2 { font-size: clamp(28px, 3.4vw, 44px); letter-spacing: -.025em; }
h3 { font-size: 20px; }
.hero-subtitle { margin: 0 0 18px; color: var(--deep-pink); font-size: clamp(20px, 2.4vw, 30px); font-weight: 800; }
.hero-copy, .page-intro { max-width: 760px; margin: 0; color: #675967; font-size: 17px; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.text-link { display: inline-flex; align-items: center; gap: 7px; min-height: 44px; color: var(--deep-pink); font-weight: 800; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; }
.hero-points li { padding: 9px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: 14px; font-weight: 700; }
.hero-art { min-height: 440px; position: relative; display: grid; place-items: center; }
.phone-card { position: relative; width: min(330px, 90%); aspect-ratio: 3 / 5.25; padding: 18px; border: 10px solid #fff; border-radius: 46px; background: linear-gradient(165deg, #FFEAF3, #F5EEFF); box-shadow: 0 34px 80px rgba(95,52,84,.18); transform: rotate(3deg); }
.phone-speaker { width: 84px; height: 10px; border-radius: 99px; margin: 0 auto 22px; background: rgba(51,38,49,.12); }
.story-card { padding: 18px; border-radius: 22px; background: #fff; box-shadow: var(--small-shadow); }
.story-cover { height: 150px; border-radius: 18px; background: linear-gradient(135deg, rgba(255,155,188,.7), rgba(147,107,255,.55)); position: relative; overflow: hidden; }
.story-cover::before, .story-cover::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.55); }
.story-cover::before { width: 110px; height: 110px; right: -20px; top: -25px; }
.story-cover::after { width: 70px; height: 70px; left: 24px; bottom: -25px; }
.story-lines { margin-top: 14px; display: grid; gap: 9px; }
.story-lines span { display: block; height: 10px; border-radius: 99px; background: rgba(51,38,49,.09); }
.story-lines span:nth-child(2) { width: 72%; }
.floating-note { position: absolute; padding: 12px 15px; border-radius: 16px; background: #fff; box-shadow: var(--small-shadow); color: var(--ink); font-weight: 800; font-size: 14px; }
.note-one { left: 0; top: 24%; }
.note-two { right: 0; bottom: 20%; }
.section { padding: 78px 0; }
.section.alt { background: var(--surface-pink); }
.section.purple { background: var(--surface-purple); }
.section-head { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 32px; }
.section-head p { max-width: 680px; margin: 0; color: var(--muted); }
.section-kicker { margin: 0 0 10px; color: var(--deep-pink); font-weight: 800; font-size: 14px; letter-spacing: .08em; }
.card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.info-card, .feature-card, .quote-card, .topic-card, .faq-card, .step-card { position: relative; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.9); box-shadow: var(--small-shadow); }
.info-card p, .feature-card p, .topic-card p, .step-card p { margin-bottom: 0; color: #6e606d; }
.card-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 15px; background: linear-gradient(135deg, #FFE2EC, #EEE7FF); color: var(--deep-pink); font-weight: 900; }
.channel-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.channel-card { min-height: 190px; padding: 22px; border-radius: 22px; background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; box-shadow: var(--small-shadow); }
.channel-card:nth-child(3n+2) { background: var(--surface-purple); }
.channel-card:nth-child(3n) { background: #FFF8EF; }
.channel-card p { color: var(--muted); font-size: 14px; }
.channel-card .text-link { margin-top: auto; font-size: 14px; }
.inspiration-grid { display: grid; grid-template-columns: 1.25fr .75fr 1fr; grid-auto-rows: minmax(190px, auto); gap: 18px; }
.inspiration-card { padding: 26px; border-radius: 26px; background: #fff; border: 1px solid var(--line); box-shadow: var(--small-shadow); display: flex; flex-direction: column; justify-content: space-between; }
.inspiration-card.large { grid-row: span 2; background: linear-gradient(155deg, #FFF0F6, #F7F2FF); }
.inspiration-card.wide { grid-column: span 2; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.tag { display: inline-flex; align-items: center; min-height: 30px; padding: 4px 10px; border-radius: 999px; background: rgba(255,98,159,.08); color: var(--deep-pink); font-size: 12px; font-weight: 800; }
.split-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr); gap: 56px; align-items: center; }
.visual-panel { min-height: 360px; padding: 28px; border-radius: 32px; background: linear-gradient(145deg, #FFEAF3, #EFE9FF); box-shadow: var(--shadow); display: grid; align-content: center; gap: 16px; }
.visual-panel .mini-card { padding: 18px; border-radius: 20px; background: rgba(255,255,255,.88); border: 1px solid rgba(255,255,255,.75); }
.visual-panel .mini-card:nth-child(2) { margin-left: 12%; }
.visual-panel .mini-card:nth-child(3) { margin-right: 12%; }
.prose { font-size: 16px; }
.prose p { margin: 0 0 18px; }
.check-list, .plain-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.check-list li, .plain-list li { position: relative; padding-left: 32px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,98,159,.12); color: var(--deep-pink); font-size: 13px; font-weight: 900; }
.plain-list li::before { content: "•"; position: absolute; left: 8px; color: var(--pink); font-weight: 900; }
.link-row { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 24px; }
.band { padding: 34px; border-radius: 30px; background: linear-gradient(135deg, #322530, #584051); color: #FFEAF3; box-shadow: var(--shadow); }
.band h2, .band h3 { color: #fff; }
.band p { color: #F7DDE9; }
.band .secondary-button { background: #fff; border-color: #fff; }
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--line); }
.stats-strip article { padding: 24px; background: #fff; }
.stats-strip strong { display: block; color: var(--ink); font-size: 18px; margin-bottom: 6px; }
.timeline { position: relative; display: grid; gap: 18px; }
.timeline::before { content: ""; position: absolute; left: 24px; top: 16px; bottom: 16px; width: 2px; background: linear-gradient(var(--pink), var(--purple)); }
.timeline-item { position: relative; padding: 22px 24px 22px 70px; border-radius: 22px; background: #fff; border: 1px solid var(--line); box-shadow: var(--small-shadow); }
.timeline-item::before { content: attr(data-step); position: absolute; left: 10px; top: 20px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; font-weight: 800; z-index: 1; }
.notice { padding: 22px 24px; border-left: 4px solid var(--pink); border-radius: 0 18px 18px 0; background: #FFF1F7; }
.notice strong { color: var(--ink); }
.quote-card { padding-top: 38px; }
.quote-card::before { content: "“"; position: absolute; left: 22px; top: 4px; color: rgba(255,98,159,.26); font-family: Georgia, serif; font-size: 64px; line-height: 1; }
.quote-card p { margin: 0; }
.quote-card span { display: block; margin-top: 16px; color: var(--muted); font-size: 13px; font-weight: 800; }
details { border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--small-shadow); }
details + details { margin-top: 12px; }
summary { min-height: 56px; padding: 16px 52px 16px 20px; display: flex; align-items: center; position: relative; color: var(--ink); font-weight: 800; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 20px; font-size: 24px; color: var(--deep-pink); }
details[open] summary::after { content: "−"; }
details p { padding: 0 20px 20px; margin: 0; color: #6d5f6c; }
.page-index { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.page-index a { min-height: 40px; display: inline-flex; align-items: center; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--deep-pink); font-size: 14px; font-weight: 800; }
.cta-panel { padding: 42px; border-radius: 32px; background: linear-gradient(140deg, #FFEAF3, #F2EDFF); border: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 28px; }
.cta-panel h2 { margin-bottom: 10px; }
.cta-panel p { margin: 0; max-width: 720px; }
.site-footer { background: var(--footer); color: #FFEAF3; padding: 66px 0 24px; }
.footer-grid { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 34px; }
.footer-grid h2 { color: #fff; font-size: 16px; margin-bottom: 18px; }
.footer-grid a:not(.footer-brand) { min-height: 36px; display: flex; align-items: center; color: #EED5E0; font-size: 14px; }
.footer-grid a:hover { color: #fff; }
.footer-brand { color: #fff; }
.footer-brand-column p { max-width: 360px; color: #E8CAD8; font-size: 14px; }
.footer-bottom { width: min(var(--max), calc(100% - 40px)); margin: 34px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.11); display: flex; justify-content: space-between; gap: 20px; color: #DABCCB; font-size: 13px; }
.footer-bottom p { margin: 0; }
.mobile-bottom-nav { display: none; }
:focus-visible { outline: 3px solid rgba(147,107,255,.35); outline-offset: 3px; }
@media (max-width: 1040px) {
    .desktop-nav { gap: 0; }
    .desktop-nav a { padding: 0 9px; font-size: 14px; }
    .hero-grid, .split-layout { gap: 38px; }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .channel-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
}
@media (max-width: 820px) {
    .nav-shell { min-height: 68px; justify-content: space-between; gap: 12px; }
    .desktop-nav, .desktop-menu { display: none; }
    .mobile-only { display: inline-flex; }
    .nav-actions { margin-left: 0; }
    .brand { position: absolute; left: 50%; transform: translateX(-50%); font-size: 17px; }
    .brand-mark { width: 34px; height: 34px; }
    .experience-button { min-height: 44px; padding: 0 16px; font-size: 14px; }
    .hero { padding: 62px 0 54px; }
    .hero-grid, .split-layout { grid-template-columns: 1fr; }
    .hero-art { min-height: 360px; order: 2; }
    .page-hero { padding: 58px 0 42px; }
    .section { padding: 58px 0; }
    .section-head { align-items: start; flex-direction: column; gap: 10px; }
    .channel-grid { grid-template-columns: repeat(2, 1fr); }
    .inspiration-grid { grid-template-columns: 1fr 1fr; }
    .inspiration-card.large { grid-row: span 1; }
    .inspiration-card.wide { grid-column: span 2; }
    .stats-strip { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .cta-panel { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 620px) {
    .container, .footer-grid, .footer-bottom { width: min(100% - 28px, var(--max)); }
    body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
    h1 { font-size: 42px; }
    .page-hero h1 { font-size: 38px; }
    .hero-copy, .page-intro { font-size: 16px; }
    .brand span:not(.brand-mark) { display: none; }
    .nav-shell { padding: 0 14px; }
    .experience-button { padding: 0 13px; }
    .drawer-nav { grid-template-columns: 1fr; }
    .hero-art { min-height: 330px; }
    .phone-card { width: 245px; border-width: 7px; border-radius: 36px; }
    .story-cover { height: 110px; }
    .note-one { left: 2px; top: 20%; }
    .note-two { right: 2px; bottom: 14%; }
    .card-grid, .card-grid.three, .card-grid.two, .channel-grid, .inspiration-grid, .stats-strip { grid-template-columns: 1fr; }
    .inspiration-card.wide { grid-column: span 1; }
    .section { padding: 48px 0; }
    .info-card, .feature-card, .quote-card, .topic-card, .faq-card, .step-card { padding: 22px; }
    .visual-panel { min-height: 310px; padding: 20px; }
    .band, .cta-panel { padding: 28px 22px; }
    .timeline::before { left: 20px; }
    .timeline-item { padding-left: 62px; }
    .timeline-item::before { left: 6px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand-column { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; }
    .mobile-bottom-nav { position: fixed; left: 0; right: 0; bottom: 0; z-index: 850; min-height: 68px; padding: 6px 8px calc(6px + env(safe-area-inset-bottom)); display: grid; grid-template-columns: repeat(4, 1fr); background: rgba(255,255,255,.95); backdrop-filter: blur(16px); border-top: 1px solid var(--line); box-shadow: 0 -8px 28px rgba(67,42,60,.08); }
    .mobile-bottom-nav a { min-height: 50px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; border-radius: 14px; color: var(--muted); font-size: 12px; font-weight: 800; }
    .mobile-bottom-nav a span { font-size: 18px; line-height: 1; }
    .mobile-bottom-nav a.is-active { background: var(--surface-pink); color: var(--deep-pink); }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
