/* ============================================
   GGIGGL.com - Dopamine Neon Burst Landing
   ============================================ */

/* CSS Custom Properties */
:root {
    --color-primary: #FF2D95;
    --color-secondary: #00E5FF;
    --color-tertiary: #FFD600;
    --color-accent: #FF6B6B;
    --bg-deep: #0D0B2E;
    --bg-soft: #1A1438;
    --surface-float: #2D2456;
    --text-primary: #F5F0FF;
    --text-muted: #9B8FBB;
    --gradient-start: #6B0F6B;
    --gradient-end: #1B0A3C;
    --scroll-hue: 0;
    --scroll-position: 0;

    --font-display: 'Baloo 2', cursive;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-accent: 'Permanent Marker', cursive;

    --spring-ease: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --smooth-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--text-primary);
    background-color: var(--bg-deep);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Noise Overlay */
#noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ============================================
   Floating Orbs
   ============================================ */
#orb-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
    filter: blur(40px);
}

.orb-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 45, 149, 0.4) 0%, transparent 70%);
    top: 10%;
    left: 5%;
    animation: orbFloat1 22s ease-in-out infinite;
}

.orb-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.35) 0%, transparent 70%);
    top: 30%;
    right: 10%;
    animation: orbFloat2 18s ease-in-out infinite;
}

.orb-3 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 214, 0, 0.3) 0%, transparent 70%);
    top: 60%;
    left: 20%;
    animation: orbFloat3 25s ease-in-out infinite;
}

.orb-4 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 45, 149, 0.3) 0%, transparent 70%);
    top: 80%;
    right: 15%;
    animation: orbFloat4 20s ease-in-out infinite;
}

.orb-5 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.4) 0%, transparent 70%);
    top: 15%;
    left: 60%;
    animation: orbFloat5 28s ease-in-out infinite;
}

.orb-6 {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 214, 0, 0.25) 0%, transparent 70%);
    top: 45%;
    right: 30%;
    animation: orbFloat6 23s ease-in-out infinite;
}

.orb-7 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.35) 0%, transparent 70%);
    top: 70%;
    left: 45%;
    animation: orbFloat7 19s ease-in-out infinite;
}

.orb-8 {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.3) 0%, transparent 70%);
    top: 5%;
    right: 40%;
    animation: orbFloat8 26s ease-in-out infinite;
}

.orb-9 {
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgba(255, 45, 149, 0.25) 0%, transparent 70%);
    top: 50%;
    left: 70%;
    animation: orbFloat9 21s ease-in-out infinite;
}

.orb-10 {
    width: 170px;
    height: 170px;
    background: radial-gradient(circle, rgba(255, 214, 0, 0.2) 0%, transparent 70%);
    top: 90%;
    left: 10%;
    animation: orbFloat10 30s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(80px, -60px) scale(1.1); }
    50% { transform: translate(-40px, 50px) scale(0.9); }
    75% { transform: translate(60px, 30px) scale(1.05); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-70px, 40px) scale(1.15); }
    66% { transform: translate(50px, -30px) scale(0.85); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(60px, -80px); }
    50% { transform: translate(-30px, -40px); }
    75% { transform: translate(40px, 20px); }
}

@keyframes orbFloat4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-60px, -50px) scale(1.2); }
}

@keyframes orbFloat5 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-50px, 60px); }
    66% { transform: translate(40px, -40px); }
}

@keyframes orbFloat6 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(70px, 30px) scale(0.9); }
    50% { transform: translate(-50px, -60px) scale(1.1); }
    75% { transform: translate(30px, -20px) scale(1.05); }
}

@keyframes orbFloat7 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(80px, -70px); }
}

@keyframes orbFloat8 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, 50px) scale(1.1); }
    66% { transform: translate(-40px, 20px) scale(0.95); }
}

@keyframes orbFloat9 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-60px, -40px); }
    75% { transform: translate(50px, 30px); }
}

@keyframes orbFloat10 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, -80px) scale(1.15); }
}

/* ============================================
   Navigation - Radial Menu
   ============================================ */
