@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Base Backgrounds */
    --bg-dark: #050508;
    --bg-deep-violet: #0A0A12;
    --bg-card: rgba(13, 12, 22, 0.65);
    --bg-card-hover: rgba(22, 20, 36, 0.8);
    
    /* Frosted Glass Borders */
    --border-glass: rgba(255, 255, 255, 0.07);
    --border-glass-bright: rgba(255, 255, 255, 0.15);
    
    /* Neon Brand Colors & Glows */
    --color-pink: #FF007F;
    --color-orange: #FF5E00;
    --color-purple: #8B00FF;
    --color-magenta: #D9008F;
    --color-green: #00FF87;
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #A3A3C2;
    --text-muted: #5D5D7A;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-pink) 0%, var(--color-orange) 100%);
    --gradient-orange: linear-gradient(135deg, var(--color-orange) 0%, var(--color-magenta) 100%);
    --gradient-purple: linear-gradient(135deg, var(--color-purple) 0%, var(--color-magenta) 100%);
    --gradient-glass-border: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
    
    /* Shadows & Glows */
    --shadow-neon-pink: 0 0 30px rgba(255, 0, 127, 0.25);
    --shadow-neon-orange: 0 0 30px rgba(255, 94, 0, 0.25);
    --shadow-neon-purple: 0 0 35px rgba(139, 0, 255, 0.25);
    
    /* Font Declarations */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Micro-interactions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Base resets & layout */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Cinematic Dot Grid overlay */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.015) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 1;
}

/* Background Glowing Nebulas */
.bg-glow-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 0, 255, 0.15) 0%, rgba(139, 0, 255, 0) 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(50px);
}

.bg-glow-2 {
    position: absolute;
    top: 40%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 0, 127, 0.1) 0%, rgba(255, 0, 127, 0) 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(60px);
}

/* Header & Nav */
header {
    background: rgba(5, 5, 8, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-glass);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.logo-orange {
    color: var(--color-orange);
}

.logo-pink {
    color: var(--color-pink);
    margin-left: -2px;
}

.logo-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-pink);
    box-shadow: 0 0 10px var(--color-pink), 0 0 20px var(--color-pink);
    margin-left: 1px;
    display: inline-block;
    animation: beacon 3s infinite;
}

@keyframes beacon {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 15px var(--color-pink), 0 0 25px var(--color-pink); }
}

.logo-pink, .logo-orange {
    transition: text-shadow 0.3s ease;
}

.logo:hover .logo-pink {
    text-shadow: 0 0 12px rgba(255, 0, 127, 0.6);
}

.logo:hover .logo-orange {
    text-shadow: 0 0 12px rgba(255, 94, 0, 0.6);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.25rem;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.25rem 0;
}

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

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

nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

nav a.active::after,
nav a:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--gradient-primary);
    border: none;
    border-radius: 30px;
    padding: 0.65rem 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-neon-pink);
    position: relative;
    overflow: hidden;
}

.btn-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-nav:hover::before {
    left: 100%;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(255, 0, 127, 0.4);
}

.btn-nav:active {
    transform: translateY(0);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 8rem 2rem 6rem;
    overflow: hidden;
    background: radial-gradient(circle at 75% 25%, rgba(255, 94, 0, 0.05) 0%, transparent 60%),
                radial-gradient(circle at 25% 75%, rgba(139, 0, 255, 0.05) 0%, transparent 60%);
    z-index: 5;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 10;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    width: fit-content;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.brand-badge .badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-pink);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-pink);
}

.brand-badge .badge-text {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.hero-content h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 20px rgba(255, 0, 127, 0.15));
}

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

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Primary Button */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-neon-pink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(255, 0, 127, 0.45);
}

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

/* Secondary Button */
.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-3px);
    border-color: var(--border-glass-bright);
}

.btn-secondary.outline {
    border-color: rgba(255, 255, 255, 0.12);
}

.btn-secondary.outline:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Warning/Disclaimer card */
.hero-disclaimer-card {
    background: rgba(255, 94, 0, 0.03);
    border-left: 3px solid var(--color-orange);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    border-top: 1px solid rgba(255, 94, 0, 0.1);
    border-right: 1px solid rgba(255, 94, 0, 0.1);
    border-bottom: 1px solid rgba(255, 94, 0, 0.1);
    max-width: 520px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-disclaimer-card .disclaimer-title {
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--color-orange);
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    letter-spacing: 1px;
}

