:root {
    --bg: #fff7fb;
    --surface: #ffffff;
    --surface-pink: #fff0f6;
    --surface-purple: #f6f1ff;
    --text: #514451;
    --heading: #332631;
    --muted: #807080;
    --brand: #ff629f;
    --brand-deep: #e94d8e;
    --peach: #ff9bbc;
    --purple: #936bff;
    --border: rgba(255, 98, 159, 0.16);
    --footer: #30232d;
    --footer-text: #ffeaf3;
    --shadow: 0 18px 50px rgba(103, 62, 91, 0.10);
    --shadow-soft: 0 10px 30px rgba(103, 62, 91, 0.07);
    --gradient: linear-gradient(135deg, #ff9bbc 0%, #ff629f 50%, #936bff 100%);
    --container: min(1220px, calc(100% - 40px));
    --header-height: 78px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 10% 3%, rgba(255, 155, 188, 0.18), transparent 26rem),
        radial-gradient(circle at 94% 18%, rgba(147, 107, 255, 0.12), transparent 24rem),
        var(--bg);
    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;
}

a {
    color: inherit;
    text-decoration: none;
    pointer-events: auto;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

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

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

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(255, 98, 159, 0.12);
    background: rgba(255, 247, 251, 0.88);
    box-shadow: 0 8px 28px rgba(79, 49, 69, 0.06);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(1260px, calc(100% - 32px));
    min-height: var(--header-height);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--heading);
    white-space: nowrap;
}

.brand-logo img {
    width: auto;
    max-width: 168px;
    max-height: 52px;
    object-fit: contain;
}

.desktop-nav {
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(12px, 2vw, 28px);
    white-space: nowrap;
}