#nav-toggle {
    position: fixed;
    top: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--surface-float);
    border: 1px solid rgba(155, 143, 187, 0.3);
    box-shadow: 0 0 20px rgba(255, 45, 149, 0.15), 0 0 60px rgba(0, 229, 255, 0.08);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s var(--spring-ease), box-shadow 0.4s ease;
}

#nav-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 45, 149, 0.3), 0 0 80px rgba(0, 229, 255, 0.15);
}

#nav-toggle.active {
    transform: rotate(45deg) scale(1.1);
    background: var(--color-primary);
}

.nav-toggle-icon {
    display: block;
    width: 20px;
    height: 20px;
    position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: '';
    position: absolute;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.nav-toggle-icon::before {
    width: 20px;
    height: 2px;
    top: 9px;
    left: 0;
}

.nav-toggle-icon::after {
    width: 2px;
    height: 20px;
    top: 0;
    left: 9px;
}

#radial-nav {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 999;
    pointer-events: none;
}

.nav-item {
    position: absolute;
    top: 12px;
    left: 12px;
    width: auto;
    padding: 10px 20px;
    background: var(--surface-float);
    border: 1px solid rgba(155, 143, 187, 0.3);
    border-radius: 24px;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.85rem;
    text-decoration: none;
    white-space: nowrap;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.3s ease, transform 0.4s var(--spring-ease), background 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(12px) saturate(150%);
    box-shadow: 0 0 20px rgba(255, 45, 149, 0.1), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-item.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

.nav-item:hover {
    background: var(--color-primary);
    color: var(--text-primary);
}

/* Dot Navigation */
#dot-nav {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 100;
}

.dot-nav-item {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(155, 143, 187, 0.3);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s var(--spring-ease), box-shadow 0.3s ease;
    animation: dotPulse 3s ease-in-out infinite;
}

.dot-nav-item:nth-child(1) { animation-delay: 0s; }
.dot-nav-item:nth-child(2) { animation-delay: 0.6s; }
.dot-nav-item:nth-child(3) { animation-delay: 1.2s; }
.dot-nav-item:nth-child(4) { animation-delay: 1.8s; }
.dot-nav-item:nth-child(5) { animation-delay: 2.4s; }

.dot-nav-item.active {
    background: var(--color-primary);
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(255, 45, 149, 0.5);
}

.dot-nav-item:hover {
    background: var(--color-secondary);
    transform: scale(1.2);
}

@keyframes dotPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* ============================================
   Sections - General
   ============================================ */
.section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    overflow: hidden;
}

.wiggle-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 5;
}

.wiggle-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}

.wiggle-divider-alt svg path {
    animation: wiggleDrift 8s ease-in-out infinite alternate;
}

@keyframes wiggleDrift {
    0% { transform: translateX(0); }
    100% { transform: translateX(-10px); }
}

.blob-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 5;
}

.blob-divider svg {
    display: block;
    width: 100%;
    height: 120px;
}

/* Reveal Animations */
.reveal-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: var(--reveal-delay, 0s);
}

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

/* Typography */
.section-heading {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.marker-text {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--color-tertiary);
    display: block;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.body-text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--color-primary);
    color: var(--text-primary);
    border: none;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s var(--spring-ease), box-shadow 0.4s ease, background 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 45, 149, 0.3);
}

.btn-primary:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 45, 149, 0.5);
}

.btn-primary:active {
    transform: scale(0.97);
}

.btn-glow {
    box-shadow: 0 0 30px rgba(255, 45, 149, 0.3), 0 0 60px rgba(0, 229, 255, 0.15);
}

.btn-glow:hover {
    box-shadow: 0 0 40px rgba(255, 45, 149, 0.5), 0 0 80px rgba(0, 229, 255, 0.25);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateY(3px);
}

/* Glow Badge */
.glow-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 214, 0, 0.1);
    border: 1px solid rgba(255, 214, 0, 0.3);
    border-radius: 50px;
    color: var(--color-tertiary);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.85rem;
}

/* ============================================
   Section 1: Hero
   ============================================ */
