:root {
    --bg: #0B0B1A;
    --deep: #080812;
    --surface: #12121F;
    --surface-2: #1A1A2A;
    --hover: #222233;
    --title: #FFFFFF;
    --text: #E8E8F0;
    --muted: #A0A0B8;
    --faint: #6B6B80;
    --pink: #FF2D6A;
    --pink-2: #FF4D8A;
    --rose: #E6005C;
    --purple: #7B2CBF;
    --purple-2: #9B4DFF;
    --soft-pink: #FFB3C9;
    --border: rgba(255,45,106,.18);
    --border-strong: rgba(255,77,138,.45);
    --shadow: 0 16px 48px rgba(0,0,0,.55);
    --pink-shadow: 0 12px 36px rgba(255,45,106,.22);
    --max: 1280px;
    --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--deep); }
body {
    margin: 0;
    min-width: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 2%, rgba(123,44,191,.18), transparent 28rem),
        radial-gradient(circle at 88% 18%, rgba(255,45,106,.13), transparent 34rem),
        var(--bg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.75;
    overflow-x: hidden;
}
body.menu-open, body.search-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; }
button { color: inherit; }
::selection { background: rgba(255,77,138,.45); color: #fff; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; background: #fff; color: #000; padding: 10px 14px; border-radius: 10px; }
.skip-link:focus { top: 12px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    height: 72px;
    background: rgba(8,8,18,.88);
    border-bottom: 1px solid rgba(255,255,255,.06);
    backdrop-filter: blur(18px);
}
.nav-shell {
    width: min(calc(100% - 30px), var(--max));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-header { min-width: 128px; }
.brand-logo { max-width: 142px; max-height: 40px; object-fit: contain; object-position: left center; }
.brand-fallback {
    display: inline-block;
    font-weight: 900;
    font-size: 1.45rem;
    letter-spacing: -.04em;
    background: linear-gradient(135deg, var(--pink-2), var(--purple-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.desktop-nav { display: flex; align-items: center; gap: 2px; flex: 1 1 auto; min-width: 0; }
.desktop-nav a, .nav-text-button {
    position: relative;
    min-height: 44px;
    padding: 10px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    color: var(--muted);
    border-radius: 999px;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.desktop-nav a:hover, .nav-text-button:hover { color: #fff; background: rgba(255,255,255,.05); }
.desktop-nav a.is-active, .nav-text-button.is-active { color: #fff; background: rgba(255,45,106,.12); }
.desktop-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 24%; right: 24%; bottom: 5px; height: 2px; border-radius: 999px;
    background: linear-gradient(90deg, var(--pink-2), var(--purple-2));
}
.nav-actions { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.primary-nav-button, .btn-primary {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg,#FF4D8A 0%,#FF2D6A 50%,#E6005C 100%);
    box-shadow: var(--pink-shadow);
    white-space: nowrap;
}
.primary-nav-button:hover, .btn-primary:hover { transform: translateY(-1px); filter: brightness(1.06); }
.btn-secondary {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,.025);
    white-space: nowrap;
}
.btn-secondary:hover { background: rgba(255,77,138,.08); }
.icon-button {
    width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%;
    background: rgba(255,255,255,.025); display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; cursor: pointer;
}
.icon-button span { width: 18px; height: 2px; border-radius: 2px; background: #fff; }

main { min-height: 70vh; }
.container { width: min(calc(100% - 30px), var(--max)); margin: 0 auto; }
.section { padding: 72px 0; position: relative; }
.section-tight { padding: 44px 0; }
.section-dark { background: rgba(5,5,10,.34); border-top: 1px solid rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.04); }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--soft-pink);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; border-radius: 999px; background: linear-gradient(90deg,var(--pink),var(--purple-2)); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.section-head > div { max-width: 760px; }
.section-head h2, .page-hero h1, .hero-copy h1, .statement h2 { margin: 8px 0 10px; color: var(--title); line-height: 1.12; letter-spacing: -.035em; }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
.section-head p { margin: 0; color: var(--muted); }
.text-link { color: var(--soft-pink); font-weight: 750; }
.text-link:hover { color: #fff; }

.page-hero { padding: 76px 0 46px; }
.page-hero-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(280px,.85fr); gap: 30px; align-items: center; }
.page-hero h1 { font-size: clamp(2.45rem, 6vw, 5.3rem); max-width: 980px; }
.page-hero p.lead { max-width: 780px; color: #c9c9d8; font-size: clamp(1.02rem, 1.6vw, 1.22rem); }
.hero-kicker { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.tag, .pill {
    display: inline-flex; align-items: center; min-height: 34px; padding: 6px 12px; border-radius: 999px;
    border: 1px solid var(--border); color: #e8d5df; background: rgba(255,45,106,.07); font-size: .9rem;
}
.media-card, .image-frame {
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255,45,106,.14), rgba(123,44,191,.11) 45%, var(--surface));
    box-shadow: var(--shadow);
}
.media-card img, .image-frame img { width: 100%; height: 100%; object-fit: contain; background: #0f0f1d; }
.media-fallback { min-height: 340px; display: grid; place-items: center; padding: 40px; text-align: center; }
.media-fallback strong { font-size: clamp(2rem, 6vw, 4.5rem); background: linear-gradient(135deg,var(--pink-2),var(--purple-2)); -webkit-background-clip:text; background-clip:text; color: transparent; }

.home-hero { padding: 42px 0 24px; }
.home-hero-grid { display: grid; grid-template-columns: minmax(0, 1.95fr) minmax(310px, .95fr); gap: 28px; align-items: stretch; }
.hero-visual { min-height: 560px; position: relative; overflow: hidden; border-radius: 28px; border: 1px solid rgba(255,255,255,.07); background: linear-gradient(145deg, #1b1530, #120f24 48%, #0c0b18); box-shadow: var(--shadow); }
.hero-visual img { width: 100%; height: 100%; object-fit: contain; }
.hero-visual::after, .media-card::after { content: ""; pointer-events: none; position: absolute; inset: auto 6% 5% auto; width: 110px; height: 110px; border: 1px solid rgba(255,77,138,.2); border-radius: 50%; box-shadow: 0 0 70px rgba(255,45,106,.18); }
.hero-panel { display: flex; flex-direction: column; justify-content: center; padding: 34px; border: 1px solid var(--border); border-radius: 28px; background: rgba(18,18,31,.86); box-shadow: var(--shadow); }
.hero-panel h1 { margin: 8px 0 14px; font-size: clamp(2.4rem, 4.5vw, 4.7rem); line-height: 1.02; letter-spacing: -.045em; }
.hero-panel > p { color: #c8c8d6; margin: 0 0 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.hero-rec-list { display: grid; gap: 10px; }
.hero-rec { padding: 13px 14px; border-radius: 14px; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.05); }
.hero-rec strong { display: block; color: #fff; }
.hero-rec span { color: var(--muted); font-size: .9rem; }

.quick-strip { border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); background: rgba(8,8,18,.66); }
.quick-scroll { display: flex; align-items: center; gap: 8px; overflow-x: auto; scrollbar-width: thin; padding: 13px 0; }
.quick-scroll a { flex: 0 0 auto; padding: 8px 12px; border-radius: 999px; color: var(--muted); border: 1px solid rgba(255,255,255,.07); }
.quick-scroll a:hover, .quick-scroll a.is-active { color: #fff; border-color: var(--border-strong); background: rgba(255,45,106,.09); }

.grid-2 { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.card {
    position: relative;
    padding: 24px;
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.012)), var(--surface);
    border: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 14px 36px rgba(0,0,0,.22);
}
.card:hover { border-color: var(--border); background-color: var(--surface-2); }
.card h3 { margin: 6px 0 10px; color: #fff; line-height: 1.28; }
.card p { margin: 0; color: var(--muted); }
.card .meta { color: var(--soft-pink); font-size: .82rem; font-weight: 750; letter-spacing: .04em; }
.card-link { position: absolute; inset: 0; border-radius: inherit; }
.card > * { position: relative; z-index: 1; pointer-events: none; }
.card .text-link, .card a:not(.card-link) { pointer-events: auto; }
.number-card { min-height: 220px; display: flex; flex-direction: column; justify-content: space-between; }
.number-card .num { font-size: clamp(3rem, 6vw, 5.6rem); line-height: .85; color: rgba(255,255,255,.08); font-weight: 900; letter-spacing: -.06em; }
.number-card:hover .num { color: rgba(255,77,138,.16); }

.inspiration-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; }
.inspiration-item { padding: 18px; border: 1px solid rgba(255,255,255,.06); border-radius: 16px; background: rgba(255,255,255,.025); }
.inspiration-item strong { display: block; margin-bottom: 6px; color: #fff; }
.inspiration-item p { margin: 0 0 8px; color: var(--muted); font-size: .93rem; }

.feature-grid { display: grid; grid-template-columns: minmax(0,1.45fr) minmax(300px,.75fr); gap: 22px; }
.feature-main { min-height: 360px; padding: 34px; border-radius: 24px; background: linear-gradient(145deg, rgba(255,45,106,.16), rgba(123,44,191,.11) 45%, var(--surface)); border: 1px solid var(--border); }
.feature-main h3 { margin: 10px 0 12px; color: #fff; font-size: clamp(1.8rem,3vw,3rem); line-height: 1.13; }
.feature-main p { color: #c9c9d8; }
.feature-main .reason { margin-top: 20px; padding: 16px; border-left: 3px solid var(--pink-2); background: rgba(0,0,0,.16); border-radius: 0 12px 12px 0; }
.stack { display: grid; gap: 12px; }
.stack-item { padding: 18px; border-radius: 16px; border: 1px solid rgba(255,255,255,.06); background: var(--surface); }
.stack-item strong { display: block; color: #fff; margin-bottom: 4px; }
.stack-item span { color: var(--muted); }

.horizontal-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(245px, 1fr); gap: 16px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x proximity; }
.horizontal-track > * { scroll-snap-align: start; }
.poster-track .card { min-height: 320px; }
.poster-card { overflow: hidden; padding: 0; min-height: 340px; }
.poster-card .poster-art { min-height: 190px; background: linear-gradient(135deg, rgba(255,45,106,.18), rgba(155,77,255,.18)); display: grid; place-items: center; border-bottom: 1px solid rgba(255,255,255,.05); }
.poster-card .poster-art span { font-size: 3rem; opacity: .72; }
.poster-card .poster-copy { padding: 22px; }

.editorial-list { display: grid; gap: 1px; border: 1px solid rgba(255,255,255,.06); border-radius: 20px; overflow: hidden; background: rgba(255,255,255,.06); }
.editorial-row { display: grid; grid-template-columns: 78px minmax(0,1fr) auto; gap: 18px; align-items: center; padding: 20px 22px; background: var(--surface); }
.editorial-row:hover { background: var(--surface-2); }
.editorial-row .index { font-weight: 900; font-size: 1.6rem; color: rgba(255,179,201,.72); }
.editorial-row strong { color: #fff; display: block; }
.editorial-row span { color: var(--muted); }
.editorial-row a { color: var(--soft-pink); white-space: nowrap; }

.timeline { display: grid; gap: 16px; position: relative; }
.timeline::before { content: ""; position: absolute; left: 16px; top: 10px; bottom: 10px; width: 1px; background: linear-gradient(var(--pink), rgba(155,77,255,.2)); }
.timeline-item { position: relative; padding: 4px 0 4px 48px; }
.timeline-item::before { content: ""; position: absolute; left: 10px; top: 16px; width: 13px; height: 13px; border-radius: 50%; background: var(--pink-2); box-shadow: 0 0 0 7px rgba(255,77,138,.08); }
.timeline-item .status { color: var(--soft-pink); font-size: .85rem; font-weight: 800; }
.timeline-item h3 { margin: 2px 0 4px; color: #fff; }
.timeline-item p { margin: 0; color: var(--muted); }

.masonry-editorial { columns: 2 320px; column-gap: 18px; }
.masonry-editorial article { break-inside: avoid; margin-bottom: 18px; }
.magazine-feature { display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; }
.magazine-feature .card:first-child { min-height: 420px; }
.quote-block { padding: 30px; border-left: 4px solid var(--pink); border-radius: 0 18px 18px 0; background: rgba(255,45,106,.06); color: #eee; font-size: 1.05rem; }

.statement { padding: 42px; border-radius: 28px; border: 1px solid var(--border); background: linear-gradient(135deg, rgba(255,45,106,.11), rgba(123,44,191,.09) 50%, rgba(18,18,31,.9)); }
.statement h2 { font-size: clamp(2rem,4vw,3.8rem); }
.statement p { max-width: 900px; color: #d0d0dd; }

.faq-list details { border: 1px solid rgba(255,255,255,.06); border-radius: 16px; background: var(--surface); padding: 0 18px; margin-bottom: 12px; }
.faq-list summary { cursor: pointer; list-style: none; padding: 18px 30px 18px 0; font-weight: 800; color: #fff; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; top: 17px; color: var(--pink-2); font-size: 1.3rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { color: var(--muted); margin: 0; padding: 0 0 20px; }

.prose { max-width: 880px; }
.prose h2 { color: #fff; margin: 40px 0 10px; font-size: clamp(1.5rem,2.6vw,2.2rem); }
.prose h3 { color: #fff; margin: 28px 0 8px; }
.prose p, .prose li { color: #c9c9d7; }
.prose a { color: var(--soft-pink); text-decoration: underline; text-underline-offset: 3px; }
.prose ul { padding-left: 20px; }
.prose-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(260px,.42fr); gap: 42px; align-items: start; }
.side-note { position: sticky; top: 96px; padding: 22px; border-radius: 18px; border: 1px solid var(--border); background: rgba(18,18,31,.9); }
.side-note h2 { margin-top: 0; color: #fff; font-size: 1.15rem; }
.side-note p, .side-note li { color: var(--muted); }

.process-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; counter-reset: step; }
.process-step { counter-increment: step; padding: 22px; border-radius: 16px; border: 1px solid rgba(255,255,255,.06); background: var(--surface); }
.process-step::before { content: counter(step, decimal-leading-zero); display: block; color: var(--soft-pink); font-weight: 900; margin-bottom: 16px; }
.process-step h3 { color: #fff; margin: 0 0 8px; }
.process-step p { margin: 0; color: var(--muted); }

.app-showcase { display: grid; grid-template-columns: minmax(280px,.82fr) minmax(0,1.18fr); gap: 40px; align-items: center; }
.phone-stage { min-height: 560px; border-radius: 36px; background: linear-gradient(160deg, rgba(255,77,138,.16), rgba(123,44,191,.13), rgba(8,8,18,.9)); border: 1px solid var(--border); display: grid; place-items: center; padding: 30px; }
.phone-stage img { max-height: 520px; object-fit: contain; }
.app-copy h1 { font-size: clamp(2.5rem,5vw,4.8rem); }
.app-icon { width: 68px; height: 68px; object-fit: contain; border-radius: 16px; margin-bottom: 16px; }

.overlay {
    position: fixed; inset: 0; z-index: 89; background: rgba(0,0,0,.64); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .2s ease, visibility .2s ease;
}
.channel-panel {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 90; width: min(460px, 88vw); background: #0c0c18; border-left: 1px solid var(--border); box-shadow: -20px 0 80px rgba(0,0,0,.5); transform: translateX(104%); visibility: hidden; pointer-events: none; transition: transform .24s ease, visibility .24s ease;
}
body.menu-open .overlay, body.search-open .overlay { opacity: 1; visibility: visible; pointer-events: auto; }
body.menu-open .channel-panel { transform: translateX(0); visibility: visible; pointer-events: auto; }
.panel-head { min-height: 76px; padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid rgba(255,255,255,.06); }
.panel-brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.panel-logo { max-width: 112px; max-height: 34px; object-fit: contain; }
.panel-brand strong, .panel-brand span { display: block; }
.panel-brand span { color: var(--muted); font-size: .78rem; letter-spacing: .12em; }
.panel-close { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; background: rgba(255,255,255,.03); font-size: 1.7rem; cursor: pointer; }
.panel-mobile-search { display: none; padding: 12px 18px 0; }
.panel-mobile-search .btn-secondary { width: 100%; }
.panel-scroll { height: calc(100vh - 76px); overflow-y: auto; padding: 10px 18px 28px; }
.channel-group { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.channel-group h2 { margin: 0 0 10px; font-size: .82rem; color: var(--soft-pink); letter-spacing: .08em; }
.channel-link { display: block; padding: 13px; border-radius: 13px; }
.channel-link:hover { background: var(--surface-2); }
.channel-link strong { display: block; color: #fff; }
.channel-link span { display: block; color: var(--muted); font-size: .86rem; line-height: 1.55; margin-top: 2px; }

.search-panel {
    position: fixed; top: 72px; left: 0; right: 0; z-index: 91; max-height: calc(100vh - 72px); overflow-y: auto; background: rgba(8,8,18,.98); border-bottom: 1px solid var(--border); transform: translateY(-16px); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
body.search-open .search-panel { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
.search-shell { width: min(calc(100% - 30px), var(--max)); margin: 0 auto; padding: 28px 0 36px; }
.search-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.search-head h2 { margin: 4px 0 0; color: #fff; font-size: clamp(1.6rem,3vw,2.8rem); }
.search-box { display: block; }
.search-box input { width: 100%; min-height: 58px; padding: 14px 18px; border-radius: 16px; border: 1px solid var(--border-strong); background: var(--surface); color: #fff; outline: none; }
.search-box input:focus { box-shadow: 0 0 0 4px rgba(255,77,138,.12); }
.search-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center; margin: 16px 0; color: var(--muted); }
.search-meta > span { color: #fff; font-weight: 800; }
.search-meta a { color: var(--soft-pink); }
.search-results { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; }
.search-result { padding: 14px; border-radius: 14px; border: 1px solid rgba(255,255,255,.06); background: var(--surface); }
.search-result:hover { border-color: var(--border); }
.search-result strong, .search-result span { display: block; }
.search-result strong { color: #fff; }
.search-result span { color: var(--muted); font-size: .85rem; }
.search-result[hidden] { display: none; }

.site-footer { background: #05050A; border-top: 1px solid rgba(255,255,255,.05); margin-top: 60px; }
.footer-shell { width: min(calc(100% - 30px), var(--max)); margin: 0 auto; padding: 54px 0 28px; }
.footer-brand { display: grid; grid-template-columns: auto minmax(0,1fr); gap: 18px; align-items: start; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-logo { max-width: 132px; max-height: 42px; object-fit: contain; }
.footer-brand strong { display: block; color: #fff; font-size: 1.35rem; }
.footer-brand span { color: var(--soft-pink); font-size: .8rem; letter-spacing: .14em; }
.footer-brand p { max-width: 650px; margin: 8px 0 0; color: #a9a9b9; }
.footer-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 28px; padding: 34px 0; }
.footer-group h2 { font-size: .86rem; color: #fff; margin: 0 0 12px; }
.footer-group a { display: block; padding: 5px 0; color: #aaaabc; }
.footer-group a:hover { color: var(--soft-pink); }
.footer-note { display: flex; justify-content: space-between; gap: 24px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.06); color: #79798e; font-size: .84rem; }
.footer-note p { margin: 0; max-width: 800px; }

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

:focus-visible { outline: 3px solid rgba(255,179,201,.9); outline-offset: 3px; }

@media (max-width: 1080px) {
    .desktop-nav a { padding-inline: 9px; font-size: .92rem; }
    .nav-actions { gap: 3px; }
    .home-hero-grid, .feature-grid { grid-template-columns: 1fr; }
    .hero-panel { min-height: 440px; }
    .inspiration-grid, .grid-4, .process-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .search-results { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 860px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: flex; }
    .site-header { height: 64px; }
    .nav-shell { justify-content: space-between; gap: 8px; }
    .mobile-nav-side, .mobile-app { width: 84px; align-items: center; }
    .mobile-app { justify-content: flex-end; }
    .brand-header { min-width: 0; justify-content: center; flex: 1 1 auto; }
    .brand-logo { max-width: 118px; max-height: 34px; }
    .page-hero { padding-top: 54px; }
    .page-hero-grid, .magazine-feature, .app-showcase, .prose-grid { grid-template-columns: 1fr; }
    .side-note { position: static; }
    .grid-3 { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .footer-note { flex-direction: column; }
    .panel-mobile-search { display: flex; }
    .panel-scroll { height: calc(100vh - 132px); }
    .search-panel { top: 64px; height: calc(100vh - 64px); max-height: none; }
    .mobile-bottom-nav {
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; min-height: calc(56px + env(safe-area-inset-bottom)); padding-bottom: env(safe-area-inset-bottom); display: grid; grid-template-columns: repeat(5,1fr); background: rgba(5,5,10,.96); border-top: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(14px);
    }
    .mobile-bottom-nav a { min-height: 56px; display: grid; place-items: center; color: var(--faint); font-size: .82rem; }
    .mobile-bottom-nav a.is-active { color: var(--pink-2); font-weight: 800; }
    .site-footer { margin-bottom: calc(56px + env(safe-area-inset-bottom)); }
    body.menu-open .mobile-bottom-nav, body.search-open .mobile-bottom-nav { z-index: 60; }
}

@media (max-width: 640px) {
    body { font-size: 15px; }
    .section { padding: 56px 0; }
    .section-tight { padding: 36px 0; }
    .home-hero { padding-top: 20px; }
    .home-hero-grid { display: flex; flex-direction: column; }
    .hero-panel { order: 1; min-height: 0; padding: 24px; }
    .hero-visual { order: 2; min-height: 330px; }
    .hero-panel h1 { font-size: clamp(2.25rem,12vw,3.65rem); }
    .page-hero h1 { font-size: clamp(2.2rem,12vw,3.7rem); }
    .page-hero-grid .media-card { min-height: 280px; }
    .section-head { align-items: start; flex-direction: column; margin-bottom: 22px; }
    .grid-2, .grid-3, .grid-4, .inspiration-grid, .process-grid, .search-results { grid-template-columns: 1fr; }
    .editorial-row { grid-template-columns: 54px minmax(0,1fr); }
    .editorial-row a { grid-column: 2; justify-self: start; }
    .masonry-editorial { columns: 1; }
    .statement { padding: 26px; }
    .phone-stage { min-height: 390px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 22px 18px; }
    .footer-brand { grid-template-columns: 1fr; }
    .search-shell { padding-bottom: 90px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
