/* Oxfai — Premium SaaS landing (neon dark + glass) */

:root {
    --void: #030712;
    --void-pure: #000000;
    --neon-violet: #8b5cf6;
    --neon-cyan: #22d3ee;
    --neon-blue: #3b82f6;
    --glass-neon: rgba(139, 92, 246, 0.06);
    --glass-border-neon: rgba(34, 211, 238, 0.18);
    --gradient-hero: linear-gradient(125deg, #c4b5fd 0%, #8b5cf6 28%, #22d3ee 62%, #67e8f9 100%);
    --gradient-glow: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.35), transparent 70%);
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.08);
    --purple-glow: #7c3aed;
    --cyan-glow: #06b6d4;
}

body.future-home {
    background: var(--void-pure);
}

body.future-home .canvas-bg {
    background:
        radial-gradient(ellipse 90% 60% at 15% -5%, rgba(139, 92, 246, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 85% 10%, rgba(34, 211, 238, 0.14) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(59, 130, 246, 0.08) 0%, transparent 60%),
        var(--void-pure);
}

body.future-home .grid-overlay {
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(34, 211, 238, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
}

body.future-home .gold-beam {
    background: linear-gradient(180deg, transparent, var(--neon-violet), var(--neon-cyan), transparent);
    opacity: 0.2;
    width: 3px;
}

body.future-home nav {
    background: rgba(0, 0, 0, 0.55);
    border-bottom-color: var(--glass-border-neon);
}

body.future-home .nav-link:hover,
body.future-home .nav-link.active { color: var(--neon-cyan); }

body.future-home .nav-cta {
    border-color: rgba(139, 92, 246, 0.45);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(34, 211, 238, 0.08));
    color: #e0f2fe;
}

/* ── Hero premium ── */
.hero-premium h1 {
    font-family: var(--sans);
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 22px;
}

.hero-premium .eyebrow {
    border-color: rgba(139, 92, 246, 0.35);
    background: rgba(139, 92, 246, 0.08);
    color: var(--neon-cyan);
}

.hero-premium .eyebrow-dot {
    background: var(--neon-cyan);
    box-shadow: 0 0 14px var(--neon-cyan);
}

/* Futuristic animated CTA */
.btn-futuriste {
    position: relative;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: #000000;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.btn-futuriste::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, var(--purple-glow, #7c3aed), var(--cyan-glow, #06b6d4), var(--purple-glow, #7c3aed));
    background-size: 50% 50%;
    animation: rotationDegrade 4s linear infinite;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.btn-futuriste span {
    position: relative;
    z-index: 2;
    font-family: var(--sans), system-ui, -apple-system, sans-serif;
    letter-spacing: 0.5px;
}

.btn-futuriste:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.6);
}

.btn-futuriste:hover::before {
    opacity: 1;
}

.btn-futuriste:active {
    transform: translateY(1px);
}

@keyframes rotationDegrade {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Floating iPhone + scan */
.phone-hero-wrap {
    position: relative;
    animation: phoneLevitate 6s ease-in-out infinite;
    filter: drop-shadow(0 40px 80px rgba(139, 92, 246, 0.25));
}

@keyframes phoneLevitate {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-18px) rotate(1deg); }
}

