:root {
    --bg: #0b0b0d;
    --bg-soft: #141416;
    --ink: #ffffff;
    --ink-muted: #ffffff;
    --border: rgba(255, 255, 255, 0.08);
    --accent: #ffffff;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    --font: 'Google Sans', sans-serif;
}

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

body {
    font-family: var(--font);
    background: radial-gradient(circle at 15% 10%, rgba(88, 101, 242, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 85% 20%, rgba(125, 211, 252, 0.1) 0%, transparent 55%),
        var(--bg);
    color: var(--ink);
    line-height: 1.6;
    letter-spacing: -0.01em;
}

body::before {
    content: "";
    position: fixed;
    inset: -30% -20%;
    background: conic-gradient(from 0deg, rgba(124, 58, 237, 0.35), rgba(59, 130, 246, 0.35), rgba(34, 197, 94, 0.35), rgba(124, 58, 237, 0.35));
    filter: blur(70px) saturate(1.15);
    opacity: 0.6;
    z-index: -1;
    transform: translateZ(0);
}

.page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem clamp(1.5rem, 4vw, 4rem) 4rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    position: sticky;
    top: 1.5rem;
    z-index: 10;
    padding: 0.75rem 1.4rem;
    border-radius: 18px;
    background: rgba(16, 16, 18, 0.72);
    border: 1px solid var(--border);
}

.nav-logo {
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 36px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--ink-muted);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--ink);
}

.nav-cta {
    text-decoration: none;
    color: #000;
    background: var(--accent);
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
}

main {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.section {
    position: relative;
    padding: 3.5rem 0;
}

.section::before {
    content: "";
    position: absolute;
    inset: -10% -5% auto;
    height: 260px;
    background: radial-gradient(circle at top left, var(--glow-color, rgba(125, 211, 252, 0.25)) 0%, transparent 70%);
    opacity: 0.6;
    filter: blur(30px);
    pointer-events: none;
}

.section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.22) 50%, transparent 100%);
    opacity: 0.5;
    pointer-events: none;
}

.section[data-glow="violet"] {
    --glow-color: rgba(139, 92, 246, 0.35);
}

.section[data-glow="blue"] {
    --glow-color: rgba(59, 130, 246, 0.35);
}

.section[data-glow="green"] {
    --glow-color: rgba(34, 197, 94, 0.35);
}

.section[data-glow="purple"] {
    --glow-color: rgba(168, 85, 247, 0.35);
}

.section[data-glow="teal"] {
    --glow-color: rgba(45, 212, 191, 0.35);
}

.hero {
    display: grid;
    gap: 2.5rem;
}

.hero-centered {
    text-align: center;
    align-items: center;
    justify-items: center;
    gap: 2.8rem;
}

.hero-media {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.65);
    background: rgba(10, 10, 14, 0.6);
    overflow: hidden;
}

.hero-media-apple {
    position: relative;
    padding: clamp(1rem, 2vw, 1.6rem);
    display: grid;
    gap: 1.2rem;
}

.hero-video-full {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(6, 6, 10, 0.85);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.7);
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image {
    width: 100%;
    display: block;
    border-radius: 22px;
    background: #000;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.6);
}

.spotlight-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.spotlight-text h2 {
    font-size: clamp(2.2rem, 4.6vw, 3.6rem);
    line-height: 1.1;
}

.spotlight-text p {
    font-size: 1.05rem;
}

.spotlight-media {
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.7);
    background: rgba(10, 10, 14, 0.6);
    padding: clamp(1rem, 2vw, 1.4rem);
    width: 100%;
}


.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    max-width: 760px;
}

.eyebrow {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0;
    color: var(--ink-muted);
    font-weight: 500;
}

.hero h1 {
    font-size: clamp(5rem, 12vw, 9.2rem);
    line-height: 0.92;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(120deg, #ffffff 0%, #d7ddff 35%, #bfe7ff 65%, #ffffff 100%);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-title {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    animation: hero-title-reveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.15s;
}

@keyframes hero-title-reveal {
    0% {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
        filter: blur(4px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--ink-muted);
    max-width: 640px;
}

.hero-description {
    color: var(--ink-muted);
    font-size: 1.05rem;
    max-width: 680px;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.store-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.store-badge {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 64px;
}

.store-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.btn-primary,
.btn-ghost {
    font-family: var(--font);
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: var(--accent);
    color: #000;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

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

.btn-primary:hover,
.btn-ghost:hover {
    transform: translateY(-2px);
}

.section-head {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    max-width: 820px;
}

.section-head h2 {
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    line-height: 1.1;
    font-weight: 700;
}

.section-head p {
    font-size: 1.05rem;
    color: var(--ink-muted);
}

.statement-card {
    background: rgba(15, 15, 22, 0.48);
    border-radius: 28px;
    padding: clamp(2rem, 4vw, 3rem);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.55);
    display: grid;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.statement-card h2 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.1;
}

.statement-card p {
    font-size: 1.1rem;
    color: var(--ink-muted);
}

.statement-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 60%);
    opacity: 0.6;
    pointer-events: none;
}

.gallery {
    display: grid;
    gap: 2rem;
}

.carousel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
}

.carousel-window {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--border);
    background: #0d0d10;
    box-shadow: var(--shadow);
    position: relative;
}

.carousel-window::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, transparent 40%, transparent 60%, rgba(255, 255, 255, 0.08) 100%);
    opacity: 0.4;
    pointer-events: none;
}

.carousel-track {
    display: flex;
    transition: transform 0.7s ease;
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.5s ease;
}

.carousel-slide.is-active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    display: block;
    border-radius: 20px;
    background: #050506;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.carousel-control {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(20, 20, 24, 0.9);
    color: var(--ink);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.carousel-control:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.4);
}

.carousel-dots {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 0.6rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot.is-active {
    background: #fff;
    transform: scale(1.2);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
}

.card {
    background: rgba(14, 14, 22, 0.45);
    border-radius: 22px;
    padding: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
}

.card p {
    color: var(--ink-muted);
    font-size: 1.02rem;
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.08), transparent 60%);
    opacity: 0.5;
    pointer-events: none;
}

.invite-panel {
    background: linear-gradient(135deg, rgba(12, 12, 18, 0.9), rgba(18, 18, 26, 0.7));
    border-radius: 36px;
    padding: clamp(2rem, 5vw, 3.6rem);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.65);
    position: relative;
    overflow: hidden;
}

.invite-panel h2 {
    font-size: clamp(2.6rem, 5.2vw, 4rem);
    line-height: 1.1;
}

.invite-panel p {
    font-size: 1.05rem;
    color: var(--ink-muted);
}

.invite-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 60%);
    opacity: 0.7;
    pointer-events: none;
}

.invite-shell {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.invite-content {
    display: grid;
    gap: 1rem;
}

.invite-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.invite-note {
    font-size: 0.95rem;
    color: var(--ink-muted);
}

.invite-metrics {
    display: grid;
    gap: 1.2rem;
}

.metric {
    padding: 1.2rem 1.4rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.04);
}

.metric-label {
    display: block;
    font-size: 0.85rem;
    color: var(--ink-muted);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.metric strong {
    font-size: 1.4rem;
    color: #fff;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    color: var(--ink-muted);
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .nav {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
    }

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

@media (max-width: 600px) {
    .cta-row {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        transition: none;
    }

    .hero-title {
        animation: none;
        opacity: 1;
        transform: none;
        filter: none;
    }
}
