/**
 * MixReels iOS — black / gold, haze + editorial layout
 * Floating nav, bento features, horizontal screens
 */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --mr-bg: #050403;
    --mr-bg-warm: #0a0805;
    --mr-bg-elevated: #100d09;
    --mr-panel: rgba(14, 14, 18, 0.78);
    --mr-gold: #c4a052;
    --mr-gold-dim: #7d6b3d;
    --mr-gold-bright: #ecd9a8;
    --mr-rose-mist: rgba(160, 100, 90, 0.14);
    --mr-text: #f0eeeb;
    --mr-text-muted: #7d7a75;
    --mr-border: rgba(196, 160, 82, 0.2);
    --mr-font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
    --mr-font-display: "Fraunces", Georgia, serif;
    --mr-radius: 1.125rem;
    --mr-radius-lg: 1.5rem;
    --mr-transition: 0.2s ease;
    --mr-nav-top: 1rem;
}

html {
    scroll-behavior: smooth;
}

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

body.mr-app {
    font-family: var(--mr-font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--mr-text);
    /* 单层略暖底色，主氛围交给 mr-veil，避免与漏光「糊成一体」看不出层次 */
    background: var(--mr-bg-warm);
    min-height: 100vh;
    overflow-x: hidden;
}

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

a {
    color: var(--mr-gold-bright);
    text-decoration: none;
    transition: color var(--mr-transition);
    cursor: pointer;
}

a:hover {
    color: var(--mr-gold);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ========== Veil（氛围主舞台：金色漏光需肉眼可见）========== */
.mr-veil {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.mr-veil__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
    opacity: 0.72;
    animation: mr-float 24s ease-in-out infinite;
}

.mr-veil__orb--1 {
    width: min(85vw, 520px);
    height: min(85vw, 520px);
    background: radial-gradient(circle, rgba(255, 210, 130, 0.55) 0%, rgba(200, 155, 80, 0.22) 38%, transparent 68%);
    top: -18%;
    right: -20%;
}

.mr-veil__orb--2 {
    width: min(90vw, 560px);
    height: min(90vw, 560px);
    background: radial-gradient(circle, rgba(220, 160, 110, 0.2) 0%, rgba(160, 100, 70, 0.12) 35%, transparent 65%);
    bottom: -8%;
    left: -25%;
    animation-delay: -8s;
}

.mr-veil__orb--3 {
    width: min(55vw, 380px);
    height: min(55vw, 380px);
    background: radial-gradient(circle, rgba(255, 200, 100, 0.18) 0%, transparent 62%);
    top: 38%;
    left: 28%;
    animation-delay: -16s;
}

.mr-veil__leak {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

/* 左上角「幕布漏光」：提高中心亮度、扩大过渡区 */
.mr-veil__leak--nw {
    top: -12%;
    left: -18%;
    width: 75%;
    height: 62%;
    background: radial-gradient(
        ellipse 82% 72% at 6% 10%,
        rgba(255, 240, 200, 0.55) 0%,
        rgba(230, 190, 110, 0.28) 22%,
        rgba(160, 120, 60, 0.1) 48%,
        transparent 72%
    );
    filter: blur(4px);
    opacity: 1;
    animation: mr-leak-pulse 14s ease-in-out infinite;
}

.mr-veil__leak--ne {
    top: -8%;
    right: -22%;
    width: 65%;
    height: 55%;
    background: radial-gradient(
        ellipse 78% 68% at 94% 6%,
        rgba(255, 225, 175, 0.38) 0%,
        rgba(200, 160, 90, 0.16) 35%,
        transparent 65%
    );
    filter: blur(6px);
    opacity: 1;
    animation: mr-leak-pulse 18s ease-in-out infinite 2s;
}

/* 斜向光束：收窄 + 提高中心条亮度 */
.mr-veil__leak--beam {
    top: 0;
    left: 18%;
    width: 65%;
    height: 100%;
    background: linear-gradient(
        104deg,
        transparent 38%,
        rgba(255, 235, 190, 0.12) 46%,
        rgba(255, 220, 150, 0.28) 50%,
        rgba(255, 235, 190, 0.12) 54%,
        transparent 62%
    );
    filter: blur(28px);
    opacity: 0.95;
    animation: mr-leak-drift 20s ease-in-out infinite;
}

.mr-veil__leak--floor {
    bottom: -18%;
    left: 0;
    right: 0;
    height: 55%;
    background: radial-gradient(
        ellipse 95% 45% at 50% 100%,
        rgba(210, 170, 95, 0.32) 0%,
        rgba(120, 90, 45, 0.12) 40%,
        transparent 68%
    );
    filter: blur(32px);
    opacity: 1;
    animation: mr-leak-pulse 16s ease-in-out infinite -3s;
}

@keyframes mr-leak-pulse {
    0%, 100% { opacity: 0.82; }
    50% { opacity: 1; }
}

@keyframes mr-leak-drift {
    0%, 100% { opacity: 0.55; transform: translateX(0) scaleX(1); }
    50% { opacity: 0.9; transform: translateX(3%) scaleX(1.05); }
}

@media (prefers-reduced-motion: reduce) {
    .mr-veil__leak--nw,
    .mr-veil__leak--ne,
    .mr-veil__leak--beam,
    .mr-veil__leak--floor {
        animation: none;
        opacity: 0.92;
    }
}

.mr-veil__grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.032;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes mr-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-1.5%, 2%) scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
    .mr-veil__orb {
        animation: none;
    }
}

