:root {
    --page-bg: #fff9fc;
    --surface: #ffffff;
    --pink-soft: #fff1f6;
    --purple-soft: #f6f3ff;
    --gray-soft: #f8f6f7;
    --text: #31262c;
    --body: #51454c;
    --muted: #7c6e75;
    --hint: #a2949b;
    --pink: #ff5c98;
    --berry: #d9467b;
    --peach: #ff96ad;
    --purple: #8b74e8;
    --purple-deep: #6250b0;
    --border: rgba(255, 92, 152, 0.15);
    --shadow: 0 14px 38px rgba(70, 44, 58, 0.08);
    --shadow-strong: 0 20px 48px rgba(217, 70, 123, 0.14);
    --gradient: linear-gradient(135deg, #ff96ad 0%, #ff5c98 50%, #8b74e8 100%);
    --footer: #30252b;
    --footer-text: #ffeaf2;
    --max: 1220px;
    --header-height: 82px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

body.mobile-menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

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

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

button {
    font: inherit;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(139, 116, 232, 0.38);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 500;
    transform: translateY(-150%);
    padding: 10px 16px;
    border-radius: 10px;
    color: #fff;
    background: var(--purple-deep);
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 120;
    height: var(--header-height);
    border-bottom: 1px solid rgba(255, 92, 152, 0.1);
    background: rgba(255, 249, 252, 0.94);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(calc(100% - 36px), var(--max));
    height: 100%;
    margin: 0 auto;
}

.desktop-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 22px;
}

.mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
}

.nav-side {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: clamp(10px, 1.6vw, 24px);
}

.nav-right {
    justify-content: flex-end;
}

.nav-link {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: var(--body);
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--gradient);
    transform: translateX(-50%);
    transition: width 0.2s ease;
    pointer-events: none;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--berry);
}

.nav-link:hover::after,
.nav-link.is-active::after {
    width: 26px;
}

.brand {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 900;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.brand-center {
    justify-self: center;
}

.brand-mark {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 14px 14px 18px 14px;
    color: #fff;
    background: var(--gradient);
    box-shadow: 0 8px 20px rgba(217, 70, 123, 0.22);
    font-size: 17px;
}

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

.circle-menu,
.panel-close {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    border: 0;
    cursor: pointer;
}

.circle-menu {
    display: inline-flex;
    width: 46px;
    height: 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 20px rgba(70, 44, 58, 0.07);
}

.circle-menu span {
    width: 17px;
    height: 2px;
    border-radius: 999px;
    background: var(--berry);
    pointer-events: none;
}

.circle-menu.is-active {
    border-color: rgba(217, 70, 123, 0.28);
    background: var(--pink-soft);
}

.circle-menu:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.site-main {
    padding-top: var(--header-height);
}

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

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

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

.section-soft {
    background: var(--pink-soft);
}

.section-purple {
    background: var(--purple-soft);
}

.section-white {
    background: #fff;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.section-head > div:first-child {
    max-width: 760px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--berry);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--text);
    line-height: 1.25;
}

h1 {
    margin-bottom: 20px;
    font-size: clamp(40px, 6vw, 76px);
    letter-spacing: -0.045em;
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(30px, 4vw, 48px);
    letter-spacing: -0.035em;
}

h3 {
    margin-bottom: 10px;
    font-size: 21px;
}

h4 {
    margin-bottom: 8px;
    font-size: 17px;
}

.lead {
    max-width: 780px;
    color: var(--body);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.9;
}

.muted {
    color: var(--muted);
}

.text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 7px;
    color: var(--berry);
    font-weight: 800;
}

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

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

.button-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 850;
    white-space: nowrap;
}

.button-primary {
    color: #fff;
    background: var(--gradient);
    box-shadow: 0 14px 30px rgba(217, 70, 123, 0.2);
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.button-secondary {
    border: 1px solid rgba(139, 116, 232, 0.2);
    color: var(--purple-deep);
    background: rgba(255, 255, 255, 0.85);
}

.button-secondary:hover {
    border-color: rgba(139, 116, 232, 0.42);
    background: #fff;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 76px 0 54px;
}

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

.hero::before {
    top: 20px;
    left: -120px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 150, 173, 0.28), transparent 68%);
}

.hero::after {
    right: -90px;
    bottom: 0;
    width: 330px;
    height: 330px;
    background: radial-gradient(circle, rgba(139, 116, 232, 0.2), transparent 68%);
}

.home-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(190px, 0.8fr) minmax(0, 2fr) minmax(190px, 0.8fr);
    align-items: center;
    gap: 34px;
}

.hero-center {
    text-align: center;
}

