:root {
  --page: #FFF8FB;
  --surface: #FFFFFF;
  --pink-soft: #FFF0F6;
  --purple-soft: #F7F3FF;
  --gray-pink: #F8F4F6;
  --ink: #32262D;
  --text: #51444C;
  --muted: #7C6D76;
  --subtle: #A09199;
  --pink: #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;
  --max: 1200px;
  --header-stack: 102px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.shell { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
main { min-height: 56vh; }
section { scroll-margin-top: 120px; }
a, button { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(140,118,232,0.45);
  outline-offset: 3px;
  border-radius: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  box-shadow: 0 4px 20px rgba(76,48,66,0.05);
}
.top-note {
  background: #fff0f6;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}
.top-note-inner {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.top-note-links { display: flex; align-items: center; gap: 18px; }
.top-note a:hover { color: var(--berry); }
.main-nav {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,93,158,0.08);
}
.nav-inner {
  height: 68px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  position: relative;
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 44px;
}
.brand img { width: auto; max-height: 40px; object-fit: contain; }
.brand-text {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 25px;
}
.brand-text::first-letter { color: var(--pink); }
.desktop-nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 2vw, 28px);
  min-width: 0;
}
.desktop-nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  color: var(--muted);
  font-weight: 650;
  position: relative;
  padding: 0 4px;
}
.desktop-nav-links a::after {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  bottom: 4px;
  height: 3px;
  border-radius: 99px;
  background: var(--gradient);
  transform: scaleX(0);
  opacity: 0;
  transition: 180ms ease;
  pointer-events: none;
}
.desktop-nav-links a:hover, .desktop-nav-links a.is-active { color: var(--ink); }
.desktop-nav-links a.is-active::after { transform: scaleX(1); opacity: 1; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.button, .channel-trigger, .mobile-experience {
  min-height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-weight: 750;
  border: 1px solid transparent;
  cursor: pointer;
}
.button { padding: 10px 20px; }
.button-primary {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 10px 28px rgba(217,76,131,0.2);
}
.button-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-strong); }
.button-soft {
  padding: 9px 18px;
  color: var(--berry);
  background: var(--pink-soft);
  border-color: var(--border);
}
.button-outline {
  background: #fff;
  border-color: rgba(140,118,232,0.22);
  color: var(--deep-purple);
}
.channel-trigger {
  padding: 9px 15px;
  background: #fff;
  border-color: rgba(81,68,76,0.14);
}
.channel-trigger:hover { border-color: rgba(255,93,158,0.35); }
.mobile-nav-left, .mobile-experience { display: none; }

.channel-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(50,38,45,0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}
.channel-overlay.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.desktop-channel-panel {
  position: fixed;
  z-index: 80;
  left: 0;
  right: 0;
  top: var(--header-stack);
  max-height: calc(100vh - var(--header-stack) - 24px);
  overflow: auto;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-strong);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 180ms ease, opacity 180ms ease, visibility 180ms ease;
}
.desktop-channel-panel.is-open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
.panel-head, .mobile-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.desktop-channel-panel .panel-head { padding: 26px 0 18px; }
.panel-head h2, .mobile-panel-head h2 { margin: 2px 0 0; color: var(--ink); font-size: 25px; line-height: 1.25; }
.eyebrow {
  display: inline-block;
  color: var(--berry);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .12em;
}
.panel-close {
  min-width: 56px;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--pink-soft);
  cursor: pointer;
}
.channel-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 30px;
}
.channel-group {
  padding: 18px;
  border-radius: 22px;
  background: var(--page);
  border: 1px solid var(--border);
}
.channel-group:nth-child(2n) { background: var(--purple-soft); }
.channel-group h3 { margin: 0 0 10px; color: var(--ink); font-size: 15px; }
.channel-group a { display: block; padding: 10px 8px; border-radius: 12px; }
.channel-group a:hover { background: rgba(255,255,255,.75); }
.channel-group strong, .channel-group span { display: block; }
.channel-group strong { color: var(--ink); font-size: 14px; }
.channel-group span { color: var(--muted); font-size: 12px; margin-top: 2px; line-height: 1.55; }