.mr-wrap {
    width: 100%;
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}

@media (min-width: 768px) {
    .mr-wrap {
        padding: 0 2rem;
    }
}

/* ========== Floating nav ========== */
.mr-head {
    position: fixed;
    top: var(--mr-nav-top);
    left: var(--mr-nav-top);
    right: var(--mr-nav-top);
    z-index: 100;
    max-width: calc(75rem + 2rem);
    margin: 0 auto;
    pointer-events: none;
}

.mr-head .mr-nav {
    pointer-events: auto;
}

.mr-nav {
    background: rgba(10, 10, 12, 0.78);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--mr-border);
    border-radius: 100px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
    transition: border-color var(--mr-transition), box-shadow var(--mr-transition);
}

.mr-nav.is-scrolled {
    border-color: rgba(196, 160, 82, 0.32);
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.55);
}

.mr-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.55rem 0.85rem 0.55rem 1rem;
}

.mr-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--mr-text);
    flex-shrink: 0;
}

.mr-brand:hover {
    color: var(--mr-gold-bright);
}

.mr-brand__icon {
    border-radius: 20%;
    box-shadow: 0 0 16px rgba(196, 160, 82, 0.18);
}

.mr-brand__text {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.mr-nav__links {
    display: none;
    list-style: none;
    align-items: center;
    gap: 1.35rem;
}

@media (min-width: 960px) {
    .mr-nav__links {
        display: flex;
    }
}

.mr-nav__links a {
    color: var(--mr-text-muted);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.mr-nav__links a:hover {
    color: var(--mr-gold-bright);
}

.mr-nav__actions {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.mr-burger {
    display: flex;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    color: var(--mr-gold-bright);
    border-radius: 50%;
    border: 1px solid var(--mr-border);
    transition: background var(--mr-transition);
    cursor: pointer;
}

.mr-burger:hover {
    background: rgba(196, 160, 82, 0.1);
}

.mr-burger svg {
    width: 1.2rem;
    height: 1.2rem;
}

@media (min-width: 960px) {
    .mr-burger {
        display: none;
    }
}

.mr-drawer {
    padding: 0 1rem 1rem;
    border-top: 1px solid var(--mr-border);
}

.mr-drawer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding-top: 0.65rem;
}

.mr-drawer a,
.mr-drawer button {
    cursor: pointer;
}

.mr-drawer a {
    display: block;
    padding: 0.6rem 0.75rem;
    color: var(--mr-text);
    border-radius: 0.5rem;
    font-weight: 500;
}

.mr-drawer a:hover {
    background: rgba(196, 160, 82, 0.08);
}

.mr-drawer[hidden] {
    display: none;
}

/* ========== Buttons ========== */
.mr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.65rem 1.2rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    transition: box-shadow var(--mr-transition), filter var(--mr-transition), border-color var(--mr-transition), background var(--mr-transition);
    cursor: pointer;
}

.mr-btn svg {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
}

.mr-btn--gold {
    background: linear-gradient(145deg, #dfc78a 0%, var(--mr-gold) 42%, #9a7c38 100%);
    color: #0a0908;
    box-shadow: 0 4px 28px rgba(196, 160, 82, 0.35);
}

.mr-btn--gold:hover {
    filter: brightness(1.06);
    box-shadow: 0 6px 36px rgba(196, 160, 82, 0.42);
}

.mr-btn--outline {
    border: 1px solid var(--mr-border);
    color: var(--mr-gold-bright);
    background: rgba(255, 255, 255, 0.03);
}

.mr-btn--outline:hover {
    border-color: rgba(196, 160, 82, 0.45);
    background: rgba(196, 160, 82, 0.09);
}

.mr-btn--ghost {
    border: 1px solid transparent;
    color: var(--mr-text-muted);
    background: transparent;
}

.mr-btn--ghost:hover {
    color: var(--mr-gold-bright);
    border-color: var(--mr-border);
    background: rgba(255, 255, 255, 0.04);
}

.mr-btn--store {
    padding: 0.8rem 1.4rem;
    min-height: 3rem;
}

.mr-btn--xl {
    padding: 0.9rem 1.85rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 280px;
}

.mr-btn--block {
    width: 100%;
    max-width: none;
}

.mr-nav__cta {
    display: none;
    padding: 0.5rem 1.1rem;
    font-size: 0.8125rem;
}

@media (min-width: 960px) {
    .mr-nav__cta {
        display: inline-flex;
    }
}

/* ========== Hero ========== */
.mr-hero {
    position: relative;
    z-index: 1;
    padding: calc(5rem + var(--mr-nav-top)) 0 3rem;
}

@media (min-width: 1024px) {
    .mr-hero {
        padding: calc(5.5rem + var(--mr-nav-top)) 0 4rem;
        min-height: auto;
    }
}

.mr-hero__shell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.25rem;
}

@media (min-width: 1024px) {
    .mr-hero__shell {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 3rem;
    }

    .mr-hero__copy {
        flex: 1;
        max-width: 34rem;
        order: 0;
    }

    .mr-hero__device {
        flex: 0 0 auto;
        order: 1;
    }
}

.mr-hero__device {
    order: -1;
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .mr-hero__device {
        order: 1;
        width: auto;
    }
}

.mr-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mr-gold-dim);
    margin-bottom: 1rem;
}