.hero-disclaimer-card .disclaimer-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Device Composition Container */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.device-composition {
    position: relative;
    width: 100%;
    max-width: 680px;
    height: 490px;
}

/* TV Bezel and Chassis styling */
.mockup-tv-wrapper {
    position: absolute;
    top: 10px;
    left: 0;
    width: 520px;
    z-index: 10;
    transition: var(--transition-smooth);
}

.mockup-tv-wrapper::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    right: 5%;
    bottom: 12%;
    background: radial-gradient(circle, rgba(139, 0, 255, 0.28) 0%, rgba(255, 0, 127, 0.12) 60%, rgba(0,0,0,0) 80%);
    filter: blur(45px);
    z-index: -2;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.mockup-tv {
    background: #08080c;
    border: 11px solid #1c1b22;
    border-image: linear-gradient(135deg, #2e2c38 0%, #131217 100%) 1;
    border-radius: 4px;
    height: 338px;
    position: relative;
    box-shadow: 
        0 40px 90px -20px rgba(0, 0, 0, 0.95),
        inset 0 0 15px rgba(0, 0, 0, 0.9);
    overflow: hidden;
}

.mockup-tv-stand-neck {
    width: 48px;
    height: 28px;
    background: linear-gradient(90deg, #18171d 0%, #3e3b4d 50%, #18171d 100%);
    margin: 0 auto;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.6);
}

.mockup-tv-stand-base {
    width: 200px;
    height: 10px;
    background: linear-gradient(90deg, #0e0d12, #383547 50%, #0e0d12);
    margin: 0 auto;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.6), inset 0 1px 1px rgba(255,255,255,0.1);
}

/* Phone Bezel and Chassis styling */
.mockup-phone-wrapper {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 20;
    transition: var(--transition-smooth);
}

.mockup-phone-wrapper::before {
    content: '';
    position: absolute;
    top: 8%;
    left: 8%;
    right: 8%;
    bottom: 8%;
    background: radial-gradient(circle, rgba(255, 0, 127, 0.28) 0%, rgba(255, 94, 0, 0.1) 60%, rgba(0,0,0,0) 80%);
    filter: blur(28px);
    z-index: -2;
    pointer-events: none;
}

.mockup-phone {
    background: #000000;
    border: 9px solid #1a1921;
    border-radius: 38px;
    width: 200px;
    height: 410px;
    box-shadow: 
        0 30px 80px -15px rgba(0, 0, 0, 0.95),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 0 6px rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.mockup-phone-notch {
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 19px;
    background: #000;
    border-radius: 20px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    box-shadow: inset 0 0 2px rgba(255,255,255,0.15);
}

.notch-camera {
    width: 8px;
    height: 8px;
    background: #080a1c;
    border-radius: 50%;
    box-shadow: inset 0 0 2px rgba(255,255,255,0.3);
}

.notch-speaker {
    width: 28px;
    height: 3px;
    background: #1c1c24;
    border-radius: 3px;
}

.glass-glare {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.04) 28%, rgba(255, 255, 255, 0) 50%);
    pointer-events: none;
    z-index: 40;
}

/* Micro-animations for Hover */
.device-composition:hover .mockup-tv-wrapper {
    transform: translateY(8px) scale(0.97);
    opacity: 0.92;
}

.device-composition:hover .mockup-phone-wrapper {
    transform: translate(-12px, -18px) scale(1.05);
    box-shadow: 0 40px 90px rgba(0,0,0,0.8);
}

/* High Fidelity TV UI Mockup styling */
.tv-layout {
    display: grid;
    grid-template-columns: 48px 1fr;
    width: 100%;
    height: 100%;
    background: #050508;
    font-size: 8px;
    color: #fff;
    text-align: left;
    user-select: none;
}