.phone-hero-wrap .phone {
    width: 280px;
    border-radius: 40px;
    padding: 14px;
    background: linear-gradient(165deg, #1e1b4b 0%, #0f172a 40%, #020617 100%);
    box-shadow:
        0 0 0 1px rgba(34, 211, 238, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.scan-screen {
    position: relative;
    min-height: 440px !important;
    background: linear-gradient(180deg, #0a0a12 0%, #030712 100%) !important;
    overflow: hidden;
}

.scan-rays {
    position: absolute;
    inset: 0;
    background:
        conic-gradient(from 200deg at 50% 80%, transparent 0deg, rgba(34, 211, 238, 0.12) 40deg, transparent 80deg),
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(139, 92, 246, 0.2), transparent 70%);
    pointer-events: none;
    animation: rayPulse 3s ease-in-out infinite;
}

@keyframes rayPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.scan-line {
    position: absolute;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-violet), transparent);
    box-shadow: 0 0 20px var(--neon-cyan);
    animation: scanSweep 2.8s ease-in-out infinite;
    z-index: 3;
}

@keyframes scanSweep {
    0% { top: 18%; opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { top: 78%; opacity: 0; }
}

.scan-doc {
    margin: 20px 14px 0;
    padding: 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(34, 211, 238, 0.12);
    position: relative;
    z-index: 2;
}

.scan-doc-bar {
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 8px;
}

.scan-doc-bar:nth-child(1) { width: 92%; }
.scan-doc-bar:nth-child(2) { width: 78%; }
.scan-doc-bar:nth-child(3) { width: 85%; }
.scan-doc-bar:nth-child(4) { width: 60%; }

.scan-chat {
    padding: 12px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.scan-chat .bubble {
    font-size: 0.62rem;
    animation: fadeChat 4s ease-in-out infinite;
}

.scan-chat .bubble.ai {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.25);
}

.scan-chat .bubble.ai .cite {
    display: block;
    margin-top: 6px;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(34, 211, 238, 0.12);
    border-left: 2px solid var(--neon-cyan);
    font-family: var(--mono);
    font-size: 0.5rem;
    color: var(--neon-cyan);
}

@keyframes fadeChat {
    0%, 100% { opacity: 0.85; }
    50% { opacity: 1; }
}

.hero-premium .phone-float { display: none; }
.hero-premium .device-ring {
    border-color: rgba(139, 92, 246, 0.12);
    width: 380px;
    height: 380px;
}

.hero-premium .device-ring::before {
    border-top-color: rgba(34, 211, 238, 0.4);
}

/* ── Constellation ── */
.constellation-section {
    position: relative;
    padding: 100px clamp(20px, 5vw, 40px);
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.constellation-section h2 {
    font-family: var(--sans);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #e9d5ff, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.constellation-section .sub {
    text-align: center;
    color: rgba(235, 230, 217, 0.45);
    max-width: 560px;
    margin: 0 auto 48px;
    font-size: 0.95rem;
}

.constellation-stage {
    position: relative;
    height: min(420px, 70vw);
    max-height: 420px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border-neon);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}

.constellation-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.constellation-line {
    stroke: rgba(34, 211, 238, 0.15);
    stroke-width: 1;
    fill: none;
}

.constellation-line-glow {
    stroke: url(#lineGrad);
    stroke-width: 1.5;
    fill: none;
    opacity: 0.5;
    animation: lineShimmer 4s ease-in-out infinite;
}

@keyframes lineShimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.constellation-core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(34, 211, 238, 0.15));
    border: 1px solid rgba(34, 211, 238, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.35);
    z-index: 5;
}

.constellation-core img {
    width: 52px;
    height: 52px;
    border-radius: 12px;
}

.orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    animation: orbitSpin var(--dur, 40s) linear infinite;
}

.orbit-item {
    position: absolute;
    left: var(--r, 140px);
    top: 0;
    transform: translate(-50%, -50%);
    padding: 8px 14px;
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 0.55rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(139, 92, 246, 0.35);
    color: rgba(224, 242, 254, 0.9);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
    backdrop-filter: blur(8px);
    transition: border-color 0.25s, transform 0.25s;
}

.orbit-item:hover {
    border-color: var(--neon-cyan);
    transform: translate(-50%, -50%) scale(1.05);
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orbit:nth-child(odd) { animation-direction: reverse; }

/* ── Bento Grid ── */
.bento-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 clamp(20px, 5vw, 40px) 80px;
    color: #ffffff;
}

.bento-title {
    text-align: center;
    font-family: var(--sans);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #ffffff, #9ca3af);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bento-container .bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 20px;
}

.bento-container .bento-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-container .bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(124, 58, 237, 0.1);
}

.bento-container .card-large {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), var(--card-bg));
}

.bento-container .card-large:hover {
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(6, 182, 212, 0.1);
}

.bento-container .card-medium {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-container .card-medium2 {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-container .card-small {
    grid-column: span 1;
    grid-row: span 1;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), var(--card-bg));
}

.bento-container .card-content h3 {
    font-family: var(--sans);
    font-size: 1.5rem;
    margin: 10px 0;
    font-weight: 600;
    color: #fff;
}

.bento-container .card-content p {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 52ch;
}

.bento-container .card-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #c084fc;
}

.bento-container .card-large .card-badge {
    color: var(--neon-cyan);
}

.bento-container .card-content {
    position: relative;
    z-index: 2;
    max-width: 54%;
}

.bento-container .card-medium .card-content,
.bento-container .card-medium2 .card-content {
    max-width: 100%;
}

.bento-container .card-preview {
    position: absolute;
    bottom: 0;
    right: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border-top-left-radius: 16px;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    z-index: 1;
}

.bento-container .card-preview--chat {
    width: 46%;
    height: 72%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bento-container .card-preview--library {
    width: 52%;
    height: 58%;
    padding: 10px 12px;
}

.bento-container .card-preview--cursus {
    width: 44%;
    height: 62%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 10px;
}

.bento-container .chat-preview-ui {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
}

.bento-container .chat-preview-q {
    align-self: flex-end;
    max-width: 95%;
    padding: 7px 9px;
    border-radius: 10px 10px 4px 10px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.25);
    font-size: 0.58rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.85);
}

