/* =====================================================
   Brisbane Blanket Fort - COMPLETE SITE STYLES
   All dynamic units - em/rem/clamp/vh/vw
   ===================================================== */

/* === CSS Variables === */
:root {
    /* Base font size - everything scales from this */
    font-size: clamp(14px, 2vw, 18px);

    /* Colors */
    --space-void: #050510;
    --space-deep: #0a0a1a;
    --space-blue: #0f0f2d;
    --nebula-purple: #2d1b4e;
    --nebula-pink: #4a1942;
    --star-gold: #ffd93d;
    --star-white: #fff8e7;
    --soft-pink: #ff9ecd;
    --lavender: #b19cd9;
    --aurora-cyan: #00d4ff;
    --aurora-purple: #9d4edd;
    --aurora-pink: #f72585;
    --text-light: #f0f0f5;
    --text-muted: #8888aa;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);

    /* Fluid spacing scale */
    --space-xs: clamp(0.25rem, 0.5vw, 0.5rem);
    --space-sm: clamp(0.5rem, 1vw, 0.75rem);
    --space-md: clamp(1rem, 2vw, 1.5rem);
    --space-lg: clamp(1.5rem, 3vw, 2.5rem);
    --space-xl: clamp(2rem, 5vw, 4rem);
    --space-2xl: clamp(3rem, 8vw, 7rem);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--space-void);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: default;
}

h1, h2, h3, h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

a {
    color: var(--soft-pink);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--star-gold);
}

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

/* === Canvas Layers === */
#sparkles, #shooting-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    contain: strict;
}

#shooting-stars {
    z-index: 1;
}

/* === Aurora Background === */
.aurora {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    contain: layout style;
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    will-change: transform;
    transform: translateZ(0);
}

.aurora-1 {
    width: clamp(20rem, 50vw, 40rem);
    height: clamp(20rem, 50vw, 40rem);
    background: radial-gradient(circle, var(--aurora-purple) 0%, transparent 70%);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.aurora-2 {
    width: clamp(15rem, 40vw, 32rem);
    height: clamp(15rem, 40vw, 32rem);
    background: radial-gradient(circle, var(--aurora-cyan) 0%, transparent 70%);
    top: 30%;
    right: -10%;
    animation-delay: -7s;
    animation-duration: 25s;
}

.aurora-3 {
    width: clamp(22rem, 55vw, 45rem);
    height: clamp(22rem, 55vw, 45rem);
    background: radial-gradient(circle, var(--aurora-pink) 0%, transparent 70%);
    bottom: -10%;
    left: 30%;
    animation-delay: -14s;
    animation-duration: 30s;
}

@keyframes aurora-drift {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    25% { transform: translate(3vw, 2vh) scale(1.1); opacity: 0.5; }
    50% { transform: translate(-2vw, 4vh) scale(0.9); opacity: 0.4; }
    75% { transform: translate(-3vw, -1vh) scale(1.05); opacity: 0.35; }
}

/* === Floating Particles === */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* === Shimmer Text Effect === */
.shimmer {
    background: linear-gradient(
        90deg,
        var(--text-light) 0%,
        var(--star-gold) 25%,
        var(--soft-pink) 50%,
        var(--lavender) 75%,
        var(--text-light) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* === Glow Text === */
.glow-text {
    text-shadow:
        0 0 0.5em var(--lavender),
        0 0 1em var(--aurora-purple),
        0 0 2em var(--aurora-purple);
}

/* =====================================================
   NAVIGATION - Sticky & Mobile
   ===================================================== */

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    background: rgba(5, 5, 16, 0.8);
    backdrop-filter: blur(1rem);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    padding: var(--space-xs) 0;
    background: rgba(5, 5, 16, 0.95);
}

.nav-inner {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    text-decoration: none;
    color: var(--text-light);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
}

.nav-paw {
    font-size: 1.5rem;
}

.nav-brand {
    background: linear-gradient(135deg, var(--star-gold), var(--soft-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-light);
}

.nav-cta {
    padding: 0.5em 1.25em !important;
    background: linear-gradient(135deg, var(--star-gold), var(--soft-pink));
    border-radius: 2em;
    color: var(--space-deep) !important;
    font-weight: 700 !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5em 1.5em rgba(255, 217, 61, 0.3);
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(5, 5, 16, 0.98);
    backdrop-filter: blur(1rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    color: var(--text-light);
    font-size: 1.25rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

.mobile-cta {
    margin-top: var(--space-md);
    padding: 0.75em 2em;
    background: linear-gradient(135deg, var(--star-gold), var(--soft-pink));
    border-radius: 2em;
    color: var(--space-deep) !important;
}

@media (max-width: 60em) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    padding-top: calc(var(--space-lg) + 4rem);
    overflow: hidden;
    z-index: 2;
}

.hero-bg-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(0.125em 0.125em at 5% 10%, white, transparent),
        radial-gradient(0.125em 0.125em at 10% 23%, rgba(255,255,255,0.8), transparent),
        radial-gradient(0.0625em 0.0625em at 22% 13%, white, transparent),
        radial-gradient(0.125em 0.125em at 40% 40%, var(--star-gold), transparent),
        radial-gradient(0.0625em 0.0625em at 57% 27%, white, transparent),
        radial-gradient(0.125em 0.125em at 75% 50%, rgba(255,255,255,0.7), transparent),
        radial-gradient(0.0625em 0.0625em at 92% 20%, var(--soft-pink), transparent),
        radial-gradient(0.125em 0.125em at 85% 67%, rgba(255,255,255,0.8), transparent);
    background-size: 100% 100%;
    animation: twinkle 8s ease-in-out infinite;
}

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

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

/* === Mascot with Orbits === */
.mascot-container {
    position: relative;
    width: clamp(8rem, 20vw, 12rem);
    height: clamp(8rem, 20vw, 12rem);
    margin: 0 auto var(--space-lg);
}

.mascot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(3rem, 8vw, 5rem);
    z-index: 10;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 0 1.5em rgba(255, 217, 61, 0.5));
}

.mascot-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    height: 75%;
    background: radial-gradient(circle, rgba(255, 217, 61, 0.3) 0%, transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-0.75em); }
}

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

/* Orbiting elements */
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.orbit span {
    position: absolute;
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    animation: orbit-item 1s linear infinite;
}