.desktop-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: #675765;
    font-size: 0.95rem;
    font-weight: 700;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 16%;
    bottom: 4px;
    left: 16%;
    height: 3px;
    border-radius: 999px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
    pointer-events: none;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-current {
    color: var(--brand-deep);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.is-current::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.header-cta,
.primary-button,
.secondary-button,
.soft-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta,
.primary-button {
    color: #fff;
    background: var(--gradient);
    box-shadow: 0 10px 24px rgba(233, 77, 142, 0.22);
}

.secondary-button {
    color: var(--brand-deep);
    background: #fff;
    border: 1px solid rgba(233, 77, 142, 0.22);
}

.soft-button {
    color: #6d4fc0;
    background: var(--surface-purple);
    border: 1px solid rgba(147, 107, 255, 0.18);
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover,
.soft-button:hover,
.header-cta:focus-visible,
.primary-button:focus-visible,
.secondary-button:focus-visible,
.soft-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(93, 56, 82, 0.16);
}

.header-cta:active,
.primary-button:active,
.secondary-button:active,
.soft-button:active {
    transform: translateY(0);
}

.menu-trigger {
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    color: var(--heading);
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(93, 56, 82, 0.08);
}

.menu-trigger span {
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    pointer-events: none;
}

.mobile-menu-trigger {
    display: none;
}

.drawer-overlay {
    position: fixed;
    z-index: 1500;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(44, 28, 39, 0.46);
    backdrop-filter: blur(4px);
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.drawer-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-drawer {
    position: fixed;
    z-index: 1600;
    top: 0;
    right: 0;
    width: min(410px, 88vw);
    height: 100dvh;
    padding: 24px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(102%);
    background: #fffafd;
    box-shadow: -24px 0 70px rgba(48, 35, 45, 0.22);
    transition: transform 0.24s ease, opacity 0.24s ease, visibility 0.24s ease;
}

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

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.drawer-brand {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    color: var(--heading);
    font-size: 1.32rem;
}

.drawer-brand img {
    width: auto;
    max-width: 150px;
    max-height: 50px;
    object-fit: contain;
}

.drawer-close {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: var(--heading);
    background: var(--surface-pink);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.drawer-intro {
    margin: 18px 0 20px;
    padding: 15px 17px;
    border-radius: 18px;
    color: #705d6d;
    background: linear-gradient(135deg, rgba(255, 240, 246, 0.95), rgba(246, 241, 255, 0.95));
    font-size: 0.92rem;
}

.drawer-nav {
    display: grid;
    gap: 8px;
}

.drawer-nav a {
    min-height: 48px;
    padding: 11px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 14px;
    border: 1px solid transparent;
    color: #564853;
    background: rgba(255,255,255,0.7);
    font-weight: 700;
}

.drawer-nav a:hover,
.drawer-nav a:focus-visible {
    color: var(--brand-deep);
    border-color: var(--border);
    background: var(--surface-pink);
}

main {
    display: block;
    padding-top: var(--header-height);
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.section {
    position: relative;
    padding: clamp(64px, 8vw, 110px) 0;
}

.section.compact {
    padding: clamp(46px, 6vw, 78px) 0;
}

.section.alt-pink {
    background: rgba(255, 240, 246, 0.72);
}

.section.alt-purple {
    background: rgba(246, 241, 255, 0.76);
}

.section.white {
    background: rgba(255, 255, 255, 0.82);
}

.section-heading {
    max-width: 760px;
    margin: 0 0 34px;
}

.section-heading.center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.eyebrow,
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    color: var(--brand-deep);
    font-size: 0.83rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
    content: "";
    width: 24px;
    height: 3px;
    border-radius: 999px;
    background: var(--gradient);
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
    color: var(--heading);
    line-height: 1.25;
    letter-spacing: -0.035em;
}

h1 {
    margin-bottom: 22px;
    font-size: clamp(2.55rem, 6vw, 5.2rem);
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(1.8rem, 4vw, 3.15rem);
}

h3 {
    margin-bottom: 11px;
    font-size: clamp(1.14rem, 2vw, 1.42rem);
}

p {
    margin-top: 0;
}

.lead {
    max-width: 820px;
    margin-bottom: 26px;
    color: #675864;
    font-size: clamp(1.02rem, 1.7vw, 1.18rem);
    line-height: 1.9;
}

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

.hero {
    position: relative;
    min-height: min(820px, calc(100vh - var(--header-height)));
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: clamp(56px, 8vw, 104px) 0;
}

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

.hero::before,
.page-hero::before {
    width: clamp(240px, 30vw, 500px);
    aspect-ratio: 1;
    top: -12%;
    right: -8%;
    background: radial-gradient(circle, rgba(255, 155, 188, 0.28), rgba(255, 155, 188, 0));
}

.hero::after,
.page-hero::after {
    width: clamp(220px, 25vw, 430px);
    aspect-ratio: 1;
    bottom: -18%;
    left: -7%;
    background: radial-gradient(circle, rgba(147, 107, 255, 0.17), rgba(147, 107, 255, 0));
}

.hero-grid,
.page-hero-grid,
.split-grid,
.feature-split,
.safety-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.72fr);
    align-items: center;
    gap: clamp(34px, 7vw, 88px);
}

.hero-copy {
    max-width: 760px;
}

.hero-copy h1 span {
    display: block;
    margin-top: 10px;
    color: transparent;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 0.46em;
    letter-spacing: -0.02em;
}

.hero-actions,
.action-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

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

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

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

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.hero-points li,
.tag,
.pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 13px;
    border-radius: 999px;
    color: #6b5262;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--border);
    box-shadow: 0 6px 18px rgba(93, 56, 82, 0.05);
    font-size: 0.86rem;
    font-weight: 700;
}

.hero-media,
.page-hero-media,
.media-panel {
    position: relative;
    min-height: 380px;
    display: grid;
    place-items: center;
    padding: 24px;
    border-radius: 38px;
    background: linear-gradient(145deg, rgba(255,255,255,0.84), rgba(255,240,246,0.88));
    border: 1px solid rgba(255, 98, 159, 0.15);
    box-shadow: var(--shadow);
}

.hero-media::before,
.page-hero-media::before,
.media-panel::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 30px;
    border: 1px dashed rgba(147, 107, 255, 0.22);
    pointer-events: none;
}

.hero-media img,
.page-hero-media img,
.media-panel img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.media-fallback {
    position: relative;
    z-index: 1;
    width: min(290px, 86%);
    aspect-ratio: 0.72;
    display: grid;
    place-items: center;
    border: 12px solid #fff;
    border-radius: 42px;
    background:
        radial-gradient(circle at 70% 22%, rgba(147,107,255,0.32), transparent 28%),
        linear-gradient(160deg, #fff0f6, #f6f1ff 64%, #ffffff);
    box-shadow: 0 24px 65px rgba(67, 44, 62, 0.17);
}

.media-fallback::before {
    content: "糖心Vlog";
    color: var(--brand-deep);
    font-size: 1.25rem;
    font-weight: 900;
}

.media-fallback::after {
    content: "生活 · 兴趣 · 交流";
    position: absolute;
    bottom: 24%;
    color: var(--muted);
    font-size: 0.82rem;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(68px, 9vw, 126px) 0 clamp(58px, 8vw, 104px);
}

.page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(270px, 0.62fr);
}