.bento-container .chat-preview-a {
    align-self: flex-start;
    max-width: 98%;
    padding: 7px 9px;
    border-radius: 4px 10px 10px 10px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(34, 211, 238, 0.2);
    font-size: 0.54rem;
    line-height: 1.4;
    color: rgba(235, 230, 217, 0.75);
}

.bento-container .chat-preview-a mark {
    background: rgba(34, 211, 238, 0.15);
    color: var(--neon-cyan);
    padding: 1px 3px;
    border-radius: 3px;
    font-style: normal;
}

.bento-container .chat-preview-sources {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.bento-container .chat-preview-sources span {
    font-family: var(--mono);
    font-size: 0.42rem;
    letter-spacing: 0.04em;
    padding: 3px 6px;
    border-radius: 5px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.25);
    color: var(--neon-cyan);
}

.bento-container .card-preview-shot {
    flex: 1;
    min-height: 0;
    margin-top: auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.bento-container .card-preview-shot--sm {
    position: absolute;
    bottom: 8px;
    right: 10px;
    width: 42%;
    height: 52%;
    margin-top: 0;
}

.bento-container .card-preview-img,
.bento-container .card-preview-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.bento-container .card-preview-video {
    display: none;
}

.bento-container .card-preview-shot.has-video .card-preview-video {
    display: block;
}

.bento-container .card-preview-shot.has-video .card-preview-img {
    display: none;
}

.bento-container .library-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    max-width: 52%;
    align-content: start;
}

.bento-container .library-preview-grid span {
    font-family: var(--mono);
    font-size: 0.46rem;
    letter-spacing: 0.04em;
    padding: 4px 6px;
    border-radius: 6px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.22);
    color: rgba(196, 181, 253, 0.9);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bento-container .cursus-shelf {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    padding-bottom: 6px;
    width: 100%;
    max-width: 48%;
}

