/* ============================================================
   DESIGN TOKENS & VARIABLES
   ============================================================ */
:root {
    /* Color Palette */
    --bg-dark: #000000;
    --bg-darker: #050505;
    --bg-subtle: #0c0c0e;

    --accent-cyan: #00e5ff;
    --accent-cyan-rgb: 0, 229, 255;
    --accent-blue: #0080ff;
    --accent-blue-rgb: 0, 128, 255;
    --accent-purple: #8a2be2;

    --text-primary: #f5f5f7;
    --text-secondary: #86868b;
    --text-muted: #515154;
    --text-white: #ffffff;

    /* Cards & Glassmorphism */
    --card-bg: rgba(22, 22, 23, 0.4);
    --card-bg-hover: rgba(28, 28, 30, 0.6);
    --card-border: rgba(255, 255, 255, 0.08);
    --card-border-hover: rgba(255, 255, 255, 0.2);

    /* Shadows & Glows */
    --shadow-glow: 0 12px 40px rgba(0, 0, 0, 0.6);
    --shadow-cyan: 0 0 30px rgba(0, 229, 255, 0.15);

    /* Border Radii */
    --radius-sm: 8px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-full: 100px;

    /* Fonts & Animations */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-title: 'Outfit', var(--font-sans);

    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
}

/* ============================================================
   RESET & BASE STYLES
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-dark);
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   TYPOGRAPHY & UTILITIES
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.heading-apple {
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 800;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 1.5rem;
}

.heading-section {
    font-size: clamp(2.25rem, 4.5vw, 4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.heading-section span {
    color: var(--text-secondary);
}

.sub-heading {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    color: var(--text-secondary);
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem auto;
    font-weight: 500;
    line-height: 1.4;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-padding {
    padding: clamp(5rem, 9vw, 9rem) 1.5rem;
    position: relative;
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Background Grids & Spotlights */
.apple-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.005) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.005) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
}

.ambient-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(140px);
    z-index: 1;
}

.glow-top {
    width: 70vw;
    height: 35vw;
    background: radial-gradient(circle, rgba(var(--accent-cyan-rgb), 0.07) 0%, transparent 70%);
    top: 0;
    left: 15%;
}

.bg-darker-spotlight {
    background: radial-gradient(circle at 50% 50%, #060812 0%, #000000 80%);
}

.bg-darker {
    background-color: var(--bg-darker);
}

/* Scroll reveal triggers */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

/* ============================================================
   A. NAVIGATION
   ============================================================ */
.global-header {
    width: 100%;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.global-nav-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1.25rem;
    height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.global-logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.03em;
    font-family: var(--font-title);
}

.global-logo span {
    color: var(--accent-cyan);
}

.global-nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.global-nav-links a {
    font-size: 0.75rem;
    color: rgba(245, 245, 247, 0.8);
    font-weight: 400;
    transition: var(--transition-fast);
}

.global-nav-links a:hover {
    color: var(--text-white);
}

.btn-nav-cta {
    font-size: 0.7rem !important;
    padding: 0.4rem 0.9rem !important;
}



.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    gap: 5px;
    padding: 4px;
    z-index: 110;
}

.toggle-bar {
    width: 18px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

.mobile-nav-toggle.active .toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(3px, 4px);
}

.mobile-nav-toggle.active .toggle-bar:nth-child(2) {
    transform: rotate(-45deg) translate(3px, -4px);
}

/* ============================================================
   B. HERO SECTION
   ============================================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 7rem 1.5rem 3rem 1.5rem;
    background: #000000;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    z-index: 5;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-tagline {
    font-size: clamp(1.4rem, 2.8vw, 2.25rem);
    font-weight: 500;
    color: var(--text-secondary);
    margin-top: -0.5rem;
    margin-bottom: 2rem;
    white-space: normal;
    padding: 0 1rem;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.hero-parallax-viewport {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    perspective: 1000px;
}

.hero-bottle-wrap {
    width: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

.hero-spotlight {
    position: absolute;
    width: 180px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(var(--accent-cyan-rgb), 0.25) 0%, transparent 60%);
    filter: blur(40px);
    pointer-events: none;
}

.hero-parallax-viewport img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.9));
    transform: translateZ(20px);
    pointer-events: none;
    transition: transform 0.1s ease-out, opacity 0.25s ease-in-out;
}


/* ============================================================
   C. HIGHLIGHTS GRID
   ============================================================ */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.highlight-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.highlight-icon {
    font-size: 2rem;
}

.highlight-card h3 {
    font-size: 1.35rem;
    color: var(--text-white);
    font-weight: 600;
}

.highlight-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================================
   D. CLOSER LOOK (INTERACTIVE TABS)
   ============================================================ */
.closer-look-tabs {
    width: 100%;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
}

.tab-btn.active {
    background: var(--accent-cyan);
    color: #000000;
    border-color: var(--accent-cyan);
    font-weight: 600;
    box-shadow: 0 0 15px rgba(var(--accent-cyan-rgb), 0.3);
}

.tab-display {
    padding: 3rem;
    min-height: 480px;
    position: relative;
}

.tab-pane {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.tab-pane.active {
    display: grid;
    animation: tabFadeIn 0.6s ease-out;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-text-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tab-text-side h3 {
    font-size: 2.25rem;
    color: var(--text-white);
}

.tab-text-side p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.05rem;
}

.spec-bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.spec-bullet-list li {
    font-size: 0.9rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spec-bullet-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-cyan);
    display: block;
}