.orbit-1 {
    width: 78%;
    height: 78%;
    margin: -39% 0 0 -39%;
    animation: orbit 8s linear infinite;
}

.orbit-2 {
    width: 100%;
    height: 100%;
    margin: -50% 0 0 -50%;
    animation: orbit 12s linear infinite reverse;
}

.orbit-3 {
    width: 122%;
    height: 122%;
    margin: -61% 0 0 -61%;
    animation: orbit 16s linear infinite;
}

.orbit-1 span { top: 0; left: 50%; transform: translateX(-50%); }
.orbit-2 span { top: 50%; right: 0; transform: translateY(-50%); }
.orbit-3 span { bottom: 0; left: 50%; transform: translateX(-50%); }

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

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

/* Hero Typography */
.hero-title {
    font-size: clamp(1.75rem, 6vw, 4rem);
    margin-bottom: var(--space-md);
    text-shadow: 0 0 3em rgba(177, 156, 217, 0.5);
}

.subtitle {
    font-size: clamp(0.875rem, 2vw, 1.3rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
    color: var(--lavender);
}

/* CTA Button */
.cta-button {
    position: relative;
    display: inline-block;
    padding: 1em 2.5em;
    font-family: 'Nunito', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 700;
    color: var(--space-deep);
    text-decoration: none;
    border-radius: 3em;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--star-gold), var(--soft-pink), var(--lavender));
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
    z-index: 1;
}

.cta-text {
    position: relative;
    z-index: 2;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cta-button:hover {
    transform: translateY(-0.25em) scale(1.05);
    box-shadow:
        0 0.5em 2em rgba(255, 217, 61, 0.4),
        0 0 4em rgba(255, 158, 205, 0.3);
}

/* Scroll Indicator */
.scroll-magic {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-muted);
    font-size: 0.85em;
    animation: fade-pulse 3s ease-in-out infinite;
}

.mouse {
    width: 1.5em;
    height: 2.5em;
    border: 0.125em solid var(--text-muted);
    border-radius: 1em;
    position: relative;
}

.wheel {
    width: 0.25em;
    height: 0.5em;
    background: var(--lavender);
    border-radius: 0.25em;
    position: absolute;
    top: 0.5em;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(0.5em); opacity: 0.3; }
}

@keyframes fade-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Floating Decorations */
.floating-deco {
    position: absolute;
    font-size: clamp(1.5rem, 4vw, 3rem);
    opacity: 0.6;
    pointer-events: none;
    animation: float-around 20s ease-in-out infinite;
}

.deco-1 { top: 15%; left: 10%; animation-delay: 0s; }
.deco-2 { top: 25%; right: 15%; animation-delay: -4s; font-size: clamp(1.25rem, 3vw, 2rem); }
.deco-3 { top: 60%; left: 5%; animation-delay: -8s; font-size: clamp(1.25rem, 3.5vw, 2.25rem); }
.deco-4 { top: 70%; right: 10%; animation-delay: -12s; }
.deco-5 { top: 40%; right: 5%; animation-delay: -16s; font-size: clamp(1.75rem, 5vw, 3.5rem); }

@keyframes float-around {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(1em, -1.5em) rotate(10deg); }
    50% { transform: translate(-0.75em, 1em) rotate(-5deg); }
    75% { transform: translate(1.25em, 0.75em) rotate(15deg); }
}

/* =====================================================
   SCROLL REVEAL ANIMATIONS
   ===================================================== */

.scroll-reveal {
    opacity: 0;
    transform: translateY(2em);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.scroll-reveal.delay-1 { transition-delay: 0.1s; }
.scroll-reveal.delay-2 { transition-delay: 0.2s; }
.scroll-reveal.delay-3 { transition-delay: 0.3s; }
.scroll-reveal.delay-4 { transition-delay: 0.4s; }
.scroll-reveal.delay-5 { transition-delay: 0.5s; }
.scroll-reveal.delay-6 { transition-delay: 0.6s; }

/* =====================================================
   GENERAL SECTION STYLING
   ===================================================== */

section {
    position: relative;
    z-index: 2;
    padding: var(--space-2xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-badge {
    display: inline-block;
    padding: 0.5em 1.5em;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 3em;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--lavender);
    margin-bottom: var(--space-md);
}

.section-badge.golden {
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.2), rgba(255, 158, 205, 0.2));
    border-color: rgba(255, 217, 61, 0.3);
    color: var(--star-gold);
}

.section-header h2 {
    font-size: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--text-muted);
    max-width: 38rem;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: var(--space-md);
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5em;
    padding: var(--space-xl) var(--space-lg);
    backdrop-filter: blur(0.5em);
}

/* =====================================================
   PAGE HERO (for subpages)
   ===================================================== */

.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: calc(var(--space-2xl) + 4rem);
    padding-bottom: var(--space-xl);
}

.page-hero .hero-content {
    max-width: 50rem;
}

.hero-icon {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: var(--space-md);
    display: block;
}

.page-title {
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: var(--space-md);
}

.page-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-muted);
    line-height: 1.8;
}

/* =====================================================
   FAQ PAGE STYLES
   ===================================================== */

.faq-section {
    padding: var(--space-xl) 0;
}

.faq-section h2 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--star-gold);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1em;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--lavender);
}

.faq-question {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: none;
    border: none;
    color: var(--text-light);
    font-family: 'Nunito', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 50rem;
}

.faq-answer-inner {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-answer-inner p {
    margin-bottom: var(--space-sm);
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

.faq-answer-inner strong {
    color: var(--text-light);
}

.faq-answer-inner em {
    color: var(--soft-pink);
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    padding: var(--space-2xl) 0;
}

.faq-cta h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: var(--space-md);
}

.faq-cta p {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    font-size: 1.1rem;
}

.faq-cta a {
    color: var(--soft-pink);
}

/* =====================================================
   VIBES PAGE STYLES
   ===================================================== */

.vibes-page .vibe-section {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) var(--space-md);
}

.vibe-content {
    max-width: 44rem;
    text-align: center;
}

.vibe-instruction {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-lg);
}

.vibe-title {
    font-size: clamp(2rem, 7vw, 5rem);
    margin-bottom: var(--space-md);
}

.vibe-emoji {
    font-size: clamp(3rem, 10vw, 6rem);
    margin-bottom: var(--space-lg);
    display: block;
}

