@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700;1,800&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
    --pink: #e91e90;
    --pink-hot: #ff1493;
    --pink-light: #ff69b4;
    --pink-dark: #c2185b;
    --pink-deep: #880e4f;
    --magenta: #d500f9;
    --cyan: #00e5ff;
    --cyan-dark: #00b8d4;
    --purple: #9b4dca;
    --purple-dark: #6a1b9a;
    --orange: #ff8c00;
    --orange-hot: #ff6b35;
    --yellow: #ffd600;
    --lime: #c6ff00;
    --bg: #fff8fb;
    --bg-dark: #fce4ec;
    --text: #1b1b1b;
    --text-light: #666;
    --white: #fff;
    --danger: #c1121f;
    --shadow: 0 4px 30px rgba(0,0,0,.08);
    --shadow-lg: 0 10px 50px rgba(0,0,0,.14);
    --shadow-pink: 0 0 40px rgba(233,30,144,.25);
    --shadow-cyan: 0 0 40px rgba(0,229,255,.2);
    --radius: 20px;
    --radius-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
img { -webkit-user-drag: none; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== PRELOADER ========== */
.preloader {
    position: fixed; inset: 0;
    background: linear-gradient(135deg, var(--pink-deep), var(--pink-hot), var(--magenta));
    z-index: 10000;
    display: flex; align-items: center; justify-content: center; flex-direction: column;
    transition: opacity .6s ease, visibility .6s;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-alpaca { width: 140px; height: 140px; animation: preloaderBounce .6s ease-in-out infinite alternate; filter: drop-shadow(0 0 30px rgba(0,229,255,.5)); }

@keyframes preloaderBounce {
    0% { transform: translateY(0) rotate(-5deg) scale(1); }
    100% { transform: translateY(-25px) rotate(5deg) scale(1.1); }
}

.preloader-text {
    color: var(--yellow);
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 900;
    margin-top: 20px;
    text-shadow: 0 0 20px rgba(255,214,0,.5);
    animation: preloaderPulse 1s ease-in-out infinite;
}

@keyframes preloaderPulse { 0%, 100% { opacity: .4; } 50% { opacity: 1; } }

/* ========== NAV ========== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,20,147,0);
    backdrop-filter: blur(0px);
    transition: all .4s cubic-bezier(.16,1,.3,1);
    padding: 8px 0;
}

.nav.scrolled {
    background: rgba(255,248,251,.94);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(233,30,144,.1);
    padding: 0;
}

.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 70px; }

.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: var(--white); text-decoration: none; transition: color .4s; }
.nav.scrolled .nav-logo { color: var(--pink-deep); }
.nav-logo span { color: var(--yellow); font-style: italic; }
.nav.scrolled .nav-logo span { color: var(--pink-hot); }

.nav-links { display: flex; gap: 4px; list-style: none; }

.nav-links a {
    text-decoration: none; color: rgba(255,255,255,.85); font-size: .88rem; font-weight: 600;
    padding: 8px 18px; border-radius: 100px; transition: all .3s; position: relative; overflow: hidden;
}
.nav.scrolled .nav-links a { color: var(--text); }

.nav-links a::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--pink-hot), var(--magenta));
    border-radius: 100px; transform: scaleX(0); transform-origin: right;
    transition: transform .3s cubic-bezier(.16,1,.3,1); z-index: -1;
}
.nav-links a:hover::before, .nav-links a.active::before { transform: scaleX(1); transform-origin: left; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; width: 36px; height: 36px; position: relative; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); position: absolute; left: 6px; transition: all .3s cubic-bezier(.16,1,.3,1); border-radius: 2px; }
.nav.scrolled .nav-toggle span { background: var(--text); }
.nav-toggle span:nth-child(1) { top: 8px; }
.nav-toggle span:nth-child(2) { top: 17px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle.active span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

/* ========== HERO ========== */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center;
    padding: 120px 24px 80px; position: relative; overflow: hidden;
    background: linear-gradient(160deg, var(--pink-deep) 0%, var(--pink-hot) 30%, var(--pink) 60%, var(--pink-light) 100%);
}

/* Animated gradient overlay */
.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 15% 30%, rgba(0,229,255,.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 85% 70%, rgba(155,77,202,.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 80%, rgba(255,214,0,.1) 0%, transparent 40%);
    animation: heroShimmer 8s ease-in-out infinite alternate;
}

@keyframes heroShimmer { 0% { opacity: .5; transform: scale(1); } 100% { opacity: 1; transform: scale(1.08); } }

/* Strobe */
.hero::after {
    content: ''; position: absolute; inset: 0; background: white; pointer-events: none; z-index: 1;
    animation: strobeFlash 6s ease-in-out infinite;
}

@keyframes strobeFlash {
    0%, 46%, 48%, 50%, 52%, 100% { opacity: 0; }
    47% { opacity: .06; }
    49% { opacity: 0; }
    51% { opacity: .04; }
}

/* Canvas */
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }

/* Scanline */
.hero-scanline {
    position: absolute; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0,229,255,.4), rgba(255,214,0,.5), rgba(0,229,255,.4), transparent);
    z-index: 3; pointer-events: none; animation: scanDown 5s linear infinite;
}

@keyframes scanDown { 0% { top: -2px; } 100% { top: 100%; } }

/* Paint splatters */
.hero-splatter { position: absolute; border-radius: 50%; pointer-events: none; }

.splatter-1 { width: 350px; height: 350px; background: radial-gradient(circle, var(--cyan) 0%, transparent 70%); top: 5%; right: -3%; opacity: .2; animation: splatFloat 10s ease-in-out infinite; filter: blur(30px); }
.splatter-2 { width: 280px; height: 280px; background: radial-gradient(circle, var(--purple) 0%, transparent 70%); bottom: 15%; left: -3%; opacity: .2; animation: splatFloat 12s ease-in-out infinite reverse; filter: blur(25px); }
.splatter-3 { width: 220px; height: 220px; background: radial-gradient(circle, var(--yellow) 0%, transparent 70%); top: 45%; left: 25%; opacity: .15; animation: splatFloat 8s ease-in-out infinite 2s; filter: blur(35px); }
.splatter-4 { width: 180px; height: 180px; background: radial-gradient(circle, var(--orange) 0%, transparent 70%); bottom: 25%; right: 15%; opacity: .18; animation: splatFloat 9s ease-in-out infinite 1s; filter: blur(30px); }
.splatter-5 { width: 150px; height: 150px; background: radial-gradient(circle, var(--lime) 0%, transparent 70%); top: 20%; left: 50%; opacity: .12; animation: splatFloat 11s ease-in-out infinite 3s; filter: blur(25px); }
.splatter-6 { width: 200px; height: 200px; background: radial-gradient(circle, var(--magenta) 0%, transparent 70%); top: 65%; right: 35%; opacity: .14; animation: splatFloat 7s ease-in-out infinite .5s; filter: blur(28px); }

@keyframes splatFloat {
    0%, 100% { transform: translate(0,0) scale(1); }
    25% { transform: translate(25px,-20px) scale(1.15); }
    50% { transform: translate(-10px,25px) scale(.9); }
    75% { transform: translate(15px,10px) scale(1.05); }
}

/* Hard paint splats (SVG-based) */
.paint-splat {
    position: absolute; pointer-events: none; z-index: 0;
}

.paint-splat svg { width: 100%; height: 100%; }

/* Mountains */
.hero-mountains { position: absolute; bottom: 0; left: 0; right: 0; height: 25vh; overflow: hidden; }
.hero-mountains svg { position: absolute; bottom: 0; width: 110%; left: -5%; }
.mountain-layer-1 { fill: rgba(136,14,79,.3); animation: mountainFloat 12s ease-in-out infinite; }
.mountain-layer-2 { fill: rgba(136,14,79,.5); animation: mountainFloat 10s ease-in-out infinite reverse; }
.mountain-layer-3 { fill: var(--pink-deep); }

@keyframes mountainFloat { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(15px); } }

/* Alpaca peek from side on scroll */
.alpaca-peek {
    position: fixed; z-index: 900; pointer-events: none;
    transition: transform .5s cubic-bezier(.34,1.56,.64,1), opacity .3s;
}
.alpaca-peek img { width: 120px; height: 120px; display: block; }

.alpaca-peek--left {
    left: -130px; top: 50%;
    transform: translateY(-50%);
}
.alpaca-peek--left.active {
    transform: translateY(-50%) translateX(130px);
}

.alpaca-peek--right {
    right: -130px; top: 50%;
    transform: translateY(-50%) scaleX(-1);
}
.alpaca-peek--right.active {
    transform: translateY(-50%) scaleX(-1) translateX(130px);
}

.alpaca-peek--bottom {
    bottom: -130px; left: 50%;
    transform: translateX(-50%);
}
.alpaca-peek--bottom.active {
    transform: translateX(-50%) translateY(-130px);
}

/* Hero content */
.hero-content { position: relative; z-index: 2; max-width: 900px; }