.channel-group a.is-active,
.mobile-channel-list a.is-active {
  background: var(--pink-soft);
  color: var(--berry);
  box-shadow: inset 0 0 0 1px var(--border);
}
.site-footer a.is-active { color: #fff; font-weight: 800; }

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

.hero {
  padding: 62px 0 42px;
  position: relative;
  overflow: hidden;
}
.hero::before, .hero::after, .decor-orb::before, .decor-orb::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  width: 420px; height: 420px;
  right: -160px; top: 10px;
  background: radial-gradient(circle, rgba(140,118,232,.16), rgba(140,118,232,0) 68%);
}
.hero::after {
  width: 380px; height: 380px;
  left: -180px; bottom: -190px;
  background: radial-gradient(circle, rgba(255,93,158,.14), rgba(255,93,158,0) 68%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(270px, .72fr) minmax(250px, .78fr);
  align-items: center;
  gap: 34px;
  position: relative;
  z-index: 1;
}
.hero-copy h1 {
  margin: 8px 0 18px;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -.055em;
}
.brand-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 850;
  color: var(--berry);
  font-size: 14px;
}
.brand-kicker::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: var(--gradient);
  pointer-events: none;
}
.hero-copy p {
  max-width: 650px;
  font-size: 17px;
  color: var(--muted);
  margin: 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; align-items: center; }
.text-link {
  color: var(--berry);
  font-weight: 750;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 6px;
}
.text-link::after { content: "→"; transition: transform 160ms ease; }
.text-link:hover::after { transform: translateX(3px); }