.tab-visual-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab-visual-side img {
    max-width: 85%;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.7));
    border-radius: var(--radius-md);
}

/* ============================================================
   E. STORYTELLING (CAMPAIGN SECTIONS)
   ============================================================ */
.story-campaign {
    background-color: var(--bg-dark);
}

.story-block {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-text h2 {
    font-size: clamp(2.25rem, 4vw, 4rem);
    color: var(--text-white);
}

.story-text h2 span {
    color: var(--text-secondary);
}

.story-text p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.6;
}

.story-media {
    display: flex;
    justify-content: center;
}

.story-image-wrap {
    width: 100%;
    max-width: 440px;
    position: relative;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.01) 0%, transparent 70%);
}

.story-image-wrap img {
    width: 100%;
    border-radius: var(--radius-md);
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.8));
}

.story-block.alternate .story-grid {
    direction: rtl;
}

.story-block.alternate .story-text {
    direction: ltr;
}

.story-block.alternate .story-media {
    direction: ltr;
}

/* ============================================================
   F. LIFESTYLE EDITORIAL GRID
   ============================================================ */
.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.lifestyle-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.lifestyle-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #08090c;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.lifestyle-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    opacity: 0.95;
    transition: opacity 0.4s ease;
}

.lifestyle-overlay h4 {
    font-size: 1.6rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.lifestyle-overlay p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.lifestyle-card:hover img {
    transform: scale(1.05);
}

/* ============================================================
   G. APP EXPERIENCE SECTION
   ============================================================ */
.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.app-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.app-text h2 {
    font-size: clamp(2.25rem, 4vw, 4rem);
    color: var(--text-white);
}

.app-text h2 span {
    color: var(--text-secondary);
}

.app-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.app-dashboard-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-wrap {
    width: 100%;
    max-width: 440px;
    border: 1px solid rgba(var(--accent-cyan-rgb), 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), var(--shadow-cyan);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
    animation: pulseGrad 2s infinite;
}

@keyframes pulseGrad {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.6;
    }
}

.dashboard-header h4 {
    font-size: 1rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dashboard-metrics {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.metric-circle-box {
    position: relative;
    width: 120px;
    height: 120px;
}

.progress-ring-fill {
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 0.5s ease-out;
}

.progress-value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.progress-value .number {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
}

.progress-value .pct {
    font-size: 0.9rem;
    color: var(--accent-cyan);
    margin-left: 2px;
    font-weight: 600;
}

.metric-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.stat-row {
    display: flex;
    flex-direction: column;
    border-left: 2px solid rgba(255, 255, 255, 0.06);
    padding-left: 0.75rem;
}

.stat-row .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

.stat-row .val {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 500;
}

.dashboard-chart {
    display: flex;
    align-items: flex-end;
    height: 80px;
    gap: 10px;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.chart-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: var(--transition-fast);
}

.chart-bar.active {
    background: linear-gradient(to top, var(--accent-blue), var(--accent-cyan));
    box-shadow: 0 0 10px rgba(var(--accent-cyan-rgb), 0.2);
}

/* ============================================================
   H. PERFORMANCE ADVANTAGE SECTION
   ============================================================ */
.performance-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.perf-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    align-items: center;
}

.perf-num {
    font-family: var(--font-title);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 800;
}

.perf-card h4 {
    font-size: 1.25rem;
    color: var(--text-white);
    font-weight: 600;
}

.perf-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================================
   I. COMPARATIVE MATRIX (TABLE)
   ============================================================ */
.compare-table-container {
    width: 100%;
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background-color: var(--bg-darker);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 650px;
}

.compare-table th,
.compare-table td {
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.9rem;
}

.compare-table th {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.01);
}

.compare-table td {
    color: var(--text-secondary);
}

.compare-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.01);
}

.compare-table td.highlight-col,
.compare-table th.highlight-col {
    background-color: rgba(0, 229, 255, 0.02);
    color: var(--text-white);
    font-weight: 500;
}

.compare-table td.highlight-col {
    color: var(--accent-cyan);
    border-left: 1px solid rgba(0, 229, 255, 0.08);
    border-right: 1px solid rgba(0, 229, 255, 0.08);
}

/* ============================================================
   J. SPECIFICATIONS SECTION
   ============================================================ */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.spec-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
}

.spec-card h4 {
    font-size: 1.2rem;
    color: var(--text-white);
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.75rem;
}

.spec-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.spec-card ul li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    position: relative;
    padding-left: 1rem;
}

.spec-card ul li::before {
    content: '•';
    color: var(--accent-cyan);
    position: absolute;
    left: 0;
    top: 0;
}

/* ============================================================
   K. FAQ SECTION (ACCORDIONS)
   ============================================================ */
.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 1rem;
}

.faq-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.15rem;
    font-family: var(--font-sans);
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    padding: 1rem 0;
    transition: var(--transition-fast);
}

.faq-header:hover {
    color: var(--accent-cyan);
}

.faq-icon {
    font-size: 1.35rem;
    font-weight: 300;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-accordion-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-cyan);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
}

.faq-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-accordion-item.active .faq-body {
    max-height: 120px;
    margin-top: 0.5rem;
}

/* ============================================================
   L. FINAL CTA WAITLIST SECTION
   ============================================================ */