.vibe-emoji-group {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: var(--space-lg);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.vibe-text {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    line-height: 2;
    color: var(--text-light);
}

.vibe-text em {
    color: var(--soft-pink);
    font-style: normal;
}

.vibe-pause {
    display: block;
    height: var(--space-lg);
}

.vibe-headline {
    font-size: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: var(--space-lg);
    color: var(--star-gold);
}

.vibe-cta {
    margin-top: var(--space-xl);
}

/* Sensory Section */
.vibe-sensory {
    padding: var(--space-2xl) 0;
    background: rgba(0, 0, 0, 0.3);
}

.sensory-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: var(--space-xl);
}

.sensory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: var(--space-lg);
}

.sensory-card {
    text-align: center;
}

.sensory-icon {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-sm);
    display: block;
}

.sensory-card h3 {
    font-size: 1.25rem;
    color: var(--star-gold);
    margin-bottom: var(--space-md);
}

.sensory-card ul {
    list-style: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.9;
}

.sensory-card li em {
    color: var(--soft-pink);
}

/* Vibes Final */
.vibe-final {
    padding: var(--space-2xl) 0;
    text-align: center;
}

.vibe-final-content {
    max-width: 44rem;
    margin: 0 auto;
}

.vibe-final-question {
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: var(--lavender);
    margin-bottom: var(--space-lg);
}

.vibe-final-text {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 2;
    margin-bottom: var(--space-lg);
}

.vibe-final-text em {
    color: var(--soft-pink);
}

.vibe-final-animals {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: var(--space-xl);
    letter-spacing: 0.2em;
}

/* =====================================================
   PACKING PAGE STYLES
   ===================================================== */

.packing-intro {
    text-align: center;
    max-width: 44rem;
    margin: 0 auto var(--space-xl);
}

.packing-intro p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    line-height: 1.8;
}

.packing-categories {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.packing-category {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5em;
    padding: var(--space-xl);
}

.category-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.category-icon {
    font-size: clamp(2rem, 5vw, 3rem);
}

.category-header h2 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--star-gold);
}

.category-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.packing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
    gap: var(--space-md);
}

.packing-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0.75em;
    transition: background 0.3s ease;
}

.packing-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.item-emoji {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.item-text strong {
    display: block;
    color: var(--text-light);
    margin-bottom: 0.25em;
}

.item-text span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Don't Bring Section */
.packing-dont {
    margin-top: var(--space-xl);
}

.dont-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: var(--space-md);
}

.dont-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 0.75em;
}

.dont-x {
    color: #ef4444;
    font-size: 1.25rem;
    font-weight: bold;
}

.dont-item span {
    color: var(--text-light);
}

/* Provided Section */
.packing-provided {
    margin-top: var(--space-xl);
}

.provided-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
    gap: var(--space-md);
}

.provided-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 0.75em;
}

.provided-check {
    color: #22c55e;
    font-size: 1.25rem;
}

/* Pro Tips */
.packing-tips {
    padding: var(--space-xl) 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
    gap: var(--space-lg);
}

.tip-card {
    text-align: center;
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    display: block;
}

.tip-card h3 {
    font-size: 1.1rem;
    color: var(--star-gold);
    margin-bottom: var(--space-sm);
}

.tip-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Packing CTA */
.packing-cta {
    text-align: center;
    padding: var(--space-xl) 0;
}

.packing-cta h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: var(--space-md);
}

.packing-cta p {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.cta-animals {
    font-size: clamp(1.25rem, 3vw, 2rem);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.1em;
}

/* =====================================================
   RULES PAGE STYLES
   ===================================================== */

.rules-promise {
    padding: var(--space-xl) 0;
}

.promise-card {
    max-width: 50rem;
    margin: 0 auto;
    text-align: center;
}

.promise-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    display: block;
}

.promise-card h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: var(--space-lg);
}

.promise-text {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.9;
    margin-bottom: var(--space-md);
    color: var(--text-muted);
}

.promise-text strong {
    color: var(--star-gold);
}

/* Values Grid */
.rules-values {
    padding: var(--space-xl) 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.value-card {
    text-align: center;
    position: relative;
}

.value-number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.5;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    display: block;
}

.value-card h3 {
    font-size: 1.25rem;
    color: var(--star-gold);
    margin-bottom: var(--space-sm);
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Detailed Rules */
.rules-detailed {
    padding: var(--space-xl) 0;
}

.rules-categories {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.rule-category {
    padding: var(--space-xl);
}

.rule-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.rule-icon {
    font-size: 2rem;
}

.rule-header h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--star-gold);
}

.rule-list {
    list-style: none;
    display: grid;
    gap: var(--space-sm);
}

.rule-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
}

.rule-emoji {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.rule-list li span:last-child {
    color: var(--text-light);
    line-height: 1.6;
}

.rule-list li span:last-child strong {
    color: var(--soft-pink);
}

.rule-note {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0.75em;
}

.rule-note p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

/* Zero Tolerance */
.rules-zero-tolerance {
    padding: var(--space-xl) 0;
}

.zero-card {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    border-color: rgba(239, 68, 68, 0.3);
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.05) 0%, var(--glass-bg) 100%);
}

.zero-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    display: block;
}

.zero-card h2 {
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: #ef4444;
    margin-bottom: var(--space-sm);
}

.zero-intro {
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

.zero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
    gap: var(--space-sm);
    text-align: left;
}

.zero-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgba(239, 68, 68, 0.1);
    border-radius: 0.5em;
}

.zero-x {
    color: #ef4444;
    font-size: 1.25rem;
    font-weight: bold;
}

.zero-note {
    margin-top: var(--space-xl);
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Communication Colors */
.rules-communication {
    padding: var(--space-xl) 0;
}

.comm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.comm-card {
    text-align: center;
}

.comm-color {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    margin: 0 auto var(--space-md);
}

.comm-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.comm-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.comm-note {
    text-align: center;
    margin-top: var(--space-xl);
}

.comm-note p {
    color: var(--text-muted);
    max-width: 38rem;
    margin: 0 auto;
}

/* Hosts Section */
.rules-hosts {
    padding: var(--space-xl) 0;
}

.hosts-card {
    max-width: 44rem;
    margin: 0 auto;
    text-align: center;
}

.hosts-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    display: block;
}

.hosts-card h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: var(--space-md);
}

.hosts-text {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.hosts-text strong {
    color: var(--lavender);
}

.hosts-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
    text-align: left;
}