.mr-eyebrow__line {
    width: 1.75rem;
    height: 1px;
    background: linear-gradient(90deg, var(--mr-gold), transparent);
}

.mr-hero__title {
    font-family: var(--mr-font-display);
    font-size: clamp(2.75rem, 9vw, 4.25rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 0.35rem;
}

.mr-hero__title-accent {
    background: linear-gradient(115deg, var(--mr-gold-bright) 0%, var(--mr-gold) 45%, var(--mr-gold-dim) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mr-hero__kicker {
    font-family: var(--mr-font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 400;
    font-style: italic;
    color: var(--mr-text-muted);
    margin-bottom: 1.25rem;
}

.mr-hero__lead {
    font-size: 1.0625rem;
    color: var(--mr-text-muted);
    max-width: 28rem;
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

.mr-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
    margin-bottom: 1.75rem;
}

.mr-rating__stars {
    display: flex;
    gap: 0.15rem;
    color: var(--mr-gold);
}

.mr-rating__stars svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
    stroke: var(--mr-gold);
    stroke-width: 1.5;
}

.mr-rating__text {
    font-size: 0.875rem;
    color: var(--mr-text-muted);
}

.mr-hero__cta {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

@media (min-width: 480px) {
    .mr-hero__cta {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* Phone */
.mr-phone {
    position: relative;
    width: min(260px, 72vw);
}

@media (min-width: 1024px) {
    .mr-phone {
        width: min(290px, 28vw);
    }
}

.mr-phone__glow {
    position: absolute;
    inset: -20% -30%;
    background: radial-gradient(ellipse, rgba(196, 160, 82, 0.22) 0%, transparent 65%);
    z-index: 0;
    pointer-events: none;
}

.mr-phone__frame {
    position: relative;
    z-index: 1;
    aspect-ratio: 9 / 19.5;
    border-radius: 2.35rem;
    padding: 0.42rem;
    background: linear-gradient(165deg, rgba(55, 50, 42, 0.95) 0%, #141210 55%, #080807 100%);
    border: 1px solid rgba(196, 160, 82, 0.28);
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mr-phone__notch {
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 1.25rem;
    background: #050505;
    border-radius: 0 0 0.6rem 0.6rem;
    z-index: 2;
}

.mr-phone__screen {
    width: 100%;
    height: 100%;
    border-radius: 1.95rem;
    overflow: hidden;
    background: #0a0a0a;
}

.mr-phone__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* ========== Screens strip ========== */
.mr-screens {
    position: relative;
    z-index: 1;
    padding: 2.5rem 0 3.5rem;
    border-top: 1px solid rgba(196, 160, 82, 0.1);
    border-bottom: 1px solid rgba(196, 160, 82, 0.08);
    background:
        radial-gradient(ellipse 70% 80% at 50% 50%, rgba(196, 160, 82, 0.06) 0%, transparent 55%),
        linear-gradient(180deg, transparent 0%, rgba(196, 160, 82, 0.04) 50%, transparent 100%);
}

.mr-screens__head {
    margin-bottom: 1.75rem;
    text-align: center;
}

.mr-screens__title {
    font-family: var(--mr-font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.mr-screens__sub {
    color: var(--mr-text-muted);
    font-size: 0.95rem;
    max-width: 28rem;
    margin: 0 auto;
}

/*
 * 截图：小屏（<1024px）横向滚动；大屏一排完整展示、居中。
 */
.mr-screens__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0 calc(-1 * 1.25rem);
    padding: 0 1.25rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-inline: 1.25rem;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    scrollbar-color: var(--mr-gold-dim) transparent;
    cursor: grab;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .mr-screens__viewport {
        margin: 0 calc(-1 * 2rem);
        padding: 0 2rem;
        scroll-padding-inline: 2rem;
    }
}

.mr-screens__track {
    display: flex;
    gap: 1.25rem;
    padding-bottom: 0.75rem;
    width: max-content;
    margin-inline: auto;
}

@media (max-width: 1023px) {
    .mr-screens__track {
        padding-inline: max(0px, calc(50vw - min(200px, 52vw) / 2 - 1.25rem));
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .mr-screens__track {
        padding-inline: max(0px, calc(50vw - min(220px, 40vw) / 2 - 2rem));
    }
}

.mr-screens__viewport:active {
    cursor: grabbing;
}

.mr-shot {
    flex: 0 0 auto;
    scroll-snap-align: center;
    width: min(200px, 52vw);
    margin: 0;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .mr-shot {
        width: min(220px, 40vw);
    }
}

/* 大屏：静态、五张一排居中，略缩小间距以适配 1024 宽屏 */
@media (min-width: 1024px) {
    .mr-screens__viewport {
        overflow: visible;
        margin: 0 auto;
        padding: 0 1.5rem;
        max-width: 75rem;
        scroll-snap-type: none;
        cursor: default;
    }

    .mr-screens__track {
        width: 100%;
        max-width: 72rem;
        margin-inline: auto;
        justify-content: center;
        flex-wrap: nowrap;
        gap: clamp(0.65rem, 1.5vw, 1.15rem);
        padding: 0 0.5rem 0.5rem;
        box-sizing: border-box;
    }

    .mr-shot {
        flex: 0 1 auto;
        scroll-snap-align: unset;
        width: calc((100% - 4 * clamp(0.65rem, 1.5vw, 1.15rem)) / 5);
        max-width: 200px;
        min-width: 132px;
    }

    .mr-screens__viewport:active {
        cursor: default;
    }

    .mr-screens__hint {
        display: none;
    }
}

.mr-shot__bezel {
    border-radius: 1.35rem;
    overflow: hidden;
    border: 1px solid var(--mr-border);
    background: #0a0a0a;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
    transition: border-color var(--mr-transition), box-shadow var(--mr-transition);
}

.mr-shot:hover .mr-shot__bezel {
    border-color: rgba(196, 160, 82, 0.4);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(196, 160, 82, 0.1);
}

.mr-shot img {
    width: 100%;
    aspect-ratio: 9 / 19.5;
    object-fit: cover;
    object-position: top center;
}

.mr-shot figcaption {
    margin-top: 0.65rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mr-text-muted);
    text-align: center;
}

.mr-screens__hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--mr-text-muted);
    letter-spacing: 0.04em;
}

.mr-screens__hint svg {
    width: 1rem;
    height: 1rem;
    opacity: 0.7;
}

/* ========== Section headers ========== */
.mr-section {
    position: relative;
    z-index: 1;
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .mr-section {
        padding: 5rem 0;
    }
}

.mr-section__head {
    margin-bottom: 2.5rem;
    text-align: center;
}

.mr-section__head--left {
    text-align: left;
    max-width: 32rem;
}

.mr-section__label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mr-gold-dim);
    margin-bottom: 0.5rem;
}

.mr-section__title {
    font-family: var(--mr-font-display);
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 0.5rem;
}

.mr-section__sub {
    color: var(--mr-text-muted);
    font-size: 1rem;
}

/* ========== Bento ========== */
.mr-bento {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .mr-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto auto;
        gap: 1.125rem;
    }

    .mr-bento__cell--hero {
        grid-column: 1;
        grid-row: 1 / span 2;
        min-height: 100%;
    }

    .mr-bento__cell:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .mr-bento__cell:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .mr-bento__cell--wide {
        grid-column: 1 / -1;
        grid-row: 3;
    }
}

@media (min-width: 1024px) {
    .mr-bento {
        grid-template-columns: 1.15fr 1fr;
    }
}

.mr-bento__cell {
    padding: 1.65rem 1.4rem;
    border-radius: var(--mr-radius-lg);
    border: 1px solid var(--mr-border);
    background: var(--mr-panel);
    backdrop-filter: blur(14px);
    transition: border-color var(--mr-transition), box-shadow var(--mr-transition);
}

.mr-bento__cell:hover {
    border-color: rgba(196, 160, 82, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.mr-bento__cell--hero {
    background: linear-gradient(160deg, rgba(196, 160, 82, 0.1) 0%, var(--mr-panel) 55%);
}

.mr-bento__icon {
    width: 2.65rem;
    height: 2.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.85rem;
    background: rgba(196, 160, 82, 0.12);
    border: 1px solid var(--mr-border);
    color: var(--mr-gold);
    margin-bottom: 1.1rem;
}

.mr-bento__icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.mr-bento__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.mr-bento__text {
    font-size: 0.9rem;
    color: var(--mr-text-muted);
    line-height: 1.55;
    max-width: 26rem;
}

.mr-bento__cell--hero .mr-bento__title {
    font-size: 1.35rem;
}

/* ========== Moments ========== */
.mr-moments {
    background: linear-gradient(180deg, transparent, rgba(196, 160, 82, 0.04), transparent);
}

.mr-moments__rail {
    display: grid;
    gap: 1.5rem;
    position: relative;
}

@media (min-width: 768px) {
    .mr-moments__rail {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        padding-top: 0.5rem;
    }

    .mr-moments__rail::before {
        content: "";
        position: absolute;
        top: 2.25rem;
        left: 12%;
        right: 12%;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--mr-border), transparent);
        pointer-events: none;
    }
}

.mr-moment {
    position: relative;
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: var(--mr-radius);
    border: 1px solid var(--mr-border);
    background: rgba(8, 8, 10, 0.6);
    transition: border-color var(--mr-transition);
}

.mr-moment:hover {
    border-color: rgba(196, 160, 82, 0.3);
}

.mr-moment__dot {
    display: none;
}

@media (min-width: 768px) {
    .mr-moment__dot {
        display: block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--mr-gold);
        margin: 0 auto 1rem;
        box-shadow: 0 0 16px rgba(196, 160, 82, 0.5);
    }
}

.mr-moment__icon {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--mr-gold);
    margin: 0 auto 0.85rem;
}

@media (min-width: 768px) {
    .mr-moment__icon {
        margin-bottom: 1rem;
    }
}

.mr-moment__title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.mr-moment__text {
    font-size: 0.875rem;
    color: var(--mr-text-muted);
    max-width: 16rem;
    margin: 0 auto;
    line-height: 1.5;
}

/* ========== Download ========== */
.mr-download__grid {
    display: grid;
    gap: 2rem;
    padding: 2.5rem 1.5rem;
    border-radius: var(--mr-radius-lg);
    border: 1px solid var(--mr-border);
    background: linear-gradient(145deg, rgba(24, 22, 18, 0.9) 0%, rgba(8, 8, 10, 0.95) 100%);
    box-shadow: 0 0 100px rgba(196, 160, 82, 0.05);
}

@media (min-width: 768px) {
    .mr-download__grid {
        grid-template-columns: 1fr auto;
        align-items: center;
        padding: 3rem 2.5rem;
        gap: 3rem;
    }
}

.mr-download__title {
    font-family: var(--mr-font-display);
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mr-download__lead {
    color: var(--mr-text-muted);
    margin-bottom: 1.25rem;
    max-width: 26rem;
}

.mr-download__bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mr-download__bullets li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--mr-text-muted);
}

.mr-download__bullets svg {
    width: 1rem;
    height: 1rem;
    color: var(--mr-gold);
    flex-shrink: 0;
}

.mr-download__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
}