.section-hero {
    background: radial-gradient(ellipse at 50% 30%, rgba(255, 45, 149, 0.15) 0%, rgba(0, 229, 255, 0.08) 40%, var(--bg-deep) 70%);
    flex-direction: column;
    padding: 0 24px;
}

.radial-burst {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: conic-gradient(from 0deg, rgba(255, 45, 149, 0.05), rgba(0, 229, 255, 0.03), rgba(255, 214, 0, 0.05), rgba(255, 45, 149, 0.05));
    border-radius: 50%;
    animation: radialSpin 60s linear infinite;
    pointer-events: none;
}

@keyframes radialSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 0 20px rgba(255, 45, 149, 0.3);
}

.hero-word {
    display: inline-block;
    opacity: 0;
    transform: scale(0);
    animation: heroInflate 0.8s var(--spring-ease) forwards;
    animation-delay: var(--word-delay, 0s);
}

.hero-word:nth-child(1) {
    color: var(--color-primary);
}

.hero-word:nth-child(2) {
    color: var(--color-secondary);
    margin: 0 0.15em;
}

.hero-word:nth-child(3) {
    color: var(--color-tertiary);
}

@keyframes heroInflate {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    60% {
        opacity: 1;
        transform: scale(1.15);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.5s forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#hero-cta {
    opacity: 0;
    animation: fadeUp 0.8s ease 0.7s forwards;
}

/* ============================================
   Section 2: Discover
   ============================================ */
.section-discover {
    background: var(--bg-soft);
    padding: 120px 24px;
    clip-path: none;
}

.dot-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(0, 229, 255, 0.08) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    pointer-events: none;
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    z-index: 5;
    position: relative;
}

.discover-visual {
    grid-column: 1 / 6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circular-viewport {
    width: min(400px, 80vw);
    height: min(400px, 80vw);
    border-radius: 50%;
    background: radial-gradient(circle, var(--surface-float) 0%, var(--bg-deep) 100%);
    border: 1px solid rgba(155, 143, 187, 0.2);
    box-shadow: 0 0 20px rgba(255, 45, 149, 0.15), 0 0 60px rgba(0, 229, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.4s ease;
}

.circular-viewport:hover {
    box-shadow: 0 0 30px rgba(255, 45, 149, 0.25), 0 0 80px rgba(0, 229, 255, 0.15);
}

.viewport-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viewport-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
}

.viewport-orb-1 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 45, 149, 0.5) 0%, transparent 70%);
    top: 20%;
    left: 15%;
    animation: orbFloat2 12s ease-in-out infinite;
}

.viewport-orb-2 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.5) 0%, transparent 70%);
    bottom: 25%;
    right: 20%;
    animation: orbFloat3 15s ease-in-out infinite;
}

.viewport-orb-3 {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 214, 0, 0.4) 0%, transparent 70%);
    top: 50%;
    right: 30%;
    animation: orbFloat5 10s ease-in-out infinite;
}

.viewport-icon {
    z-index: 2;
    animation: wobble 3s ease-in-out infinite;
}

@keyframes wobble {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

.discover-text {
    grid-column: 7 / 13;
    display: flex;
    flex-direction: column;
}

/* ============================================
   Section 3: Explore (Card Carousel)
   ============================================ */
.section-explore {
    background: var(--bg-deep);
    flex-direction: column;
    padding: 120px 24px;
}

.explore-header {
    text-align: center;
    margin-bottom: 60px;
    z-index: 5;
    position: relative;
}

.card-carousel {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    z-index: 5;
    position: relative;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 20px 0;
}

.card-carousel::-webkit-scrollbar {
    display: none;
}

.card-track {
    display: flex;
    gap: 28px;
    padding: 20px 60px;
    width: max-content;
}

.pill-card {
    width: 280px;
    min-height: 340px;
    background: var(--surface-float);
    border-radius: 32px;
    padding: 36px 28px;
    border: 1px solid rgba(155, 143, 187, 0.15);
    box-shadow: 0 0 20px rgba(255, 45, 149, 0.1), 0 0 60px rgba(0, 229, 255, 0.05);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.4s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    backdrop-filter: blur(12px) saturate(150%);
    flex-shrink: 0;
}

.pill-card:hover {
    box-shadow: 0 0 30px rgba(255, 45, 149, 0.2), 0 0 80px rgba(0, 229, 255, 0.12);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 45, 149, 0.06) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pill-card:hover .card-glow {
    opacity: 1;
}

.card-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: rgba(0, 229, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.pill-card:hover .card-icon-wrap {
    animation: wobble 0.6s ease-in-out;
}

.card-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.card-desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ============================================
   Section 4: Statement
   ============================================ */
.section-statement {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--bg-deep) 50%, var(--gradient-end) 100%);
    padding: 120px 24px;
    min-height: 80vh;
}