.final-cta-wrap {
    background: radial-gradient(circle at 50% 50%, #060914 0%, #000000 70%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 6rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-spotlight-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(var(--accent-cyan-rgb), 0.12) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-content {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-cta-wrap h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--text-white);
    margin-bottom: 1rem;
}

.final-cta-wrap p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.waitlist-form {
    display: flex;
    width: 100%;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: 0.35rem;
    gap: 0.5rem;
    transition: var(--transition-fast);
    margin-bottom: 2.5rem;
}

.waitlist-form:focus-within {
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.04);
}

.waitlist-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    color: var(--text-white);
    font-family: var(--font-sans);
}

.waitlist-input::placeholder {
    color: var(--text-muted);
}

.form-message {
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: -1rem;
    margin-bottom: 2rem;
    display: none;
}

.form-message.success-msg {
    display: block;
    color: var(--accent-cyan);
}

.form-message.error-msg {
    display: block;
    color: #ff3b30;
}

.cta-trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ============================================================
   M. FOOTER
   ============================================================ */
.apple-footer {
    background-color: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5rem 1.5rem 3rem 1.5rem;
    color: var(--text-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 3rem;
    margin-bottom: 2rem;
}

.brand-col p {
    font-size: 0.9rem;
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul a {
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-col ul a:hover {
    color: var(--text-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    background: var(--text-white);
    color: #000000;
    transform: translateY(-2px);
}

/* ============================================================
   COMPONENTS & BUTTONS
   ============================================================ */
.btn-apple-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-full);
    background: var(--accent-cyan);
    color: #000000;
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    white-space: nowrap;
}

.btn-apple-primary:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.btn-apple-large {
    padding: 0.9rem 2.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    background: #ffffff;
    color: #000000;
}

.btn-apple-large:hover {
    background: #e8e8ed;
}

.btn-apple-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-cyan);
    font-size: 1.15rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.btn-apple-link:hover {
    text-decoration: underline;
}

.btn-apple-link::after {
    content: '→';
    transition: transform 0.2s ease;
}

.btn-apple-link:hover::after {
    transform: translateX(4px);
}

.apple-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.apple-badge.cyan {
    background: rgba(0, 229, 255, 0.06);
    border-color: rgba(0, 229, 255, 0.18);
    color: var(--accent-cyan);
}

.apple-badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--accent-cyan);
    box-shadow: 0 0 8px var(--accent-cyan);
}

/* ============================================================
   RESPONSIVENESS (MEDIA QUERIES)
   ============================================================ */

/* Tablet Landscape / Desktop Bounds */
@media (max-width: 1023px) {
    .global-nav-links {
        display: none;
        position: fixed;
        top: 48px;
        left: 0;
        width: 100vw;
        height: calc(100vh - 48px);
        background: #000000;
        flex-direction: column;
        padding: 3rem 2.5rem;
        gap: 2.5rem;
        z-index: 99;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-smooth);
    }

    .global-nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .global-nav-links a {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-white);
    }

    .btn-nav-cta {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tab-pane {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .tab-display {
        padding: 2rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-block.alternate .story-grid {
        direction: ltr;
    }

    .app-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }

    .app-text {
        align-items: center;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet Portrait Bounds */
@media (max-width: 767px) {
    .local-links {
        display: none;
    }

    .lifestyle-grid {
        grid-template-columns: 1fr;
    }

    .performance-metrics-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }
}

/* Mobile Devices */
@media (max-width: 479px) {
    .section-padding {
        padding: 4rem 1rem;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-ctas .btn-apple-primary {
        width: 100%;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .tab-buttons {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .tab-btn {
        text-align: center;
        width: 100%;
    }

    .waitlist-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
    }

    .waitlist-input {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-full);
        margin-bottom: 0.75rem;
        width: 100%;
        text-align: center;
    }

    .waitlist-form button {
        width: 100%;
    }

    .final-cta-wrap {
        padding: 4rem 2rem;
    }
}

/* ============================================================
   REAL-WORLD GALLERY (BOTTLE IN ACTION)
   ============================================================ */
.real-gallery-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.real-side-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.real-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--bg-darker);
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    transition: var(--transition-smooth);
}

.real-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.real-card.large-card {
    aspect-ratio: 4/3;
}

.real-card.side-card {
    aspect-ratio: 16/10;
}

.real-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.15) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 2.25rem;
    opacity: 0.95;
    transition: opacity 0.4s ease;
}

.real-overlay h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
}

.real-overlay p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.45;
    max-width: 90%;
}

.real-card:hover img {
    transform: scale(1.04);
}

@media (max-width: 1023px) {
    .real-gallery-grid {
        grid-template-columns: 1fr;
    }

    .real-card.large-card {
        aspect-ratio: 4/3;
    }

    .real-card.side-card {
        aspect-ratio: 4/3;
    }
}

/* ============================================================
   INTERACTIVE 3D CINEMA SHOWCASE (REDESIGNED: REAL-TIME CSS 3D BOTTLE)
   ============================================================ */
.hero-3d-cinema-container {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 3rem auto 0 auto;
    z-index: 10;
    perspective: 1200px;
    --glow-color: var(--accent-cyan);
    --glow-color-rgb: var(--accent-cyan-rgb);
    transition: --glow-color 0.4s ease, --glow-color-rgb 0.4s ease;
}

/* Dynamic glow color modifiers */
.hero-3d-cinema-container[data-theme-color="blue"] {
    --glow-color: var(--accent-blue);
    --glow-color-rgb: var(--accent-blue-rgb);
}

.hero-3d-cinema-container[data-theme-color="purple"] {
    --glow-color: var(--accent-purple);
    --glow-color-rgb: 138, 43, 226;
}