.hosts-list li {
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0.5em;
}

/* Agreement Section */
.rules-agreement {
    padding: var(--space-xl) 0;
}

.agreement-content {
    text-align: center;
}

.agreement-content h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: var(--space-lg);
}

.promise-box {
    max-width: 44rem;
    margin: 0 auto;
}

.promise-statement {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-style: italic;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: var(--space-md);
}

.promise-note {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Rules CTA */
.rules-cta {
    text-align: center;
    padding: var(--space-xl) 0;
}

.rules-cta .cta-content {
    max-width: 44rem;
    margin: 0 auto;
}

.rules-cta .cta-emoji {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    display: block;
}

.rules-cta h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: var(--space-md);
}

.rules-cta p {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    font-size: 1.1rem;
    line-height: 1.8;
}

.rules-cta .cta-animals {
    font-size: clamp(1.25rem, 3vw, 2rem);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.1em;
}

/* =====================================================
   STORY PAGE STYLES
   ===================================================== */

.story-hero {
    min-height: 40vh;
}

.story-content {
    padding: var(--space-xl) 0;
}

.story-article {
    max-width: 44rem;
    margin: 0 auto;
}

.story-article p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.9;
    margin-bottom: var(--space-lg);
    color: var(--text-muted);
}

.story-article h2 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--star-gold);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.story-article em {
    color: var(--soft-pink);
    font-style: italic;
}

.story-article strong {
    color: var(--text-light);
}

.story-signature {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--glass-border);
    font-size: 1.1rem;
    color: var(--text-light);
}

.signature-note {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

.story-cta {
    text-align: center;
    padding: var(--space-xl) 0;
}

.story-cta .cta-text {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    font-size: 1.1rem;
}

/* =====================================================
   404 PAGE STYLES
   ===================================================== */

.error-page {
    min-height: 100vh;
}

.error-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) var(--space-md);
}

.error-card {
    text-align: center;
    max-width: 32rem;
}

.error-emoji {
    font-size: clamp(4rem, 15vw, 8rem);
    margin-bottom: var(--space-md);
    display: block;
    animation: lost-wobble 3s ease-in-out infinite;
}

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

.error-code {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(4rem, 15vw, 8rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--star-gold), var(--soft-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: var(--space-md);
}

.error-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: var(--space-md);
}

.error-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.error-subtext {
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

.error-actions {
    margin-bottom: var(--space-lg);
}

.error-button {
    display: inline-block;
}

.error-paws {
    font-size: 1.5rem;
    color: var(--text-muted);
    letter-spacing: 0.5em;
}

/* =====================================================
   PROMISE SECTION (Index)
   ===================================================== */

.promise {
    background: transparent;
}

.promise-text {
    text-align: center;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    max-width: 44rem;
    margin: 0 auto var(--space-xl);
    line-height: 1.9;
}

.promise-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
    gap: var(--space-lg);
}

.promise-card {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5em;
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.promise-card:hover {
    border-color: var(--lavender);
    transform: translateY(-0.5em);
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(177, 156, 217, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.card-icon {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: var(--space-md);
    display: block;
}

.promise-card h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: var(--space-sm);
    color: var(--text-light);
}

.promise-card p {
    color: var(--text-muted);
    font-size: 0.95em;
    line-height: 1.7;
}

/* =====================================================
   LUXURY VILLA SECTION
   ===================================================== */

.luxury {
    background: transparent;
    padding-bottom: var(--space-xl);
}

.luxury-hero {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.luxury-badge {
    display: inline-block;
    padding: 1em 2.5em;
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.15), rgba(255, 158, 205, 0.15));
    border: 2px solid rgba(255, 217, 61, 0.4);
    border-radius: 5em;
    font-family: 'Nunito', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 700;
    color: var(--star-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: luxury-pulse 3s ease-in-out infinite;
}

@keyframes luxury-pulse {
    0%, 100% {
        box-shadow: 0 0 1.5em rgba(255, 217, 61, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 3em rgba(255, 217, 61, 0.4), 0 0 5em rgba(255, 158, 205, 0.2);
        transform: scale(1.02);
    }
}

.luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.luxury-card {
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.05), rgba(255, 158, 205, 0.05));
    border: 1px solid rgba(255, 217, 61, 0.2);
    border-radius: 1.5em;
    padding: var(--space-lg);
    transition: all 0.4s ease;
}

.luxury-card:hover {
    border-color: var(--star-gold);
    box-shadow: 0 1em 3em rgba(255, 217, 61, 0.15);
    transform: translateY(-0.5em);
}

.luxury-icon {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-sm);
    display: block;
}

.luxury-card h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: var(--space-sm);
    color: var(--star-gold);
}

.luxury-card p {
    color: var(--text-light);
    font-size: 0.95em;
    line-height: 1.8;
}

.luxury-quote {
    text-align: center;
    max-width: 50rem;
    margin: 0 auto;
}

.luxury-quote blockquote {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    padding: var(--space-xl);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5em;
    position: relative;
}

.luxury-quote blockquote::before {
    content: '"';
    position: absolute;
    top: 0.5em;
    left: 0.75em;
    font-size: 3em;
    color: var(--star-gold);
    opacity: 0.3;
    font-family: Georgia, serif;
}

/* =====================================================
   ALL-INCLUSIVE SECTION
   ===================================================== */

.inclusive {
    background: transparent;
}

.inclusive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.inclusive-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5em;
    padding: var(--space-lg);
    transition: all 0.4s ease;
}

.inclusive-card:hover {
    border-color: var(--star-gold);
    box-shadow: 0 1em 3em rgba(255, 217, 61, 0.1);
    transform: translateY(-0.5em);
}

.inclusive-icon {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-sm);
    display: block;
}

.inclusive-card h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: var(--space-xs);
    color: var(--star-gold);
}

.inclusive-card > p {
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    font-size: 0.95em;
}

.inclusive-list {
    list-style: none;
}

.inclusive-list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: var(--space-xs);
    color: var(--text-light);
    font-size: 0.9em;
}

.inclusive-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--soft-pink);
    font-size: 0.8em;
}

.inclusive-summary {
    text-align: center;
}

.summary-box {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.1), rgba(255, 158, 205, 0.1));
    border: 1px solid rgba(255, 217, 61, 0.2);
    border-radius: 1.25em;
    padding: var(--space-lg) var(--space-xl);
    max-width: 38rem;
}

