:root {
    --page: #fff7fb;
    --surface: #ffffff;
    --surface-pink: #fff0f6;
    --surface-purple: #f6f1ff;
    --text: #514451;
    --heading: #332631;
    --muted: #807080;
    --pink: #ff629f;
    --pink-deep: #e94d8e;
    --peach: #ff9bbc;
    --purple: #936bff;
    --border: rgba(255, 98, 159, 0.16);
    --footer: #30232d;
    --footer-text: #ffeaf3;
    --shadow: 0 16px 46px rgba(122, 64, 98, 0.10);
    --shadow-small: 0 8px 24px rgba(122, 64, 98, 0.08);
    --radius-large: 28px;
    --radius: 22px;
    --radius-small: 16px;
    --content: 1220px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--page);
}

body {
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 10% 6%, rgba(255, 155, 188, 0.18), transparent 26rem),
        radial-gradient(circle at 92% 12%, rgba(147, 107, 255, 0.12), transparent 28rem),
        var(--page);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.72;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

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

button {
    color: inherit;
}

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

h1,
h2,
h3,
h4 {
    color: var(--heading);
    line-height: 1.26;
    letter-spacing: -0.02em;
}

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

.skip-link {
    position: fixed;
    left: 16px;
    top: -70px;
    z-index: 3000;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 12px;
    background: var(--heading);
    color: #fff;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 14px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid rgba(255, 98, 159, 0.10);
    background: rgba(255, 247, 251, 0.88);
    box-shadow: 0 7px 22px rgba(73, 40, 60, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

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

.brand-link,
.drawer-brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}

.site-logo-image {
    width: auto;
    height: 38px;
    object-fit: contain;
}

.site-logo-text {
    display: inline-flex;
    align-items: center;
    color: var(--heading);
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -0.04em;
    white-space: nowrap;
}

.site-logo-text::before {
    content: "";
    width: 13px;
    height: 13px;
    margin-right: 9px;
    border-radius: 50% 50% 46% 54%;
    background: linear-gradient(135deg, var(--peach), var(--pink) 55%, var(--purple));
    box-shadow: 8px -5px 0 -3px rgba(147, 107, 255, 0.42);
    pointer-events: none;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    min-width: 0;
    white-space: nowrap;
}

.desktop-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 9px 13px;
    border-radius: 14px;
    color: #655765;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-active {
    background: rgba(255, 98, 159, 0.10);
    color: var(--pink-deep);
}

.desktop-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: var(--pink);
    transform: translateX(-50%);
    pointer-events: none;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--peach) 0%, var(--pink) 50%, var(--purple) 100%);
    box-shadow: 0 11px 24px rgba(233, 77, 142, 0.22);
    color: #fff;
    font-weight: 750;
    line-height: 1;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(233, 77, 142, 0.28);
    filter: saturate(1.05);
}

.button:active {
    transform: translateY(0);
}

.button-small {
    min-height: 44px;
    padding: 10px 18px;
    font-size: 14px;
}

.button-secondary {
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: none;
    color: var(--pink-deep);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: var(--surface-pink);
    box-shadow: var(--shadow-small);
}

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

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

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

.menu-button,
.drawer-close {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.84);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.menu-button:hover,
.menu-button:focus-visible,
.drawer-close:hover,
.drawer-close:focus-visible {
    background: var(--surface-pink);
    transform: translateY(-1px);
}

.menu-button span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 9px;
    background: var(--heading);
    pointer-events: none;
}

.menu-button span:nth-child(1) { transform: translateY(-6px); }
.menu-button span:nth-child(2) { transform: translateY(0); }
.menu-button span:nth-child(3) { transform: translateY(6px); }

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

.drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 1800;
    visibility: hidden;
    opacity: 0;
    background: rgba(36, 24, 34, 0.38);
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.site-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1900;
    visibility: hidden;
    width: min(410px, 88vw);
    height: 100dvh;
    padding: 22px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fffafc;
    box-shadow: -22px 0 56px rgba(59, 31, 48, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateX(102%);
    transition: transform 0.28s ease, opacity 0.25s ease, visibility 0.28s ease;
}

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

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.drawer-close span {
    position: absolute;
    width: 19px;
    height: 2px;
    border-radius: 99px;
    background: var(--heading);
    pointer-events: none;
}