@media (min-width: 768px) {
    .mr-download__actions {
        align-items: flex-end;
    }

    .mr-btn--xl {
        width: 100%;
        max-width: 260px;
    }
}

/* ========== Footer ========== */
.mr-foot {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--mr-border);
    padding: 2.75rem 0 3rem;
    background: rgba(4, 4, 5, 0.92);
}

.mr-foot__grid {
    display: grid;
    gap: 1.75rem;
    text-align: center;
}

@media (min-width: 640px) {
    .mr-foot__grid {
        text-align: left;
        grid-template-columns: 1fr auto;
        align-items: start;
    }

    .mr-foot__copy {
        grid-column: 1 / -1;
    }
}

.mr-foot__brand {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .mr-foot__brand {
        justify-content: flex-start;
    }
}

.mr-foot__name {
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.mr-foot__tag {
    font-size: 0.875rem;
    color: var(--mr-text-muted);
    max-width: 20rem;
    line-height: 1.45;
}

.mr-foot__nav {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    align-items: center;
}

@media (min-width: 640px) {
    .mr-foot__nav {
        align-items: flex-end;
    }
}

.mr-foot__link {
    font-size: 0.875rem;
    cursor: pointer;
}

.mr-foot__copy {
    font-size: 0.8125rem;
    color: var(--mr-text-muted);
    padding-top: 0.5rem;
}

/* ========== Modal ========== */
.mr-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.mr-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.mr-modal[hidden] {
    display: none !important;
}

.mr-modal.is-open:not([hidden]) {
    display: flex !important;
}

.mr-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.mr-modal__box {
    position: relative;
    width: 100%;
    max-width: 26rem;
    padding: 2rem 1.65rem;
    border-radius: var(--mr-radius-lg);
    border: 1px solid var(--mr-border);
    background: var(--mr-bg-elevated);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.65);
    transform: scale(0.97) translateY(12px);
    transition: transform 0.22s ease;
}

.mr-modal.is-open .mr-modal__box {
    transform: scale(1) translateY(0);
}

.mr-modal__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mr-text-muted);
    border-radius: 50%;
    transition: color var(--mr-transition), background var(--mr-transition);
    cursor: pointer;
}

.mr-modal__close:hover {
    color: var(--mr-text);
    background: rgba(255, 255, 255, 0.06);
}

.mr-modal__close svg {
    width: 1.1rem;
    height: 1.1rem;
}

.mr-modal__icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mr-gold);
}

.mr-modal__icon svg {
    width: 1.65rem;
    height: 1.65rem;
}

.mr-modal__title {
    font-family: var(--mr-font-display);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 0.65rem;
}

.mr-modal__text {
    text-align: center;
    color: var(--mr-text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1.35rem;
    line-height: 1.6;
}

/* Focus */
.mr-nav a:focus-visible,
.mr-brand:focus-visible,
.mr-btn:focus-visible,
.mr-foot__link:focus-visible,
.mr-drawer a:focus-visible,
.mr-modal__close:focus-visible,
.mr-screens__track:focus-visible {
    outline: 2px solid var(--mr-gold);
    outline-offset: 2px;
}