.hero-center .lead {
    margin-inline: auto;
}

.hero-center .button-row {
    justify-content: center;
}

.hero-note {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
}

.hero-note:nth-child(3) {
    transform: translateY(42px);
}

.hero-note p:last-child {
    margin-bottom: 0;
}

.hero-visual {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 360px;
    margin-top: 46px;
    overflow: hidden;
    place-items: center;
    border: 1px solid rgba(255, 92, 152, 0.13);
    border-radius: 34px;
    background:
        radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.95) 0 8%, transparent 9%),
        radial-gradient(circle at 86% 30%, rgba(255, 255, 255, 0.78) 0 7%, transparent 8%),
        linear-gradient(135deg, #ffe7ef 0%, #fff5fa 38%, #efeaff 100%);
    box-shadow: var(--shadow-strong);
}

.hero-visual::before {
    content: "";
    position: absolute;
    left: 8%;
    bottom: -70px;
    width: 84%;
    height: 260px;
    border-radius: 50% 50% 0 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 150, 173, 0.15));
    transform: rotate(-2deg);
    pointer-events: none;
}

.visual-phone {
    position: relative;
    z-index: 1;
    width: 190px;
    height: 310px;
    padding: 18px;
    border: 8px solid #382d34;
    border-radius: 36px;
    background: #fff;
    box-shadow: 0 28px 50px rgba(70, 44, 58, 0.18);
    transform: rotate(5deg);
}

.visual-phone::before {
    content: "";
    display: block;
    width: 48px;
    height: 5px;
    margin: 0 auto 18px;
    border-radius: 999px;
    background: #382d34;
}

.visual-card {
    height: 74px;
    margin-bottom: 12px;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff1f6, #f6f3ff);
}

.visual-card:nth-child(3) {
    height: 112px;
    background: linear-gradient(135deg, #ffd4e1, #dcd4ff);
}

.visual-badge {
    position: absolute;
    z-index: 2;
    padding: 12px 18px;
    border-radius: 999px;
    color: var(--berry);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    font-size: 14px;
    font-weight: 800;
}

.visual-badge.one {
    top: 22%;
    left: 14%;
}

.visual-badge.two {
    right: 12%;
    bottom: 22%;
}

.grid-2,
.grid-3,
.grid-4,
.grid-6 {
    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-6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.card > * {
    position: relative;
    z-index: 1;
}

.card::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -70px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 150, 173, 0.15), transparent 66%);
    pointer-events: none;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

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

.card-index {
    display: inline-grid;
    width: 36px;
    height: 36px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: var(--gradient);
    font-size: 13px;
    font-weight: 900;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 8px;
}

.tag {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 4px 11px;
    border-radius: 999px;
    color: var(--berry);
    background: var(--pink-soft);
    font-size: 13px;
    font-weight: 750;
}

.story-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 26px;
}