.hero-alpaca {
    width: 200px; height: 200px; margin: 0 auto 16px;
    animation: alpacaEntrance 1s cubic-bezier(.16,1,.3,1) .2s both;
    filter: drop-shadow(0 0 25px rgba(0,229,255,.4)) drop-shadow(0 10px 30px rgba(0,0,0,.3));
    cursor: pointer; outline: none; -webkit-tap-highlight-color: transparent; user-select: none;
}
.hero-alpaca img { width: 100%; height: 100%; object-fit: contain; pointer-events: none; }
.hero-alpaca:focus, .hero-alpaca:focus-visible { outline: none; }
.hero-alpaca:active { outline: none; }

.hero-alpaca:hover { filter: drop-shadow(0 0 40px rgba(255,214,0,.6)) drop-shadow(0 0 60px rgba(0,229,255,.5)) drop-shadow(0 0 80px rgba(233,30,144,.4)); }

@keyframes alpacaEntrance { from { opacity: 0; transform: scale(.3) rotate(-20deg); } to { opacity: 1; transform: scale(1) rotate(0); } }

.hero-edition-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,0,0,.2); border: 1px solid rgba(255,255,255,.25); color: var(--yellow);
    padding: 10px 28px; border-radius: 100px; font-size: .85rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px;
    backdrop-filter: blur(10px); animation: fadeUp .8s cubic-bezier(.16,1,.3,1) .4s both;
    text-shadow: 0 0 10px rgba(255,214,0,.5);
}

.badge-pulse {
    width: 10px; height: 10px; background: var(--cyan); border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite; position: relative;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0,229,255,.7); }
    50% { transform: scale(1.4); box-shadow: 0 0 25px 5px rgba(0,229,255,.3); }
}

.hero h1 {
    font-family: 'Playfair Display', serif; font-size: clamp(4rem, 12vw, 8rem); font-weight: 900;
    line-height: .95; margin-bottom: 8px; color: var(--white);
    animation: fadeUp .8s cubic-bezier(.16,1,.3,1) .5s both;
    text-shadow: 0 0 20px rgba(255,255,255,.3), 0 0 60px rgba(233,30,144,.3), 0 4px 0 rgba(0,0,0,.15);
}

.hero h1 span { color: var(--yellow); font-style: italic; position: relative; display: inline-block; text-shadow: 0 0 15px rgba(255,214,0,.5), 0 0 40px rgba(255,214,0,.3), 0 4px 0 rgba(0,0,0,.15); }

.hero h1 span::after {
    content: ''; position: absolute; bottom: 2px; left: -5%; right: -5%; height: 8px;
    background: var(--cyan); border-radius: 4px; opacity: .7;
    animation: underlineGrow 1s cubic-bezier(.16,1,.3,1) .9s both;
    box-shadow: 0 0 15px rgba(0,229,255,.5);
}

@keyframes underlineGrow { from { transform: scaleX(0); transform-origin: left; } to { transform: scaleX(1); transform-origin: left; } }

.hero-tagline {
    font-family: 'Playfair Display', serif; font-size: clamp(1.2rem, 3vw, 1.7rem);
    color: var(--yellow); font-style: italic; margin-bottom: 10px;
    animation: fadeUp .8s cubic-bezier(.16,1,.3,1) .6s both;
    text-shadow: 0 0 15px rgba(255,214,0,.4);
}

.hero-charity { font-size: 1rem; color: rgba(255,255,255,.8); margin-bottom: 6px; font-weight: 700; animation: fadeUp .8s cubic-bezier(.16,1,.3,1) .65s both; }

.hero-date {
    display: inline-flex; align-items: center; gap: 10px; margin-bottom: 8px;
    background: rgba(0,0,0,.25); padding: 8px 24px; border-radius: 100px;
    color: var(--cyan); font-weight: 800; font-size: 1.1rem; letter-spacing: 2px;
    border: 1px solid rgba(0,229,255,.3); animation: fadeUp .8s cubic-bezier(.16,1,.3,1) .68s both;
    text-shadow: 0 0 10px rgba(0,229,255,.5);
}

.hero-subtitle {
    font-size: clamp(.95rem, 2vw, 1.1rem); color: rgba(255,255,255,.6);
    margin-bottom: 32px; animation: fadeUp .8s cubic-bezier(.16,1,.3,1) .7s both;
    max-width: 620px; margin-left: auto; margin-right: auto;
}

.hero-location {
    display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.45);
    font-size: .85rem; margin-bottom: 28px; animation: fadeUp .8s cubic-bezier(.16,1,.3,1) .75s both;
}

.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeUp .8s cubic-bezier(.16,1,.3,1) .8s both; }

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