.page-hero h1 {
    font-size: clamp(2.35rem, 5vw, 4.4rem);
}

.page-hero .lead {
    max-width: 760px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 0.88rem;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
    color: var(--brand-deep);
}

.grid-2,
.grid-3,
.grid-4,
.cards-grid,
.channel-grid,
.feedback-grid,
.topic-grid,
.footer-links {
    display: grid;
    gap: 20px;
}

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

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

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

.card,
.feature-card,
.channel-card,
.topic-card,
.feedback-card,
.note-card,
.info-card,
.step-card,
.faq-card,
.stat-card,
.mini-card {
    position: relative;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
}

.card,
.feature-card,
.topic-card,
.feedback-card,
.note-card,
.info-card,
.step-card,
.faq-card,
.stat-card,
.mini-card {
    padding: clamp(22px, 3vw, 32px);
}

.card::before,
.feature-card::before,
.channel-card::before,
.topic-card::before,
.info-card::before,
.step-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    width: 56px;
    height: 4px;
    border-radius: 0 0 999px 999px;
    background: var(--gradient);
    pointer-events: none;
}

.feature-card,
.card,
.channel-card,
.topic-card,
.feedback-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feature-card:hover,
.card:hover,
.channel-card:hover,
.topic-card:hover,
.feedback-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 98, 159, 0.28);
    box-shadow: 0 18px 42px rgba(103, 62, 91, 0.12);
}

.feature-icon,
.card-icon,
.step-number {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: var(--brand-deep);
    background: linear-gradient(145deg, var(--surface-pink), var(--surface-purple));
    border: 1px solid var(--border);
    font-size: 1.22rem;
    font-weight: 900;
}

.channel-card {
    min-height: 190px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.channel-card p,
.topic-card p,
.feature-card p,
.card p,
.feedback-card p,
.info-card p,
.step-card p,
.note-card p {
    color: #6c5d68;
}

.channel-card .text-link {
    margin-top: auto;
}

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

.inspiration-card {
    min-height: 230px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 28px;
    border: 1px solid var(--border);
    background:
        radial-gradient(circle at 85% 10%, rgba(255, 155, 188, 0.25), transparent 38%),
        linear-gradient(145deg, #ffffff, #fff4f8);
    box-shadow: var(--shadow-soft);
}

.inspiration-card:nth-child(1),
.inspiration-card:nth-child(6) {
    grid-column: span 5;
}

.inspiration-card:nth-child(2),
.inspiration-card:nth-child(5) {
    grid-column: span 4;
}

.inspiration-card:nth-child(3),
.inspiration-card:nth-child(4) {
    grid-column: span 3;
}

.inspiration-card .tag {
    align-self: flex-start;
    margin-bottom: auto;
}

.content-prose {
    max-width: 860px;
    color: #62535f;
    font-size: 1.02rem;
}

.content-prose p {
    margin-bottom: 1.25em;
}

.feature-split.reverse,
.split-grid.reverse {
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.14fr);
}

.feature-split.reverse .media-panel,
.split-grid.reverse .media-panel {
    order: -1;
}

.check-list,
.link-list,
.notice-list,
.number-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.check-list {
    display: grid;
    gap: 12px;
}

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

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.12em;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--gradient);
    font-size: 0.74rem;
    font-weight: 900;
}

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

.link-list a {
    min-height: 46px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 14px;
    background: rgba(255,255,255,0.76);
    border: 1px solid var(--border);
    color: #655461;
    font-weight: 700;
}

.link-list a::after {
    content: "→";
    color: var(--brand-deep);
}

.link-list a:hover,
.link-list a:focus-visible {
    color: var(--brand-deep);
    background: var(--surface-pink);
}

.notice-box,
.callout,
.cta-panel {
    border-radius: 28px;
    border: 1px solid var(--border);
}

.notice-box,
.callout {
    padding: clamp(24px, 4vw, 38px);
    background: linear-gradient(135deg, rgba(255,240,246,0.92), rgba(246,241,255,0.90));
}

.notice-box strong,
.callout strong {
    color: var(--heading);
}