.feature-story {
    min-height: 100%;
    padding: 38px;
    border-radius: 30px;
    color: #fff;
    background: linear-gradient(145deg, #d9467b 0%, #ff7fa8 55%, #8b74e8 100%);
    box-shadow: var(--shadow-strong);
}

.feature-story h3,
.feature-story .text-link {
    color: #fff;
}

.feature-story .tag {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}

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

.media-card {
    min-height: 310px;
    padding: 0;
}

.media-art {
    position: relative;
    height: 152px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffe0e9, #efeaff);
}

.media-art::before,
.media-art::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.media-art::before {
    width: 150px;
    height: 150px;
    left: -20px;
    bottom: -70px;
    background: rgba(255, 255, 255, 0.72);
}

.media-art::after {
    width: 96px;
    height: 96px;
    right: 20px;
    top: 22px;
    background: rgba(139, 116, 232, 0.2);
}

.media-art.city {
    background: linear-gradient(160deg, #e4e0ff, #ffd7e4 60%, #fff5e6);
}

.media-art.food {
    background: linear-gradient(160deg, #fff0d9, #ffd4df 60%, #fff9fc);
}

.media-art.pet {
    background: linear-gradient(160deg, #e6f5ef, #ffe6ef 60%, #f6f3ff);
}

.media-art.sport {
    background: linear-gradient(160deg, #e9f4ff, #e7ddff 60%, #fff1f6);
}

.media-art.detail {
    background: linear-gradient(160deg, #f7ebdf, #fff4f8 60%, #ddd6ff);
}

.media-card-content {
    padding: 24px;
}

.interest-pill {
    display: flex;
    min-height: 118px;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
}

.interest-pill:hover {
    border-color: rgba(139, 116, 232, 0.28);
    transform: translateY(-2px);
}

.interest-icon {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    background: var(--gradient);
    font-size: 20px;
}

.interest-pill h3 {
    margin-bottom: 6px;
    font-size: 18px;
}

.interest-pill p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
}

.topic-card {
    padding-top: 34px;
}

.topic-card::before {
    content: "“";
    position: absolute;
    top: 12px;
    right: 22px;
    color: rgba(217, 70, 123, 0.13);
    font-family: Georgia, serif;
    font-size: 86px;
    line-height: 1;
    pointer-events: none;
}

.journal-wrap {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 28px;
}

.journal-paper {
    position: relative;
    padding: 40px;
    border-radius: 26px;
    background:
        linear-gradient(90deg, transparent 36px, rgba(217, 70, 123, 0.16) 37px, transparent 38px),
        repeating-linear-gradient(#fff, #fff 34px, rgba(139, 116, 232, 0.09) 35px);
    box-shadow: var(--shadow);
}

.journal-paper p {
    margin-left: 20px;
}

.app-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    align-items: center;
    gap: 52px;
}

.phone-stage {
    position: relative;
    display: grid;
    min-height: 470px;
    place-items: center;
    border-radius: 34px;
    background: linear-gradient(145deg, #ffe5ee, #f2efff);
    box-shadow: var(--shadow);
}

.phone-stage .visual-phone {
    width: 220px;
    height: 385px;
    transform: rotate(-4deg);
}

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

.service-item {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.8);
}

.service-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
}

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

.rule-item {
    padding: 24px 20px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
}

.rule-item strong {
    display: block;
    margin-bottom: 10px;
    color: var(--text);
}

.split-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.security-panel,
.privacy-panel {
    padding: 36px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.security-panel {
    background: linear-gradient(145deg, #fff, #fff1f6);
}

.privacy-panel {
    background: linear-gradient(145deg, #fff, #f6f3ff);
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 22px 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 27px;
}

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

.feedback-card {
    min-height: 190px;
}

.feedback-card::before {
    content: "体验";
    display: inline-block;
    margin-bottom: 16px;
    color: var(--purple-deep);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

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

details {
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(70, 44, 58, 0.045);
}

summary {
    position: relative;
    min-height: 58px;
    padding: 17px 54px 17px 20px;
    color: var(--text);
    cursor: pointer;
    font-weight: 850;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    position: absolute;
    top: 13px;
    right: 18px;
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    color: var(--berry);
    background: var(--pink-soft);
}

details[open] summary::after {
    content: "−";
}

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

.faq-answer p:last-child {
    margin-bottom: 0;
}

.brand-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    align-items: center;
    gap: 38px;
}

.brand-art {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border-radius: 32px;
    background: linear-gradient(145deg, #ffdce7 0%, #fff 48%, #e7e0ff 100%);
    box-shadow: var(--shadow);
}

.brand-art::before,
.brand-art::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.brand-art::before {
    width: 230px;
    height: 230px;
    top: 42px;
    left: 50%;
    background: rgba(255, 255, 255, 0.72);
    transform: translateX(-50%);
}

.brand-art::after {
    width: 170px;
    height: 170px;
    right: 20px;
    bottom: -50px;
    background: rgba(139, 116, 232, 0.17);
}

.brand-art-logo {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    display: grid;
    width: 128px;
    height: 128px;
    place-items: center;
    border-radius: 42px 42px 54px 42px;
    color: #fff;
    background: var(--gradient);
    box-shadow: var(--shadow-strong);
    font-size: 46px;
    font-weight: 900;
    transform: translate(-50%, -50%) rotate(-4deg);
}

.inner-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 70px;
    background: linear-gradient(180deg, rgba(255, 241, 246, 0.86), rgba(255, 249, 252, 0));
}

.inner-hero .container {
    position: relative;
    z-index: 1;
}

.inner-hero h1 {
    max-width: 900px;
    font-size: clamp(42px, 6vw, 68px);
}

.inner-hero .lead {
    max-width: 900px;
}

.inner-hero::after {
    content: "";
    position: absolute;
    right: -90px;
    top: 30px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 116, 232, 0.2), transparent 70%);
    pointer-events: none;
}

.intro-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: -28px;
    position: relative;
    z-index: 4;
}

.intro-strip .card {
    padding: 22px;
}

.article-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    gap: 30px;
}

.article-main,
.article-side {
    min-width: 0;
}

.article-main > section + section {
    margin-top: 26px;
}

.prose-card {
    padding: 36px;
}

.prose-card h2 {
    font-size: clamp(27px, 3vw, 38px);
}

.prose-card p {
    margin-bottom: 16px;
}

.prose-card p:last-child {
    margin-bottom: 0;
}

.sticky-card {
    position: sticky;
    top: calc(var(--header-height) + 22px);
}

.link-stack {
    display: grid;
    gap: 10px;
}

.link-stack a {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 14px;
    color: var(--text);
    background: var(--gray-soft);
    font-weight: 750;
}

.link-stack a::after {
    content: "→";
    color: var(--berry);
}

.link-stack a:hover {
    background: var(--pink-soft);
}

.notice-box {
    padding: 28px;
    border: 1px solid rgba(139, 116, 232, 0.18);
    border-radius: 22px;
    background: var(--purple-soft);
}

.notice-box strong {
    display: block;
    margin-bottom: 8px;
    color: var(--purple-deep);
}

.steps {
    display: grid;
    gap: 16px;
    counter-reset: step;
}

.step {
    position: relative;
    padding: 24px 24px 24px 78px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
}

.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 22px;
    top: 22px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: var(--gradient);
    font-weight: 900;
}

.timeline {
    position: relative;
    display: grid;
    gap: 22px;
    padding-left: 28px;
}

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

.timeline-item {
    position: relative;
}

.timeline-item::before {
    content: "";
    position: absolute;
    top: 7px;
    left: -27px;
    width: 14px;
    height: 14px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: var(--berry);
    box-shadow: 0 0 0 2px rgba(217, 70, 123, 0.18);
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    min-width: 150px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 92, 152, 0.1);
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--text);
    background: var(--pink-soft);
}

