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

:root {
    --bg-dark: #0a0a1a;
    --bg-card: rgba(255, 255, 255, 0.05);
    --sun-core: #FFD93D;
    --sun-glow: #FF8C00;
    --planet: #4ECDC4;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --nebula-1: rgba(78, 205, 196, 0.03);
    --nebula-2: rgba(255, 140, 0, 0.02);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   COSMIC BACKGROUND - Multi-layer animated starfield
   ═══════════════════════════════════════════════════════════════ */

/* Layer 1: Static distant stars */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(1px 1px at 20px 30px, white, transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 90px 40px, white, transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 230px 80px, white, transparent),
        radial-gradient(1px 1px at 300px 150px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 370px 50px, white, transparent),
        radial-gradient(1px 1px at 450px 180px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 100px 200px, white, transparent),
        radial-gradient(1px 1px at 250px 250px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 420px 100px, white, transparent);
    background-size: 500px 300px;
    opacity: 0.5;
    pointer-events: none;
    z-index: -3;
}

/* Layer 2: Animated twinkling stars */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(2px 2px at 50px 50px, var(--planet), transparent),
        radial-gradient(2px 2px at 150px 150px, var(--sun-core), transparent),
        radial-gradient(2px 2px at 250px 100px, white, transparent),
        radial-gradient(3px 3px at 350px 200px, var(--planet), transparent),
        radial-gradient(2px 2px at 450px 80px, var(--sun-core), transparent),
        radial-gradient(2px 2px at 100px 280px, white, transparent),
        radial-gradient(3px 3px at 200px 350px, var(--planet), transparent),
        radial-gradient(2px 2px at 380px 320px, white, transparent);
    background-size: 500px 400px;
    opacity: 0;
    pointer-events: none;
    z-index: -2;
    animation: starfield-twinkle 4s ease-in-out infinite, starfield-drift 60s linear infinite;
}

@keyframes starfield-twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

@keyframes starfield-drift {
    from { transform: translate(0, 0); }
    to { transform: translate(-250px, -200px); }
}

/* Nebula clouds */
.nebula-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(ellipse 60% 40% at 20% 30%, var(--nebula-1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 80% 70%, var(--nebula-2) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 50% 90%, rgba(138, 43, 226, 0.02) 0%, transparent 50%);
    animation: nebula-pulse 10s ease-in-out infinite alternate;
}

@keyframes nebula-pulse {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.05); }
}

/* ═══════════════════════════════════════════════════════════════
   SHOOTING STARS - CSS-only meteors
   ═══════════════════════════════════════════════════════════════ */

.shooting-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shooting-star {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(to left, white, var(--planet) 30%, transparent);
    border-radius: 2px;
    transform-origin: right center;
}

.shooting-star::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 6px 2px var(--planet), 0 0 12px 4px rgba(78, 205, 196, 0.5);
    right: -2px;
    top: -1px;
}

.shooting-star:nth-child(1) {
    top: -5%;
    left: -5%;
    animation: shoot-1 4s linear infinite backwards;
}

.shooting-star:nth-child(2) {
    top: -10%;
    left: 40%;
    animation: shoot-2 5s linear infinite backwards;
    animation-delay: 2s;
    width: 80px;
}

.shooting-star:nth-child(3) {
    top: -5%;
    left: 15%;
    animation: shoot-1 4.5s linear infinite backwards;
    animation-delay: 3.5s;
    background: linear-gradient(to left, white, var(--sun-core) 30%, transparent);
}

.shooting-star:nth-child(3)::before {
    box-shadow: 0 0 6px 2px var(--sun-core), 0 0 12px 4px rgba(255, 140, 0, 0.5);
}

@keyframes shoot-1 {
    0% {
        opacity: 1;
        transform: translate(0, 0) rotate(35deg);
    }
    100% {
        opacity: 0.6;
        transform: translate(100vw, 70vh) rotate(35deg);
    }
}