.tv-left-rail {
    background: #08080d;
    border-right: 1px solid rgba(255,255,255,0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1.25rem;
    gap: 1.35rem;
}

.tv-rail-logo {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: var(--gradient-primary);
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tv-rail-logo .logo-symbol {
    font-size: 8px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
}

.tv-rail-item {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    opacity: 0.5;
    transition: var(--transition-smooth);
}

.tv-rail-item svg.nav-icon {
    width: 14px;
    height: 14px;
}

.tv-rail-item.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border-left: 2px solid var(--color-pink);
    opacity: 1;
    box-shadow: inset 1px 0 0 var(--color-pink);
}

.tv-main-panel {
    display: flex;
    flex-direction: column;
    padding: 0.85rem 1rem;
    gap: 0.95rem;
    overflow: hidden;
}

.tv-top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.tv-nav-left {
    display: flex;
    gap: 12px;
}

.tv-nav-tab {
    font-size: 8px;
    color: var(--text-secondary);
    font-weight: 700;
    padding-bottom: 2px;
    cursor: pointer;
}

.tv-nav-tab.active {
    color: var(--text-primary);
    border-bottom: 1.5px solid var(--color-orange);
}

.tv-search-placeholder {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 3px 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1;
    max-width: 130px;
    color: var(--text-muted);
}

.tv-search-placeholder svg.search-icon {
    width: 8px;
    height: 8px;
}

.tv-profile-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tv-profile-name {
    font-size: 7.5px;
    color: var(--text-secondary);
    font-weight: 600;
}

.tv-avatar {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gradient-purple);
    box-shadow: 0 0 8px rgba(139, 0, 255, 0.4);
}

/* TV Featured Banner styling */
.tv-hero-slide {
    position: relative;
    border-radius: 8px;
    height: 128px;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: linear-gradient(90deg, rgba(5, 5, 8, 0.98) 45%, rgba(5, 5, 8, 0.25) 100%), 
                radial-gradient(circle at 85% 50%, rgba(255, 94, 0, 0.3) 0%, rgba(139, 0, 255, 0.1) 60%, transparent 100%);
    overflow: hidden;
}

.tv-hero-slide-glow {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 0, 127, 0.2) 0%, transparent 70%);
    filter: blur(20px);
}

.tv-hero-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tv-hero-tag {
    background: rgba(255, 94, 0, 0.12);
    border: 1px solid rgba(255, 94, 0, 0.3);
    color: var(--color-orange);
    font-size: 6px;
    text-transform: uppercase;
    font-weight: 800;
    padding: 1.5px 5px;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.tv-hero-specs {
    font-size: 6.5px;
    color: var(--text-muted);
    font-weight: 600;
}

.tv-hero-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    background: linear-gradient(135deg, #fff 60%, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tv-hero-desc {
    color: var(--text-secondary);
    font-size: 8.5px;
    max-width: 250px;
    line-height: 1.4;
}

.tv-hero-buttons {
    display: flex;
    gap: 6px;
}

.tv-btn-play {
    background: #fff;
    color: #000;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(255,255,255,0.15);
}

.btn-svg-play {
    width: 8px;
    height: 8px;
}

.tv-btn-info {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    padding: 4px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tv-row-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.tv-row-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.3px;
}

.tv-row-count {
    font-size: 6.5px;
    color: var(--text-muted);
    font-weight: 600;
}

.tv-grid-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.tv-item-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: var(--transition-smooth);
}

.tv-item-card.focused {
    border-color: var(--color-pink);
    background: rgba(255, 0, 127, 0.04);
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.25);
    transform: translateY(-2px);
}