tr:last-child td {
    border-bottom: 0;
}

.callout {
    padding: 32px;
    border-radius: 26px;
    color: #fff;
    background: linear-gradient(135deg, #d9467b, #8b74e8);
    box-shadow: var(--shadow-strong);
}

.callout h2,
.callout h3,
.callout .text-link {
    color: #fff;
}

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

.cta-band {
    padding: 46px;
    border-radius: 30px;
    background: linear-gradient(135deg, #fff1f6, #f6f3ff);
    box-shadow: var(--shadow);
}

.cta-band .section-head {
    margin-bottom: 0;
}

.site-footer {
    padding: 68px 0 calc(28px + env(safe-area-inset-bottom));
    color: var(--footer-text);
    background: var(--footer);
}

.footer-inner {
    display: grid;
    width: min(calc(100% - 36px), var(--max));
    margin: 0 auto;
    grid-template-columns: minmax(230px, 1.45fr) repeat(4, minmax(130px, 0.8fr));
    gap: 34px;
}

.brand-footer {
    color: #fff;
}

.footer-brand p {
    max-width: 320px;
    margin-top: 18px;
    color: rgba(255, 234, 242, 0.72);
}

.footer-group h2 {
    margin-bottom: 16px;
    color: #fff;
    font-size: 16px;
}

.footer-group a {
    display: block;
    min-height: 38px;
    color: rgba(255, 234, 242, 0.75);
    font-size: 14px;
}

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

.footer-note {
    display: flex;
    width: min(calc(100% - 36px), var(--max));
    margin: 42px auto 0;
    padding-top: 24px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 234, 242, 0.65);
    font-size: 13px;
}

.footer-note p {
    margin-bottom: 0;
}

.footer-note p:first-child {
    max-width: 760px;
}

.panel-overlay,
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 180;
    visibility: hidden;
    opacity: 0;
    background: rgba(48, 37, 43, 0.32);
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.panel-overlay.is-open,
.mobile-overlay.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.channel-panel {
    position: fixed;
    z-index: 190;
    top: var(--header-height);
    left: 0;
    width: 100%;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-18px);
    background: #fff;
    box-shadow: 0 24px 60px rgba(48, 37, 43, 0.2);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

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

.channel-panel-head,
.channel-grid {
    width: min(calc(100% - 36px), var(--max));
    margin-inline: auto;
}

.channel-panel-head {
    display: flex;
    padding: 28px 0 22px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--border);
}

.channel-panel-head h2 {
    margin-bottom: 0;
    font-size: 28px;
}

.panel-close {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    color: var(--berry);
    background: var(--pink-soft);
    font-size: 28px;
    line-height: 1;
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
    padding: 28px 0 36px;
}

.channel-grid h3 {
    margin-bottom: 14px;
    color: var(--purple-deep);
    font-size: 15px;
}

.channel-grid a {
    display: block;
    min-height: 76px;
    margin-bottom: 10px;
    padding: 12px;
    border-radius: 15px;
}

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

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

.channel-grid strong {
    margin-bottom: 3px;
    color: var(--text);
    font-size: 15px;
}