.drawer-close span:first-child { transform: rotate(45deg); }
.drawer-close span:last-child { transform: rotate(-45deg); }

.drawer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 20px 0;
}

.drawer-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 10px 13px;
    border: 1px solid transparent;
    border-radius: 14px;
    background: rgba(255, 240, 246, 0.55);
    color: #655665;
    font-size: 15px;
    font-weight: 650;
}

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

.drawer-note {
    padding: 16px;
    border-radius: 16px;
    background: var(--surface-purple);
    color: var(--muted);
    font-size: 13px;
}

main {
    display: block;
}

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

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

.section-tight {
    padding: 62px 0;
}

.section-soft {
    background: rgba(255, 255, 255, 0.60);
}

.section-pink {
    background: linear-gradient(180deg, rgba(255, 240, 246, 0.76), rgba(255, 247, 251, 0.36));
}

.section-purple {
    background: linear-gradient(180deg, rgba(246, 241, 255, 0.86), rgba(255, 247, 251, 0.45));
}

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

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    margin-bottom: 14px;
    padding: 5px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--pink-deep);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.section-heading h2 {
    margin-bottom: 14px;
    font-size: clamp(30px, 4vw, 48px);
}

.section-heading p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 17px;
}

.hero {
    position: relative;
    isolation: isolate;
    padding: 82px 0 76px;
}

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

.hero::before {
    left: -90px;
    top: 80px;
    width: 260px;
    height: 260px;
    background: rgba(255, 155, 188, 0.16);
}

.hero::after {
    right: 3%;
    top: 20px;
    width: 300px;
    height: 300px;
    background: rgba(147, 107, 255, 0.10);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    align-items: center;
    gap: 70px;
}

.hero-copy h1 {
    margin-bottom: 18px;
    font-size: clamp(52px, 8vw, 90px);
    letter-spacing: -0.065em;
}

.hero-subtitle {
    margin-bottom: 18px;
    color: var(--heading);
    font-size: clamp(23px, 3vw, 36px);
    font-weight: 760;
    line-height: 1.38;
}

.hero-intro {
    max-width: 760px;
    margin-bottom: 28px;
    color: #675867;
    font-size: 17px;
}

.hero-actions,
.action-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-features span,
.tag {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 13px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #6d5d6c;
    font-size: 14px;
    font-weight: 650;
}

.hero-visual,
.media-frame {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 34px;
    background: linear-gradient(150deg, rgba(255,255,255,0.92), rgba(255,240,246,0.9) 50%, rgba(246,241,255,0.95));
    box-shadow: var(--shadow);
}

.hero-visual::before,
.media-frame::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: 24px;
    pointer-events: none;
}

.content-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.visual-fallback {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    min-height: inherit;
    overflow: hidden;
    background:
        linear-gradient(140deg, rgba(255,255,255,0.74), rgba(255,240,246,0.68)),
        radial-gradient(circle at 25% 20%, rgba(255,98,159,0.38), transparent 38%),
        radial-gradient(circle at 80% 76%, rgba(147,107,255,0.34), transparent 40%);
}

.visual-fallback span {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.visual-fallback span:nth-child(1) {
    width: 180px;
    height: 180px;
    background: rgba(255, 155, 188, 0.58);
    transform: translate(-38px, -58px);
}

.visual-fallback span:nth-child(2) {
    width: 126px;
    height: 126px;
    background: rgba(147, 107, 255, 0.40);
    transform: translate(74px, 44px);
}

.visual-fallback span:nth-child(3) {
    width: 58px;
    height: 58px;
    border: 13px solid rgba(255,255,255,0.82);
    background: transparent;
    transform: translate(-76px, 102px);
}

.grid-2,
.grid-3,
.grid-4,
.grid-5 {
    display: grid;
    gap: 22px;
}

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

.card {
    position: relative;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.90);
    box-shadow: var(--shadow-small);
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(255,255,255,0.38), transparent 44%);
    pointer-events: none;
}