.tv-card-img {
    height: 52px;
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Beautiful gradients as cover art */
.live-gradient {
    background: linear-gradient(135deg, rgba(255, 94, 0, 0.35) 0%, rgba(255, 0, 127, 0.15) 100%), #100f1a;
    border: 1px solid rgba(255, 94, 0, 0.25);
}

.bunny-gradient {
    background: linear-gradient(135deg, rgba(0, 255, 135, 0.25) 0%, rgba(139, 0, 255, 0.15) 100%), #100f1a;
    border: 1px solid rgba(0, 255, 135, 0.15);
}

.tears-gradient {
    background: linear-gradient(135deg, rgba(255, 0, 127, 0.25) 0%, rgba(139, 0, 255, 0.2) 100%), #100f1a;
    border: 1px solid rgba(255, 0, 127, 0.15);
}

.diag-gradient {
    background: linear-gradient(135deg, rgba(139, 0, 255, 0.3) 0%, rgba(25, 20, 48, 0.6) 100%), #0c0b12;
    border: 1px solid rgba(139, 0, 255, 0.2);
}

.tv-badge-live {
    position: absolute;
    top: 4px;
    left: 4px;
    background: var(--color-pink);
    color: #fff;
    font-size: 5px;
    font-weight: 900;
    padding: 1px 3px;
    border-radius: 2px;
    letter-spacing: 0.3px;
}

.card-play {
    width: 14px;
    height: 14px;
    color: var(--color-pink);
    filter: drop-shadow(0 0 5px var(--color-pink));
}

.card-play-sub {
    width: 12px;
    height: 12px;
    color: #fff;
    opacity: 0.65;
}

.card-diag-icon {
    width: 14px;
    height: 14px;
    color: var(--color-purple);
}

.tv-card-title {
    font-weight: 700;
    font-size: 7.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-secondary);
}

.tv-item-card.focused .tv-card-title {
    color: #fff;
}

/* High Fidelity Phone UI Mockup styling */
.phone-screen {
    width: 100%;
    height: 100%;
}

.phone-layout {
    width: 100%;
    height: 100%;
    background: #050508;
    color: #fff;
    font-size: 8px;
    display: flex;
    flex-direction: column;
    text-align: left;
    position: relative;
    user-select: none;
}

.phone-status-bar {
    height: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 12px 0;
    color: var(--text-secondary);
    font-size: 7px;
    font-weight: 700;
}

.phone-status-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.phone-status-icon {
    width: 9px;
    height: 9px;
    color: var(--text-secondary);
}

.phone-app-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.phone-brand {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 13px;
    color: #fff;
    letter-spacing: -0.4px;
}

