:root {
    --bg: #FFF7FB;
    --surface: #FFFFFF;
    --soft-pink: #FFF0F6;
    --soft-purple: #F6F1FF;
    --title: #332631;
    --text: #514451;
    --muted: #807080;
    --pink: #FF629F;
    --deep-pink: #E94D8E;
    --peach: #FF9BBC;
    --purple: #936BFF;
    --border: rgba(255, 98, 159, .16);
    --footer: #30232D;
    --footer-text: #FFEAF3;
    --shadow: 0 18px 48px rgba(109, 67, 93, .10);
    --shadow-small: 0 10px 28px rgba(109, 67, 93, .08);
    --radius-lg: 30px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --container: 1220px;
    --header-height: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 8% 4%, rgba(255,155,188,.18), transparent 28rem),
        radial-gradient(circle at 92% 18%, rgba(147,107,255,.13), transparent 26rem),
        var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}
body.drawer-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; pointer-events: auto; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
main { display: block; padding-top: var(--header-height); }
section { position: relative; }

.skip-link {
    position: fixed; left: 16px; top: -80px; z-index: 3000;
    padding: 12px 18px; border-radius: 12px; background: var(--title); color: white;
}
.skip-link:focus { top: 12px; }

.site-header {
    position: fixed; inset: 0 0 auto 0; z-index: 1000; height: var(--header-height);
    background: rgba(255,255,255,.88); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,98,159,.10); box-shadow: 0 8px 24px rgba(81,68,81,.06);
}
.nav-wrap {
    width: min(calc(100% - 36px), 1260px); height: 100%; margin: 0 auto;
    display: flex; align-items: center; gap: 28px;
}
.brand-logo, .drawer-brand, .footer-logo {
    display: inline-flex; align-items: center; flex: 0 0 auto; min-height: 44px;
    color: var(--deep-pink); font-weight: 900; letter-spacing: -.04em; font-size: 24px;
}
.brand-logo img, .drawer-brand img, .footer-logo img { width: auto; max-width: 152px; max-height: 44px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 4px; flex: 1; min-width: 0; }
.nav-link {
    display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 15px;
    border-radius: 999px; color: #655765; font-size: 15px; font-weight: 700; white-space: nowrap;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-link:hover, .nav-link:focus-visible { background: var(--soft-pink); color: var(--deep-pink); outline: none; }
.nav-link.is-active { background: linear-gradient(135deg, rgba(255,155,188,.20), rgba(147,107,255,.14)); color: var(--deep-pink); }
.nav-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.experience-button, .button-primary, .button-secondary, .text-button {
    display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 22px;
    border-radius: 999px; font-weight: 800; white-space: nowrap; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.experience-button, .button-primary { color: white; background: linear-gradient(135deg, #FF9BBC 0%, #FF629F 50%, #936BFF 100%); box-shadow: 0 12px 25px rgba(233,77,142,.22); }
.experience-button:hover, .button-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(233,77,142,.28); }
.button-secondary { color: var(--deep-pink); background: white; border: 1px solid var(--border); }
.button-secondary:hover { background: var(--soft-pink); transform: translateY(-2px); }
.text-button { min-height: 42px; padding: 0; border-radius: 0; color: var(--deep-pink); }
.text-button::after { content: "→"; margin-left: 8px; }
.text-button:hover { color: var(--purple); }

.menu-button {
    width: 46px; height: 46px; padding: 0; border: 1px solid var(--border); border-radius: 50%;
    background: white; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
    cursor: pointer; position: relative; z-index: 2;
}
.menu-button span { width: 18px; height: 2px; border-radius: 2px; background: var(--title); pointer-events: none; }
.mobile-menu-button { display: none; }
.menu-button:hover, .menu-button:focus-visible { background: var(--soft-pink); outline: 3px solid rgba(255,98,159,.14); }

.drawer-overlay {
    position: fixed; inset: 0; z-index: 1100; background: rgba(45,31,42,.42); opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}
.site-drawer {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 1200; width: min(410px, 88vw); padding: 24px;
    background: #fffafd; box-shadow: -24px 0 60px rgba(51,38,49,.18); transform: translateX(105%); visibility: hidden;
    overflow-y: auto; overscroll-behavior: contain; transition: transform .28s ease, visibility .28s ease;
}
.drawer-open .drawer-overlay { opacity: 1; visibility: visible; pointer-events: auto; }
.drawer-open .site-drawer { transform: translateX(0); visibility: visible; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.drawer-close { width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--soft-pink); color: var(--title); font-size: 28px; line-height: 1; cursor: pointer; }
.drawer-intro { margin: 18px 0; padding: 16px 18px; border-radius: 18px; background: linear-gradient(135deg, var(--soft-pink), var(--soft-purple)); color: var(--muted); font-size: 14px; }
.drawer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.drawer-link { min-height: 48px; padding: 0 14px; display: flex; align-items: center; justify-content: space-between; border-radius: 14px; background: white; border: 1px solid rgba(255,98,159,.10); font-weight: 700; font-size: 14px; }
.drawer-link:hover, .drawer-link.is-active { color: var(--deep-pink); background: var(--soft-pink); }
.drawer-link span:last-child { color: var(--pink); }

.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { padding: 84px 0; }
.section-tight { padding: 58px 0; }
.section-soft { background: rgba(255,255,255,.70); border-top: 1px solid rgba(255,98,159,.08); border-bottom: 1px solid rgba(255,98,159,.08); }
.section-pink { background: linear-gradient(180deg, rgba(255,240,246,.82), rgba(255,255,255,.70)); }
.section-purple { background: linear-gradient(180deg, rgba(246,241,255,.78), rgba(255,255,255,.68)); }
.eyebrow { margin: 0 0 10px; color: var(--deep-pink); font-size: 13px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading h2, .content-copy h2, .content-copy h3 { margin: 0 0 16px; color: var(--title); line-height: 1.25; letter-spacing: -.035em; }
.section-heading h2 { font-size: clamp(30px, 4vw, 48px); }
.section-heading p { margin: 0; color: var(--muted); font-size: 17px; }

.hero, .page-hero { overflow: hidden; }
.hero { min-height: 650px; padding: 86px 0 76px; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.22fr) minmax(320px, .78fr); align-items: center; gap: 64px; }
.hero-copy h1, .page-hero h1 { margin: 0; color: var(--title); line-height: 1.07; letter-spacing: -.055em; }
.hero-copy h1 { font-size: clamp(54px, 8vw, 92px); }
.hero-subtitle { margin: 18px 0 16px; color: var(--deep-pink); font-size: clamp(24px, 3vw, 38px); line-height: 1.28; font-weight: 850; letter-spacing: -.035em; }
.hero-description { max-width: 760px; margin: 0; font-size: 17px; color: #665765; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 30px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-points span, .tag { display: inline-flex; align-items: center; min-height: 34px; padding: 5px 12px; border-radius: 999px; background: rgba(255,255,255,.82); border: 1px solid var(--border); color: #6d5c69; font-size: 13px; font-weight: 700; }
.hero-visual { position: relative; min-height: 460px; display: grid; place-items: center; }
.visual-card { position: relative; z-index: 2; width: min(100%, 390px); padding: 34px; border: 1px solid rgba(255,255,255,.72); border-radius: 42px; background: rgba(255,255,255,.80); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.visual-card img { width: 100%; max-height: 390px; object-fit: contain; }
.visual-card.no-image { min-height: 390px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(150deg, #fff 5%, #fff0f6 48%, #f6f1ff 100%); }
.visual-orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.visual-orb.one { width: 270px; height: 270px; background: rgba(255,155,188,.32); top: 6%; right: 0; }
.visual-orb.two { width: 210px; height: 210px; background: rgba(147,107,255,.22); bottom: 4%; left: 0; }
.visual-mini { display: grid; gap: 14px; }
.visual-mini div { padding: 16px 18px; border-radius: 18px; background: rgba(255,255,255,.76); border: 1px solid rgba(255,98,159,.10); }
.visual-mini strong { display: block; color: var(--title); }
.visual-mini span { color: var(--muted); font-size: 13px; }

.page-hero { padding: 88px 0 66px; background: linear-gradient(150deg, rgba(255,240,246,.80), rgba(246,241,255,.78)); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .55fr); gap: 54px; align-items: end; }
.page-hero h1 { font-size: clamp(44px, 6vw, 70px); }
.page-lead { max-width: 800px; margin: 22px 0 0; color: #665765; font-size: 18px; }
.page-kicker-card { padding: 26px; border-radius: 28px; background: rgba(255,255,255,.84); border: 1px solid rgba(255,98,159,.14); box-shadow: var(--shadow-small); }
.page-kicker-card strong { display: block; margin-bottom: 8px; color: var(--title); font-size: 21px; }
.page-kicker-card p { margin: 0; color: var(--muted); }

.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 { padding: 28px; border-radius: var(--radius-md); background: rgba(255,255,255,.88); border: 1px solid var(--border); box-shadow: var(--shadow-small); }
.card h3 { margin: 0 0 10px; color: var(--title); font-size: 21px; line-height: 1.35; }
.card p { margin: 0; color: var(--muted); }
.card .text-button { margin-top: 16px; }
.card-icon { width: 46px; height: 46px; margin-bottom: 18px; border-radius: 15px; display: grid; place-items: center; color: white; background: linear-gradient(135deg, var(--peach), var(--pink), var(--purple)); font-weight: 900; }
.card:hover { transform: translateY(-3px); transition: transform .2s ease, box-shadow .2s ease; box-shadow: var(--shadow); }
.number-card { counter-increment: number-card; }
.number-card::before { content: counter(number-card, decimal-leading-zero); display: inline-flex; margin-bottom: 20px; color: var(--pink); font-weight: 900; font-size: 14px; }
.number-grid { counter-reset: number-card; }

.content-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr); gap: 56px; align-items: center; }
.content-split.reverse { grid-template-columns: minmax(320px, .75fr) minmax(0, 1fr); }
.content-split.reverse .content-copy { order: 2; }
.content-split.reverse .content-visual { order: 1; }
.content-copy p { margin: 0 0 18px; }
.content-copy ul { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.content-copy li { position: relative; padding-left: 28px; }
.content-copy li::before { content: ""; position: absolute; left: 2px; top: .75em; width: 10px; height: 10px; border-radius: 50%; background: linear-gradient(135deg, var(--pink), var(--purple)); }
.content-visual { min-height: 320px; padding: 30px; display: grid; place-items: center; border-radius: var(--radius-lg); background: linear-gradient(145deg, #fff, #fff0f6 55%, #f6f1ff); border: 1px solid var(--border); box-shadow: var(--shadow-small); }
.content-visual img { width: 100%; max-height: 400px; object-fit: contain; }
.content-visual.no-image { align-content: center; }
.feature-lines { width: 100%; display: grid; gap: 15px; }
.feature-line { display: flex; align-items: center; gap: 14px; padding: 16px; border-radius: 16px; background: rgba(255,255,255,.8); }
.feature-line i { width: 12px; height: 12px; flex: 0 0 12px; border-radius: 50%; background: var(--pink); }

.masonry-lite { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 20px; align-items: stretch; }
.inspiration-card { min-height: 220px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; border-radius: 26px; border: 1px solid var(--border); background: white; box-shadow: var(--shadow-small); }
.inspiration-card.tall { min-height: 340px; }
.inspiration-card:nth-child(2n) { background: var(--soft-pink); }
.inspiration-card:nth-child(3n) { background: var(--soft-purple); }
.inspiration-card h3 { margin: 0 0 10px; color: var(--title); font-size: 25px; }
.inspiration-card p { margin: 0; color: var(--muted); }
.inspiration-card .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }

.timeline { position: relative; display: grid; gap: 22px; }
.timeline::before { content: ""; position: absolute; left: 21px; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(var(--pink), var(--purple)); opacity: .35; }
.timeline-item { position: relative; padding: 24px 28px 24px 66px; border-radius: 20px; background: white; border: 1px solid var(--border); }
.timeline-item::before { content: ""; position: absolute; left: 14px; top: 30px; width: 16px; height: 16px; border: 6px solid var(--soft-pink); border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 1px rgba(255,98,159,.15); }
.timeline-item h3 { margin: 0 0 8px; color: var(--title); }
.timeline-item p { margin: 0; color: var(--muted); }

.notice { padding: 28px 30px; border-radius: 24px; background: linear-gradient(135deg, rgba(255,240,246,.9), rgba(246,241,255,.9)); border: 1px solid var(--border); }
.notice strong { display: block; margin-bottom: 8px; color: var(--title); font-size: 20px; }
.notice p { margin: 0; }
.list-panel { padding: 30px; border-radius: 26px; background: white; border: 1px solid var(--border); box-shadow: var(--shadow-small); }
.list-panel h2, .list-panel h3 { margin-top: 0; color: var(--title); }
.list-panel ul, .list-panel ol { margin-bottom: 0; }

.faq-list { display: grid; gap: 12px; }
details { border-radius: 18px; background: rgba(255,255,255,.90); border: 1px solid var(--border); box-shadow: 0 8px 20px rgba(81,68,81,.05); overflow: clip; }
summary { min-height: 58px; padding: 16px 56px 16px 20px; display: flex; align-items: center; position: relative; color: var(--title); font-weight: 800; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--soft-pink); color: var(--deep-pink); font-size: 20px; }
details[open] summary::after { content: "−"; }
details p { margin: 0; padding: 0 20px 20px; color: var(--muted); }

.feedback-card { position: relative; padding-top: 46px; }
.feedback-card::before { content: "“"; position: absolute; left: 24px; top: 4px; color: rgba(255,98,159,.28); font-size: 72px; line-height: 1; font-family: Georgia, serif; }
.feedback-card span { display: inline-block; margin-top: 18px; color: var(--deep-pink); font-size: 13px; font-weight: 800; }

.cta-panel { padding: 48px; border-radius: 34px; background: linear-gradient(135deg, #fff, #fff0f6 48%, #f6f1ff); border: 1px solid var(--border); box-shadow: var(--shadow); display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.cta-panel h2 { margin: 0 0 10px; color: var(--title); font-size: clamp(30px, 4vw, 46px); line-height: 1.2; }
.cta-panel p { max-width: 720px; margin: 0; color: var(--muted); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; flex: 0 0 auto; }
.related-links { display: flex; flex-wrap: wrap; gap: 10px; }
.related-links a { min-height: 44px; padding: 8px 16px; display: inline-flex; align-items: center; border-radius: 999px; background: white; border: 1px solid var(--border); color: var(--deep-pink); font-weight: 750; }
.related-links a:hover { background: var(--soft-pink); }

.site-footer { background: var(--footer); color: var(--footer-text); padding: 66px 0 24px; }
.footer-inner { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; display: grid; grid-template-columns: 1.05fr 1.95fr; gap: 70px; }
.footer-logo { color: white; }
.footer-brand-block p { max-width: 430px; margin: 14px 0 0; color: rgba(255,234,243,.72); }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.footer-links section { display: flex; flex-direction: column; gap: 9px; }
.footer-links h2 { margin: 0 0 8px; color: white; font-size: 15px; }
.footer-links a { color: rgba(255,234,243,.74); font-size: 14px; }
.footer-links a:hover { color: white; }
.footer-bottom { width: min(calc(100% - 40px), var(--container)); margin: 46px auto 0; padding-top: 20px; display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,255,255,.10); color: rgba(255,234,243,.58); font-size: 13px; }
.footer-bottom p { margin: 0; }
.footer-bottom a:hover { color: white; }
.mobile-bottom-nav { display: none; }

@media (max-width: 1080px) {
    .nav-wrap { gap: 16px; }
    .desktop-nav { gap: 0; }
    .nav-link { padding: 0 10px; font-size: 14px; }
    .hero-grid, .page-hero-grid, .content-split, .content-split.reverse { gap: 36px; }
    .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 860px) {
    :root { --header-height: 68px; }
    .nav-wrap { width: min(calc(100% - 24px), 1260px); justify-content: space-between; }
    .mobile-menu-button { display: inline-flex; order: 1; }
    .brand-logo { order: 2; position: absolute; left: 50%; transform: translateX(-50%); font-size: 20px; max-width: 42vw; }
    .brand-logo img { max-width: 128px; max-height: 38px; }
    .desktop-nav, .desktop-menu-button { display: none; }
    .nav-actions { order: 3; margin-left: auto; }
    .experience-button { min-height: 44px; padding: 0 15px; font-size: 13px; }
    .hero { min-height: auto; padding: 64px 0 58px; }
    .hero-grid, .page-hero-grid, .content-split, .content-split.reverse { grid-template-columns: 1fr; }
    .content-split.reverse .content-copy, .content-split.reverse .content-visual { order: initial; }
    .hero-visual { min-height: 380px; }
    .page-hero { padding: 62px 0 48px; }
    .page-kicker-card { max-width: 620px; }
    .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .masonry-lite { grid-template-columns: 1fr 1fr; }
    .masonry-lite .inspiration-card:first-child { grid-column: 1 / -1; }
    .cta-panel { align-items: flex-start; flex-direction: column; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
    .mobile-bottom-nav {
        position: fixed; left: 12px; right: 12px; bottom: max(10px, env(safe-area-inset-bottom)); z-index: 950;
        min-height: 64px; padding: 6px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
        border-radius: 22px; background: rgba(255,255,255,.94); border: 1px solid var(--border); box-shadow: 0 15px 40px rgba(51,38,49,.18); backdrop-filter: blur(18px);
    }
    .mobile-bottom-nav a { min-height: 52px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; border-radius: 16px; color: var(--muted); font-size: 18px; }
    .mobile-bottom-nav b { font-size: 11px; }
    .mobile-bottom-nav a.is-active { background: var(--soft-pink); color: var(--deep-pink); }
    .site-footer { padding-bottom: 110px; }
}

@media (max-width: 620px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 62px 0; }
    .section-tight { padding: 44px 0; }
    .hero-copy h1 { font-size: clamp(50px, 16vw, 72px); }
    .hero-subtitle { font-size: 25px; }
    .hero-description, .page-lead { font-size: 16px; }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .hero-actions .button-primary, .hero-actions .button-secondary { width: 100%; }
    .hero-visual { min-height: 330px; }
    .visual-card { padding: 24px; border-radius: 30px; }
    .visual-card.no-image { min-height: 310px; }
    .page-hero h1 { font-size: 44px; }
    .page-hero-grid { gap: 28px; }
    .grid-2, .grid-3, .grid-4, .grid-5, .masonry-lite { grid-template-columns: 1fr; }
    .masonry-lite .inspiration-card:first-child { grid-column: auto; }
    .card { padding: 23px; }
    .inspiration-card, .inspiration-card.tall { min-height: 220px; }
    .content-visual { min-height: 260px; padding: 22px; }
    .cta-panel { padding: 30px 24px; border-radius: 26px; }
    .cta-actions { width: 100%; flex-direction: column; }
    .cta-actions a { width: 100%; }
    .drawer-nav { grid-template-columns: 1fr; }
    .site-drawer { padding: 18px; }
    .footer-links { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
    .footer-bottom { flex-direction: column; }
}

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