/* ===== CSS Variables ===== */
:root {
    --bg-primary: #07080d;
    --bg-secondary: #0d0f17;
    --bg-card: rgba(15, 18, 30, 0.6);
    --bg-card-hover: rgba(20, 24, 40, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --bg-glass-border: rgba(255, 255, 255, 0.06);

    --text-primary: #f0f1f5;
    --text-secondary: #8b8fa3;
    --text-muted: #565a6e;

    --accent-indigo: #6366f1;
    --accent-cyan: #06b6d4;
    --accent-purple: #8b5cf6;

    --gradient-main: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    --gradient-glow: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 70%);

    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --container-max: 1200px;
    --container-padding: 24px;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* ===== Global Background Gradient ===== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 0% 60%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
        var(--bg-primary);
}

/* Flowing gradient orbs that add depth between sections */
.features::before,
.platforms::before,
.privacy::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
}

.features::before {
    background: rgba(99, 102, 241, 0.07);
    top: -200px;
    right: -300px;
}

.platforms::before {
    background: rgba(6, 182, 212, 0.06);
    top: -100px;
    left: -400px;
}

.privacy::before {
    background: rgba(139, 92, 246, 0.06);
    bottom: -200px;
    right: -200px;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-indigo);
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family);
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.5), 0 8px 24px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.btn-ghost {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(7, 8, 13, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 10px 0;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-accent {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}

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

.nav-cta {
    border-radius: var(--radius-sm);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: rgba(99, 102, 241, 0.15);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(6, 182, 212, 0.1);
    bottom: -100px;
    right: -100px;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-indigo);
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-indigo);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

.hero-title {
    font-size: clamp(2.8rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

/* Hero Device Mockups - 3 Devices */
.hero-devices {
    position: relative;
    z-index: 1;
    margin-top: 60px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 24px;
    padding: 0 var(--container-padding);
    animation: fadeInUp 1s ease 0.5s both;
}

.device-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 13px;
}

/* Shared device styles */
.hero-device-tv,
.hero-device-phone,
.hero-device-ipad {
    flex-shrink: 0;
}

/* Apple TV - left */
.device-frame-tv {
    width: 400px;
    aspect-ratio: 16 / 9;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 2px solid var(--border-light);
    padding: 8px;
    box-shadow:
        0 0 40px rgba(99, 102, 241, 0.1),
        0 16px 48px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.device-screen-tv {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0f1225 0%, #0a0d18 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* iPhone - center (tallest, prominent) */
.hero-device-phone {
    position: relative;
    z-index: 2;
}

.device-frame-phone {
    width: 260px;
    height: 520px;
    background: var(--bg-secondary);
    border-radius: 40px;
    border: 2px solid var(--border-light);
    padding: 10px;
    box-shadow:
        0 0 80px rgba(99, 102, 241, 0.2),
        0 24px 64px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.device-screen-phone {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0f1225 0%, #0a0d18 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* iPad - right */
.device-frame-ipad {
    width: 300px;
    height: 400px;
    background: var(--bg-secondary);
    border-radius: 24px;
    border: 2px solid var(--border-light);
    padding: 10px;
    box-shadow:
        0 0 40px rgba(6, 182, 212, 0.1),
        0 16px 48px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.device-screen-ipad {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0f1225 0%, #0a0d18 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Device screenshot images */
.device-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* TV image - show full width, no side cropping */
.device-screen-tv .device-img,
.tv-screen .device-img {
    object-fit: fill;
    width: 100%;
    height: 100%;
}

/* Carousel dots (mobile only) */
.carousel-dots {
    display: none;
}

/* ===== Features Section ===== */
.features {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.feature-card:hover h3 {
    color: #111118;
}

.feature-card:hover p {
    color: #555566;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-color: rgba(99, 102, 241, 0.15);
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-subtle);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-indigo);
    margin: 0 auto 20px;
    transition: all 0.35s ease;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    transition: color 0.35s ease;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    transition: color 0.35s ease;
}

/* ===== Platforms Section ===== */
.platforms {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.platform-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    transition: all 0.35s ease;
}

.platform-card:hover {
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.platform-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-subtle);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-indigo);
    margin: 0 auto 20px;
}

.platform-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.platform-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== Apple TV Section ===== */
.apple-tv {
    padding: 120px 0;
}

.apple-tv-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.apple-tv-text .section-tag {
    margin-bottom: 16px;
}

.apple-tv-text .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.apple-tv-text > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
}

.check-list li svg {
    margin-top: 3px;
}

.check-list li strong {
    color: var(--text-primary);
}

.check-list li div {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* TV Mockup */
.tv-mockup {
    position: relative;
}

.tv-screen {
    aspect-ratio: 16 / 9;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 60px rgba(99, 102, 241, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.4);
}

/* ===== Privacy Section ===== */
.privacy {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.privacy-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--radius-xl);
    padding: 64px;
    position: relative;
    overflow: hidden;
}

.privacy-card::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
}

.privacy-content {
    position: relative;
    z-index: 1;
}

.privacy-content .section-tag {
    margin-bottom: 16px;
}

.privacy-content .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.privacy-content > p {
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.privacy-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.privacy-icon {
    width: 44px;
    height: 44px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    flex-shrink: 0;
}

.privacy-item strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.privacy-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== Download Section ===== */
.download {
    padding: 120px 0;
}

.download-content {
    text-align: center;
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--radius-xl);
    padding: 80px 40px;
    overflow: hidden;
}

.download-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
}

.download-content .section-title {
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
}

.download-content .section-subtitle {
    position: relative;
    z-index: 1;
    max-width: 480px;
    margin: 0 auto 40px;
}

.download-buttons {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

/* App Store CSS button */
.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000000;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 10px 22px 10px 18px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.app-store-btn:hover {
    transform: translateY(-2px);
    background: #111111;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.app-store-apple-icon {
    flex-shrink: 0;
}

.app-store-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: left;
}

.app-store-btn-small {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.app-store-btn-big {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.download-note {
    position: relative;
    z-index: 1;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
    margin-top: 16px;
}

.footer-legal-links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-devices {
        gap: 16px;
    }

    .device-frame-tv {
        width: 300px;
        aspect-ratio: 16 / 9;
    }

    .device-frame-phone {
        width: 200px;
        height: 400px;
        border-radius: 32px;
    }

    .device-screen-phone {
        border-radius: 24px;
    }

    .device-frame-ipad {
        width: 240px;
        height: 320px;
    }

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

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

}

@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Mobile menu */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(7, 8, 13, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-subtle);
        padding: 24px;
        gap: 20px;
    }

    .nav-cta.active {
        display: inline-flex;
        position: absolute;
        top: calc(100% + 140px);
        left: 20px;
        right: 20px;
        justify-content: center;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .hero {
        overflow: clip;
        overflow-clip-margin: content-box;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    /* Bigger App Store button on mobile */
    .hero-actions .app-store-btn {
        padding: 14px 28px 14px 22px;
    }

    .hero-actions .app-store-btn .app-store-apple-icon {
        width: 28px;
        height: 34px;
    }

    .hero-actions .app-store-btn .app-store-btn-small {
        font-size: 12px;
    }

    .hero-actions .app-store-btn .app-store-btn-big {
        font-size: 24px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Stats stay horizontal on mobile */
    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 11px;
    }

    .stat-divider {
        height: 32px;
    }

    /* Device carousel on mobile - horizontal scroll */
    .hero-devices {
        margin-top: 40px;
        gap: 16px;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        overflow: auto hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 var(--container-padding) 16px;
        scrollbar-width: none;
        width: 100%;
        max-width: 100vw;
    }

    .hero-devices::-webkit-scrollbar {
        display: none;
    }

    .hero-device-tv,
    .hero-device-phone,
    .hero-device-ipad {
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    .hero-device-tv {
        display: block;
    }

    .device-frame-tv {
        width: 320px;
        aspect-ratio: 16 / 9;
    }

    .device-frame-phone {
        width: 200px;
        height: 400px;
        border-radius: 30px;
    }

    .device-screen-phone {
        border-radius: 22px;
    }

    .device-frame-ipad {
        width: 240px;
        height: 320px;
        border-radius: 18px;
    }

    .device-screen-ipad {
        border-radius: 12px;
    }

    /* Carousel dots visible on mobile */
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        padding-top: 16px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .carousel-dot.active {
        background: var(--accent-indigo);
        width: 24px;
        border-radius: 4px;
    }

    .features,
    .platforms,
    .apple-tv,
    .privacy,
    .download {
        padding: 80px 0;
    }

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

    /* Compact horizontal platforms on mobile */
    .platforms-grid {
        display: flex;
        gap: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .platforms-grid::-webkit-scrollbar {
        display: none;
    }

    .platform-card {
        flex-shrink: 0;
        scroll-snap-align: start;
        background: transparent;
        border: none;
        padding: 16px 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        min-width: auto;
    }

    .platform-card:hover {
        transform: none;
        box-shadow: none;
        border-color: transparent;
    }

    .platform-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        margin: 0;
    }

    .platform-card h3 {
        font-size: 0.85rem;
        margin-bottom: 0;
    }

    .platform-card p {
        display: none;
    }

    .apple-tv-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .apple-tv-text .section-title {
        text-align: center;
    }

    .apple-tv-text > p {
        text-align: center;
    }

    .check-list {
        align-items: flex-start;
    }

    .privacy-card {
        padding: 40px 24px;
    }

    .privacy-content .section-title {
        text-align: center;
    }

    .privacy-content > p {
        text-align: center;
    }

    .download-content {
        padding: 60px 24px;
    }

    /* Bigger App Store button in download section too */
    .download-buttons .app-store-btn {
        padding: 12px 24px 12px 20px;
    }

    .download-buttons .app-store-btn .app-store-btn-big {
        font-size: 22px;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 1.2rem;
    }

    .hero-stats {
        gap: 14px;
    }
}
