:root {
  --bg: #FFF7FB;
  --surface: #FFFFFF;
  --soft-pink: #FFF0F6;
  --soft-purple: #F6F1FF;
  --title: #332631;
  --text: #514451;
  --muted: #807080;
  --pink: #FF629F;
  --pink-deep: #E94D8E;
  --peach: #FF9BBC;
  --purple: #936BFF;
  --border: rgba(255, 98, 159, 0.16);
  --footer: #30232D;
  --footer-text: #FFEAF3;
  --shadow: 0 20px 50px rgba(112, 62, 91, 0.10);
  --shadow-soft: 0 10px 30px rgba(112, 62, 91, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: min(1220px, calc(100% - 40px));
  --header-height: 76px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--bg); color: var(--text); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif; line-height: 1.75; padding-top: var(--header-height); }
a { color: inherit; text-decoration: none; pointer-events: auto; }
img { max-width: 100%; height: auto; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.skip-link { position: fixed; left: 14px; top: -80px; z-index: 3000; background: var(--title); color: #fff; padding: 10px 16px; border-radius: 10px; }
.skip-link:focus { top: 10px; }
.site-header { position: fixed; inset: 0 0 auto; height: var(--header-height); z-index: 1000; background: rgba(255, 247, 251, 0.92); backdrop-filter: blur(18px); box-shadow: 0 6px 24px rgba(67, 40, 60, 0.07); border-bottom: 1px solid rgba(255,255,255,.78); }
.nav-shell { width: var(--container); height: 100%; margin: 0 auto; display: flex; align-items: center; gap: 24px; }
.brand-logo, .drawer-brand, .footer-logo { display: inline-flex; align-items: center; min-height: 44px; font-weight: 900; letter-spacing: -0.05em; }
.brand-logo span, .drawer-brand span { font-size: 30px; color: var(--pink-deep); }
.brand-logo img, .drawer-brand img, .footer-logo img { display: block; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 4px; flex: 1; white-space: nowrap; }
.desktop-nav a { min-height: 44px; display: inline-flex; align-items: center; padding: 0 14px; border-radius: 999px; color: #665561; font-weight: 650; font-size: 15px; }
.desktop-nav a:hover, .desktop-nav a:focus-visible, .desktop-nav a.is-active { color: var(--pink-deep); background: var(--soft-pink); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-cta, .button-primary { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; padding: 0 22px; border-radius: 999px; background: linear-gradient(135deg, #FF9BBC 0%, #FF629F 50%, #936BFF 100%); color: #fff; font-weight: 800; box-shadow: 0 10px 24px rgba(233, 77, 142, .2); white-space: nowrap; }
.nav-cta:hover, .button-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 32px rgba(233,77,142,.26); }
.button-secondary { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; padding: 0 20px; border-radius: 999px; color: var(--pink-deep); background: #fff; border: 1px solid var(--border); font-weight: 750; white-space: nowrap; }
.button-secondary:hover, .text-link:hover { color: var(--purple); }
.menu-toggle { width: 46px; height: 46px; border: 1px solid var(--border); background: #fff; border-radius: 14px; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; position: relative; z-index: 1; }
.menu-toggle span { width: 19px; height: 2px; border-radius: 99px; background: var(--title); pointer-events: none; }
.menu-toggle-mobile { display: none; }
.drawer-overlay { position: fixed; inset: 0; z-index: 1090; background: rgba(48,35,45,.42); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .22s ease, visibility .22s ease; }
.site-drawer { position: fixed; inset: 0 0 0 auto; width: min(410px, 88vw); z-index: 1100; background: #fff; transform: translateX(102%); opacity: 0; visibility: hidden; pointer-events: none; transition: transform .28s ease, opacity .22s ease, visibility .22s ease; padding: 20px; overflow-y: auto; box-shadow: -24px 0 70px rgba(46,33,43,.22); }
.drawer-open { overflow: hidden; }
.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; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.drawer-close { width: 46px; height: 46px; border: 0; border-radius: 14px; background: var(--soft-pink); color: var(--title); font-size: 29px; cursor: pointer; }
.drawer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 18px 0; }
.drawer-nav a { min-height: 48px; display: flex; align-items: center; justify-content: space-between; padding: 10px 13px; border-radius: 14px; border: 1px solid transparent; font-weight: 650; }
.drawer-nav a:hover, .drawer-nav a:focus-visible, .drawer-nav a.is-active { background: var(--soft-pink); color: var(--pink-deep); border-color: var(--border); }
.drawer-note { background: linear-gradient(145deg, var(--soft-pink), var(--soft-purple)); border: 1px solid var(--border); padding: 18px; border-radius: 20px; }
.drawer-note strong { color: var(--title); }
.drawer-note p { margin: 6px 0 0; color: var(--muted); font-size: 14px; }
main { min-height: 65vh; }
.container { width: var(--container); margin: 0 auto; }
.section { padding: 78px 0; position: relative; }
.section-tight { padding: 52px 0; }
.section-soft { background: var(--soft-pink); }
.section-purple { background: var(--soft-purple); }
.section-heading { max-width: 760px; margin-bottom: 28px; }
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }
.eyebrow { display: inline-flex; align-items: center; min-height: 30px; padding: 4px 12px; border-radius: 999px; background: rgba(255,98,159,.10); color: var(--pink-deep); font-size: 13px; font-weight: 800; letter-spacing: .06em; }
h1, h2, h3 { color: var(--title); line-height: 1.25; margin-top: 0; }
h1 { font-size: clamp(38px, 6vw, 74px); letter-spacing: -.045em; margin-bottom: 18px; }
h2 { font-size: clamp(27px, 3.8vw, 43px); letter-spacing: -.03em; margin-bottom: 14px; }
h3 { font-size: 20px; margin-bottom: 8px; }
p { margin-top: 0; }
.lead { font-size: clamp(17px, 2vw, 21px); color: #63535f; line-height: 1.9; }
.muted { color: var(--muted); }
.hero { padding: 72px 0 74px; min-height: 620px; display: flex; align-items: center; background: radial-gradient(circle at 78% 20%, rgba(147,107,255,.14), transparent 24%), radial-gradient(circle at 12% 76%, rgba(255,155,188,.18), transparent 27%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: 46px; align-items: center; }
.hero-copy { max-width: 730px; }
.hero-copy h1 span { color: var(--pink-deep); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 24px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-points span { display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 8px 13px; font-size: 14px; box-shadow: var(--shadow-soft); }
.hero-points span::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--pink), var(--purple)); }
.hero-art { position: relative; min-height: 420px; display: grid; place-items: center; }
.phone-card { width: min(315px, 88%); border-radius: 38px; background: #fff; border: 9px solid #fff; box-shadow: 0 35px 80px rgba(109,62,92,.20); transform: rotate(3deg); overflow: hidden; position: relative; }
.phone-top { height: 36px; display: flex; justify-content: center; align-items: center; }
.phone-notch { width: 92px; height: 17px; background: #332631; border-radius: 0 0 14px 14px; }
.phone-screen { background: linear-gradient(180deg, #FFF0F6, #F6F1FF); padding: 18px; min-height: 340px; }
.mini-story { height: 118px; border-radius: 22px; background: linear-gradient(135deg, rgba(255,98,159,.26), rgba(147,107,255,.24)); display: flex; align-items: end; padding: 15px; margin-bottom: 13px; position: relative; overflow: hidden; }
.mini-story::before, .mini-story::after { content: ''; position: absolute; border-radius: 50%; background: rgba(255,255,255,.65); }
.mini-story::before { width: 92px; height: 92px; top: -25px; right: -10px; }
.mini-story::after { width: 44px; height: 44px; left: 24px; top: 18px; }
.mini-story strong { z-index: 1; color: var(--title); }
.mini-row { display: grid; grid-template-columns: 54px 1fr; gap: 11px; background: #fff; padding: 11px; border-radius: 17px; margin-bottom: 10px; }
.mini-avatar { width: 54px; height: 54px; border-radius: 17px; background: linear-gradient(135deg, var(--peach), var(--purple)); }
.mini-lines span { display: block; height: 8px; border-radius: 99px; background: #F1E7ED; margin: 7px 0; }
.mini-lines span:last-child { width: 64%; }
.float-badge { position: absolute; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); border-radius: 18px; padding: 12px 16px; font-weight: 750; }
.float-badge.one { left: 0; top: 64px; }
.float-badge.two { right: 0; bottom: 74px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-soft); }
.card-soft { background: linear-gradient(145deg, #fff, #FFF6FA); }
.card-purple { background: linear-gradient(145deg, #fff, #F7F2FF); }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: linear-gradient(135deg, rgba(255,155,188,.35), rgba(147,107,255,.24)); color: var(--pink-deep); font-weight: 900; margin-bottom: 18px; }
.text-link { color: var(--pink-deep); font-weight: 800; display: inline-flex; align-items: center; gap: 6px; min-height: 44px; }
.quick-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 14px; }
.quick-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 18px; min-height: 185px; display: flex; flex-direction: column; }
.quick-card p { font-size: 14px; color: var(--muted); flex: 1; }
.inspiration-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.inspiration-card { min-height: 210px; border-radius: 24px; padding: 24px; border: 1px solid var(--border); display: flex; flex-direction: column; justify-content: end; overflow: hidden; position: relative; background: #fff; }
.inspiration-card::before { content: ''; position: absolute; width: 150px; height: 150px; border-radius: 50%; top: -55px; right: -35px; background: linear-gradient(135deg, rgba(255,155,188,.30), rgba(147,107,255,.18)); pointer-events: none; }
.inspiration-card:nth-child(1), .inspiration-card:nth-child(4) { grid-column: span 5; }
.inspiration-card:nth-child(2), .inspiration-card:nth-child(3) { grid-column: span 7; }
.inspiration-card h3, .inspiration-card p, .inspiration-card a, .inspiration-card .tags { position: relative; z-index: 1; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 8px 0; }
.tags span { font-size: 12px; padding: 5px 9px; background: var(--soft-pink); color: var(--pink-deep); border-radius: 999px; }
.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.8fr); gap: 42px; align-items: center; }
.abstract-panel { min-height: 360px; border-radius: 34px; background: linear-gradient(145deg, #FFE7F1, #F0E8FF); position: relative; overflow: hidden; box-shadow: var(--shadow); }
.abstract-panel::before { content: ''; position: absolute; width: 250px; height: 250px; border-radius: 50%; background: rgba(255,255,255,.78); left: 48px; top: 54px; }
.abstract-panel::after { content: ''; position: absolute; width: 160px; height: 220px; border-radius: 70px 70px 34px 34px; background: linear-gradient(180deg, var(--peach), var(--purple)); right: 55px; bottom: -40px; transform: rotate(-8deg); }
.feature-list { display: grid; gap: 12px; margin: 22px 0; }
.feature-item { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: start; }
.feature-item b { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: var(--soft-pink); color: var(--pink-deep); }
.feature-item p { margin: 3px 0 0; }
.topic-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.topic-strip article { padding: 20px; min-height: 185px; border-radius: 20px; background: #fff; border: 1px solid var(--border); }
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.review { position: relative; padding-top: 50px; }
.review::before { content: '“'; position: absolute; top: 10px; left: 22px; color: rgba(233,77,142,.22); font-size: 72px; line-height: 1; font-family: Georgia, serif; }
.review .role { color: var(--pink-deep); font-weight: 800; font-size: 13px; }
.faq-list { display: grid; gap: 12px; }
details { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 0 20px; }
summary { cursor: pointer; min-height: 60px; display: flex; align-items: center; font-weight: 800; color: var(--title); }
details p { padding: 0 0 18px; color: #665561; }
.page-hero { padding: 68px 0 56px; background: radial-gradient(circle at 90% 15%, rgba(147,107,255,.14), transparent 26%), linear-gradient(180deg, #FFF7FB, #FFF0F6); }
.page-hero .hero-inner { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px,.8fr); gap: 40px; align-items: center; }
.page-hero h1 { font-size: clamp(38px, 5vw, 62px); }
.page-orb { min-height: 250px; position: relative; }
.page-orb::before, .page-orb::after { content: ''; position: absolute; border-radius: 50%; }
.page-orb::before { width: 220px; height: 220px; background: linear-gradient(135deg, rgba(255,155,188,.72), rgba(147,107,255,.52)); right: 35px; top: 8px; box-shadow: 0 25px 65px rgba(113,64,95,.18); }
.page-orb::after { width: 96px; height: 96px; background: rgba(255,255,255,.84); right: 0; bottom: 4px; }
.anchor-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.anchor-chips a { min-height: 42px; display: inline-flex; align-items: center; padding: 0 14px; border-radius: 999px; background: #fff; border: 1px solid var(--border); font-weight: 700; }
.content-prose { max-width: 820px; }
.content-prose p { margin-bottom: 18px; }
.info-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 22px; overflow: hidden; }
.info-band article { background: #fff; padding: 22px; }
.steps { counter-reset: step; display: grid; gap: 16px; }
.step { counter-increment: step; display: grid; grid-template-columns: 58px 1fr; gap: 16px; padding: 22px; background: #fff; border: 1px solid var(--border); border-radius: 20px; }
.step::before { content: counter(step); width: 48px; height: 48px; border-radius: 15px; display: grid; place-items: center; color: #fff; font-weight: 900; background: linear-gradient(135deg, var(--peach), var(--purple)); }
.notice { padding: 24px; border-radius: 22px; background: linear-gradient(145deg, var(--soft-pink), #fff); border: 1px solid var(--border); }
.notice strong { color: var(--title); }
.cta-panel { padding: 34px; border-radius: 30px; background: linear-gradient(135deg, #3A2936, #503848); color: #FFEAF3; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta-panel h2 { color: #fff; margin-bottom: 8px; font-size: clamp(25px,3vw,36px); }
.cta-panel p { margin: 0; max-width: 720px; }
.site-footer { background: var(--footer); color: var(--footer-text); padding: 62px 0 22px; }
.footer-shell { width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 2fr; gap: 56px; }
.footer-logo span { font-size: 32px; color: #fff; }
.footer-brand p { max-width: 340px; color: rgba(255,234,243,.78); }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-links section { display: flex; flex-direction: column; gap: 7px; }
.footer-links h2 { color: #fff; font-size: 16px; margin-bottom: 8px; }
.footer-links a { color: rgba(255,234,243,.76); min-height: 35px; display: flex; align-items: center; }
.footer-links a:hover { color: #fff; }
.footer-bottom { width: var(--container); margin: 38px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 24px; color: rgba(255,234,243,.64); font-size: 13px; }
.footer-bottom p { margin: 0; }
.mobile-quick-nav { display: none; }
:focus-visible { outline: 3px solid rgba(147,107,255,.35); outline-offset: 3px; }
@media (max-width: 1050px) {
  .desktop-nav { gap: 0; }
  .desktop-nav a { padding: 0 9px; font-size: 14px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .quick-grid { grid-template-columns: repeat(3, 1fr); }
  .topic-strip { grid-template-columns: repeat(3, 1fr); }
  .footer-shell { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  :root { --container: min(100% - 28px, 720px); --header-height: 68px; }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .nav-shell { justify-content: space-between; gap: 10px; position: relative; }
  .desktop-nav, .menu-toggle-desktop { display: none; }
  .menu-toggle-mobile { display: inline-flex; }
  .brand-logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .brand-logo span { font-size: 27px; }
  .nav-actions { margin-left: auto; }
  .nav-cta { min-height: 42px; padding: 0 15px; font-size: 14px; }
  .hero { min-height: auto; padding: 56px 0; }
  .hero-grid, .page-hero .hero-inner, .split { grid-template-columns: 1fr; }
  .hero-art { min-height: 385px; }
  .float-badge.one { left: 4px; }
  .float-badge.two { right: 4px; }
  .page-orb { display: none; }
  .grid-3, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .inspiration-card:nth-child(n) { grid-column: span 6; }
  .topic-strip { grid-template-columns: repeat(2, 1fr); }
  .info-band { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; }
  .mobile-quick-nav { position: fixed; display: grid; grid-template-columns: repeat(4, 1fr); inset: auto 0 0; z-index: 950; min-height: 68px; padding-bottom: env(safe-area-inset-bottom); background: rgba(255,255,255,.96); border-top: 1px solid var(--border); box-shadow: 0 -10px 30px rgba(69,44,61,.08); backdrop-filter: blur(14px); }
  .mobile-quick-nav a { min-height: 62px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; font-size: 12px; color: var(--muted); }
  .mobile-quick-nav a span { font-size: 19px; line-height: 1; }
  .mobile-quick-nav a.is-active { color: var(--pink-deep); font-weight: 800; }
  .site-footer { padding-bottom: 24px; }
}
@media (max-width: 560px) {
  .section { padding: 58px 0; }
  h1 { font-size: 42px; }
  .lead { font-size: 16px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions a { width: 100%; }
  .hero-points { display: grid; grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4, .review-grid, .quick-grid, .topic-strip { grid-template-columns: 1fr; }
  .inspiration-grid { grid-template-columns: 1fr; }
  .inspiration-card:nth-child(n) { grid-column: auto; min-height: 190px; }
  .phone-card { width: 270px; }
  .float-badge { font-size: 13px; padding: 10px 12px; }
  .drawer-nav { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 28px 14px; }
  .step { grid-template-columns: 48px 1fr; padding: 18px; }
  .cta-panel { align-items: flex-start; flex-direction: column; }
  .cta-panel .button-primary { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