.phone-brand span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.phone-cast-icon {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.phone-cast-icon.active {
    color: var(--color-orange);
    filter: drop-shadow(0 0 5px rgba(255, 94, 0, 0.6));
    animation: castGlow 2s infinite ease-in-out;
}

@keyframes castGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.phone-cast-icon svg.cast-svg {
    width: 12px;
    height: 12px;
}

.phone-tabs {
    display: flex;
    gap: 4px;
    padding: 4px 12px;
    overflow-x: hidden;
}

.phone-tab {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 2px 7px;
    border-radius: 12px;
    font-size: 6.5px;
    font-weight: 600;
    white-space: nowrap;
    color: var(--text-secondary);
}

.phone-tab.active {
    background: var(--gradient-primary);
    border: none;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 2px 6px rgba(255, 0, 127, 0.2);
}

.phone-body {
    flex: 1;
    padding: 6px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}

/* Phone Casting Panel styling */
.phone-hero-card {
    border-radius: 8px;
    height: 84px;
    background: linear-gradient(180deg, rgba(5,5,8,0.1) 10%, rgba(5,5,8,0.98) 100%), 
                radial-gradient(circle at 80% 20%, rgba(255, 94, 0, 0.25) 0%, rgba(255, 0, 127, 0.1) 60%, transparent 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.phone-hero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phone-hero-live-badge {
    background: rgba(255, 94, 0, 0.15);
    border: 0.5px solid rgba(255, 94, 0, 0.4);
    color: var(--color-orange);
    font-size: 5px;
    font-weight: 800;
    padding: 1px 4px;
    border-radius: 2px;
    letter-spacing: 0.5px;
}

.phone-hero-cast-btn {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 94, 0, 0.12);
    color: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-hero-cast-btn svg {
    width: 7px;
    height: 7px;
}

.phone-hero-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.phone-hero-title {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 800;
    color: #fff;
}

.phone-hero-meta {
    color: var(--text-secondary);
    font-size: 6.5px;
    font-weight: 500;
}

.phone-section-title {
    font-family: var(--font-heading);
    font-size: 8.5px;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--text-primary);
    letter-spacing: 0.2px;
}

/* Phone Diagnostics Metric List */
.phone-diag-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.phone-diag-item {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    padding: 5px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.phone-diag-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.phone-diag-icon-wrapper {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-diag-icon-wrapper svg {
    width: 10px;
    height: 10px;
}

.speed-bg {
    background: rgba(0, 255, 135, 0.1);
    color: var(--color-green);
    border: 0.5px solid rgba(0, 255, 135, 0.25);
}

.playlist-bg {
    background: rgba(255, 94, 0, 0.1);
    color: var(--color-orange);
    border: 0.5px solid rgba(255, 94, 0, 0.25);
}

.ping-bg {
    background: rgba(139, 0, 255, 0.1);
    color: var(--color-purple);
    border: 0.5px solid rgba(139, 0, 255, 0.25);
}

.phone-diag-text {
    display: flex;
    flex-direction: column;
}

.phone-diag-label {
    font-size: 6px;
    color: var(--text-muted);
    font-weight: 600;
}

.phone-diag-value {
    font-size: 7px;
    font-weight: 700;
    color: var(--text-secondary);
}

.phone-status-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
}

.phone-status-dot.green {
    background: var(--color-green);
    box-shadow: 0 0 5px var(--color-green);
}

.phone-bottom-nav {
    height: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    background: #07070b;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: var(--text-muted);
    padding-bottom: 2px;
}

.phone-bottom-nav span {
    opacity: 0.55;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

.phone-bottom-nav span.phone-nav-active {
    color: var(--color-pink);
    filter: drop-shadow(0 0 4px var(--color-pink));
    opacity: 1;
}

.phone-nav-svg {
    width: 12px;
    height: 12px;
}

/* Analogy Section comparison layout */
.analogy-section {
    background: radial-gradient(circle at 50% 0%, rgba(139,0,255,0.03) 0%, transparent 60%);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    padding: 6rem 2rem;
    position: relative;
    z-index: 5;
}

.container-narrow {
    max-width: 960px;
    margin: 0 auto;
}

.analogy-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 4rem 3.5rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    box-shadow: var(--shadow-card-glow), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.analogy-badge {
    align-self: center;
    background: rgba(139, 0, 255, 0.1);
    border: 1px solid rgba(139, 0, 255, 0.25);
    color: var(--color-purple);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    letter-spacing: 1.5px;
}

.analogy-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 900;
    text-align: center;
    letter-spacing: -0.5px;
}

.analogy-subtitle {
    font-size: 1.02rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: -0.5rem auto 1rem;
}

.analogy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.analogy-item {
    background: rgba(255, 255, 255, 0.015);
    border-radius: 16px;
    padding: 2.2rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
}

.analogy-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.analogy-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 0, 127, 0.08);
    border: 1px solid rgba(255, 0, 127, 0.2);
    color: var(--color-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.analogy-icon-box.orange {
    background: rgba(255, 94, 0, 0.08);
    border: 1px solid rgba(255, 94, 0, 0.2);
    color: var(--color-orange);
}

.analogy-svg {
    width: 22px;
    height: 22px;
}

.analogy-item h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    letter-spacing: -0.2px;
}

.analogy-highlight {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--color-pink);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.analogy-highlight.orange {
    color: var(--color-orange);
}

.analogy-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.analogy-disclaimer-box {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 1rem;
}

.alert-svg {
    width: 20px;
    height: 20px;
    color: var(--color-pink);
    flex-shrink: 0;
}

.analogy-disclaimer {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
    text-align: left;
}

/* How It Works steps styling */
.how-it-works {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6.5rem 2rem;
    position: relative;
    z-index: 5;
}

.section-badge {
    display: block;
    margin: 0 auto 0.75rem;
    background: rgba(255, 94, 0, 0.1);
    border: 1px solid rgba(255, 94, 0, 0.25);
    color: var(--color-orange);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    letter-spacing: 1.5px;
    width: fit-content;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -1px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-card-glow), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 127, 0.25);
    background: var(--bg-card-hover);
}

.step-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.45;
}

.step-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-pink);
    margin-bottom: 1.75rem;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.05);
}

.step-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* Features bento layout */
.features-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 7rem;
    position: relative;
    z-index: 5;
}