.bento-container .shelf-book {
    width: 22px;
    border-radius: 4px 4px 2px 2px;
    background: linear-gradient(180deg, var(--neon-violet), #4c1d95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.bento-container .shelf-book:nth-child(1) { height: 44px; background: linear-gradient(180deg, #8b5cf6, #5b21b6); }
.bento-container .shelf-book:nth-child(2) { height: 54px; background: linear-gradient(180deg, #22d3ee, #0891b2); }
.bento-container .shelf-book:nth-child(3) { height: 38px; }
.bento-container .shelf-book:nth-child(4) { height: 58px; background: linear-gradient(180deg, #6366f1, #4338ca); }
.bento-container .shelf-book:nth-child(5) { height: 48px; background: linear-gradient(180deg, #22d3ee, #0284c7); }

.bento-container .shelf-base {
    width: 46%;
    height: 3px;
    margin-bottom: 6px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.4), transparent);
}

.bento-container .bento-card:hover .card-preview-img {
    transform: scale(1.03);
    transition: transform 0.4s ease;
}

.bento-container .freemium-preview {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.bento-container .freemium-tier {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.25);
}

.bento-container .freemium-tier--free {
    border-color: rgba(255, 255, 255, 0.12);
}

.bento-container .freemium-tier--prestige {
    border-color: rgba(124, 58, 237, 0.35);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(0, 0, 0, 0.25));
}

.bento-container .freemium-tier-label {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.bento-container .freemium-tier--prestige .freemium-tier-label {
    color: #c4b5fd;
}

.bento-container .freemium-tier-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.bento-container .freemium-tier--prestige .freemium-tier-dot {
    background: var(--neon-cyan);
    box-shadow: 0 0 8px rgba(34, 211, 238, 0.6);
}

@media (max-width: 900px) {
    .bento-container .bento-grid {
        display: flex;
        flex-direction: column;
    }

    .bento-container .bento-card {
        grid-column: auto !important;
        grid-row: auto !important;
        height: auto;
        min-height: 200px;
    }

    .bento-container .card-content {
        max-width: 100%;
    }

    .bento-container .card-preview--chat,
    .bento-container .card-preview--library,
    .bento-container .card-preview--cursus {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 180px;
        margin-top: 16px;
        border-radius: 14px;
    }

    .bento-container .card-preview-shot--sm {
        position: relative;
        width: 55%;
        height: 140px;
        margin: 12px auto 0;
        right: auto;
        bottom: auto;
    }

    .bento-container .library-preview-grid {
        max-width: 100%;
    }

    .bento-container .cursus-shelf {
        max-width: 100%;
    }

    .constellation-stage { height: 360px; }
    .orbit-item { font-size: 0.48rem; padding: 6px 10px; }
}

.video-fallback-frame {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

/* ── Oxfai Coins premium banner ── */
.oxfai-coins-banner-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 32px;
    background: linear-gradient(135deg, rgba(5, 5, 8, 0.85) 0%, rgba(0, 1, 36, 0.6) 100%);
    border: 1px solid rgba(204, 173, 107, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    overflow: hidden;
    color: #ebe6d9;
    font-family: 'DM Sans', sans-serif;
    scroll-margin-top: 96px;
}

.oxfai-coins-banner-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(204, 173, 107, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.oxfai-coins-banner-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 2;
}

.oxfai-coins-text-zone {
    max-width: 450px;
}

.oxfai-badge-gold {
    display: inline-block;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #ccad6b;
    padding: 4px 8px;
    background: rgba(204, 173, 107, 0.1);
    border: 1px solid rgba(204, 173, 107, 0.25);
    border-radius: 6px;
    margin-bottom: 12px;
}

.oxfai-coins-text-zone h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: #fff;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.oxfai-coins-text-zone p {
    font-size: 13px;
    color: rgba(235, 230, 217, 0.6);
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.oxfai-coins-convert-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.oxfai-coins-convert-row .coins-pill {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(204, 173, 107, 0.25);
    color: rgba(235, 230, 217, 0.65);
}

.oxfai-coins-packs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    min-width: 550px;
}

.oxfai-coin-pack-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 14px;
    background: rgba(25, 25, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.oxfai-coin-pack-card.popular {
    border-color: rgba(204, 173, 107, 0.4);
    background: rgba(204, 173, 107, 0.04);
}

.oxfai-coin-pack-card:hover {
    transform: translateY(-4px);
    border-color: rgba(204, 173, 107, 0.5);
    background: rgba(5, 5, 8, 0.6);
}

.pack-icon { font-size: 22px; margin-bottom: 8px; }
.pack-title { font-size: 11px; font-weight: 700; color: rgba(235, 230, 217, 0.5); text-transform: uppercase; }
.pack-amount { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: #fff; margin-top: 2px; }
.pack-divider { width: 40px; height: 1px; background: rgba(204, 173, 107, 0.2); margin: 12px 0; }
.pack-utility { font-size: 10px; color: rgba(235, 230, 217, 0.4); text-align: center; }

.pack-badge-popular {
    position: absolute;
    top: -10px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.5px;
    background: #ccad6b;
    color: #050508;
    padding: 2px 8px;
    border-radius: 4px;
}

@media (max-width: 992px) {
    .oxfai-coins-banner-content { flex-direction: column; text-align: center; }
    .oxfai-coins-packs-grid { width: 100%; min-width: 0; }
    .oxfai-coins-convert-row { justify-content: center; }
}

@media (max-width: 576px) {
    .oxfai-coins-packs-grid { grid-template-columns: 1fr; min-width: 100%; }
}

/* ── 3D screenshot frames (Prestige mosaic + feature demos) ── */
body.future-home .prestige-mosaic--3d {
    position: relative;
}

body.future-home .prestige-mosaic--3d::before {
    content: "";
    position: absolute;
    inset: -8% -4% 0;
    background: radial-gradient(ellipse 70% 55% at 50% 100%, rgba(204, 173, 107, 0.08), transparent 68%);
    pointer-events: none;
}

body.future-home .prestige-mosaic--3d .mosaic-item {
    perspective: 1200px;
    perspective-origin: 50% 40%;
    overflow: visible;
}

body.future-home .prestige-mosaic--3d .mosaic-item .demo-device,
body.future-home .demo-visual--3d .demo-device {
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform;
    overflow: hidden;
    box-shadow:
        0 28px 56px rgba(0, 0, 0, 0.55),
        0 12px 24px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(204, 173, 107, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.45);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
}

body.future-home .prestige-mosaic--3d .mosaic-item .demo-device::before,
body.future-home .demo-visual--3d .demo-device::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        125deg,
        rgba(255, 255, 255, 0.14) 0%,
        rgba(255, 255, 255, 0.03) 22%,
        transparent 48%,
        rgba(204, 173, 107, 0.06) 100%
    );
    pointer-events: none;
    z-index: 2;
}

body.future-home .prestige-mosaic--3d .mosaic-item .demo-device::after,
body.future-home .demo-visual--3d .demo-device::after {
    content: "";
    position: absolute;
    inset: 10px 10px 10px;
    border-radius: 26px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.12) 0%,
        transparent 38%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 3;
}

body.future-home .prestige-mosaic--3d .mosaic-item .demo-device img,
body.future-home .demo-visual--3d .demo-device img {
    position: relative;
    z-index: 1;
    transform: scale(1.015);
    transform-origin: top center;
    filter: contrast(1.05) saturate(1.08) brightness(1.02);
    image-rendering: -webkit-optimize-contrast;
}

body.future-home .prestige-mosaic--3d .mosaic-item:nth-child(1) .demo-device { transform: rotateY(-14deg) rotateX(5deg) scale(1.04); }
body.future-home .prestige-mosaic--3d .mosaic-item:nth-child(2) .demo-device { transform: rotateY(11deg) rotateX(3deg); }
body.future-home .prestige-mosaic--3d .mosaic-item:nth-child(3) .demo-device { transform: rotateY(-9deg) rotateX(4deg); }
body.future-home .prestige-mosaic--3d .mosaic-item:nth-child(4) .demo-device { transform: rotateY(8deg) rotateX(2deg); }
body.future-home .prestige-mosaic--3d .mosaic-item:nth-child(5) .demo-device { transform: rotateY(-11deg) rotateX(3deg); }
body.future-home .prestige-mosaic--3d .mosaic-item:nth-child(6) .demo-device { transform: rotateY(10deg) rotateX(4deg); }

body.future-home .prestige-mosaic--3d .mosaic-item:hover .demo-device,
body.future-home .demo-visual--3d .demo-device:hover {
    box-shadow:
        0 36px 64px rgba(0, 0, 0, 0.62),
        0 16px 28px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(204, 173, 107, 0.52),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

body.future-home .prestige-mosaic--3d .mosaic-item:hover .demo-device {
    transform: rotateY(-4deg) rotateX(1deg) translateY(-8px) scale(1.03);
}

body.future-home .demo-visual--3d {
    perspective: 1400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 18px;
}

body.future-home .demo-visual--3d .demo-device-duo .demo-device:first-child {
    transform: rotateY(-12deg) rotateX(4deg);
}

body.future-home .demo-visual--3d .demo-device-duo .demo-device:last-child {
    transform: rotateY(10deg) rotateX(3deg);
}

body.future-home .demo-visual--3d .demo-device-trio .demo-device:nth-child(1) {
    transform: rotateY(-10deg) rotateX(3deg);
}

body.future-home .demo-visual--3d .demo-device-trio .demo-device:nth-child(2) {
    transform: rotateY(0deg) rotateX(2deg) translateY(-6px);
}

body.future-home .demo-visual--3d .demo-device-trio .demo-device:nth-child(3) {
    transform: rotateY(10deg) rotateX(3deg);
}

body.future-home .demo-visual--3d .demo-device-duo .demo-device:hover,
body.future-home .demo-visual--3d .demo-device-trio .demo-device:hover,
body.future-home .demo-visual--3d > .demo-device:hover {
    transform: rotateY(-2deg) rotateX(1deg) translateY(-6px) scale(1.02);
}

body.future-home .demo-device img.demo-shot-fallback {
    object-fit: contain;
    padding: 18%;
    background: linear-gradient(165deg, #080810, #0f1624);
    filter: none;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    body.future-home .prestige-mosaic--3d .mosaic-item .demo-device,
    body.future-home .demo-visual--3d .demo-device {
        transform: none !important;
        transition: none;
    }
}

@media (max-width: 760px) {
    body.future-home .prestige-mosaic--3d .mosaic-item .demo-device {
        transform: rotateY(-6deg) rotateX(2deg) !important;
    }
}

/* ── App Store 3D showcase carousel ── */
body.future-home #section-app-store {
    scroll-margin-top: 96px;
    margin: 72px 0 64px;
}

body.future-home .app-store-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 36px;
}

body.future-home .app-store-badge {
    display: inline-block;
    font-family: var(--mono, 'DM Sans', monospace);
    font-size: 0.52rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ccad6b;
    border: 1px solid rgba(204, 173, 107, 0.35);
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 16px;
}

body.future-home .app-store-track-wrap {
    position: relative;
    margin: 0 -12px;
    padding: 8px 0 24px;
}

body.future-home .app-store-track-wrap::before,
body.future-home .app-store-track-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 24px;
    width: 48px;
    z-index: 2;
    pointer-events: none;
}

body.future-home .app-store-track-wrap::before {
    left: 0;
    background: linear-gradient(90deg, rgba(8, 8, 16, 0.95), transparent);
}

body.future-home .app-store-track-wrap::after {
    right: 0;
    background: linear-gradient(270deg, rgba(8, 8, 16, 0.95), transparent);
}

body.future-home .app-store-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 24px;
    padding: 12px 24px 28px;
    -webkit-overflow-scrolling: touch;
}

body.future-home .app-store-track::-webkit-scrollbar {
    height: 6px;
}

body.future-home .app-store-track::-webkit-scrollbar-thumb {
    background: rgba(204, 173, 107, 0.35);
    border-radius: 99px;
}

body.future-home .app-store-shot {
    flex: 0 0 min(340px, 78vw);
    aspect-ratio: 9 / 19.5;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    scroll-snap-align: center;
    border: 1px solid rgba(204, 173, 107, 0.22);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.45);
    perspective: 1200px;
}

body.future-home .app-store-shot-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    transform: scale(1.04);
}

body.future-home .app-store-shot-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 8, 16, 0.2) 0%, rgba(0, 33, 71, 0.45) 38%, rgba(8, 8, 16, 0.94) 72%, #080810 100%),
        radial-gradient(ellipse 90% 50% at 50% 0%, rgba(204, 173, 107, 0.1), transparent 55%);
}