@keyframes shoot-2 {
    0% {
        opacity: 1;
        transform: translate(0, 0) rotate(50deg);
    }
    100% {
        opacity: 0.6;
        transform: translate(80vw, 90vh) rotate(50deg);
    }
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header */
header {
    text-align: center;
    padding: 60px 20px 40px;
    animation: header-fade-in 1s ease-out;
}

@keyframes header-fade-in {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    margin-bottom: 20px;
    position: relative;
}

.logo-orbit {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--sun-core);
    text-shadow: 0 0 30px var(--sun-glow), 0 0 60px rgba(255, 140, 0, 0.5);
    animation: logo-glow-sun 3s ease-in-out infinite;
    display: inline-block;
}

.logo-panic {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--planet);
    text-shadow: 0 0 30px var(--planet), 0 0 60px rgba(78, 205, 196, 0.5);
    animation: logo-glow-planet 3s ease-in-out infinite;
    animation-delay: 1.5s;
    display: inline-block;
}

@keyframes logo-glow-sun {
    0%, 100% {
        text-shadow: 0 0 30px var(--sun-glow), 0 0 60px rgba(255, 140, 0, 0.5);
        filter: brightness(1);
    }
    50% {
        text-shadow: 0 0 50px var(--sun-glow), 0 0 100px rgba(255, 140, 0, 0.7), 0 0 150px rgba(255, 217, 61, 0.3);
        filter: brightness(1.1);
    }
}

@keyframes logo-glow-planet {
    0%, 100% {
        text-shadow: 0 0 30px var(--planet), 0 0 60px rgba(78, 205, 196, 0.5);
        filter: brightness(1);
    }
    50% {
        text-shadow: 0 0 50px var(--planet), 0 0 100px rgba(78, 205, 196, 0.7), 0 0 150px rgba(78, 205, 196, 0.3);
        filter: brightness(1.1);
    }
}

.tagline {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 10px;
    animation: tagline-fade 1.2s ease-out;
    animation-delay: 0.5s;
    animation-fill-mode: backwards;
}

@keyframes tagline-fade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation */
nav {
    background: var(--bg-card);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px 20px;
    flex-wrap: wrap;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s, text-shadow 0.3s, transform 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--planet);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--planet);
}

nav a:hover, nav a.active {
    color: var(--planet);
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
}

nav a:hover::after, nav a.active::after {
    transform: scaleX(1);
}

/* Main content */
main {
    padding: 40px 0;
}

h1 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--sun-core);
}

h2 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--planet);
}

h3 {
    font-size: 1.1rem;
    margin: 20px 0 10px;
    color: var(--text-primary);
}

p {
    margin-bottom: 15px;
    color: var(--text-secondary);
}

ul, ol {
    margin: 15px 0 15px 25px;
    color: var(--text-secondary);
}

li {
    margin-bottom: 8px;
}

a {
    color: var(--planet);
}

/* Cards */
.card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.05), transparent);
    transition: left 0.6s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(78, 205, 196, 0.1);
    border-color: rgba(78, 205, 196, 0.3);
}

.card:hover::before {
    left: 100%;
}

/* App Store badge */
.app-store-badge {
    display: inline-block;
    margin-top: 30px;
    position: relative;
    transition: transform 0.4s ease, filter 0.4s ease;
    animation: badge-pulse 2s ease-in-out infinite;
}

.app-store-badge::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: linear-gradient(135deg, var(--planet), var(--sun-core));
    border-radius: 12px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    filter: blur(15px);
}

.app-store-badge:hover {
    transform: scale(1.08) translateY(-3px);
}

.app-store-badge:hover::before {
    opacity: 0.6;
}