.scroll-indicator { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2; animation: fadeUp .8s cubic-bezier(.16,1,.3,1) 1.2s both; }
.scroll-indicator .mouse { width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.3); border-radius: 14px; position: relative; margin: 0 auto 8px; }
.scroll-indicator .wheel { width: 4px; height: 8px; background: var(--cyan); border-radius: 2px; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); animation: scrollWheel 1.5s ease-in-out infinite; box-shadow: 0 0 6px rgba(0,229,255,.5); }
@keyframes scrollWheel { 0% { transform: translateX(-50%) translateY(0); opacity: 1; } 100% { transform: translateX(-50%) translateY(12px); opacity: 0; } }
.scroll-indicator span { color: rgba(255,255,255,.3); font-size: .7rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 16px 36px; border-radius: 100px;
    font-size: 1rem; font-weight: 700; text-decoration: none; border: none; cursor: pointer;
    transition: all .4s cubic-bezier(.16,1,.3,1); font-family: inherit; position: relative; overflow: hidden;
}
.btn::before { content: ''; position: absolute; inset: 0; background: linear-gradient(45deg, transparent, rgba(255,255,255,.2), transparent); transform: translateX(-100%); transition: transform .6s; }
.btn:hover::before { transform: translateX(100%); }
.btn:active::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle, rgba(255,255,255,.3), transparent 70%); border-radius: inherit; animation: ripple .4s ease-out; }
@keyframes ripple { from { transform: scale(0); opacity: 1; } to { transform: scale(2); opacity: 0; } }

.btn-primary {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    color: var(--pink-deep); box-shadow: 0 4px 25px rgba(0,229,255,.4);
    font-weight: 800;
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 40px rgba(0,229,255,.5); }

.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.3); backdrop-filter: blur(5px); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.6); transform: translateY(-3px); }

.btn-pink {
    background: linear-gradient(135deg, var(--pink-hot), var(--magenta));
    color: var(--white); box-shadow: 0 4px 25px var(--shadow-pink);
}
.btn-pink:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 40px var(--shadow-pink); }

.btn-sm { padding: 10px 24px; font-size: .88rem; }

/* ========== SECTIONS ========== */
.section { padding: 120px 24px; position: relative; }
.section-dark { background: linear-gradient(160deg, var(--pink-deep), #2a0a1e); color: var(--white); }
.section-alt { background: var(--bg-dark); }

.container { max-width: 1140px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 70px; }

.section-label { display: inline-block; font-size: .75rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--pink-hot); margin-bottom: 12px; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; margin-bottom: 16px; color: var(--pink-deep); line-height: 1.1; }
.section-dark .section-header h2 { color: var(--white); }
.section-header p { font-size: 1.1rem; color: var(--text-light); max-width: 640px; margin: 0 auto; }
.section-dark .section-header p { color: rgba(255,255,255,.6); }

/* ========== ABOUT ========== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-text h3 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 20px; color: var(--pink-deep); }
.about-text p { color: var(--text-light); margin-bottom: 16px; font-size: 1.05rem; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }

.feature-item {
    padding: 20px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
    transition: all .4s cubic-bezier(.16,1,.3,1); position: relative; overflow: hidden;
}
.feature-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--pink-hot), var(--cyan), var(--yellow)); transform: scaleX(0); transition: transform .4s cubic-bezier(.16,1,.3,1); }
.feature-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg), 0 0 30px rgba(233,30,144,.08); }
.feature-item:hover::before { transform: scaleX(1); }

.feature-icon {
    width: 48px; height: 48px; background: linear-gradient(135deg, var(--pink-hot), var(--magenta));
    border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; color: var(--white);
}
.feature-item h4 { font-size: .95rem; margin-bottom: 4px; color: var(--pink-deep); }
.feature-item p { font-size: .82rem; color: var(--text-light); line-height: 1.5; }

/* About visual */
.about-visual { position: relative; perspective: 1000px; }

.visual-card {
    background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-lg);
    position: relative; overflow: hidden; transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.visual-card:hover { transform: rotateY(-3deg) rotateX(2deg); }
.visual-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--pink-hot), var(--cyan), var(--yellow), var(--magenta)); }
.visual-card-alpaca { position: absolute; bottom: -20px; right: -10px; width: 160px; height: 160px; opacity: .06; }

.visual-card h4 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 16px; color: var(--pink-deep); }
.visual-card ul { list-style: none; margin-top: 16px; }
.visual-card ul li { padding: 10px 0 10px 32px; position: relative; color: var(--text-light); font-size: 1.02rem; border-bottom: 1px solid var(--bg-dark); transition: all .3s; }
.visual-card ul li:hover { padding-left: 38px; color: var(--pink-deep); }
.visual-card ul li:last-child { border-bottom: none; }
.visual-card ul li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 10px; height: 10px; background: linear-gradient(135deg, var(--pink-hot), var(--cyan)); border-radius: 50%; transition: all .3s; }
.visual-card ul li:hover::before { transform: translateY(-50%) scale(1.3); box-shadow: 0 0 10px rgba(233,30,144,.4); }