body.future-home .app-store-shot-copy {
    position: absolute;
    top: 28px;
    left: 22px;
    right: 22px;
    z-index: 2;
}

body.future-home .app-store-shot-copy h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.15rem, 4.2vw, 1.55rem);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #ebe6d9;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

body.future-home .app-store-shot-copy p {
    margin-top: 10px;
    font-size: 0.68rem;
    line-height: 1.45;
    color: rgba(235, 230, 217, 0.72);
}

body.future-home .app-store-phone-stage {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 3;
    width: 58%;
}

body.future-home .app-store-phone {
    width: 100%;
    padding: 8px;
    border-radius: 28px;
    background: linear-gradient(145deg, #1a1a22, #0a0a10 55%, #2a2418);
    border: 1px solid rgba(204, 173, 107, 0.5);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
}

body.future-home .app-store-shot--1 .app-store-phone { transform: rotateY(-12deg) rotateX(5deg); }
body.future-home .app-store-shot--2 .app-store-phone { transform: rotateY(0deg) rotateX(6deg); }
body.future-home .app-store-shot--3 .app-store-phone { transform: rotateY(-10deg) rotateX(4deg); }
body.future-home .app-store-shot--4 .app-store-phone { transform: rotateY(10deg) rotateX(4deg); }
body.future-home .app-store-shot--5 .app-store-phone { transform: rotateY(0deg) rotateX(5deg) scale(1.04); }

body.future-home .app-store-phone-screen {
    border-radius: 20px;
    overflow: hidden;
    background: #04060c;
    position: relative;
}

body.future-home .app-store-phone-screen img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    filter: contrast(1.04) saturate(1.06);
}