.channel-grid span {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

.mobile-drawer {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 210;
    width: min(88vw, 390px);
    height: 100%;
    overflow-y: auto;
    visibility: hidden;
    background: #fff;
    box-shadow: -24px 0 60px rgba(48, 37, 43, 0.18);
    transform: translateX(102%);
    pointer-events: none;
    transition: transform 0.24s ease, visibility 0.24s ease;
}

.mobile-drawer.is-open {
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

.mobile-drawer-head {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    min-height: 72px;
    padding: 12px 18px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.96);
}

.mobile-menu {
    display: grid;
    gap: 4px;
    padding: 14px 16px calc(34px + env(safe-area-inset-bottom));
}

.mobile-menu a {
    display: flex;
    min-height: 48px;
    align-items: center;
    padding: 10px 14px;
    border-radius: 14px;
    color: var(--text);
    font-weight: 750;
}

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

.mobile-bottom-nav {
    display: none;
}

.mini-cta {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    color: #fff;
    background: var(--gradient);
    font-weight: 850;
}

.mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 1100px) {
    .nav-side {
        gap: 12px;
    }

    .nav-link {
        font-size: 14px;
    }

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

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

    .rule-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-brand {
        grid-column: span 3;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 70px;
    }

    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: flex;
    }

    .section {
        padding: 68px 0;
    }

    .home-hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-center {
        order: -1;
    }

    .hero-note:nth-child(3) {
        transform: none;
    }

    .hero-note {
        text-align: center;
    }

    .story-layout,
    .journal-wrap,
    .app-showcase,
    .brand-story,
    .article-grid {
        grid-template-columns: 1fr;
    }

    .article-side {
        order: -1;
    }

    .sticky-card {
        position: static;
    }

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

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

    .channel-panel,
    .panel-overlay {
        display: none;
    }
}

@media (max-width: 680px) {
    .container,
    .header-inner,
    .channel-panel-head,
    .channel-grid,
    .footer-inner,
    .footer-note {
        width: min(calc(100% - 32px), var(--max));
    }

    .site-main {
        padding-bottom: calc(74px + env(safe-area-inset-bottom));
    }

    .section {
        padding: 54px 0;
    }

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

    .section-head,
    .footer-note,
    .cta-band .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    h1 {
        font-size: clamp(38px, 12vw, 54px);
    }

    h2 {
        font-size: clamp(28px, 9vw, 38px);
    }

    .hero {
        padding-top: 54px;
    }

    .hero-note {
        padding: 22px;
    }

    .hero-visual {
        min-height: 300px;
        margin-top: 28px;
        border-radius: 26px;
    }

    .visual-phone {
        width: 164px;
        height: 270px;
    }

    .visual-badge {
        display: none;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .grid-6,
    .split-panel,
    .intro-strip,
    .service-list,
    .rule-list {
        grid-template-columns: 1fr;
    }

    .intro-strip {
        margin-top: -18px;
    }

    .story-mini-grid {
        grid-template-columns: 1fr;
    }

    .card,
    .prose-card,
    .feature-story,
    .security-panel,
    .privacy-panel,
    .cta-band {
        padding: 24px;
        border-radius: 22px;
    }

    .journal-paper {
        padding: 30px 22px;
    }

    .phone-stage {
        min-height: 380px;
    }

    .phone-stage .visual-phone {
        width: 190px;
        height: 330px;
    }

    .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 22px;
    }

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

    .mobile-bottom-nav {
        position: fixed;
        z-index: 140;
        right: 10px;
        bottom: calc(10px + env(safe-area-inset-bottom));
        left: 10px;
        display: grid;
        min-height: 64px;
        padding: 6px;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        border: 1px solid rgba(255, 92, 152, 0.15);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 16px 42px rgba(70, 44, 58, 0.16);
        backdrop-filter: blur(16px);
    }

    .mobile-bottom-nav a {
        display: flex;
        min-height: 50px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1px;
        border-radius: 16px;
        color: var(--muted);
        font-size: 12px;
    }

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

    .mobile-bottom-nav a em {
        font-style: normal;
        font-weight: 750;
    }

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

    .inner-hero {
        padding: 62px 0 54px;
    }

    .inner-hero h1 {
        font-size: clamp(38px, 12vw, 52px);
    }

    .step {
        padding: 70px 22px 22px;
    }

    .step::before {
        top: 20px;
    }
}

@media (max-width: 430px) {
    .brand-text {
        font-size: 16px;
    }

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

    .mini-cta {
        padding-inline: 13px;
    }

    .circle-menu {
        width: 44px;
        height: 44px;
    }

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

    .footer-brand {
        grid-column: auto;
    }
}

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