.cta-panel {
    padding: clamp(32px, 6vw, 64px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;
    color: #fff;
    background: linear-gradient(135deg, #e94d8e 0%, #ff7aa9 48%, #7d5ad9 100%);
    box-shadow: 0 24px 60px rgba(113, 61, 105, 0.22);
}

.cta-panel h2,
.cta-panel p {
    color: #fff;
}

.cta-panel p {
    max-width: 760px;
    margin-bottom: 0;
    opacity: 0.9;
}

.cta-panel .secondary-button {
    color: var(--brand-deep);
    border-color: transparent;
}

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

.step-row {
    position: relative;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    padding: 24px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.86);
}

.step-row::before {
    counter-increment: steps;
    content: counter(steps, decimal-leading-zero);
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: var(--gradient);
    font-weight: 900;
}

.timeline {
    position: relative;
    display: grid;
    gap: 26px;
    padding-left: 34px;
}

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

.timeline-item {
    position: relative;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -34px;
    top: 8px;
    width: 20px;
    height: 20px;
    border: 5px solid #fff;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 1px var(--border);
}

.timeline-item h3 {
    margin-bottom: 7px;
}

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

.info-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
}

.info-table th,
.info-table td {
    padding: 17px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 98, 159, 0.10);
}

.info-table th {
    color: var(--heading);
    background: var(--surface-pink);
}

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

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

details.faq-item {
    border-radius: 20px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.92);
    box-shadow: 0 8px 24px rgba(93, 56, 82, 0.05);
}

details.faq-item summary {
    min-height: 58px;
    padding: 17px 56px 17px 22px;
    display: flex;
    align-items: center;
    color: var(--heading);
    font-weight: 800;
    cursor: pointer;
    list-style: none;
    position: relative;
}

details.faq-item summary::-webkit-details-marker {
    display: none;
}

details.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--brand-deep);
    background: var(--surface-pink);
    font-size: 1.25rem;
    transition: transform 0.2s ease;
}

details.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 22px 22px;
    color: #6b5b67;
}

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

.feedback-card::before {
    content: "“";
    display: block;
    margin-bottom: -8px;
    color: var(--peach);
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 1;
}

.feedback-role {
    display: inline-flex;
    margin-top: 8px;
    color: var(--brand-deep);
    font-size: 0.86rem;
    font-weight: 800;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.number-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.number-card {
    padding: 26px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.88);
}

.number-card strong {
    display: block;
    margin-bottom: 10px;
    color: transparent;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 2.2rem;
    line-height: 1;
}