body.future-home .app-store-phone-screen::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 42%);
    pointer-events: none;
}

body.future-home .app-store-coins-mock {
    padding: 16px 14px 20px;
    min-height: 220px;
    background: linear-gradient(165deg, #080810, #0f1624 50%, #001428);
    color: #ebe6d9;
}

body.future-home .app-store-coins-badge {
    display: inline-block;
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ccad6b;
    border: 1px solid rgba(204,173,107,0.35);
    padding: 4px 8px;
    border-radius: 6px;
}

body.future-home .app-store-coins-mock strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    margin: 10px 0 14px;
}

body.future-home .app-store-coin-pack {
    border: 1px solid rgba(204,173,107,0.3);
    border-radius: 12px;
    padding: 12px;
    background: rgba(0,0,0,0.35);
}

body.future-home .app-store-coin-pack.popular {
    border-color: rgba(204,173,107,0.55);
    background: rgba(204,173,107,0.08);
}

body.future-home .app-store-coin-pack span {
    display: inline-block;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #ccad6b;
    color: #050508;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 6px;
}

body.future-home .app-store-coin-pack em {
    display: block;
    font-style: normal;
    font-size: 10px;
    opacity: 0.65;
    text-transform: uppercase;
}

body.future-home .app-store-coin-pack b {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    margin-top: 4px;
}

body.future-home .app-store-actions {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

body.future-home .app-store-shot:hover .app-store-phone {
    transform: rotateY(-2deg) rotateX(2deg) translateY(-4px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 760px) {
    body.future-home .app-store-shot {
        flex-basis: min(300px, 84vw);
    }
}

/* ── Oxfai Coins cinematic wide banner (below plans) ── */
body.future-home .oxfai-coins-cinematic {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 48px auto 40px;
    min-height: 320px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(204, 173, 107, 0.22);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.45);
    scroll-margin-top: 96px;
}

body.future-home .oxfai-coins-cinematic-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    transform: scale(1.02);
}

body.future-home .oxfai-coins-cinematic-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(8, 8, 16, 0.96) 0%, rgba(8, 8, 16, 0.82) 42%, rgba(0, 33, 71, 0.35) 68%, transparent 100%),
        radial-gradient(ellipse 60% 80% at 85% 50%, rgba(204, 173, 107, 0.12), transparent 60%);
}