.card > * {
    position: relative;
}

.card h3 {
    margin-bottom: 11px;
    font-size: 21px;
}

.card p {
    color: #6c5d6b;
}

.card .text-link {
    margin-top: 8px;
}

.icon-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border-radius: 15px;
    background: linear-gradient(145deg, var(--surface-pink), var(--surface-purple));
    color: var(--pink-deep);
    font-size: 20px;
    font-weight: 900;
}

.channel-card {
    min-height: 205px;
    display: flex;
    flex-direction: column;
}

.channel-card p {
    flex: 1;
    font-size: 14px;
}

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

.inspiration-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-small);
}

.inspiration-card:nth-child(1),
.inspiration-card:nth-child(6) {
    grid-row: span 2;
    background: linear-gradient(160deg, #fff, #fff0f6);
}

.inspiration-card:nth-child(3),
.inspiration-card:nth-child(8) {
    background: linear-gradient(160deg, #fff, #f6f1ff);
}

.inspiration-card h3 {
    font-size: 24px;
}

.inspiration-card p {
    color: var(--muted);
    font-size: 14px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    align-items: center;
    gap: 56px;
}

.split-section.reverse {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.prose h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 4vw, 46px);
}

.prose h3 {
    margin: 28px 0 12px;
    font-size: 22px;
}

.prose p {
    color: #655665;
}

.feature-list,
.check-list,
.link-list,
.step-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.feature-list li,
.check-list li {
    position: relative;
    padding-left: 30px;
    color: #645563;
}

.feature-list li::before,
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.15em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 98, 159, 0.12);
    color: var(--pink-deep);
    font-size: 12px;
    font-weight: 900;
}

.topic-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.topic-strip article {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255,255,255,0.74);
}

.topic-strip h3 {
    font-size: 19px;
}

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

.notice-panel {
    padding: 28px;
    border: 1px solid rgba(147, 107, 255, 0.18);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(246,241,255,0.96), rgba(255,255,255,0.88));
}

.notice-panel h2,
.notice-panel h3 {
    margin-bottom: 12px;
}

.notice-panel p {
    color: #665b73;
}

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

.security-card {
    padding: 34px;
    border-radius: 28px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.9);
    box-shadow: var(--shadow-small);
}

.security-card:nth-child(2) {
    background: linear-gradient(150deg, #fff, #f6f1ff);
}

.security-card h2 {
    font-size: 30px;
}

.feedback-card {
    padding: 24px;
    border-left: 4px solid rgba(255,98,159,0.42);
}

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

.feedback-card span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

details {
    border: 1px solid var(--border);
    border-radius: 17px;
    background: rgba(255,255,255,0.88);
    box-shadow: 0 5px 18px rgba(100, 56, 82, 0.05);
}

details + details {
    margin-top: 12px;
}

summary {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 15px 50px 15px 20px;
    color: var(--heading);
    font-weight: 750;
    cursor: pointer;
    list-style: none;
}

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

summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    color: var(--pink-deep);
    font-size: 24px;
    font-weight: 400;
    transform: translateY(-50%);
    pointer-events: none;
}

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

.faq-answer {
    padding: 0 20px 20px;
    color: #6b5c6a;
}

.page-hero {
    position: relative;
    padding: 74px 0 58px;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    align-items: center;
    gap: 50px;
}

.page-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(42px, 6vw, 68px);
}

.page-hero .lead {
    max-width: 780px;
    color: #665767;
    font-size: 18px;
}

.page-hero .media-frame {
    min-height: 310px;
}

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

.breadcrumbs a {
    min-height: 30px;
    color: var(--pink-deep);
}

.breadcrumbs span::before {
    content: "/";
    margin-right: 8px;
    color: #b6a7b2;
}

.info-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--border);
}

.info-band article {
    padding: 25px;
    background: rgba(255,255,255,0.92);
}