.hero-3d-cinema-container[data-theme-color="magenta"] {
    --glow-color: #ff007f;
    --glow-color-rgb: 255, 0, 127;
}

.cinema-spotlight {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--glow-color-rgb), 0.15) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(40px);
    z-index: 1;
    transition: background 0.8s ease;
}

.laser-scanner {
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(var(--glow-color-rgb), 0.8), transparent);
    box-shadow: 0 0 10px rgba(var(--glow-color-rgb), 0.6);
    z-index: 30;
    pointer-events: none;
    opacity: 0;
    transform: translateY(180px);
}

.laser-scanner.active {
    animation: laser-scan 4s infinite linear;
}

@keyframes laser-scan {
    0% {
        transform: translateY(80px);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(300px);
        opacity: 0;
    }
}

.cinema-viewport {
    position: relative;
    width: 100%;
    height: 440px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    transform-style: preserve-3d;
    z-index: 5;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: radial-gradient(circle at center, rgba(15, 15, 18, 0.4) 0%, rgba(5, 5, 5, 0.8) 100%);
    backdrop-filter: blur(5px);
    overflow: hidden;
    user-select: none;
    -webkit-user-drag: none;
}

.cinema-viewport.grab-cursor {
    cursor: grab;
}

.cinema-viewport.grabbing-cursor {
    cursor: grabbing;
}

.frames-stack {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.cinema-frame {
    position: absolute;
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    opacity: 0;
    pointer-events: none;
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.95));
    transform: translateZ(20px) scale(0.95);
    transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cinema-frame.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateZ(30px) scale(1);
}

/* ============================================================
   HIGH-FIDELITY BOTTLE RENDERING & INTERACTION WIDGETS
   ============================================================ */
.floating-bottle-render {
    position: relative;
    width: 150px;
    height: auto;
    margin: 0 auto;
    z-index: 10;
    transform-style: preserve-3d;
    animation: float-bottle 4s ease-in-out infinite;
    transition: transform 0.1s ease-out;
}

@keyframes float-bottle {
    0% {
        transform: translateY(0px) rotateY(0deg);
    }

    50% {
        transform: translateY(-12px) rotateY(2deg);
    }

    100% {
        transform: translateY(0px) rotateY(0deg);
    }
}

.bottle-svg-model {
    width: 100%;
    height: auto;
    display: block;
}

.bottle-svg-model.mini {
    width: 60px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.6));
}

/* Floating Status Widgets in Hero Viewport */
.floating-widget {
    position: absolute;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    background: rgba(18, 22, 33, 0.75);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 15;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.widget-left {
    top: 25%;
    left: 8%;
    transform: translateZ(40px);
}

.widget-right {
    top: 42%;
    right: 8%;
    transform: translateZ(60px);
}

.widget-bottom {
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%) translateZ(50px);
    gap: 8px;
}

.widget-icon {
    font-size: 1.2rem;
}

.widget-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 8px var(--accent-green);
    animation: pulse-green-anim 1.5s infinite;
}