body.future-home .oxfai-coins-cinematic-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    align-items: center;
    padding: 40px 44px;
    min-height: 320px;
}

body.future-home .oxfai-coins-cinematic-badge {
    display: inline-block;
    font-size: 0.52rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ccad6b;
    border: 1px solid rgba(204, 173, 107, 0.38);
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 16px;
}

body.future-home .oxfai-coins-cinematic-copy h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #ebe6d9;
    max-width: 520px;
    margin-bottom: 14px;
}

body.future-home .oxfai-coins-cinematic-copy p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(235, 230, 217, 0.72);
    max-width: 500px;
}

body.future-home .oxfai-coins-cinematic-note {
    margin-top: 12px !important;
    font-size: 0.78rem !important;
    color: rgba(204, 173, 107, 0.75) !important;
    letter-spacing: 0.04em;
}

body.future-home .oxfai-coins-cinematic-cta {
    display: inline-flex;
    margin-top: 22px;
    text-decoration: none;
}

body.future-home .oxfai-coins-cinematic-stage {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    min-height: 260px;
}

body.future-home .oxfai-coins-phone {
    width: min(220px, 42vw);
    padding: 10px;
    border-radius: 34px;
    background: linear-gradient(145deg, #1a1a22, #0a0a10 55%, #2a2418);
    border: 1px solid rgba(204, 173, 107, 0.52);
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transform: rotateY(-10deg) rotateX(4deg);
    transform-style: preserve-3d;
}

body.future-home .oxfai-coins-phone-notch {
    width: 36%;
    height: 5px;
    margin: 0 auto 8px;
    border-radius: 99px;
    background: #0c0e14;
}

body.future-home .oxfai-coins-phone-screen {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(165deg, #080810, #0f1624 50%, #001428);
    min-height: 360px;
}

body.future-home .oxfai-coins-phone-ui {
    position: relative;
    z-index: 2;
    padding: 28px 20px;
    text-align: center;
    color: #ebe6d9;
}

body.future-home .oxfai-coins-phone-label {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(204, 173, 107, 0.8);
    margin-bottom: 8px;
}

body.future-home .oxfai-coins-phone-ui strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #f5e6c8;
    line-height: 1;
    text-shadow: 0 0 24px rgba(204, 173, 107, 0.35);
}

body.future-home .oxfai-coins-phone-ui em {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(235, 230, 217, 0.55);
}

body.future-home .oxfai-coins-stream {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

body.future-home .oxfai-coin-fly {
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 28%, #f5e6c8, #ccad6b 52%, #8a7344 100%);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 14px rgba(204, 173, 107, 0.45);
    opacity: 0;
    animation: oxfaiCoinEnter 2.8s ease-in-out infinite;
}

body.future-home .oxfai-coin-fly::after {
    content: "O";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: rgba(5, 5, 8, 0.55);
}

body.future-home .coin-fly-1 { left: -18%; top: 18%; animation-delay: 0s; }
body.future-home .coin-fly-2 { left: -22%; top: 38%; animation-delay: 0.45s; width: 22px; height: 22px; }
body.future-home .coin-fly-3 { left: -16%; top: 58%; animation-delay: 0.9s; }
body.future-home .coin-fly-4 { left: -24%; top: 72%; animation-delay: 1.35s; width: 20px; height: 20px; }
body.future-home .coin-fly-5 { left: -20%; top: 28%; animation-delay: 1.8s; width: 24px; height: 24px; }
body.future-home .coin-fly-6 { left: -14%; top: 48%; animation-delay: 2.25s; width: 26px; height: 26px; }

@keyframes oxfaiCoinEnter {
    0% {
        opacity: 0;
        transform: translateX(0) translateY(0) scale(0.6) rotateY(0deg);
    }
    15% {
        opacity: 1;
    }
    55% {
        opacity: 1;
        transform: translateX(58%) translateY(8px) scale(0.85) rotateY(180deg);
    }
    75% {
        opacity: 0.85;
        transform: translateX(72%) translateY(24px) scale(0.35) rotateY(360deg);
    }
    100% {
        opacity: 0;
        transform: translateX(78%) translateY(40px) scale(0.1) rotateY(540deg);
    }
}

@media (max-width: 992px) {
    body.future-home .oxfai-coins-cinematic-layout {
        grid-template-columns: 1fr;
        padding: 32px 28px 36px;
    }

    body.future-home .oxfai-coins-cinematic-stage {
        min-height: 220px;
    }

    body.future-home .oxfai-coins-cinematic-bg {
        background-position: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.future-home .oxfai-coin-fly {
        animation: none;
        opacity: 0.35;
        left: 20%;
        top: 40%;
    }
}

/* ── Mobile refinements (home / showcase) ── */
@media (max-width: 900px) {
    .constellation-section {
        padding: 64px 16px;
    }

    body.future-home .app-store-track-wrap {
        margin-left: 0;
        margin-right: 0;
    }

    body.future-home .prestige-mosaic--3d::before {
        display: none;
    }

    body.future-home .oxfai-coins-cinematic-bg {
        transform: none;
    }

    .constellation-stage {
        height: min(300px, 78vw);
        max-height: 300px;
    }

    .constellation-stage .orbit {
        animation-duration: var(--dur, 48s) !important;
        animation-play-state: running !important;
    }

    .orbit-item {
        font-size: 0.44rem !important;
        padding: 5px 8px !important;
        white-space: normal;
        max-width: 76px;
        text-align: center;
        line-height: 1.25;
    }

    .phone-hero-wrap {
        animation: none;
        filter: drop-shadow(0 24px 48px rgba(139, 92, 246, 0.2));
    }

    .phone-hero-wrap .phone {
        width: min(260px, 72vw);
    }

    .scan-screen {
        min-height: 360px !important;
    }

    .hero-premium .device-ring {
        width: min(320px, 90vw);
        height: min(320px, 90vw);
    }

    .oxfai-coins-banner-container {
        margin: 24px 0;
        padding: 24px 18px;
    }

    body.future-home .prestige-mosaic--3d .mosaic-item .demo-device {
        transform: none !important;
    }

    body.future-home .app-store-shot:hover .app-store-phone {
        transform: none;
    }

    body.future-home #section-app-store {
        margin: 48px 0 40px;
    }

    body.future-home .oxfai-coins-cinematic {
        margin: 32px 0 28px;
        min-height: auto;
    }

    body.future-home .oxfai-coins-cinematic-layout {
        padding: 28px 20px 32px;
    }

    .demo-visual--shots {
        min-height: 360px;
        padding: 20px 16px;
    }

    .prestige-mosaic {
        padding: 24px 16px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .constellation-stage {
        height: min(260px, 72vw);
    }

    .constellation-core {
        width: 64px;
        height: 64px;
    }

    .constellation-core img {
        width: 38px;
        height: 38px;
    }

    .bento-container .card-preview--chat,
    .bento-container .card-preview--library,
    .bento-container .card-preview--cursus {
        min-height: 140px;
    }

    .demo-device-duo .demo-device {
        width: min(180px, 44%);
    }
}

/* ── TestFlight CTA (imperial blue + brushed gold) ── */
:root {
    --imperial-blue: #002040;
    --brushed-gold: #d4af37;
}

.btn-testflight {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #aa820a 100%);
    color: #002040 !important;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 1px;
    margin-right: 15px;
    border: none;
    font-family: var(--sans), system-ui, -apple-system, sans-serif;
    cursor: pointer;
}

.btn-testflight:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #f3cd57 0%, #d4af37 100%);
    color: #002040 !important;
    text-decoration: none !important;
}

body.future-home .nav-cta-testflight {
    background: linear-gradient(135deg, #d4af37 0%, #aa820a 100%);
    color: #002040 !important;
    border: none;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

body.future-home .nav-cta-testflight:hover {
    background: linear-gradient(135deg, #f3cd57 0%, #d4af37 100%);
    color: #002040 !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* ── Team & transparency (Google compliance) ── */
.team-transparency {
    background-color: rgba(0, 32, 64, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 30px clamp(20px, 5vw, 30px);
    margin: 40px auto;
    max-width: 800px;
    width: calc(100% - clamp(32px, 8vw, 48px));
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.team-transparency h3 {
    color: var(--brushed-gold);
    margin-top: 0;
    font-size: 1.5em;
    font-family: var(--serif);
    font-weight: 600;
}

.team-transparency .team-name {
    color: #ffffff;
    font-size: 1.1em;
    margin-bottom: 8px;
}

.team-transparency .team-role {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0;
    font-size: 0.95em;
}

.team-transparency .team-social {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.btn-linkedin {
    display: inline-flex;
    align-items: center;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 0.85em;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 18px;
    border-radius: 6px;
    background-color: rgba(212, 175, 55, 0.05);
    transition: all 0.3s ease;
}

.btn-linkedin:hover {
    background-color: rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
    color: #d4af37 !important;
    text-decoration: none !important;
}

.btn-github {
    display: inline-flex;
    align-items: center;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 0.85em;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 18px;
    border-radius: 6px;
    background-color: rgba(212, 175, 55, 0.05);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-github:hover {
    background-color: rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
    color: #d4af37 !important;
    text-decoration: none !important;
}