/* ========== STATS ========== */
.stats-strip {
    background: linear-gradient(135deg, var(--pink-deep), var(--pink-dark), var(--pink));
    padding: 60px 24px; position: relative; overflow: hidden;
}
.stats-strip::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }

.stats-grid { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; z-index: 1; }
.stat-item { text-align: center; color: var(--white); }
.stat-number {
    font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 900; line-height: 1;
    background: linear-gradient(135deg, var(--white), var(--yellow), var(--cyan));
    background-size: 200% 200%; animation: gradientTextShift 3s ease-in-out infinite;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
@keyframes gradientTextShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.stat-label { font-size: .9rem; color: rgba(255,255,255,.5); margin-top: 8px; font-weight: 500; }

/* ========== TIMELINE ========== */
.timeline { position: relative; padding: 40px 0; }
.timeline::before {
    content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 4px;
    background: linear-gradient(to bottom, var(--pink-hot), var(--cyan), var(--yellow), var(--magenta));
    transform: translateX(-50%); border-radius: 2px;
    box-shadow: 0 0 15px rgba(233,30,144,.3), 0 0 30px rgba(0,229,255,.15);
}

.timeline-item { display: flex; align-items: center; margin-bottom: 80px; position: relative; }
.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }

.timeline-dot {
    position: absolute; left: 50%; transform: translateX(-50%); width: 24px; height: 24px;
    background: var(--white); border: 4px solid var(--pink-hot); border-radius: 50%; z-index: 2; transition: all .4s;
}
.timeline-item:hover .timeline-dot { background: var(--cyan); border-color: var(--cyan); transform: translateX(-50%) scale(1.3); box-shadow: 0 0 25px rgba(0,229,255,.5); }

.timeline-content {
    width: calc(50% - 60px); background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow); transition: all .5s cubic-bezier(.16,1,.3,1); position: relative;
}
.timeline-content:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg), var(--shadow-pink); }
.timeline-content::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--pink-hot), var(--cyan)); }

.edition-header { padding: 32px 32px 0; }
.edition-number {
    display: inline-flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg, var(--pink-hot), var(--magenta)); color: var(--white);
    padding: 5px 16px; border-radius: 100px; font-size: .75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px;
}
.edition-header h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--pink-deep); margin-bottom: 6px; }
.edition-date { color: var(--pink-hot); font-weight: 700; font-size: .95rem; display: flex; align-items: center; gap: 6px; }

.edition-body { padding: 20px 32px 32px; }
.edition-body p { color: var(--text-light); font-size: .95rem; margin-bottom: 14px; line-height: 1.7; }

.edition-charity {
    background: linear-gradient(135deg, rgba(233,30,144,.06), rgba(0,229,255,.06));
    border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 16px;
    border-left: 3px solid var(--pink-hot); font-size: .9rem; color: var(--pink-deep); font-weight: 500;
}

.edition-details { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.edition-detail { background: var(--bg); padding: 14px 18px; border-radius: var(--radius-sm); transition: all .3s; }
.edition-detail:hover { background: var(--bg-dark); transform: translateY(-2px); }
.edition-detail-label { font-size: .7rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.edition-detail-value { font-weight: 700; color: var(--pink-deep); font-size: .92rem; margin-top: 2px; }

/* Current edition */
.edition-current {
    background: linear-gradient(135deg, var(--pink-deep), var(--pink-hot), var(--magenta));
    border-radius: var(--radius); padding: 52px; color: var(--white); text-align: center;
    margin-top: 40px; position: relative; overflow: hidden;
    box-shadow: 0 20px 60px rgba(233,30,144,.3);
    border: 3px solid rgba(255,255,255,.15);
}
.edition-current::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23fff' fill-opacity='.04' fill-rule='evenodd'/%3E%3C/svg%3E"); pointer-events: none; }

.edition-current > * { position: relative; z-index: 1; }
.edition-current .edition-number { background: rgba(0,0,0,.25); border: 1px solid rgba(255,255,255,.3); font-size: .85rem; padding: 8px 24px; }
.edition-current h3 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 20px 0 16px; text-shadow: 0 2px 4px rgba(0,0,0,.3), 0 0 30px rgba(0,229,255,.3); }
.edition-current p { font-size: 1.1rem; color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 14px; line-height: 1.7; text-shadow: 0 1px 3px rgba(0,0,0,.2); }
.edition-current .edition-location { font-size: .95rem; color: rgba(255,255,255,.6); margin-bottom: 28px; }
.edition-current .btn { margin-top: 8px; }

/* ========== POSTER ========== */
.poster-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--pink-deep), var(--pink-hot), var(--magenta));
    text-align: center; position: relative; overflow: hidden;
}
.poster-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(0,229,255,.12) 0%, transparent 50%), radial-gradient(ellipse at 80% 50%, rgba(255,214,0,.08) 0%, transparent 50%); }
.poster-img {
    max-width: 500px; width: 100%; border-radius: var(--radius); position: relative; z-index: 1;
    box-shadow: 0 20px 60px rgba(0,0,0,.4); transition: all .5s cubic-bezier(.16,1,.3,1);
}
.poster-img:hover { transform: scale(1.04) rotate(-1.5deg); box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 60px rgba(0,229,255,.2), 0 0 80px rgba(233,30,144,.15); }
.poster-caption { color: rgba(255,255,255,.5); font-size: .85rem; margin-top: 16px; position: relative; z-index: 1; }