.summary-icon {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-sm);
}

.summary-box p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.8;
}

/* =====================================================
   TIMELINE SECTION
   ===================================================== */

.timeline {
    background: transparent;
}

.timeline-flow {
    max-width: 44rem;
    margin: 0 auto;
    position: relative;
    padding-left: var(--space-xl);
}

.timeline-flow::before {
    content: '';
    position: absolute;
    left: var(--space-md);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--aurora-purple), var(--aurora-cyan), var(--aurora-pink), var(--star-gold));
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    position: relative;
}

.timeline-time {
    font-size: 1em;
    font-weight: 600;
    white-space: nowrap;
}

.timeline-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.25em;
    padding: var(--space-lg);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--space-lg) - var(--space-md) - 0.375em);
    top: var(--space-md);
    width: 0.75em;
    height: 0.75em;
    background: var(--star-gold);
    border-radius: 50%;
    box-shadow: 0 0 1em var(--star-gold);
}

.timeline-content h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    margin-bottom: var(--space-xs);
    color: var(--star-gold);
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95em;
    line-height: 1.7;
}

/* =====================================================
   THEME SECTION
   ===================================================== */

.theme {
    background: transparent;
    text-align: center;
    overflow: hidden;
}

.theme-pre {
    display: block;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--lavender);
    margin-bottom: var(--space-sm);
}

.theme-title {
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: var(--space-lg);
    text-shadow:
        0 0 2em var(--aurora-purple),
        0 0 4em var(--aurora-pink);
}

.theme-star {
    display: inline-block;
    animation: sparkle 1.5s ease-in-out infinite;
}

.theme-star:last-child {
    animation-delay: 0.75s;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.3) rotate(180deg); opacity: 0.7; }
}

.theme-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    max-width: 44rem;
    margin: 0 auto var(--space-xl);
    line-height: 1.9;
}

/* Planet System Animation */
.theme-visual {
    height: clamp(12rem, 30vw, 20rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.planet-system {
    position: relative;
    width: clamp(12rem, 30vw, 20rem);
    height: clamp(12rem, 30vw, 20rem);
}

.sun {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(2rem, 5vw, 3.5rem);
    animation: pulse-sun 3s ease-in-out infinite;
    filter: drop-shadow(0 0 1.5em rgba(255, 200, 0, 0.8));
}

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

.planet-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.orbit-a { width: 40%; height: 40%; margin: -20% 0 0 -20%; animation: orbit 6s linear infinite; }
.orbit-b { width: 60%; height: 60%; margin: -30% 0 0 -30%; animation: orbit 10s linear infinite; }
.orbit-c { width: 80%; height: 80%; margin: -40% 0 0 -40%; animation: orbit 15s linear infinite; }
.orbit-d { width: 100%; height: 100%; margin: -50% 0 0 -50%; animation: orbit 20s linear infinite; }

.planet-item {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: clamp(1rem, 3vw, 1.75rem);
    animation: orbit-item 6s linear infinite;
}

.orbit-b .planet-item { animation-duration: 10s; }
.orbit-c .planet-item { animation-duration: 15s; }
.orbit-d .planet-item { animation-duration: 20s; }

/* =====================================================
   TIER CARDS
   ===================================================== */

.tiers {
    background: transparent;
}

.tier-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
    gap: var(--space-lg);
    max-width: 66rem;
    margin: 0 auto;
}

.tier-card {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.75em;
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
}

.tier-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1.75em;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    background: radial-gradient(circle at 50% 0%, rgba(177, 156, 217, 0.3) 0%, transparent 60%);
}

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

.royal-glow {
    background: radial-gradient(circle at 50% 0%, rgba(255, 217, 61, 0.4) 0%, transparent 60%);
}

.tier-popular, .tier-crown {
    position: absolute;
    top: -0.875em;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5em 1.5em;
    border-radius: 3em;
    font-family: 'Nunito', sans-serif;
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.tier-popular {
    background: var(--lavender);
    color: var(--space-deep);
}

.tier-crown {
    background: linear-gradient(135deg, var(--star-gold), #ffaa00);
    color: var(--space-deep);
    animation: crown-pulse 2s ease-in-out infinite;
}

@keyframes crown-pulse {
    0%, 100% { box-shadow: 0 0 1em rgba(255, 217, 61, 0.5); }
    50% { box-shadow: 0 0 2em rgba(255, 217, 61, 0.8), 0 0 3em rgba(255, 170, 0, 0.4); }
}

.tier-icon-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-sm);
}

.tier-icon {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    display: block;
}

.royal-icon .tier-icon {
    animation: royal-float 3s ease-in-out infinite;
}

@keyframes royal-float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-0.5em) rotate(5deg); }
}

.crown-sparkles {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5em;
    display: flex;
    justify-content: space-between;
}

.crown-sparkles span {
    font-size: 0.875em;
    animation: sparkle-float 2s ease-in-out infinite;
}

.crown-sparkles span:nth-child(1) { animation-delay: 0s; }
.crown-sparkles span:nth-child(2) { animation-delay: 0.3s; }
.crown-sparkles span:nth-child(3) { animation-delay: 0.6s; }

@keyframes sparkle-float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
    50% { transform: translateY(-0.75em) scale(1.2); opacity: 0.5; }
}

.tier-card h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: var(--space-xs);
}

.tier-price {
    margin-bottom: var(--space-md);
}

.tier-price .currency {
    font-size: 1.25em;
    vertical-align: super;
    color: var(--text-muted);
}

.tier-price .amount {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 900;
    color: var(--text-light);
}