.features-section .section-badge {
    background: rgba(255, 0, 127, 0.15);
    border-color: rgba(255, 0, 127, 0.35);
    color: var(--color-pink);
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 3rem 2.25rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    box-shadow: var(--shadow-card-glow), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 0, 255, 0.35);
    background: var(--bg-card-hover);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(139, 0, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-purple);
    border: 1px solid rgba(139, 0, 255, 0.2);
}

.feature-icon.alt {
    background: rgba(255, 0, 127, 0.08);
    color: var(--color-pink);
    border: 1px solid rgba(255, 0, 127, 0.2);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing Page components */
.pricing-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 7rem 2rem 6rem;
    position: relative;
    z-index: 5;
}

.pricing-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: -1.5rem auto 4.5rem;
    line-height: 1.7;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 3rem 2rem 2.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card-glow), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.popular {
    border-color: var(--color-pink);
    box-shadow: var(--shadow-neon-pink), var(--shadow-card-glow);
    background: rgba(18, 14, 28, 0.85);
}

.badge-popular {
    position: absolute;
    top: 18px;
    right: -32px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
    padding: 0.35rem 2.2rem;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-duration {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.plan-price {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff 70%, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plan-price span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-muted);
}

.plan-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.plan-features li {
    font-size: 0.92rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.plan-features li::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 10px;
    border: solid var(--color-pink);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    flex-shrink: 0;
    margin-top: -3px;
}

.btn-checkout {
    display: block;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 0.95rem;
    color: var(--text-primary);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.pricing-card.popular .btn-checkout,
.btn-checkout:hover {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 8px 20px rgba(255, 0, 127, 0.25);
}

.btn-checkout:hover {
    transform: translateY(-2px);
}

.plan-card-disclaimer {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* FAQ page components */
.faq-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 7rem 2rem 6rem;
    position: relative;
    z-index: 5;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2.2rem;
    box-shadow: var(--shadow-card-glow);
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.85rem;
    color: var(--text-primary);
    letter-spacing: -0.2px;
}

.faq-answer {
    font-size: 1.02rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Setup Guide page components */
.setup-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 7rem 2rem 6rem;
    position: relative;
    z-index: 5;
}

.setup-block {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-card-glow);
}

.setup-block h2 {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 1.75rem;
    color: var(--color-orange);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    letter-spacing: -0.5px;
}

.setup-steps {
    list-style: none;
    counter-reset: steps-counter;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.setup-steps li {
    font-size: 1rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 3rem;
    line-height: 1.6;
}

.setup-steps li::before {
    counter-increment: steps-counter;
    content: counter(steps-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 800;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 0, 127, 0.25);
}

.setup-steps strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* App download page */
.app-download-container {
    max-width: 960px;
    margin: 4rem auto 6rem;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 5;
}

.app-badge-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3.5rem 0;
}

.badge-link {
    display: inline-block;
    transition: var(--transition-bounce);
}

.badge-link:hover {
    transform: scale(1.06) translateY(-2px);
}

.badge-img {
    height: 64px;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5));
}

.apk-notice-box {
    background: rgba(255, 94, 0, 0.02);
    border: 1px solid rgba(255, 94, 0, 0.25);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    margin: 3rem auto;
    max-width: 720px;
    box-shadow: var(--shadow-card-glow);
}

.apk-notice-box h3 {
    color: var(--color-orange);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

/* Contact Form container */
.contact-container {
    max-width: 600px;
    margin: 4rem auto 6rem;
    padding: 3.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    box-shadow: var(--shadow-neon-purple), var(--shadow-card-glow);
    position: relative;
    z-index: 5;
}

.contact-container h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.contact-container p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.form-group {
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    padding: 0.95rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.98rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-pink);
    outline: none;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.btn-submit {
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    padding: 1.1rem;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-neon-pink);
    text-align: center;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 0, 127, 0.45);
}

/* Compliance Disclaimer Footer Bar */
.compliance-footer-bar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-glass);
    position: relative;
    z-index: 5;
}

/* Legal Content Layout */
.legal-content {
    max-width: 800px;
    margin: 4.5rem auto 7rem;
    padding: 0 2rem;
    position: relative;
    z-index: 5;
}