.quote-panel {
    padding: clamp(30px, 6vw, 62px);
    border-radius: 32px;
    background: linear-gradient(145deg, #ffffff, #fff0f6 58%, #f6f1ff);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.quote-panel blockquote {
    max-width: 900px;
    margin: 0;
    color: var(--heading);
    font-size: clamp(1.35rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.55;
}

.aside-panel {
    padding: 28px;
    border-radius: 26px;
    background: var(--surface-purple);
    border: 1px solid rgba(147, 107, 255, 0.16);
}

.aside-panel h3 {
    font-size: 1.25rem;
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 72px 0 28px;
    color: var(--footer-text);
    background: var(--footer);
}

.site-footer::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    top: -360px;
    right: -160px;
    background: radial-gradient(circle, rgba(255, 98, 159, 0.28), transparent 68%);
    pointer-events: none;
}

.footer-inner {
    position: relative;
    z-index: 1;
    width: var(--container);
    margin: 0 auto;
}

.footer-brand {
    max-width: 560px;
    margin-bottom: 44px;
}

.footer-brand p {
    color: rgba(255, 234, 243, 0.76);
}

.footer-logo {
    color: #fff;
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

.footer-links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 38px 0;
    border-top: 1px solid rgba(255,255,255,0.10);
    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footer-links h2 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0;
}

.footer-links a {
    display: block;
    min-height: 40px;
    color: rgba(255, 234, 243, 0.72);
    font-size: 0.92rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: #fff;
}

.footer-note {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    color: rgba(255, 234, 243, 0.62);
    font-size: 0.86rem;
}

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

.mobile-tabbar {
    display: none;
}

::selection {
    color: #fff;
    background: var(--brand);
}

:focus-visible {
    outline: 3px solid rgba(147, 107, 255, 0.34);
    outline-offset: 3px;
}

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

    .desktop-nav a {
        font-size: 0.9rem;
    }

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

    .hero-grid,
    .page-hero-grid,
    .split-grid,
    .feature-split,
    .safety-grid,
    .feature-split.reverse,
    .split-grid.reverse {
        gap: 42px;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 70px;
        --container: min(100% - 32px, 760px);
    }

    .header-inner {
        width: calc(100% - 24px);
        grid-template-columns: 48px 1fr auto;
        gap: 10px;
    }

    .mobile-menu-trigger {
        display: inline-flex;
    }

    .desktop-menu-trigger,
    .desktop-nav {
        display: none;
    }

    .brand-logo {
        justify-self: center;
        min-width: 0;
        font-size: 1.15rem;
    }

    .brand-logo img {
        max-width: 136px;
        max-height: 46px;
    }

    .header-actions {
        min-width: 0;
    }

    .header-cta {
        min-height: 44px;
        padding: 0 16px;
        font-size: 0.88rem;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid,
    .page-hero-grid,
    .split-grid,
    .feature-split,
    .safety-grid,
    .feature-split.reverse,
    .split-grid.reverse {
        grid-template-columns: 1fr;
    }

    .feature-split.reverse .media-panel,
    .split-grid.reverse .media-panel {
        order: 0;
    }

    .hero-copy,
    .page-hero-copy {
        max-width: none;
    }

    .hero-media,
    .page-hero-media,
    .media-panel {
        min-height: 320px;
    }

    .grid-3,
    .cards-grid,
    .topic-grid,
    .feedback-grid,
    .number-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .inspiration-card,
    .inspiration-card:nth-child(n) {
        grid-column: span 6;
    }

    .cta-panel {
        grid-template-columns: 1fr;
    }

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

    .footer-note {
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    :root {
        --container: calc(100% - 28px);
    }

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

    .site-drawer {
        padding: 18px;
    }

    .section {
        padding: 58px 0;
    }

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

    .hero,
    .page-hero {
        padding-top: 52px;
        padding-bottom: 64px;
    }

    h1 {
        font-size: clamp(2.3rem, 14vw, 3.5rem);
    }

    .page-hero h1 {
        font-size: clamp(2.15rem, 12vw, 3.2rem);
    }

    h2 {
        font-size: clamp(1.65rem, 9vw, 2.4rem);
    }

    .hero-actions,
    .action-row {
        align-items: stretch;
    }

    .hero-actions .primary-button,
    .hero-actions .secondary-button,
    .action-row .primary-button,
    .action-row .secondary-button,
    .action-row .soft-button {
        flex: 1 1 auto;
    }

    .hero-media,
    .page-hero-media,
    .media-panel {
        min-height: 280px;
        border-radius: 30px;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .cards-grid,
    .channel-grid,
    .topic-grid,
    .feedback-grid,
    .number-cards,
    .footer-links {
        grid-template-columns: 1fr;
    }

    .inspiration-grid {
        grid-template-columns: 1fr;
    }

    .inspiration-card,
    .inspiration-card:nth-child(n) {
        grid-column: auto;
        min-height: 210px;
    }

    .link-list {
        grid-template-columns: 1fr;
    }

    .step-row {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 14px;
        padding: 20px;
    }

    .step-row::before {
        width: 48px;
        height: 48px;
    }

    .cta-panel {
        padding: 34px 24px;
    }

    .site-footer {
        padding-top: 56px;
    }

    .footer-links {
        gap: 28px;
    }

    .mobile-tabbar {
        position: fixed;
        z-index: 900;
        right: 10px;
        bottom: 8px;
        left: 10px;
        min-height: 62px;
        padding: 7px max(8px, env(safe-area-inset-right)) calc(7px + env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
        border: 1px solid rgba(255, 98, 159, 0.16);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 16px 48px rgba(65, 40, 58, 0.18);
        backdrop-filter: blur(16px);
    }

    .mobile-tabbar a {
        min-height: 48px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        border-radius: 15px;
        color: #786775;
        font-size: 0.72rem;
        font-weight: 800;
    }

    .mobile-tabbar a span {
        font-size: 1rem;
        line-height: 1;
        pointer-events: none;
    }

    .mobile-tabbar a.is-current {
        color: var(--brand-deep);
        background: var(--surface-pink);
    }
}

@media (max-width: 390px) {
    .header-cta {
        padding: 0 12px;
        font-size: 0.82rem;
    }

    .brand-logo {
        font-size: 1.02rem;
    }

    .brand-logo img {
        max-width: 112px;
    }

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

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