.info-band h2,
.info-band h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

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

.timeline {
    position: relative;
    display: grid;
    gap: 0;
    margin-top: 28px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(var(--pink), rgba(147,107,255,0.35));
    pointer-events: none;
}

.timeline article {
    position: relative;
    padding: 0 0 30px 66px;
}

.timeline article::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 5px solid var(--page);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: #fff;
    font-size: 13px;
    font-weight: 850;
}

.timeline h3 {
    margin-bottom: 8px;
}

.timeline p {
    margin-bottom: 0;
    color: var(--muted);
}

.steps-grid {
    counter-reset: steps;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.step-card {
    counter-increment: steps;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

.step-card::before {
    content: "0" counter(steps);
    display: block;
    margin-bottom: 18px;
    color: var(--pink);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.step-card h3 {
    font-size: 20px;
}

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

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

.compare-card {
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: #fff;
}

.compare-card.good {
    background: linear-gradient(145deg, #fff, #fff0f6);
}

.compare-card.caution {
    background: linear-gradient(145deg, #fff, #f6f1ff);
}

.link-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255,240,246,0.9), rgba(246,241,255,0.9));
}

.link-panel h2,
.link-panel h3 {
    margin-bottom: 8px;
}

.link-panel p {
    margin-bottom: 0;
    color: var(--muted);
}

.cta-panel {
    position: relative;
    overflow: hidden;
    padding: 48px;
    border: 1px solid rgba(255,98,159,0.14);
    border-radius: 32px;
    background: linear-gradient(135deg, #fff, #fff0f6 54%, #f6f1ff);
    box-shadow: var(--shadow);
    text-align: center;
}

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

.cta-panel::before {
    left: -55px;
    bottom: -65px;
    width: 170px;
    height: 170px;
    background: rgba(255,155,188,0.22);
}

.cta-panel::after {
    right: -40px;
    top: -65px;
    width: 160px;
    height: 160px;
    background: rgba(147,107,255,0.14);
}

.cta-panel > * {
    position: relative;
}

.cta-panel h2 {
    margin-bottom: 12px;
    font-size: clamp(30px, 4vw, 46px);
}

.cta-panel p {
    max-width: 700px;
    margin: 0 auto 22px;
    color: #695a68;
}

.cta-panel .action-row {
    justify-content: center;
}

.contact-option {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-option .icon-mark {
    flex: 0 0 auto;
    margin-bottom: 0;
}

.service-index {
    display: grid;
    grid-template-columns: minmax(250px, 0.35fr) minmax(0, 0.65fr);
    gap: 28px;
}

.service-index aside {
    align-self: start;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.82);
}

.service-index aside a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 10px;
    border-radius: 12px;
    color: #685968;
    font-weight: 650;
}

.service-index aside a:hover,
.service-index aside a:focus-visible {
    background: var(--surface-pink);
    color: var(--pink-deep);
}

.article-stack {
    display: grid;
    gap: 20px;
}

.article-stack article {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.9);
}

.article-stack h2 {
    font-size: 28px;
}

.site-footer {
    margin-top: 30px;
    padding: 68px 0 20px;
    background: var(--footer);
    color: var(--footer-text);
}

.footer-inner {
    width: min(calc(100% - 40px), var(--content));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 1.05fr) minmax(0, 1.95fr);
    gap: 60px;
}

.footer-brand-column p {
    max-width: 420px;
    margin-top: 18px;
    color: rgba(255,234,243,0.76);
}

.footer-brand .site-logo-text {
    color: #fff;
}

.footer-reminder {
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.10);
    font-size: 13px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

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

.footer-links a {
    display: flex;
    align-items: center;
    min-height: 38px;
    color: rgba(255,234,243,0.76);
    font-size: 14px;
}

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

.footer-bottom {
    width: min(calc(100% - 40px), var(--content));
    margin: 48px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.10);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255,234,243,0.62);
    font-size: 13px;
}

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

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

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