.phone-visual {
  width: min(100%, 330px);
  margin: 0 auto;
  aspect-ratio: 9 / 17.5;
  border-radius: 42px;
  padding: 11px;
  background: linear-gradient(160deg, #4a3943, #251c21);
  box-shadow: 0 25px 60px rgba(66,42,56,.18);
  transform: rotate(2deg);
}
.phone-screen {
  height: 100%;
  border-radius: 33px;
  background:
    radial-gradient(circle at 78% 12%, rgba(140,118,232,.25), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fff0f6 58%, #f7f3ff 100%);
  padding: 24px 16px 18px;
  overflow: hidden;
  position: relative;
}
.phone-notch {
  width: 38%;
  height: 18px;
  border-radius: 0 0 12px 12px;
  background: #2f242a;
  margin: -24px auto 18px;
}
.phone-title { color: var(--ink); font-weight: 900; font-size: 22px; }
.phone-sub { color: var(--muted); font-size: 12px; margin-top: 2px; }
.phone-story {
  margin-top: 18px;
  height: 42%;
  border-radius: 22px;
  background:
    linear-gradient(140deg, rgba(255,142,172,.9), rgba(140,118,232,.8)),
    radial-gradient(circle at 65% 35%, white, transparent 20%);
  position: relative;
}
.phone-story::before {
  content: "";
  position: absolute;
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,.65);
  left: 20px; bottom: 20px;
  pointer-events: none;
}
.phone-lines { display: grid; gap: 8px; margin-top: 16px; }
.phone-lines span { height: 9px; border-radius: 99px; background: rgba(81,68,76,.10); }
.phone-lines span:nth-child(2) { width: 78%; }
.phone-tags { display: flex; gap: 6px; margin-top: 14px; }
.phone-tags span { height: 25px; width: 56px; border-radius: 999px; background: rgba(255,93,158,.12); }
.hero-side { display: grid; gap: 16px; }
.mini-card {
  border-radius: 24px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.mini-card:nth-child(2) { background: var(--purple-soft); }
.mini-card .icon-dot {
  width: 42px; height: 42px; border-radius: 15px;
  display: grid; place-items: center;
  background: var(--gradient); color: #fff; font-weight: 900;
  margin-bottom: 16px;
}
.mini-card h2, .mini-card h3 { color: var(--ink); margin: 0 0 8px; line-height: 1.35; font-size: 21px; }
.mini-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

.section { padding: 76px 0; }
.section-tight { padding: 48px 0; }
.section-soft { background: var(--pink-soft); }
.section-purple { background: var(--purple-soft); }
.section-white { background: #fff; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}
.section-head > div { max-width: 760px; }
.section-head h2 {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.18;
  letter-spacing: -.03em;
}
.section-head p { margin: 12px 0 0; color: var(--muted); }

.topic-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(132px, 1fr));
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: thin;
  padding: 4px 0 10px;
}
.topic-chip {
  min-width: 132px;
  padding: 18px 16px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 8px 24px rgba(76,48,66,.05);
}
.topic-chip h3 { color: var(--ink); margin: 0 0 5px; font-size: 15px; }
.topic-chip p { color: var(--muted); margin: 0 0 10px; font-size: 12px; line-height: 1.55; }
.topic-chip a { color: var(--berry); font-size: 12px; font-weight: 800; }

.magazine-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.story-card {
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.story-card.featured { grid-row: span 2; }
.story-art {
  min-height: 178px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #ffb4cb, #f8d5e4 46%, #cbbff7);
}
.story-card.featured .story-art { min-height: 340px; }
.story-art::before, .story-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.story-art::before { width: 130px; height: 130px; background: rgba(255,255,255,.55); top: 22px; right: 25px; }
.story-art::after { width: 180px; height: 70px; border-radius: 999px; background: rgba(255,255,255,.28); bottom: 22px; left: 25px; transform: rotate(-8deg); }
.story-card:nth-child(2) .story-art { background: linear-gradient(145deg, #f1d9ff, #d6cbff); }
.story-card:nth-child(3) .story-art { background: linear-gradient(145deg, #ffd8c5, #ffe9ef); }
.story-card:nth-child(4) .story-art { background: linear-gradient(145deg, #f9d9e5, #ffe7c9); }
.story-card:nth-child(5) .story-art { background: linear-gradient(145deg, #d9e8ff, #e8dbff); }
.story-body { padding: 22px; }
.story-body h3 { margin: 0 0 8px; color: var(--ink); font-size: 20px; line-height: 1.35; }
.story-body p { margin: 0 0 14px; color: var(--muted); font-size: 14px; }
.tags { display: flex; gap: 6px; flex-wrap: wrap; margin: 12px 0 6px; }
.tag {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--berry);
  font-size: 11px;
  font-weight: 800;
}

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.info-card {
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: var(--shadow);
}
.info-card h3 { color: var(--ink); margin: 0 0 9px; font-size: 20px; line-height: 1.4; }
.info-card p { margin: 0 0 14px; color: var(--muted); font-size: 14px; }
.info-card ul { margin: 12px 0 16px; padding-left: 19px; color: var(--muted); font-size: 14px; }
.info-card li + li { margin-top: 5px; }

.timeline { position: relative; display: grid; gap: 0; }
.timeline::before {
  content: "";
  position: absolute;
  left: 17px; top: 20px; bottom: 20px; width: 2px;
  background: linear-gradient(var(--coral), var(--purple));
  pointer-events: none;
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0,1fr);
  gap: 18px;
  padding: 10px 0 24px;
}
.timeline-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: #fff; border: 7px solid var(--pink);
  position: relative; z-index: 1;
}
.timeline-content {
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
}
.timeline-content h3 { margin: 0 0 6px; color: var(--ink); }
.timeline-content p { margin: 0; color: var(--muted); }
.timeline-content .note { margin-top: 8px; color: var(--berry); font-size: 13px; }

.topic-list { display: grid; gap: 14px; }
.topic-row {
  display: grid;
  grid-template-columns: minmax(180px, .45fr) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.topic-row h3 { margin: 0; color: var(--ink); line-height: 1.35; }
.topic-row p { margin: 0; color: var(--muted); font-size: 14px; }

.diary-layout, .split-layout, .feature-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.illustration-panel {
  min-height: 400px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 25% 24%, rgba(255,255,255,.8) 0 10%, transparent 11%),
    radial-gradient(circle at 74% 68%, rgba(255,255,255,.7) 0 13%, transparent 14%),
    linear-gradient(145deg, #ffd3e2, #f8e4f0 48%, #d9d0ff);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.illustration-panel::after {
  content: "";
  position: absolute;
  width: 68%; height: 58%;
  left: 16%; bottom: -20%;
  border-radius: 50% 50% 0 0;
  background: rgba(255,255,255,.42);
  pointer-events: none;
}
.prose h2 { color: var(--ink); margin: 0 0 14px; font-size: clamp(30px, 3vw, 42px); line-height: 1.25; }
.prose h3 { color: var(--ink); margin-top: 24px; }
.prose p { color: var(--muted); }
.prose-list { display: grid; gap: 10px; margin-top: 20px; }
.prose-item {
  padding: 15px 17px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
}
.prose-item strong { display: block; color: var(--ink); }
.prose-item span { display: block; color: var(--muted); font-size: 13px; margin-top: 3px; }

.app-band {
  border-radius: 32px;
  padding: 42px;
  background: linear-gradient(135deg, #fff0f6, #fff 42%, #f7f3ff);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.app-grid {
  display: grid;
  grid-template-columns: 1fr .65fr;
  gap: 32px;
  align-items: center;
}
.compact-phone {
  max-width: 280px;
  margin: 0 auto;
  aspect-ratio: 9/15.5;
  background: #33262e;
  padding: 10px;
  border-radius: 36px;
  transform: rotate(-2deg);
  box-shadow: 0 22px 48px rgba(76,48,66,.18);
}
.compact-phone > div {
  height: 100%;
  border-radius: 28px;
  background:
    linear-gradient(180deg, #fff 0 22%, transparent 22%),
    linear-gradient(145deg, #ffe1eb, #eee8ff);
  position: relative;
}
.compact-phone > div::after {
  content: "";
  position: absolute;
  left: 12%; right: 12%; bottom: 12%;
  height: 45%;
  border-radius: 22px;
  background: rgba(255,255,255,.66);
  pointer-events: none;
}
.service-mini-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin: 20px 0; }
.service-mini {
  padding: 16px;
  border-radius: 17px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--border);
}
.service-mini strong { color: var(--ink); display: block; }
.service-mini span { color: var(--muted); font-size: 13px; display: block; margin-top: 3px; }

.advice-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.advice-card { padding: 22px; border-radius: 22px; background: #fff; border: 1px solid var(--border); }
.advice-card .num { color: var(--pink); font-weight: 900; font-size: 13px; }
.advice-card h3 { color: var(--ink); margin: 8px 0; }
.advice-card p { color: var(--muted); margin: 0; font-size: 14px; }

.security-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.security-card {
  border-radius: 28px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.security-card:nth-child(2) { background: var(--purple-soft); }
.security-card::after {
  content: "";
  position: absolute;
  right: -45px; top: -45px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,93,158,.08);
  pointer-events: none;
}
.security-card h3 { color: var(--ink); font-size: 27px; margin: 0 0 12px; }
.security-card p { color: var(--muted); position: relative; z-index: 1; }
.security-card ul { padding-left: 19px; color: var(--text); }
.security-card a { position: relative; z-index: 1; }

.feedback-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.quote-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  color: var(--muted);
  box-shadow: 0 8px 20px rgba(76,48,66,.04);
}
.quote-card::before { content: "“"; display: block; color: var(--coral); font-size: 36px; font-weight: 900; line-height: 1; }
.quote-card p { margin: 4px 0 0; }

.faq-list { display: grid; gap: 10px; }
.faq-list details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 0 18px;
}
.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--pink); font-size: 24px; flex: 0 0 auto; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0 0 18px; color: var(--muted); }

.brand-end {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 30px;
  align-items: center;
}
.brand-mark {
  min-height: 320px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,.8) 0 10%, transparent 11%),
    radial-gradient(circle at 70% 45%, rgba(255,255,255,.72) 0 14%, transparent 15%),
    linear-gradient(145deg, #ffc8da, #f2dfff 70%);
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 950;
  letter-spacing: -.06em;
}
.brand-mark span { transform: rotate(-5deg); }

.page-hero {
  padding: 62px 0 44px;
  background:
    radial-gradient(circle at 88% 18%, rgba(140,118,232,.12), transparent 25%),
    radial-gradient(circle at 14% 68%, rgba(255,93,158,.12), transparent 28%);
}
.page-hero-inner { max-width: 880px; }
.breadcrumbs { color: var(--subtle); font-size: 13px; margin-bottom: 10px; }
.breadcrumbs a:hover { color: var(--berry); }
.page-hero h1 {
  margin: 0 0 15px;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.15;
  letter-spacing: -.04em;
}
.page-hero p { margin: 0; color: var(--muted); font-size: 17px; max-width: 820px; }

.content-shell { padding: 58px 0 78px; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 28px; align-items: start; }
.content-main { display: grid; gap: 22px; }
.content-single { width: min(100%, 980px); margin: 0 auto; }
.content-block {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.content-block.soft { background: var(--pink-soft); }
.content-block.purple { background: var(--purple-soft); }
.content-block h2 { margin: 0 0 12px; color: var(--ink); font-size: 28px; line-height: 1.3; }
.content-block h3 { color: var(--ink); margin: 22px 0 7px; font-size: 19px; }
.content-block p { color: var(--muted); margin: 0 0 12px; }
.content-block p:last-child { margin-bottom: 0; }
.content-block ul, .content-block ol { margin: 12px 0 0; padding-left: 21px; }
.content-block li + li { margin-top: 7px; }
.content-block .inline-links { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.inline-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--berry);
  font-weight: 750;
  font-size: 13px;
}
.side-nav {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 12px;
}
.side-card {
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--border);
}
.side-card h2, .side-card h3 { color: var(--ink); margin: 0 0 10px; font-size: 19px; }
.side-card p { margin: 0; color: var(--muted); font-size: 13px; }
.side-card a { display: block; padding: 8px 0; color: var(--berry); font-weight: 700; font-size: 14px; border-bottom: 1px dashed rgba(255,93,158,.16); }
.side-card a:last-child { border-bottom: 0; }
.notice-card {
  border-left: 4px solid var(--pink);
  padding: 18px 20px;
  border-radius: 0 18px 18px 0;
  background: var(--pink-soft);
  color: var(--muted);
}
.notice-card strong { color: var(--ink); }

.step-list { counter-reset: step; display: grid; gap: 14px; margin-top: 18px; }
.step {
  counter-increment: step;
  position: relative;
  padding: 18px 18px 18px 64px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
}
.step::before {
  content: counter(step);
  position: absolute;
  left: 17px; top: 17px;
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gradient); color: #fff; font-weight: 900; font-size: 13px;
}
.step strong { color: var(--ink); display: block; }
.step span { color: var(--muted); font-size: 14px; display: block; margin-top: 4px; }

.pill-index { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 0; }
.pill-index a, .pill-index span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--berry);
  font-size: 13px;
  font-weight: 750;
}

.service-flow { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-top: 16px; }
.service-flow > div {
  border-radius: 17px;
  padding: 16px;
  background: var(--gray-pink);
  border: 1px solid rgba(81,68,76,.07);
}
.service-flow strong { color: var(--ink); display: block; margin-bottom: 4px; }
.service-flow span { color: var(--muted); font-size: 13px; }

.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 16px; }
.compare-panel { padding: 20px; border-radius: 18px; border: 1px solid var(--border); background: #fff; }
.compare-panel h3 { margin-top: 0; }
.compare-panel.good { background: var(--purple-soft); }

.related-banner {
  margin-top: 22px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--pink-soft), var(--purple-soft));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.related-banner strong { color: var(--ink); font-size: 20px; }