/* ========== REGISTRATION ========== */
.reg-wrapper { display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: start; }

.reg-form-card {
    background: var(--white); border-radius: var(--radius); padding: 48px; box-shadow: var(--shadow-lg);
    position: relative; overflow: hidden;
}
.reg-form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--pink-hot), var(--cyan), var(--yellow), var(--magenta)); }

.reg-sidebar { position: sticky; top: 100px; }

.pricing-card { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); margin-bottom: 24px; }
.pricing-card h4 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 20px; color: var(--pink-deep); }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--bg-dark); transition: all .3s; }
.price-row:hover { padding-left: 8px; }
.price-row:last-child { border-bottom: none; }
.price-label { color: var(--text-light); font-weight: 500; }
.price-value { font-weight: 800; font-size: 1.4rem; background: linear-gradient(135deg, var(--pink-hot), var(--magenta)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Bank card */
.bank-card {
    background: linear-gradient(135deg, #1a0a12, var(--pink-deep), #2a0a1e); border-radius: var(--radius);
    padding: 36px; color: var(--white); box-shadow: 0 10px 40px rgba(136,14,79,.3); position: relative; overflow: hidden;
}
.bank-card::before { content: ''; position: absolute; top: -50%; right: -50%; width: 200px; height: 200px; background: radial-gradient(circle, rgba(0,229,255,.12), transparent 70%); border-radius: 50%; animation: bankShimmer 5s ease-in-out infinite; }
.bank-card::after { content: ''; position: absolute; bottom: -30%; left: -20%; width: 150px; height: 150px; background: radial-gradient(circle, rgba(233,30,144,.12), transparent 70%); border-radius: 50%; }
@keyframes bankShimmer { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(20px,-20px); } }
.bank-card > * { position: relative; z-index: 1; }
.bank-card h4 { font-size: .85rem; margin-bottom: 20px; opacity: .5; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
.bank-org { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 16px; }
.bank-account { font-family: 'JetBrains Mono', monospace; font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 20px; word-break: break-all; line-height: 1.8; padding: 12px 16px; background: rgba(255,255,255,.08); border-radius: 8px; border: 1px solid rgba(255,255,255,.1); }
.bank-detail { font-size: .9rem; opacity: .7; margin-bottom: 6px; line-height: 1.6; }
.bank-detail strong { opacity: 1; }

/* ========== FORM ========== */
.form-section-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--pink-deep); margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
.form-section-title .num { width: 36px; height: 36px; background: linear-gradient(135deg, var(--pink-hot), var(--magenta)); color: var(--white); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 800; }

.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 8px; font-size: .88rem; color: var(--text); }
.form-group label .required { color: var(--pink-hot); font-weight: 800; }
.form-control { width: 100%; padding: 14px 18px; border: 2px solid var(--bg-dark); border-radius: var(--radius-sm); font-size: 1rem; font-family: inherit; transition: all .3s cubic-bezier(.16,1,.3,1); background: var(--bg); }
.form-control:focus { outline: none; border-color: var(--pink); background: var(--white); box-shadow: 0 0 0 5px rgba(233,30,144,.08); transform: translateY(-1px); }

.checkbox-group { display: flex; align-items: flex-start; gap: 14px; margin: 24px 0; padding: 20px; background: var(--bg); border-radius: var(--radius); border: 2px solid var(--bg-dark); transition: all .3s; }
.checkbox-group:has(input:checked) { border-color: var(--pink); background: rgba(233,30,144,.03); }
.checkbox-group input[type="checkbox"] { width: 22px; height: 22px; margin-top: 2px; accent-color: var(--pink-hot); flex-shrink: 0; cursor: pointer; }
.checkbox-group label { font-size: .85rem; color: var(--text-light); cursor: pointer; line-height: 1.6; }

.form-divider { border: none; border-top: 2px dashed var(--bg-dark); margin: 36px 0; }

.participant-block { background: var(--bg); border-radius: var(--radius); padding: 28px; margin-bottom: 16px; position: relative; border: 2px solid var(--bg-dark); animation: slideIn .4s cubic-bezier(.16,1,.3,1); transition: all .3s; }
.participant-block:hover { border-color: var(--pink-light); }
@keyframes slideIn { from { opacity: 0; transform: translateY(-15px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

.participant-block h4 { font-size: 1rem; margin-bottom: 18px; color: var(--pink-hot); display: flex; justify-content: space-between; align-items: center; font-weight: 700; }
.remove-participant { background: none; border: 2px solid var(--danger); color: var(--danger); cursor: pointer; font-size: .8rem; font-weight: 700; padding: 4px 14px; border-radius: 100px; transition: all .3s; }
.remove-participant:hover { background: var(--danger); color: var(--white); }
.participant-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.add-participant-btn { width: 100%; padding: 20px; border: 2px dashed var(--pink-light); border-radius: var(--radius); background: transparent; color: var(--pink-hot); font-weight: 700; font-size: .95rem; cursor: pointer; transition: all .3s cubic-bezier(.16,1,.3,1); font-family: inherit; margin-bottom: 28px; }
.add-participant-btn:hover { background: rgba(233,30,144,.04); border-color: var(--pink-hot); transform: translateY(-2px); }

.summary-box { background: linear-gradient(135deg, rgba(233,30,144,.04), rgba(0,229,255,.04)); border-radius: var(--radius); padding: 28px; margin: 28px 0; border: 2px solid var(--pink-light); animation: slideIn .3s cubic-bezier(.16,1,.3,1); }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: .95rem; }
.summary-total { border-top: 3px solid var(--pink-hot); margin-top: 10px; padding-top: 14px; font-size: 1.3rem; font-weight: 800; color: var(--pink-deep); }

/* ========== SUCCESS ========== */
.success-modal { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,.6); backdrop-filter: blur(12px); align-items: center; justify-content: center; padding: 24px; }
.success-modal.active { display: flex; }
.success-content { background: var(--white); border-radius: var(--radius); padding: 52px; max-width: 540px; width: 100%; text-align: center; box-shadow: 0 30px 80px rgba(0,0,0,.25); animation: modalPop .5s cubic-bezier(.16,1,.3,1); position: relative; overflow: hidden; }
@keyframes modalPop { from { opacity: 0; transform: scale(.9) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.success-confetti { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.success-icon { width: 90px; height: 90px; background: linear-gradient(135deg, var(--pink-hot), var(--magenta)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; position: relative; z-index: 1; animation: iconPop .6s cubic-bezier(.16,1,.3,1) .2s both; }
@keyframes iconPop { from { transform: scale(0) rotate(-180deg); } to { transform: scale(1) rotate(0); } }
.success-icon svg { width: 40px; height: 40px; fill: var(--white); }
.success-content h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--pink-deep); margin-bottom: 12px; position: relative; z-index: 1; }
.success-content p { color: var(--text-light); margin-bottom: 8px; position: relative; z-index: 1; }
.success-amount { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; background: linear-gradient(135deg, var(--pink-hot), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin: 20px 0; position: relative; z-index: 1; }
.success-transfer { background: var(--bg); border-radius: var(--radius-sm); padding: 20px; margin: 20px 0; text-align: left; font-size: .9rem; position: relative; z-index: 1; }
.success-transfer dt { color: var(--text-light); font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.success-transfer dd { font-weight: 700; margin-bottom: 10px; color: var(--pink-deep); word-break: break-all; }

/* ========== FOOTER ========== */
.footer { background: linear-gradient(160deg, #1a0510, var(--pink-deep), #2a0a1e); color: rgba(255,255,255,.6); padding: 80px 24px 40px; position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--pink-hot), var(--cyan), var(--yellow), var(--magenta), var(--pink-hot)); background-size: 200% 100%; animation: gradientSlide 3s linear infinite; }
@keyframes gradientSlide { 0% { background-position: 0% 0%; } 100% { background-position: 200% 0%; } }

.footer-grid { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer h4 { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 20px; }
.footer p { font-size: .92rem; line-height: 1.8; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .92rem; transition: all .3s; display: inline-block; }
.footer-links a:hover { color: var(--cyan); transform: translateX(4px); }
.footer-bottom { max-width: 1140px; margin: 0 auto; text-align: center; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.08); font-size: .85rem; }

/* ========== SCROLL ANIMATIONS ========== */
.reveal { opacity: 0; transform: translateY(40px); transition: all .8s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: all .8s cubic-bezier(.16,1,.3,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: all .8s cubic-bezier(.16,1,.3,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(.9); transition: all .8s cubic-bezier(.16,1,.3,1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.stagger-children > * { opacity: 0; transform: translateY(20px); transition: all .5s cubic-bezier(.16,1,.3,1); }
.stagger-children.visible > *:nth-child(1) { transition-delay: .05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: .1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: .15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: .2s; }
.stagger-children.visible > * { opacity: 1; transform: translateY(0); }

/* ========== MISC ========== */
.btn.loading { pointer-events: none; opacity: .8; }
.btn.loading::after { content: ''; width: 18px; height: 18px; border: 3px solid transparent; border-top-color: currentColor; border-radius: 50%; animation: spin .6s linear infinite; margin-left: 8px; }
@keyframes spin { to { transform: rotate(360deg); } }

.toast { position: fixed; bottom: 30px; right: 30px; padding: 18px 28px; background: var(--pink-deep); color: var(--white); border-radius: var(--radius); box-shadow: 0 10px 40px rgba(0,0,0,.2); z-index: 3000; font-size: .95rem; font-weight: 600; animation: toastIn .4s cubic-bezier(.16,1,.3,1); max-width: 420px; }
.toast.error { background: linear-gradient(135deg, var(--danger), #d32f2f); }
@keyframes toastIn { from { transform: translateX(120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .reg-wrapper { grid-template-columns: 1fr; }
    .reg-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline::before { left: 24px; }
    .timeline-item { flex-direction: row !important; }
    .timeline-dot { left: 24px; }
    .timeline-content { width: calc(100% - 60px); margin-left: auto; }
}

@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; background: var(--bg); flex-direction: column; padding: 16px 24px; border-bottom: 1px solid rgba(233,30,144,.1); box-shadow: var(--shadow); }
    .nav-links.open { display: flex; }
    .nav-links a { color: var(--text) !important; }
    .nav-toggle { display: block; }
    .participant-row { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .hero { padding: 100px 20px 60px; min-height: 100svh; }
    .hero-alpaca { width: 130px; height: 130px; }
    .hero h1 { font-size: clamp(3rem, 14vw, 5rem); }
    .hero-subtitle { font-size: .9rem; margin-bottom: 24px; }
    .hero-date { font-size: .95rem; padding: 6px 18px; }
    .hero-edition-badge { font-size: .75rem; padding: 8px 18px; letter-spacing: 1.5px; }
    .hero-cta { gap: 12px; }
    .hero-cta .btn { padding: 14px 28px; font-size: .9rem; }
    .section { padding: 80px 16px; }
    .reg-form-card { padding: 28px; }
    .edition-header, .edition-body { padding-left: 20px; padding-right: 20px; }
    .edition-header h3 { font-size: 1.2rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat-number { font-size: 2.5rem; }
    .reg-sidebar { grid-template-columns: 1fr; }
    .edition-details { grid-template-columns: 1fr; }
    .edition-current { padding: 32px 20px; }
    .edition-current h3 { font-size: clamp(1.4rem, 5vw, 2rem); margin: 16px 0 12px; }
    .edition-current p { font-size: .95rem; line-height: 1.6; }
    .edition-current .edition-location { font-size: .85rem; margin-bottom: 20px; }
    .edition-current .btn { padding: 14px 28px; font-size: .9rem; }
    .alpaca-peek img { width: 80px; height: 80px; }
    .hero-splatter { opacity: .1 !important; }
    .poster-img { max-width: 100%; border-radius: var(--radius-sm); }
    .poster-section { padding: 48px 16px; }
    .timeline-content { width: calc(100% - 50px); }
    .success-content { padding: 32px 20px; }
    .success-amount { font-size: 2rem; }
}

@media (max-width: 420px) {
    .hero { padding: 90px 16px 50px; }
    .hero-alpaca { width: 100px; height: 100px; }
    .hero-tagline { font-size: 1rem; }
    .hero-charity { font-size: .85rem; }
    .hero-location { font-size: .78rem; }
    .edition-current { padding: 28px 16px; }
    .edition-current h3 { font-size: 1.3rem; }
    .edition-current p { font-size: .88rem; }
    .reg-form-card { padding: 20px; }
    .bank-card { padding: 24px; }
    .pricing-card { padding: 24px; }
    .stats-strip { padding: 40px 16px; }
    .stat-number { font-size: 2rem; }
}