.royal-price .amount {
    background: linear-gradient(135deg, var(--star-gold), #ffaa00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tier-body ul {
    list-style: none;
    text-align: left;
    margin-bottom: var(--space-md);
}

.tier-body li {
    display: flex;
    align-items: flex-start;
    gap: 0.5em;
    margin-bottom: var(--space-sm);
    font-size: 0.95em;
}

.tier-body .check {
    color: var(--lavender);
    flex-shrink: 0;
}

.tier-body .check.star {
    color: var(--soft-pink);
}

.tier-body .check.crown {
    color: var(--star-gold);
}

.tier-tagline {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.9em;
    border-top: 1px solid var(--glass-border);
    padding-top: var(--space-md);
}

.royal-tagline {
    color: var(--star-gold);
}

/* Tier hover effects */
.tier-basic:hover {
    border-color: var(--lavender);
    transform: translateY(-0.75em);
    box-shadow: 0 1.5em 4em rgba(177, 156, 217, 0.2);
}

.tier-premium {
    border-color: var(--lavender);
    background: linear-gradient(180deg, rgba(177, 156, 217, 0.08) 0%, var(--glass-bg) 100%);
}

.tier-premium:hover {
    transform: translateY(-0.75em) scale(1.02);
    box-shadow: 0 1.5em 4em rgba(177, 156, 217, 0.3);
}

.tier-royal {
    border: 2px solid var(--star-gold);
    background: linear-gradient(180deg, rgba(255, 217, 61, 0.1) 0%, rgba(255, 170, 0, 0.05) 50%, var(--glass-bg) 100%);
}

.tier-royal:hover {
    transform: translateY(-0.75em) scale(1.03);
    box-shadow:
        0 1.5em 4em rgba(255, 217, 61, 0.3),
        0 0 5em rgba(255, 217, 61, 0.1);
}

/* =====================================================
   SAFETY SECTION
   ===================================================== */

.safety {
    background: transparent;
    padding: var(--space-xl) 0;
}

.safety-content {
    text-align: center;
    max-width: 44rem;
    margin: 0 auto;
}

.safety-icon {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: var(--space-md);
    display: block;
}

.safety h2 {
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: var(--lavender);
    margin-bottom: var(--space-xl);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    text-align: left;
}

.safety-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--glass-bg);
    border-radius: 0.75em;
    border: 1px solid var(--glass-border);
}

.safety-check {
    color: #4ade80;
    font-size: 1.25em;
    font-weight: bold;
}

.safety-promise {
    color: var(--text-muted);
    font-size: 1em;
}

/* =====================================================
   WAITLIST SECTION
   ===================================================== */

.waitlist {
    background: transparent;
    text-align: center;
}

.waitlist-content {
    max-width: 32rem;
    margin: 0 auto;
}

.spots-counter {
    margin-bottom: var(--space-lg);
}

.counter-label {
    font-size: 1em;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.counter-number {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin: var(--space-xs) 0;
}

.digit {
    display: inline-block;
    font-family: 'Nunito', sans-serif;
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--star-gold), var(--soft-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 0 1.5em rgba(255, 217, 61, 0.5));
}

.waitlist h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: var(--space-sm);
}

.waitlist-subtitle {
    color: var(--lavender);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    margin-bottom: var(--space-xl);
}

.waitlist-form {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.75em;
    padding: var(--space-xl) var(--space-lg);
    backdrop-filter: blur(0.5em);
}

.form-group {
    margin-bottom: var(--space-md);
    position: relative;
}

.form-label {
    display: block;
    text-align: left;
    margin-bottom: var(--space-xs);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.waitlist-form input[type="email"],
.waitlist-form input[type="text"],
.waitlist-form select {
    width: 100%;
    padding: 1em 1.5em;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--glass-border);
    border-radius: 1em;
    color: var(--text-light);
    font-size: 1em;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.waitlist-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238888aa' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1em center;
}

.waitlist-form input:focus,
.waitlist-form select:focus {
    outline: none;
    border-color: var(--lavender);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 1.5em rgba(177, 156, 217, 0.2);
}

.waitlist-form input::placeholder {
    color: var(--text-muted);
}

.input-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1em;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 2em rgba(177, 156, 217, 0.3);
}

.form-group:focus-within .input-glow {
    opacity: 1;
}

.role-select {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.role-option {
    cursor: pointer;
}

.role-label {
    display: block;
    padding: 0.75em 1.5em;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--glass-border);
    border-radius: 3em;
    font-size: 0.95em;
    transition: all 0.3s ease;
}

.role-option input {
    display: none;
}

.role-option:hover .role-label {
    border-color: var(--lavender);
}

.role-option input:checked + .role-label {
    background: linear-gradient(135deg, var(--lavender), var(--soft-pink));
    border-color: transparent;
    color: var(--space-deep);
    font-weight: 600;
    box-shadow: 0 0 1.5em rgba(177, 156, 217, 0.4);
}

.submit-button {
    position: relative;
    width: 100%;
    padding: 1em 1.5em;
    font-family: 'Nunito', sans-serif;
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 700;
    color: var(--space-deep);
    border: none;
    border-radius: 1em;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--star-gold), var(--soft-pink), var(--lavender));
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.btn-text {
    position: relative;
    z-index: 2;
}

.submit-button:hover {
    transform: translateY(-0.15em);
    box-shadow:
        0 0.75em 2.5em rgba(255, 217, 61, 0.4),
        0 0 4em rgba(255, 158, 205, 0.2);
}

.privacy-note {
    margin-top: var(--space-md);
    color: var(--text-muted);
    font-size: 0.9em;
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    position: relative;
    z-index: 2;
    padding: var(--space-xl) var(--space-md);
    background: transparent;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer-mascot {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: var(--space-md);
    display: block;
}

.footer-brand {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 800;
    margin-bottom: var(--space-xs);
}

.footer-tagline {
    color: var(--lavender);
    font-size: 1em;
    margin-bottom: var(--space-md);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--soft-pink);
}

.footer-contact {
    margin-bottom: var(--space-sm);
}

.footer-contact a {
    color: var(--soft-pink);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--star-gold);
    text-shadow: 0 0 1em rgba(255, 217, 61, 0.5);
}

.footer-team {
    color: var(--text-muted);
    font-size: 0.9em;
    margin-bottom: var(--space-md);
}

.footer-disclaimer {
    color: var(--text-muted);
    font-size: 0.8em;
    opacity: 0.6;
}

/* =====================================================
   PACKING PAGE - ACTUAL STYLES
   ===================================================== */

.page-header {
    padding-top: calc(var(--space-2xl) + 4rem);
    padding-bottom: var(--space-xl);
    text-align: center;
}

.page-header .page-title {
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: var(--space-md);
}

.page-header .page-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-muted);
}

.packing-section {
    padding: var(--space-xl) 0 var(--space-2xl);
}

.packing-intro {
    text-align: center;
    max-width: 44rem;
    margin: 0 auto var(--space-2xl);
    padding: var(--space-xl);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5em;
}

.packing-intro-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.packing-intro h2 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: var(--space-md);
    color: var(--star-gold);
}