.app-store-badge img {
    height: 50px;
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.app-store-badge:hover img {
    filter: brightness(1.15);
}

@keyframes badge-pulse {
    0%, 100% {
        box-shadow: 0 5px 30px rgba(78, 205, 196, 0.2);
    }
    50% {
        box-shadow: 0 5px 40px rgba(78, 205, 196, 0.4);
    }
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: default;
}

.feature::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: radial-gradient(circle at 50% 0%, rgba(78, 205, 196, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--planet);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(78, 205, 196, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature:hover::after {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    transition: transform 0.4s ease, filter 0.4s ease;
    display: inline-block;
}

.feature:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(255, 217, 61, 0.5));
}

.feature h3 {
    margin: 0 0 10px;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature:hover h3 {
    color: var(--planet);
}

.feature p {
    font-size: 0.9rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Staggered entrance animation for features */
.feature:nth-child(1) { animation: feature-enter 0.6s ease-out backwards; animation-delay: 0.1s; }
.feature:nth-child(2) { animation: feature-enter 0.6s ease-out backwards; animation-delay: 0.2s; }
.feature:nth-child(3) { animation: feature-enter 0.6s ease-out backwards; animation-delay: 0.3s; }
.feature:nth-child(4) { animation: feature-enter 0.6s ease-out backwards; animation-delay: 0.4s; }
.feature:nth-child(5) { animation: feature-enter 0.6s ease-out backwards; animation-delay: 0.5s; }
.feature:nth-child(6) { animation: feature-enter 0.6s ease-out backwards; animation-delay: 0.6s; }

@keyframes feature-enter {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Contact form */
.contact-info {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.contact-email {
    font-size: 1.3rem;
    color: var(--planet);
    text-decoration: none;
    display: inline-block;
    margin: 20px 0;
    padding: 15px 30px;
    border: 2px solid var(--planet);
    border-radius: 30px;
    transition: all 0.3s;
}

.contact-email:hover {
    background: var(--planet);
    color: var(--bg-dark);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

footer a {
    color: var(--text-muted);
    margin: 0 10px;
}

footer a:hover {
    color: var(--planet);
}

/* Legal pages */
.legal-content {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
}

.legal-content p, .legal-content li {
    font-size: 0.95rem;
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 30px;
}

/* Accessibility - Focus states */
a:focus-visible,
button:focus-visible,
select:focus-visible {
    outline: 2px solid var(--planet);
    outline-offset: 2px;
}

nav a:focus-visible {
    outline-offset: 4px;
    border-radius: 4px;
}

/* Skip to content link */
.skip-link {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--planet);
    color: var(--bg-dark);
    padding: 10px 20px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    z-index: 1000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
    outline: none;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ═══════════════════════════════════════════════════════════════
   COSMIC DEVICE SHOWCASE - Holographic iPhone Presentation
   ═══════════════════════════════════════════════════════════════ */

.device-showcase {
    padding: 60px 20px 80px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 50% at 50% 50%, rgba(78, 205, 196, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 50% 50%, rgba(255, 217, 61, 0.05) 0%, transparent 50%);
}

.showcase-title {
    text-align: center;
    font-size: 1.6rem;
    color: var(--planet);
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(78, 205, 196, 0.5);
}

/* Cosmos Stage - Container for all elements */
.cosmos-stage {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 580px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ─── Orbital Rings ─── */
.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid transparent;
    pointer-events: none;
}

.orbit-ring-1 {
    width: 320px;
    height: 320px;
    border-color: rgba(78, 205, 196, 0.2);
    animation: orbit-spin 20s linear infinite;
}

.orbit-ring-1::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--planet);
    border-radius: 50%;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px var(--planet), 0 0 30px var(--planet);
}

.orbit-ring-2 {
    width: 400px;
    height: 400px;
    border-color: rgba(255, 217, 61, 0.15);
    animation: orbit-spin 30s linear infinite reverse;
}

.orbit-ring-2::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--sun-core);
    border-radius: 50%;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 12px var(--sun-core), 0 0 25px var(--sun-glow);
}

.orbit-ring-3 {
    width: 260px;
    height: 260px;
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.1);
    animation: orbit-spin 15s linear infinite;
}

@keyframes orbit-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ─── Cosmic Particles ─── */
.cosmic-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 4s ease-in-out infinite;
}