.related-banner p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }

.site-footer {
  background: var(--footer);
  color: var(--footer-text);
  padding: 56px 0 118px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, .8fr);
  gap: 30px;
}
.footer-brand-link { display: inline-flex; min-height: 44px; align-items: center; font-weight: 950; font-size: 25px; }
.footer-brand-link img { width: auto; max-height: 40px; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,234,242,.72); max-width: 330px; font-size: 13px; }
.site-footer h2 { color: #fff; font-size: 14px; margin: 5px 0 12px; }
.site-footer a { display: block; color: rgba(255,234,242,.76); font-size: 13px; padding: 5px 0; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,234,242,.12);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: rgba(255,234,242,.58);
  font-size: 12px;
}
.footer-bottom p { margin: 0; max-width: 760px; }

@media (max-width: 1050px) {
  .nav-inner { grid-template-columns: 145px minmax(0,1fr) auto; gap: 14px; }
  .desktop-nav-links { gap: 12px; }
  .nav-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr .7fr; }
  .hero-side { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
  .channel-groups { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.2fr repeat(2,1fr); }
  .footer-brand { grid-row: span 2; }
  .magazine-grid { grid-template-columns: 1.1fr .9fr; }
  .story-card:nth-child(5) { grid-column: 2; }
  .card-grid { grid-template-columns: repeat(2,1fr); }
  .advice-grid { grid-template-columns: repeat(2,1fr); }
  .feedback-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px) {
  :root { --header-stack: 90px; }
  .shell { width: calc(100% - 32px); }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .top-note-inner { height: 30px; font-size: 11px; gap: 10px; }
  .community-note-link { display: none; }
  .top-note-links { gap: 0; }
  .nav-inner {
    height: 60px;
    display: grid;
    grid-template-columns: minmax(92px,1fr) auto minmax(66px,1fr);
    gap: 8px;
  }
  .brand { justify-self: center; min-width: 0; }
  .brand img { max-width: 112px; max-height: 34px; }
  .brand-text { font-size: 20px; }
  .desktop-nav-links, .nav-actions { display: none; }
  .mobile-nav-left { display: block; min-width: 0; }
  .mobile-channel-trigger {
    display: inline-flex;
    gap: 7px;
    padding: 7px 8px;
    font-size: 12px;
    min-width: 0;
  }
  .menu-lines { width: 17px; display: grid; gap: 3px; }
  .menu-lines i { display: block; height: 2px; border-radius: 99px; background: var(--berry); }
  .mobile-experience {
    display: inline-flex;
    justify-self: end;
    padding: 7px 12px;
    color: #fff;
    background: var(--gradient);
    font-size: 12px;
  }
  .desktop-channel-panel { display: none; }
  .mobile-channel-panel {
    display: block;
    position: fixed;
    z-index: 90;
    left: 0; right: 0; bottom: 0;
    max-height: 85vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 8px 16px calc(18px + env(safe-area-inset-bottom));
    border-radius: 26px 26px 0 0;
    background: #fff;
    transform: translateY(105%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 220ms ease, visibility 220ms ease;
    box-shadow: 0 -18px 48px rgba(76,48,66,.16);
  }
  .mobile-channel-panel.is-open { transform: translateY(0); visibility: visible; pointer-events: auto; }
  .sheet-handle { width: 48px; height: 5px; margin: 4px auto 10px; border-radius: 99px; background: rgba(81,68,76,.18); }
  .mobile-panel-head { padding: 5px 0 10px; }
  .mobile-panel-head h2 { font-size: 21px; }
  .mobile-channel-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding-top: 6px; }
  .mobile-channel-list a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 15px;
    background: var(--page);
    border: 1px solid var(--border);
    font-weight: 720;
  }
  .mobile-bottom-nav {
    position: fixed;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    left: 0; right: 0; bottom: 0;
    z-index: 50;
    padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.96);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(16px);
  }
  .mobile-bottom-nav a {
    min-height: 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: var(--muted);
    font-size: 11px;
    border-radius: 14px;
  }
  .mobile-bottom-nav span { font-size: 19px; line-height: 1; }
  .mobile-bottom-nav a.is-active { color: var(--berry); background: var(--pink-soft); }

  .hero { padding: 40px 0 30px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-copy h1 { font-size: clamp(40px, 13vw, 58px); }
  .hero-copy p { font-size: 15px; }
  .phone-visual { max-width: 260px; transform: none; }
  .hero-side { grid-column: auto; grid-template-columns: 1fr; }
  .mini-card { padding: 20px; }
  .section { padding: 54px 0; }
  .section-tight { padding: 38px 0; }
  .section-head { align-items: start; flex-direction: column; gap: 10px; margin-bottom: 22px; }
  .section-head h2 { font-size: 31px; }
  .topic-strip { display: flex; margin-right: -16px; padding-right: 16px; }
  .topic-chip { flex: 0 0 155px; }
  .magazine-grid, .card-grid, .diary-layout, .split-layout, .feature-layout, .app-grid,
  .security-split, .feedback-grid, .brand-end, .content-grid, .compare-grid {
    grid-template-columns: 1fr;
  }
  .story-card.featured { grid-row: auto; }
  .story-card:nth-child(5) { grid-column: auto; }
  .story-card.featured .story-art { min-height: 235px; }
  .story-art { min-height: 180px; }
  .topic-row { grid-template-columns: 1fr; gap: 7px; align-items: start; }
  .topic-row .text-link { min-height: 36px; }
  .illustration-panel { min-height: 300px; }
  .app-band { padding: 24px 18px; border-radius: 26px; }
  .service-mini-grid, .advice-grid, .service-flow { grid-template-columns: 1fr; }
  .compact-phone { max-width: 230px; }
  .content-shell { padding: 38px 0 54px; }
  .content-block { padding: 22px 18px; border-radius: 20px; }
  .content-block h2 { font-size: 25px; }
  .side-nav { position: static; }
  .related-banner { align-items: flex-start; flex-direction: column; }
  .page-hero { padding: 42px 0 30px; }
  .page-hero p { font-size: 15px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px 20px; }
  .footer-brand { grid-column: 1 / -1; grid-row: auto; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .site-footer { padding-bottom: 110px; }
}

@media (max-width: 420px) {
  .mobile-channel-trigger span:last-child { display: none; }
  .nav-inner { grid-template-columns: 50px auto 64px; }
  .footer-grid { grid-template-columns: 1fr; }
}

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