.packing-intro p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.packing-intro em {
    color: var(--soft-pink);
}

/* Packing Grid - 6 cards balanced */
.packing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.packing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5em;
    overflow: hidden;
    transition: all 0.4s ease;
}

.packing-card:hover {
    border-color: var(--lavender);
    transform: translateY(-0.5em);
}

.packing-card-header {
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--glass-border);
}

.packing-card-header.essential {
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.1), rgba(255, 158, 205, 0.05));
}

.packing-card-header.fun {
    background: linear-gradient(135deg, rgba(255, 158, 205, 0.1), rgba(177, 156, 217, 0.05));
}

.packing-card-header.fur {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(157, 78, 221, 0.05));
}

.packing-card-header.clothes {
    background: linear-gradient(135deg, rgba(177, 156, 217, 0.1), rgba(255, 158, 205, 0.05));
}

.packing-card-header.optional {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(0, 212, 255, 0.05));
}

.packing-card-header.warning {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05));
}

.packing-badge {
    display: inline-block;
    padding: 0.25em 0.75em;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2em;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.packing-card-header h3 {
    font-size: 1.25rem;
    color: var(--text-light);
}

.packing-list {
    list-style: none;
    padding: var(--space-md);
}

.packing-item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0 var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.packing-item:last-child {
    border-bottom: none;
}

.packing-check {
    grid-row: span 2;
    color: #4ade80;
    font-size: 1.1rem;
    font-weight: bold;
    align-self: start;
    padding-top: 0.1em;
}

.packing-item.no .packing-x {
    color: #ef4444;
}

.packing-x {
    grid-row: span 2;
    color: #ef4444;
    font-size: 1.1rem;
    font-weight: bold;
    align-self: start;
    padding-top: 0.1em;
}

.packing-name {
    font-weight: 600;
    color: var(--text-light);
}

.packing-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    grid-column: 2;
}

/* Provided Grid */
.packing-provided {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5em;
    padding: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.packing-provided h2 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: var(--space-sm);
    text-align: center;
}

.packing-provided-intro {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

.provided-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 10rem), 1fr));
    gap: var(--space-md);
}

.provided-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 0.75em;
}

.provided-icon {
    font-size: 1.5rem;
}

.provided-item span:last-child {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Tips Grid */
.packing-tips {
    margin-bottom: var(--space-2xl);
}

.packing-tips h2 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    text-align: center;
    margin-bottom: var(--space-xl);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: var(--space-lg);
}

.tip-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.25em;
    padding: var(--space-lg);
    text-align: center;
}

.tip-emoji {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    display: block;
}

.tip-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
}

/* Packing CTA */
.packing-cta {
    text-align: center;
    padding: var(--space-xl);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5em;
}

.packing-cta h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: var(--space-sm);
}

.packing-cta p {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

/* =====================================================
   INDEX PAGE EXTRAS
   ===================================================== */

/* Finally Section */
.finally {
    padding: var(--space-2xl) 0;
    text-align: center;
}

.finally-content {
    max-width: 44rem;
    margin: 0 auto;
}

.finally-title {
    margin-bottom: var(--space-xl);
}

.finally-word {
    font-size: clamp(3rem, 10vw, 6rem);
    background: linear-gradient(135deg, var(--star-gold), var(--soft-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.finally-statements {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.finally-statement {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-light);
}

.finally-emoji {
    margin-right: var(--space-sm);
}

.finally-statement em {
    color: var(--soft-pink);
    font-style: normal;
}

/* Imagine Section */
.imagine {
    padding: var(--space-2xl) 0;
    background: rgba(0, 0, 0, 0.2);
}

.imagine-content {
    max-width: 50rem;
    margin: 0 auto;
    text-align: center;
}

.imagine-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: var(--space-xl);
    color: var(--lavender);
}

.imagine-scene {
    text-align: left;
}

.imagine-text {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 2;
    margin-bottom: var(--space-lg);
    color: var(--text-muted);
}

.imagine-text em {
    color: var(--soft-pink);
    font-style: normal;
    font-weight: 600;
}

.imagine-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

.imagine-cta strong {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--star-gold);
}

/* Promise Subtext */
.promise-subtext {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
}

.promise-subtext em {
    color: var(--soft-pink);
}

/* Hero extras */
.hero-species {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: var(--space-md);
    letter-spacing: 0.2em;
}

.waitlist-counter {
    margin-top: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.counter-pulse {
    width: 0.5em;
    height: 0.5em;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.counter-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.counter-text strong {
    color: var(--star-gold);
}

/* Mascot friends */
.mascot-friends {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.friend {
    position: absolute;
    font-size: 1.5rem;
    animation: friend-float 5s ease-in-out infinite;
}

.friend-1 { top: 10%; left: 20%; animation-delay: 0s; }
.friend-2 { top: 20%; right: 15%; animation-delay: -1.5s; }
.friend-3 { bottom: 15%; left: 15%; animation-delay: -3s; }

@keyframes friend-float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Summary link */
.summary-link {
    display: inline-block;
    margin-top: var(--space-md);
    color: var(--soft-pink);
    font-weight: 600;
}

/* Safety intro and link */
.safety-intro {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
}

.safety-intro em {
    color: var(--soft-pink);
}

.safety-link {
    display: inline-block;
    margin-top: var(--space-md);
    color: var(--soft-pink);
    font-weight: 600;
}

/* Final CTA section */
.final-cta {
    padding: var(--space-2xl) 0;
    text-align: center;
}

.final-content {
    max-width: 50rem;
    margin: 0 auto;
}

.final-question {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.final-statement {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--star-gold), var(--soft-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.final-promise {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    line-height: 2;
    margin-bottom: var(--space-lg);
}

.final-promise strong {
    color: var(--star-gold);
}

.final-animals {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    letter-spacing: 0.2em;
}

/* Reveal text animation */
.reveal-text {
    opacity: 0;
    transform: translateY(1em);
    animation: reveal-in 0.8s ease forwards;
}

.reveal-text.delay-1 { animation-delay: 0.2s; }
.reveal-text.delay-2 { animation-delay: 0.4s; }
.reveal-text.delay-3 { animation-delay: 0.6s; }
.reveal-text.delay-4 { animation-delay: 0.8s; }

@keyframes reveal-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   RESPONSIVE FINE-TUNING
   ===================================================== */

@media (max-width: 60em) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 48em) {
    .floating-deco {
        display: none;
    }

    .timeline-flow {
        padding-left: var(--space-lg);
    }

    .timeline-flow::before {
        left: var(--space-xs);
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .timeline-content::before {
        left: calc(-1 * var(--space-lg) + var(--space-xs));
    }

    .role-select {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 30em) {
    :root {
        font-size: clamp(13px, 3.5vw, 16px);
    }
}

/* =====================================================
   REDUCED MOTION
   ===================================================== */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =====================================================
   PADDED PAGE STYLES
   ===================================================== */

.padded-page {
    background: linear-gradient(135deg, var(--space-void) 0%, #0d1a0d 50%, var(--space-void) 100%);
}

.padded-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--space-2xl);
}

.padded-hero .hero-icon {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: var(--space-md);
}

.padded-hero .page-title {
    font-size: clamp(3rem, 10vw, 6rem);
    background: linear-gradient(135deg, #7bed9f 0%, var(--soft-pink) 50%, var(--lavender) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
}

.padded-hero .page-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-muted);
}

/* Intro Section */
.padded-intro {
    padding: var(--space-xl) 0;
}

.padded-intro .intro-content {
    max-width: 50rem;
    margin: 0 auto;
    padding: var(--space-xl);
}

.padded-intro .intro-lead {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--soft-pink);
    margin-bottom: var(--space-lg);
}

.padded-intro p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.padded-intro .intro-highlight {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: #7bed9f;
    background: rgba(123, 237, 159, 0.1);
    padding: var(--space-md);
    border-radius: 0.75em;
    border-left: 4px solid #7bed9f;
    margin: var(--space-lg) 0;
}

.padded-intro .intro-emphasis {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--star-gold);
    text-align: center;
    margin-top: var(--space-lg);
}

/* Outdoors Grid */
.padded-outdoors {
    padding: var(--space-2xl) 0;
}

.outdoors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.outdoors-card {
    padding: var(--space-lg);
    text-align: center;
    transition: all 0.4s ease;
}

.outdoors-card:hover {
    transform: translateY(-0.5em);
    box-shadow: 0 1.5em 4em rgba(123, 237, 159, 0.15);
}

.outdoors-icon {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-md);
}

.outdoors-card h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #7bed9f;
    margin-bottom: var(--space-sm);
}

.outdoors-card p {
    color: var(--text-muted);
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.7;
}

.outdoors-card em {
    color: var(--soft-pink);
    font-style: normal;
}

/* Freedom Section */
.padded-freedom {
    padding: var(--space-2xl) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(123, 237, 159, 0.03) 50%, transparent 100%);
}

.freedom-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.freedom-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--lavender) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xl);
}