.particle-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
    box-shadow: 0 0 10px var(--planet);
    background: var(--planet);
}

.particle-2 {
    top: 20%;
    right: 20%;
    animation-delay: 0.8s;
    box-shadow: 0 0 8px var(--sun-core);
    background: var(--sun-core);
}

.particle-3 {
    bottom: 25%;
    left: 10%;
    animation-delay: 1.6s;
    width: 3px;
    height: 3px;
}

.particle-4 {
    bottom: 15%;
    right: 15%;
    animation-delay: 2.4s;
    box-shadow: 0 0 10px var(--planet);
    background: var(--planet);
}

.particle-5 {
    top: 50%;
    left: 5%;
    animation-delay: 3.2s;
    width: 2px;
    height: 2px;
}

@keyframes particle-float {
    0%, 100% {
        opacity: 0;
        transform: translateY(20px) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
}

/* ─── iPhone Float Container ─── */
.iphone-float {
    position: relative;
    animation: device-levitate 4s ease-in-out infinite;
}

@keyframes device-levitate {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ─── iPhone Frame (CSS-only mockup) ─── */
.iphone-frame {
    position: relative;
    width: 220px;
    height: 450px;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 50%, #0d0d0d 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        inset 0 0 0 3px #3a3a3a,
        0 25px 80px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Side buttons simulation */
.iphone-frame::before {
    content: '';
    position: absolute;
    right: -3px;
    top: 100px;
    width: 4px;
    height: 35px;
    background: linear-gradient(180deg, #3a3a3a, #2a2a2a);
    border-radius: 0 2px 2px 0;
}

.iphone-frame::after {
    content: '';
    position: absolute;
    left: -3px;
    top: 80px;
    width: 4px;
    height: 25px;
    background: linear-gradient(180deg, #3a3a3a, #2a2a2a);
    border-radius: 2px 0 0 2px;
    box-shadow: 0 45px 0 0 linear-gradient(180deg, #3a3a3a, #2a2a2a);
}

/* Dynamic Island / Notch */
.iphone-notch {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.iphone-notch::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #1a3a4a 30%, #0a1a2a 70%);
    border-radius: 50%;
    box-shadow: inset 0 0 2px rgba(78, 205, 196, 0.3);
}

/* Screen */
.iphone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.iphone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Home Indicator */
.iphone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

/* ─── Glow Effects ─── */
.device-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(78, 205, 196, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.device-reflection {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(78, 205, 196, 0.15) 0%, transparent 100%);
    filter: blur(20px);
    border-radius: 50%;
    pointer-events: none;
}

/* ─── Caption ─── */
.showcase-caption {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 30px;
    padding: 12px 24px;
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 30px;
    display: inline-block;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    display: table;
}

/* ─── Responsive ─── */
@media (max-width: 500px) {
    .cosmos-stage {
        height: 480px;
    }

    .iphone-frame {
        width: 180px;
        height: 370px;
        border-radius: 32px;
        padding: 10px;
    }

    .iphone-screen {
        border-radius: 24px;
    }

    .iphone-notch {
        width: 70px;
        height: 22px;
        top: 14px;
    }

    .orbit-ring-1 { width: 260px; height: 260px; }
    .orbit-ring-2 { width: 320px; height: 320px; }
    .orbit-ring-3 { width: 210px; height: 210px; }

    .showcase-title {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
}

/* Responsive */
@media (max-width: 600px) {
    .logo-orbit, .logo-panic {
        font-size: 2rem;
    }

    nav ul {
        gap: 15px;
    }

    .container {
        padding: 20px 15px;
    }

    .legal-content {
        padding: 25px;
    }
}