@media (max-width: 1080px) {
    .header-inner {
        gap: 16px;
    }

    .desktop-nav a {
        padding-inline: 9px;
        font-size: 14px;
    }

    .hero-grid,
    .page-hero-grid {
        gap: 42px;
    }

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

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

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

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

@media (max-width: 860px) {
    .header-inner {
        width: min(calc(100% - 28px), 1260px);
        grid-template-columns: 44px minmax(0, 1fr) auto;
        min-height: 66px;
    }

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

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

    .brand-link {
        justify-self: center;
        min-width: 0;
    }

    .site-logo-image {
        max-width: 150px;
        height: 34px;
    }

    .site-logo-text {
        font-size: 21px;
    }

    .header-actions {
        justify-self: end;
    }

    .experience-button {
        padding-inline: 14px;
    }

    .section {
        padding: 72px 0;
    }

    .hero {
        padding: 62px 0 66px;
    }

    .hero-grid,
    .page-hero-grid,
    .split-section,
    .split-section.reverse,
    .service-index {
        grid-template-columns: 1fr;
    }

    .hero-visual,
    .media-frame {
        min-height: 350px;
    }

    .page-hero .media-frame {
        min-height: 280px;
    }

    .grid-3,
    .topic-strip,
    .info-band {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 640px) {
    body {
        padding-bottom: calc(76px + env(safe-area-inset-bottom));
    }

    .container,
    .footer-inner,
    .footer-bottom {
        width: min(calc(100% - 28px), var(--content));
    }

    .header-inner {
        width: calc(100% - 20px);
        gap: 8px;
    }

    .site-logo-image {
        max-width: 122px;
        height: 31px;
    }

    .site-logo-text {
        font-size: 18px;
    }

    .site-logo-text::before {
        width: 10px;
        height: 10px;
        margin-right: 7px;
    }

    .experience-button {
        min-height: 44px;
        padding-inline: 12px;
        font-size: 13px;
    }

    .section {
        padding: 58px 0;
    }

    .section-tight {
        padding: 44px 0;
    }

    .section-heading {
        margin-bottom: 26px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .section-heading p,
    .page-hero .lead {
        font-size: 16px;
    }

    .hero {
        padding: 48px 0 54px;
    }

    .hero-copy h1 {
        font-size: clamp(48px, 17vw, 66px);
    }

    .hero-subtitle {
        font-size: 24px;
    }

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

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

    .hero-visual,
    .media-frame {
        min-height: 290px;
        border-radius: 26px;
    }

    .page-hero {
        padding: 48px 0 44px;
    }

    .page-hero h1 {
        font-size: 42px;
    }

    .grid-2,
    .grid-4,
    .grid-5,
    .security-grid,
    .compare-grid,
    .steps-grid,
    .inspiration-grid {
        grid-template-columns: 1fr;
    }

    .card,
    .security-card,
    .compare-card,
    .article-stack article {
        padding: 23px;
    }

    .channel-card {
        min-height: auto;
    }

    .drawer-nav {
        grid-template-columns: 1fr;
    }

    .site-drawer {
        width: min(88vw, 380px);
        padding: 18px;
    }

    .link-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .cta-panel {
        padding: 36px 22px;
        border-radius: 26px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 28px 16px;
    }

    .footer-bottom {
        flex-direction: column;
        margin-top: 34px;
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 10px;
        z-index: 950;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        min-height: 62px;
        padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
        border: 1px solid rgba(255,98,159,0.18);
        border-radius: 22px;
        background: rgba(255,255,255,0.94);
        box-shadow: 0 14px 38px rgba(82, 42, 66, 0.18);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .mobile-bottom-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 50px;
        border-radius: 15px;
        color: #736472;
        font-size: 12px;
        font-weight: 700;
    }

    .mobile-bottom-nav a span {
        height: 22px;
        color: var(--pink-deep);
        font-size: 17px;
        line-height: 1;
        pointer-events: none;
    }

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

@media (max-width: 390px) {
    .site-logo-text {
        font-size: 16px;
    }

    .experience-button {
        padding-inline: 10px;
    }

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