.freedom-text {
    text-align: left;
}

.freedom-text p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    margin-bottom: var(--space-lg);
    line-height: 1.9;
}

.freedom-text em {
    color: var(--soft-pink);
    font-style: italic;
}

.freedom-emphasis {
    font-size: clamp(1.3rem, 3vw, 1.8rem) !important;
    font-weight: 700;
    color: #7bed9f;
    text-align: center;
    margin-top: var(--space-xl);
}

/* Practical Grid */
.padded-practical {
    padding: var(--space-2xl) 0;
}

.practical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.practical-card {
    padding: var(--space-lg);
}

.practical-card h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    margin-bottom: var(--space-sm);
}

.practical-card p {
    color: var(--text-muted);
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.7;
}

/* Real Talk Section */
.padded-realtalk {
    padding: var(--space-2xl) 0;
}

.realtalk-content {
    max-width: 50rem;
    margin: 0 auto;
    padding: var(--space-xl);
}

.realtalk-content h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--soft-pink);
    margin-bottom: var(--space-lg);
}

.realtalk-content p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.realtalk-content em {
    color: #7bed9f;
    font-style: normal;
}

.realtalk-highlight {
    font-size: clamp(1.05rem, 2.2vw, 1.2rem) !important;
    font-weight: 600;
    background: rgba(123, 237, 159, 0.1);
    padding: var(--space-md);
    border-radius: 0.75em;
    border-left: 4px solid #7bed9f;
    margin: var(--space-lg) 0;
}

/* Feeling Section */
.padded-feeling {
    padding: var(--space-2xl) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(177, 156, 217, 0.05) 50%, transparent 100%);
}

.feeling-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    text-align: center;
    background: linear-gradient(135deg, var(--star-gold) 0%, var(--soft-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xl);
}

.feeling-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
    gap: var(--space-lg);
}

.feeling-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-md);
    background: var(--glass-bg);
    border-radius: 1em;
    border: 1px solid var(--glass-border);
}

.feeling-emoji {
    font-size: clamp(1.5rem, 4vw, 2rem);
    flex-shrink: 0;
}

.feeling-item p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--text-muted);
    line-height: 1.7;
}

.feeling-item em {
    color: var(--soft-pink);
    font-style: italic;
}

/* Supply Section */
.padded-supply {
    padding: var(--space-2xl) 0;
}

.supply-content {
    max-width: 45rem;
    margin: 0 auto;
    padding: var(--space-xl);
    text-align: center;
}

.supply-content h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: #7bed9f;
    margin-bottom: var(--space-lg);
}

.supply-content p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.supply-rec {
    background: rgba(123, 237, 159, 0.1);
    padding: var(--space-lg);
    border-radius: 1em;
    margin: var(--space-xl) 0;
}

.supply-label {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--text-muted);
    margin-bottom: var(--space-xs) !important;
}

.supply-number {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    font-family: 'Nunito', sans-serif;
    color: #7bed9f;
    line-height: 1;
    margin-bottom: var(--space-xs) !important;
}

.supply-note {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    color: var(--text-muted);
}

.supply-reminder {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    font-style: italic;
    color: var(--lavender);
    margin-top: var(--space-lg);
}

/* Padded CTA */
.padded-cta {
    padding: var(--space-2xl) 0;
    text-align: center;
}

.padded-cta .cta-lead {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: var(--space-sm);
}

.padded-cta .cta-sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.padded-cta .cta-emphasis {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    font-weight: 700;
    color: #7bed9f;
    margin-bottom: var(--space-xl);
}

.padded-cta .cta-whisper {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--text-muted);
    font-style: italic;
    margin-top: var(--space-lg);
}