.legal-content h1 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1.1rem;
    color: var(--color-orange);
    font-weight: 800;
    letter-spacing: -0.3px;
}

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.legal-content ul li {
    position: relative;
    padding-left: 1.5rem;
}

.legal-content ul li::before {
    content: "•";
    color: var(--color-pink);
    font-weight: bold;
    font-size: 1.25rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Success / Cancel Page Layout */
.status-container {
    max-width: 600px;
    margin: 7rem auto;
    padding: 4.5rem 3.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-neon-orange), var(--shadow-card-glow);
    position: relative;
    z-index: 5;
}

.status-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: rgba(255, 94, 0, 0.08);
    border: 2px solid var(--color-orange);
    color: var(--color-orange);
    font-size: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    box-shadow: 0 0 20px rgba(255, 94, 0, 0.15);
}

.status-icon.success {
    background: rgba(0, 255, 135, 0.08);
    border-color: var(--color-green);
    color: var(--color-green);
    box-shadow: 0 0 25px rgba(0, 255, 135, 0.25);
}

.status-container h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.status-container p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

/* Footer styling */
footer {
    background: #030305;
    border-top: 1px solid var(--border-glass);
    padding: 5rem 2rem 3rem;
    position: relative;
    z-index: 5;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 3.5rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1.2rem;
    max-width: 340px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.92rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--text-primary);
    padding-left: 2px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 2.2rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Responsive configurations & safety */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    .hero-content {
        align-items: center;
        text-align: center;
    }
    .hero-disclaimer-card {
        margin: 0 auto;
    }
    .device-composition {
        margin: 0 auto;
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 1.5rem 4rem;
    }
    .hero-content h1 {
        font-size: 2.75rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 360px;
    }
    .nav-container {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.5rem 1.5rem;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.2rem;
    }
    .device-composition {
        max-width: 100%;
        height: 380px;
        transform: scale(0.85);
        transform-origin: center top;
    }
    .mockup-tv-wrapper {
        width: 440px;
        left: 50%;
        transform: translateX(-50%);
    }
    .device-composition:hover .mockup-tv-wrapper {
        transform: translateX(-50%) scale(0.98) translateY(5px);
    }
    .mockup-tv {
        height: 286px;
    }
    .mockup-tv-stand-neck {
        height: 24px;
    }
    .mockup-phone-wrapper {
        bottom: 10px;
        right: 15px;
    }
    .mockup-phone {
        width: 155px;
        height: 320px;
        border-radius: 28px;
    }
    .phone-body {
        gap: 6px;
        padding: 5px 8px;
    }
    .phone-hero-card {
        height: 72px;
        padding: 5px;
    }
    .phone-hero-title {
        font-size: 8.5px;
    }
    .phone-section-title {
        font-size: 7.5px;
    }
    .phone-diag-item {
        padding: 4px 6px;
    }
    .phone-diag-icon-wrapper {
        width: 14px;
        height: 14px;
        border-radius: 4px;
    }
    .phone-diag-icon-wrapper svg {
        width: 8px;
        height: 8px;
    }
    .phone-diag-value {
        font-size: 6px;
    }
    .phone-bottom-nav {
        height: 30px;
    }
    .analogy-card {
        padding: 3rem 2rem;
    }
    .analogy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .setup-block {
        padding: 2.2rem;
    }
    .app-badge-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.25rem;
    }
    .device-composition {
        height: 290px;
        transform: scale(0.65);
        transform-origin: center top;
    }
    .mockup-tv-wrapper {
        width: 340px;
    }
    .mockup-tv {
        height: 221px;
        border-width: 7px;
    }
    .mockup-phone-wrapper {
        bottom: 10px;
        right: 10px;
    }
    .mockup-phone {
        width: 130px;
        height: 260px;
        border-width: 6px;
        border-radius: 22px;
    }
    .mockup-phone-notch {
        width: 60px;
        height: 14px;
    }
    .notch-camera {
        width: 5px;
        height: 5px;
    }
    .notch-speaker {
        width: 20px;
        height: 2px;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .device-composition {
        height: 220px;
        transform: scale(0.5);
        transform-origin: center top;
    }
}