.widget-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.widget-lbl {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.widget-val {
    font-size: 0.8rem;
    color: var(--text-white);
    font-weight: 700;
}

/* Hover shifts for widgets */
.cinema-viewport:hover .widget-left {
    transform: translateZ(70px) translateX(-5px);
}

.cinema-viewport:hover .widget-right {
    transform: translateZ(90px) translateX(5px);
}

.cinema-viewport:hover .widget-bottom {
    transform: translateX(-50%) translateZ(80px) translateY(5px);
}

/* Tech hotspots adjustments */
.tech-hotspot {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--glow-color);
    cursor: pointer;
    z-index: 35;
    box-shadow: 0 0 10px var(--glow-color);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hotspot-pulse {
    position: absolute;
    inset: -6px;
    border: 1.5px solid var(--glow-color);
    border-radius: 50%;
    animation: hotspot-pulse-anim 1.8s infinite linear;
}

@keyframes hotspot-pulse-anim {
    0% {
        transform: scale(0.8);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.hotspot-card {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 220px;
    padding: 0.85rem 1rem;
    background: rgba(10, 10, 12, 0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(var(--glow-color-rgb), 0.1);
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tech-hotspot:hover .hotspot-card {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* ============================================================
   HUD DIAGNOSTICS & CONTROLS DECK
   ============================================================ */
.hud-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 6;
    font-family: monospace;
    font-size: 0.68rem;
}

.hud-corner {
    position: absolute;
    display: flex;
    flex-direction: column;
}

.hud-corner.top-left {
    top: 1.5rem;
    left: 1.5rem;
    align-items: flex-start;
    text-align: left;
}

.hud-corner.top-right {
    top: 1.5rem;
    right: 1.5rem;
    align-items: flex-end;
    text-align: right;
}

.hud-label {
    color: var(--glow-color);
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
    transition: color 0.4s ease;
}

.hud-value {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.hud-bar-container {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-top: 2px;
}

.hud-bar {
    height: 100%;
    background: var(--glow-color);
    transition: background 0.4s ease;
}

.hud-bottom-status {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.3);
}

.scan-status {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Control deck panel */
.cinema-control-deck {
    padding: 1.75rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.control-row-main {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

.btn-cinema {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-full);
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-cinema:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-cinema.active {
    background: linear-gradient(135deg, var(--glow-color) 0%, var(--accent-blue) 100%);
    color: #000;
    font-weight: 700;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(var(--glow-color-rgb), 0.25);
}

.scrubber-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.scrubber-container label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--glow-color);
    letter-spacing: 0.06em;
    transition: color 0.4s ease;
}

#cinema-dial {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    outline: none;
    cursor: pointer;
}

#cinema-dial::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--glow-color);
    box-shadow: 0 0 10px rgba(var(--glow-color-rgb), 0.5);
    cursor: pointer;
    border: none;
    transition: background-color 0.4s ease;
}

/* Secondary controls options */
.control-row-secondary {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    text-align: left;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.group-title {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.btn-group {
    display: flex;
    gap: 6px;
}

.btn-preset {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.45rem 0.8rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-preset:hover {
    background: rgba(255, 255, 255, 0.06);
}

.btn-preset.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.2);
}

.color-options-wrap {
    display: flex;
    gap: 8px;
    align-items: center;
    height: 24px;
}

.color-picker-btn {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}

.color-picker-btn:hover {
    transform: scale(1.15);
}

.color-picker-btn.active {
    border-color: #ffffff;
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(var(--glow-color-rgb), 0.4);
}

/* ============================================================
   ABSTRACT ENVIROMENTS GALLERY STYLE
   ============================================================ */
.abstract-scene {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 260px;
    overflow: hidden;
    background-color: #050608;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 1. Urban Slate Pedestal */
.abstract-scene.urban {
    background: radial-gradient(circle at 50% 30%, #151a24 0%, #050608 100%);
}

.scene-grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.pedestal-spotlight {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 220px;
    background: linear-gradient(to bottom, rgba(0, 229, 255, 0.12) 0%, transparent 80%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
    pointer-events: none;
}

.pedestal-block {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 40px;
    background: linear-gradient(135deg, #181920 0%, #0d0e12 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
}

.scene-bottle-wrapper {
    position: absolute;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.floating-particle-box {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.p-dot {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 6px var(--accent-cyan);
    opacity: 0.6;
}

.p-dot:nth-child(1) {
    top: 30%;
    left: 30%;
    animation: float-slow 4s infinite ease-in-out;
}

.p-dot:nth-child(2) {
    top: 50%;
    left: 70%;
    animation: float-slow 5s infinite ease-in-out;
}

.p-dot:nth-child(3) {
    top: 70%;
    left: 40%;
    animation: float-slow 6s infinite ease-in-out;
}

@keyframes float-slow {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-15px) scale(1.2);
        opacity: 0.8;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
}

/* 2. Alpine vectors */
.abstract-scene.alpine {
    background: radial-gradient(circle at 50% 50%, #0d1e2e 0%, #050608 100%);
}

.mountain-contour {
    position: absolute;
    bottom: 0;
    width: 120%;
    height: 100px;
    background: linear-gradient(to top, #0f1822 0%, transparent 100%);
    clip-path: polygon(0% 100%, 25% 40%, 45% 65%, 70% 30%, 100% 100%);
    border-top: 1.5px solid rgba(0, 229, 255, 0.15);
}

.snowflake-generator .snow {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(0.5px);
}

.snowflake-generator .snow:nth-child(1) {
    top: 20%;
    left: 20%;
    animation: fall-drift 6s infinite linear;
}

.snowflake-generator .snow:nth-child(2) {
    top: 40%;
    left: 80%;
    animation: fall-drift 8s infinite linear;
}

@keyframes fall-drift {
    0% {
        transform: translateY(-30px) translateX(0);
        opacity: 0;
    }

    20% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(180px) translateX(20px);
        opacity: 0;
    }
}

/* 3. Gym grids */
.abstract-scene.gym {
    background: radial-gradient(circle at 50% 50%, #1a0f24 0%, #050608 100%);
}

.gym-matrix-grid {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255, 0, 127, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 0, 127, 0.015) 1px, transparent 1px);
    background-size: 20px 20px;
    transform: perspective(300px) rotateX(60deg);
    transform-origin: bottom;
    bottom: 0;
    height: 120px;
}

.telemetry-bar-chart {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 60px;
}

.t-bar {
    width: 6px;
    background: #ff007f;
    box-shadow: 0 0 10px #ff007f;
    border-radius: var(--radius-full) var(--radius-full) 0 0;
}

/* ============================================================
   HIGH-FIDELITY HIGHLIGHT ICONS & BLUEPRINTS
   ============================================================ */
.icon-svg-high {
    width: 44px;
    height: 44px;
    display: block;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.blueprint-svg {
    display: block;
    width: 180px;
    height: 180px;
    margin: 0 auto;
}

.svg-pulse-ring {
    transform-origin: 170px 40px;
    animation: pulse-ring 2s infinite linear;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.6);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ============================================================
   LIFESTYLE IMAGES
   ============================================================ */
.lifestyle-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    background-color: #08090c;
}

.lifestyle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.lifestyle-card:hover .lifestyle-img {
    transform: scale(1.05);
}

/* ============================================================
   APP EXPERIENCE 3D FLOATING LAYERS
   ============================================================ */
.app-3d-layers-viewport {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 440px;
    margin: 0 auto;
    perspective: 1500px;
    transform-style: preserve-3d;
}

.app-layer {
    position: absolute;
    border-radius: var(--radius-md);
    border: 1px solid var(--card-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.8s ease;
    transform-style: preserve-3d;
    background: rgba(18, 22, 33, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

/* Core Layers transforms & positioning */
.layer-phone-frame {
    top: 20px;
    left: 80px;
    width: 220px;
    height: 400px;
    background: #06070a;
    border: 8px solid #1a1b24;
    border-radius: 36px;
    z-index: 10;
    transform: rotateY(-22deg) rotateX(16deg) translateZ(0);
}

.phone-screen-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 16px;
    background: #1a1b24;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.phone-screen-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-cyan);
}

/* Metric ring chart layer floats high */
.layer-metrics-circle {
    top: 60px;
    left: 30px;
    width: 160px;
    height: 160px;
    padding: 1.25rem;
    z-index: 30;
    transform: rotateY(-22deg) rotateX(16deg) translateZ(90px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.layer-title {
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 10px;
}

/* Details stats logs floats highest */
.layer-stats-details {
    top: 230px;
    left: 130px;
    width: 170px;
    height: 110px;
    padding: 1.15rem;
    z-index: 40;
    transform: rotateY(-22deg) rotateX(16deg) translateZ(140px);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.layer-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 4px;
}

.layer-stat-row .l-lbl {
    font-size: 0.65rem;
    color: var(--text-secondary);
}

.layer-stat-row .l-val {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-white);
}

/* Bar charts details */
.layer-bar-charts {
    top: 250px;
    left: 20px;
    width: 150px;
    height: 100px;
    padding: 1rem;
    z-index: 20;
    transform: rotateY(-22deg) rotateX(16deg) translateZ(40px);
}

.layer-chart-label {
    font-size: 0.52rem;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: left;
}

/* Viewport Hover triggers 3D Parallax Shifts */
.app-3d-layers-viewport:hover .layer-phone-frame {
    transform: rotateY(-12deg) rotateX(10deg) translateZ(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
}

.app-3d-layers-viewport:hover .layer-metrics-circle {
    transform: rotateY(-12deg) rotateX(10deg) translateZ(150px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.app-3d-layers-viewport:hover .layer-stats-details {
    transform: rotateY(-12deg) rotateX(10deg) translateZ(230px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9);
}

.app-3d-layers-viewport:hover .layer-bar-charts {
    transform: rotateY(-12deg) rotateX(10deg) translateZ(90px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

/* ============================================================
   COMPARISON SECTION & MARKERS
   ============================================================ */
.compare-icon {
    font-size: 0.95rem;
    font-weight: 700;
    margin-right: 6px;
    display: inline-block;
}

.compare-icon.check {
    color: var(--accent-green);
}

.compare-icon.cross {
    color: var(--accent-magenta);
}

/* ============================================================
   FINAL CTA: CHARGING BASE SCENE
   ============================================================ */
.cta-visual-charging-base {
    position: relative;
    width: 280px;
    height: 300px;
    margin: 0 auto 3rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.base-spotlight {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.12) 0%, transparent 65%);
    filter: blur(25px);
    pointer-events: none;
    z-index: 1;
}

.charging-base-plate {
    position: absolute;
    bottom: 12%;
    width: 150px;
    height: 30px;
    background: linear-gradient(135deg, #1b1c20 0%, #0c0d10 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-full);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
    transform-style: preserve-3d;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.charging-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 229, 255, 0.22);
    pointer-events: none;
    z-index: 2;
}

.charging-pulse-ring.ring-1 {
    animation: charging-glow-ring 2.5s infinite linear;
}

.charging-pulse-ring.ring-2 {
    animation: charging-glow-ring 2.5s infinite linear;
    animation-delay: 1.25s;
}

@keyframes charging-glow-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.85);
        opacity: 0;
    }

    20% {
        opacity: 0.8;
    }

    80% {
        opacity: 0.15;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.18);
        opacity: 0;
    }
}

.charging-bottle-outline {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 75px;
    height: 220px;
    z-index: 10;
    display: flex;
    align-items: flex-end;
}

.charging-bottle-illustrator {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.7));
}

/* Responsive adjustments for 3D Cinema Showcase & App viewport */
@media (max-width: 768px) {
    .cinema-viewport {
        height: 440px;
    }

    .hud-overlay {
        padding: 1rem;
        font-size: 0.62rem;
    }

    .hud-corner.top-left,
    .hud-corner.top-right {
        top: 1rem;
        left: 1rem;
    }

    .hud-corner.top-right {
        right: 1rem;
    }

    .hud-bottom-status {
        bottom: 1rem;
        left: 1rem;
    }

    .control-row-secondary {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .btn-group {
        width: 100%;
        justify-content: space-around;
    }

    .tech-hotspot {
        width: 16px;
        height: 16px;
    }

    .hotspot-card {
        width: 190px;
        padding: 0.65rem 0.8rem;
        bottom: 24px;
    }

    .app-3d-layers-viewport {
        height: 380px;
        max-width: 300px;
    }

    .layer-phone-frame {
        left: 40px;
        width: 180px;
        height: 340px;
    }

    .layer-metrics-circle {
        left: 0;
        top: 40px;
        width: 130px;
        height: 130px;
    }

    .layer-stats-details {
        left: 80px;
        top: 190px;
        width: 150px;
        height: 100px;
    }

    .layer-bar-charts {
        left: 0px;
        top: 200px;
        width: 130px;
        height: 90px;
    }

    .floating-widget {
        padding: 0.5rem 0.75rem;
        gap: 8px;
    }

    .widget-left {
        left: 4%;
    }

    .widget-right {
        right: 4%;
    }

    .widget-val {
        font-size: 0.72rem;
    }

    .floating-bottle-render {
        width: 130px;
    }
}

/* ============================================================
   O. PREMIUM CINEMATIC LAUNCH HERO  — all new styles
   ============================================================ */

.video-launch-hero {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 600px;
    background: radial-gradient(ellipse 80% 60% at 50% 35%, #061018 0%, #030407 55%, #020305 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    user-select: none;
}

/* Canvas (particles + spotlight) */
#hero-launch-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Central stage that holds bottle + cards + text */
.launch-stage {
    position: relative;
    width: 100%;
    max-width: 1280px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    padding: 0 4%;
}

/* ─── BOTTLE WRAPPER ─── */
.launch-bottle-wrap {
    position: absolute;
    width: clamp(140px, 18vw, 260px);
    aspect-ratio: 220/580;
    display: flex;
    align-items: center;
    justify-content: center;
    /* initial hidden state */
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 40px rgba(0, 229, 255, 0.12));
    transition: opacity 1.2s cubic-bezier(.16, 1, .3, 1),
        transform 1.2s cubic-bezier(.16, 1, .3, 1);
}

/* bottle active */
.launch-bottle-wrap.lb-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Outline SVG and solid SVG both fill wrapper */
.lbottle-outline,
.lbottle-solid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Outline starts hidden */
.lbottle-outline {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.lbottle-outline.show {
    opacity: 1;
}

/* Outline path draw animation */
.outline-draw {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    transition: stroke-dashoffset 2.6s cubic-bezier(.4, 0, .2, 1);
}

.outline-draw.outline-delay-1 {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    transition-delay: 0.3s;
}

.lbottle-outline.draw .outline-draw {
    stroke-dashoffset: 0;
}

/* Solid starts hidden — fades on top of outline */
.lbottle-solid {
    opacity: 0;
    transition: opacity 1.8s cubic-bezier(.4, 0, .2, 1);
}

.lbottle-solid.show {
    opacity: 1;
}

/* Idle float animation once reveal completes */
@keyframes lb-float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    40% {
        transform: translateY(-12px) rotate(0.8deg);
    }

    100% {
        transform: translateY(6px) rotate(-0.5deg);
    }
}

.launch-bottle-wrap.lb-float {
    animation: lb-float 4.2s ease-in-out infinite alternate;
}

/* ─── FLOATING CARDS ─── */
.launch-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.lcard {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1rem;
    width: clamp(160px, 20vw, 220px);
    background: rgba(12, 16, 26, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateY(16px) scale(0.96);
    transition: opacity 0.9s cubic-bezier(.16, 1, .3, 1),
        transform 0.9s cubic-bezier(.16, 1, .3, 1);
}

.lcard.lc-show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Card positions — desktop */
.lcard-tl {
    top: 14%;
    left: 6%;
}

.lcard-tr {
    top: 24%;
    right: 6%;
}

.lcard-bl {
    bottom: 26%;
    left: 6%;
}

.lcard-br {
    bottom: 14%;
    right: 6%;
}

.lcard-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    line-height: 1;
}

.lcard-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    overflow: hidden;
}

.lcard-label {
    font-size: 0.62rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    white-space: nowrap;
}

.lcard-value {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-white);
    white-space: nowrap;
}

.lcard-bar {
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.08);
    margin-top: 4px;
    overflow: hidden;
}

.lcard-fill {
    display: block;
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, #00b4d8, #00e5ff);
    box-shadow: 0 0 6px rgba(0, 229, 255, 0.5);
    transition: width 1.5s cubic-bezier(.4, 0, .2, 1);
}

/* ─── TEXT REVEAL BLOCK ─── */
.launch-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    max-width: 480px;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1.4s cubic-bezier(.16, 1, .3, 1),
        transform 1.4s cubic-bezier(.16, 1, .3, 1);
    z-index: 10;
    pointer-events: none;
}

.launch-text.lt-show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.launch-badge {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
    background: rgba(0, 229, 255, 0.07);
    border: 1px solid rgba(0, 229, 255, 0.22);
    color: #00e5ff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.launch-title {
    font-family: var(--font-title);
    font-size: clamp(3.2rem, 7vw, 7rem);
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.03em;
    line-height: 1;
    margin: 0;
}

.launch-sub {
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.launch-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 0.5rem;
}

.launch-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
    font-size: 0.92rem;
    font-weight: 600;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
    white-space: nowrap;
}

.launch-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ─── DESKTOP: bottle left, text right ─── */
@media (min-width: 1024px) {
    .launch-bottle-wrap {
        left: 50%;
        transform: translate(-50%, 30px) scale(0.9);
        transition: opacity 1.2s cubic-bezier(.16, 1, .3, 1),
            transform 1.2s cubic-bezier(.16, 1, .3, 1);
    }

    .launch-bottle-wrap.lb-visible {
        transform: translate(-50%, 0) scale(1);
    }

    .launch-bottle-wrap.lb-float {
        animation: lb-float-desktop 4.2s ease-in-out infinite alternate;
    }

    @keyframes lb-float-desktop {
        0% {
            transform: translate(-50%, 0) rotate(0deg);
        }

        40% {
            transform: translate(-50%, -12px) rotate(0.8deg);
        }

        100% {
            transform: translate(-50%, 6px) rotate(-0.5deg);
        }
    }

    /* phase-shifted slides bottle left, text appears right */
    .launch-bottle-wrap.lb-shifted {
        transform: translate(calc(-50% - 200px), 0) scale(0.88) !important;
        animation: lb-float-shifted 4.2s ease-in-out infinite alternate !important;
    }

    @keyframes lb-float-shifted {
        0% {
            transform: translate(calc(-50% - 200px), 0) rotate(0deg);
        }

        40% {
            transform: translate(calc(-50% - 200px), -10px) rotate(0.8deg);
        }

        100% {
            transform: translate(calc(-50% - 200px), 6px) rotate(-0.5deg);
        }
    }

    .launch-text {
        right: 6%;
        top: 50%;
        transform: translate(40px, -50%);
        align-items: flex-start;
        text-align: left;
    }

    .launch-text.lt-show {
        transform: translate(0, -50%);
    }
}

/* ─── TABLET ─── */
@media (min-width: 600px) and (max-width: 1023px) {
    .launch-bottle-wrap {
        top: 8%;
        left: 50%;
        transform: translate(-50%, 30px) scale(0.9);
    }

    .launch-bottle-wrap.lb-visible {
        transform: translate(-50%, 0) scale(1);
    }

    .launch-bottle-wrap.lb-shifted {
        transform: translate(-50%, 0) scale(0.68) !important;
        top: 2%;
        animation: lb-float-mobile 4.2s ease-in-out infinite alternate !important;
    }

    .launch-text {
        bottom: 6%;
        left: 50%;
        transform: translate(-50%, 20px);
        align-items: center;
        text-align: center;
        width: 90%;
        max-width: 480px;
    }

    .launch-text.lt-show {
        transform: translate(-50%, 0);
    }

    .lcard-tl {
        top: 10%;
        left: 2%;
    }

    .lcard-tr {
        top: 24%;
        right: 2%;
    }

    .lcard-bl {
        bottom: 32%;
        left: 2%;
    }

    .lcard-br {
        bottom: 20%;
        right: 2%;
    }

    .lcard {
        width: 160px;
        padding: 0.6rem 0.75rem;
    }
}

/* ─── MOBILE ─── */
@media (max-width: 599px) {
    .launch-bottle-wrap {
        top: 6%;
        left: 50%;
        transform: translate(-50%, 30px) scale(0.9);
        width: clamp(110px, 32vw, 160px);
    }

    .launch-bottle-wrap.lb-visible {
        transform: translate(-50%, 0) scale(1);
    }

    .launch-bottle-wrap.lb-shifted {
        transform: translate(-50%, 0) scale(0.58) !important;
        top: 0%;
        animation: lb-float-mobile 4.2s ease-in-out infinite alternate !important;
    }

    @keyframes lb-float-mobile {
        0% {
            transform: translate(-50%, 0) rotate(0deg) scale(0.58);
        }

        50% {
            transform: translate(-50%, -8px) rotate(0.5deg) scale(0.58);
        }

        100% {
            transform: translate(-50%, 4px) rotate(-0.4deg) scale(0.58);
        }
    }

    .launch-text {
        bottom: 12%;
        left: 50%;
        transform: translate(-50%, 20px);
        align-items: center;
        text-align: center;
        width: 92%;
    }

    .launch-text.lt-show {
        transform: translate(-50%, 0);
    }

    .lcard-tl {
        top: 10%;
        left: 1%;
        width: 140px;
        padding: 0.5rem 0.6rem;
    }

    .lcard-tr {
        top: 20%;
        right: 1%;
        width: 140px;
        padding: 0.5rem 0.6rem;
    }

    .lcard-bl {
        bottom: 36%;
        left: 1%;
        width: 140px;
        padding: 0.5rem 0.6rem;
    }

    .lcard-br {
        bottom: 24%;
        right: 1%;
        width: 140px;
        padding: 0.5rem 0.6rem;
    }

    .lcard-icon {
        font-size: 1.1rem;
    }

    .lcard-value {
        font-size: 0.7rem;
    }

    .launch-ctas {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .launch-ctas .btn-apple-primary,
    .launch-ctas .launch-btn-ghost {
        width: 80%;
        text-align: center;
    }
}

/* ─── SCAN LINE ─── */
.launch-scanline {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.4), transparent);
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.3);
    top: -2px;
    z-index: 20;
    pointer-events: none;
    opacity: 0;
}

.launch-scanline.scan-active {
    animation: scanline-sweep 1.8s ease-in-out 1 forwards;
}

@keyframes scanline-sweep {
    0% {
        top: -2px;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    100% {
        top: 102%;
        opacity: 0;
    }
}

/* ─── CONTROL BAR ─── */
.launch-controls {
    position: absolute;
    bottom: 1.5rem;
    left: 5%;
    right: 5%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 30;
}

.lctrl-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.78rem;
    font-weight: 700;
    font-family: inherit;
    letter-spacing: 0.04em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.4rem 0.5rem;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    flex-shrink: 0;
}

.lctrl-btn:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.lctrl-track {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1px;
    overflow: hidden;
}

.lctrl-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #0080ff, #00e5ff);
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
    border-radius: 1px;
    transition: width 0.12s linear;
}

/* ─── SCROLL HINT ─── */
.launch-scroll-hint {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transition: opacity 1.2s ease;
    z-index: 20;
    pointer-events: none;
}

.launch-scroll-hint.sh-show {
    opacity: 1;
}

.launch-scroll-hint span {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.3);
}

.scroll-dot {
    animation: scroll-dot-anim 1.8s ease-in-out infinite;
}

@keyframes scroll-dot-anim {

    0%,
    100% {
        cy: 9;
        opacity: 1;
    }

    50% {
        cy: 18;
        opacity: 0.3;
    }
}