.statement-content {
    text-align: center;
    max-width: 1000px;
    z-index: 5;
    position: relative;
}

.statement-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.5rem, 8vw, 6rem);
    line-height: 1.2;
    color: var(--text-primary);
}

.statement-word {
    display: inline-block;
    transition: transform 0.5s var(--spring-ease), letter-spacing 0.5s ease;
    margin: 0 0.1em;
}

.statement-word[data-highlight] {
    color: var(--color-primary);
    text-shadow: 0 0 20px rgba(255, 45, 149, 0.3), 0 0 60px rgba(255, 45, 149, 0.15);
}

.section-statement.in-view .statement-word {
    animation: wordBounce 0.6s var(--spring-ease) forwards;
}

@keyframes wordBounce {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.8);
    }
    60% {
        transform: translateY(-5px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ============================================
   Footer
   ============================================ */
.section-footer {
    background: var(--gradient-end);
    flex-direction: column;
    padding: 120px 24px 60px;
    min-height: auto;
}

#particle-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.footer-content {
    text-align: center;
    z-index: 5;
    position: relative;
}

.footer-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-primary);
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(255, 45, 149, 0.3);
}

.footer-text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 32px;
}

.footer-links {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.footer-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--color-secondary);
}

.footer-link:hover::after {
    width: 100%;
}

.footer-copy {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.8rem;
    color: rgba(155, 143, 187, 0.5);
}

/* ============================================
   Confetti
   ============================================ */
#confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10000;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    width: 6px;
    height: 6px;
    opacity: 1;
    animation: confettiFall 1.2s ease-out forwards;
}

.confetti-piece.circle {
    border-radius: 50%;
}

@keyframes confettiFall {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--confetti-x), var(--confetti-y)) rotate(var(--confetti-rotate)) scale(0.3);
        opacity: 0;
    }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .discover-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .discover-visual {
        grid-column: 1 / -1;
    }

    .discover-text {
        grid-column: 1 / -1;
    }

    .circular-viewport {
        width: min(300px, 80vw);
        height: min(300px, 80vw);
    }

    .card-track {
        padding: 20px 24px;
    }

    .pill-card {
        width: 250px;
        min-height: 300px;
    }

    #dot-nav {
        display: none;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 5rem);
    }

    .statement-text {
        font-size: clamp(2rem, 10vw, 4rem);
    }
}

@media (max-width: 480px) {
    #nav-toggle {
        top: 16px;
        left: 16px;
        width: 48px;
        height: 48px;
    }

    .section {
        padding: 80px 16px;
    }

    .section-hero {
        padding: 0 16px;
    }

    .card-track {
        padding: 16px;
        gap: 16px;
    }

    .pill-card {
        width: 230px;
        min-height: 280px;
        padding: 28px 20px;
    }
}

/* ============================================
   Prefers Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .orb {
        animation: none !important;
    }

    .hero-word {
        animation: none !important;
        opacity: 1;
        transform: scale(1);
    }

    .hero-subtitle,
    #hero-cta {
        animation: none !important;
        opacity: 1;
    }

    .radial-burst {
        animation: none !important;
    }

    .reveal-item {
        opacity: 1;
        transform: translateY(0);
        transition: none;
    }

    .dot-nav-item {
        animation: none !important;
    }

    .confetti-piece {
        display: none !important;
    }

    .viewport-orb {
        animation: none !important;
    }

    .viewport-icon {
        animation: none !important;
    }

    .statement-word {
        animation: none !important;
        opacity: 1;
    }
}
