/* ========================================
   Million Woman Dance — Styles
   ======================================== */

:root {
    --rose: #e8456b;
    --rose-dark: #c9334f;
    --rose-light: #fce4ec;
    --gold: #f5a623;
    --plum: #4a1942;
    --plum-light: #6b2d5b;
    --cream: #fdf6f0;
    --white: #ffffff;
    --text: #2d1b33;
    --text-light: #6b5a72;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(74, 25, 66, 0.08);
    --shadow-lg: 0 12px 48px rgba(74, 25, 66, 0.12);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.15;
}

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 700; }

.section-title {
    text-align: center;
    margin-bottom: 8px;
}

.section-sub {
    text-align: center;
    color: var(--text-light);
    font-size: 1.15rem;
    margin-bottom: 56px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-primary {
    background: var(--rose);
    color: var(--white);
    border-color: var(--rose);
}
.btn-primary:hover {
    background: var(--rose-dark);
    border-color: var(--rose-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 69, 107, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-outline-dark {
    background: transparent;
    color: var(--plum);
    border-color: var(--plum);
}
.btn-outline-dark:hover {
    background: var(--plum);
    color: var(--white);
}

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; }

.btn-nav {
    background: var(--rose);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.25s ease;
}
.btn-nav:hover { background: var(--rose-dark); }

.btn-share {
    background: var(--plum);
    color: var(--white);
    font-size: 0.9rem;
    padding: 10px 20px;
}
.btn-share:hover {
    background: var(--plum-light);
    transform: translateY(-1px);
}

.btn-link {
    background: none;
    border: none;
    color: var(--rose);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    font-size: inherit;
    font-family: inherit;
}

/* Nav */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all 0.3s ease;
}
#nav.scrolled {
    background: rgba(74, 25, 66, 0.95);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
}

/* Invite Banner */
.invite-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(90deg, var(--rose), var(--gold));
    padding: 12px 0;
    text-align: center;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.invite-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.invite-banner .btn-sm {
    background: var(--white);
    color: var(--rose);
    border-color: var(--white);
}

/* Hero */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--plum) 0%, #2d1042 40%, #1a0a2e 100%);
    overflow: hidden;
    padding: 120px 24px 100px;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-stars {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-bubbles {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-bubble {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0;
    animation: bubbleFadeIn 1s ease forwards, bubbleShimmer 4s ease-in-out infinite;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    will-change: transform;
    background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
}

.hero-bubble::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.35) 0%, transparent 30%),
        radial-gradient(circle at 65% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, transparent 50%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-bubble::after {
    content: '';
    position: absolute;
    top: 6%;
    left: 12%;
    width: 35%;
    height: 22%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    filter: blur(3px);
    z-index: 3;
    pointer-events: none;
    transform: rotate(-25deg);
}

.hero-bubble img {
    width: 120%;
    height: 120%;
    margin: -10%;
    object-fit: cover;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.6;
}

@keyframes bubbleFadeIn {
    to { opacity: 0.35; }
}

@keyframes bubbleShimmer {
    0%, 100% {
        box-shadow:
            0 0 20px rgba(232, 69, 107, 0.1),
            inset 0 0 20px rgba(255, 255, 255, 0.05),
            inset -8px -8px 16px rgba(255, 255, 255, 0.08);
    }
    50% {
        box-shadow:
            0 0 30px rgba(245, 166, 35, 0.15),
            inset 0 0 25px rgba(255, 255, 255, 0.12),
            inset 8px 8px 20px rgba(255, 255, 255, 0.15);
    }
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 720px;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background: rgba(245, 166, 35, 0.15);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

#hero h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.hero-sub {
    color: rgba(255,255,255,0.75);
    font-size: 1.2rem;
    max-width: 540px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat { text-align: center; }

.hero-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.15);
}

.counter-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.counter-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    margin-top: 4px;
}

.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: opacity 0.4s ease;
}

.scroll-hint.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* How It Works */
#how-it-works {
    padding: 120px 0;
    background: var(--white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--rose-light);
    line-height: 1;
    margin-bottom: -8px;
}

.step-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    color: var(--rose);
}
.step-icon svg { width: 100%; height: 100%; }

.step h3 { margin-bottom: 10px; color: var(--plum); font-size: 1.1rem; }
.step p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* Next Group Dance milestone */
#next-dance {
    padding: 80px 0;
    background: var(--cream);
}

.next-dance-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, var(--white) 0%, #fef0e6 100%);
    border-radius: var(--radius-lg);
    padding: 56px 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(232, 69, 107, 0.15);
}

.next-dance-badge {
    display: inline-block;
    background: rgba(232, 69, 107, 0.1);
    color: var(--rose);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(232, 69, 107, 0.2);
}

.next-dance-card h2 {
    color: var(--plum);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    margin-bottom: 20px;
    line-height: 1.15;
}

.next-dance-card h2 span {
    color: var(--rose);
}

.next-dance-description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.next-dance-description strong {
    color: var(--plum);
}

.next-dance-progress {
    margin-bottom: 32px;
}

.next-dance-progress-bar {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    height: 12px;
    background: rgba(74, 25, 66, 0.08);
    border-radius: 6px;
    overflow: hidden;
}

.next-dance-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--rose), var(--gold));
    border-radius: 6px;
    width: 0%;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.next-dance-progress-text {
    margin-top: 10px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.next-dance-progress-text span {
    color: var(--rose);
    font-weight: 700;
}

.next-dance-tbd {
    margin-top: 20px;
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: italic;
}

/* The Pledge */
#the-pledge {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--plum) 0%, #2d1042 100%);
}

.pledge-card {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.pledge-card h2 {
    color: var(--white);
    margin-bottom: 32px;
}

.pledge-card blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 48px;
    padding: 0 20px;
}

.pledge-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: left;
}

.pledge-detail {
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.pledge-detail strong {
    display: block;
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.pledge-detail span {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Ripple Effect */
#the-ripple {
    padding: 80px 0;
    background: var(--white);
}

.ripple-wrapper {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 32px;
    align-items: center;
    margin-bottom: 32px;
}

#ripple-canvas {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    background: #1a0a2e;
}

.ripple-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ripple-stat-round {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}
.ripple-stat-round span { color: var(--rose); }

.ripple-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--plum);
    line-height: 1;
}

.ripple-stat-label {
    color: var(--text-light);
    font-size: 0.85rem;
}

.ripple-progress-wrap { width: 100%; }

.ripple-progress {
    width: 100%;
    height: 8px;
    background: var(--rose-light);
    border-radius: 4px;
    overflow: hidden;
}

.ripple-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--rose), var(--gold));
    border-radius: 4px;
    width: 0%;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.ripple-progress-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 6px;
}

/* We Danced - Dance Feed */
#we-danced {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.we-danced-map {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-height: 100%;
    object-fit: contain;
    pointer-events: none;
    opacity: 0.7;
}

.dance-feed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.dance-feed-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px;
    color: var(--text-light);
}

.dance-feed-empty p {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.dance-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--rose);
}

.dance-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.dance-card-header strong {
    color: var(--plum);
    font-size: 1rem;
}

.dance-card-city {
    background: var(--rose-light);
    color: var(--rose-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 50px;
}

.dance-card-time {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--text-light);
}

.dance-card-body {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.dance-card-count {
    background: var(--plum);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

.dance-card-names,
.dance-card-song,
.dance-card-location {
    font-size: 0.85rem;
    color: var(--text-light);
}

.dance-card-song::before { content: "♪ "; color: var(--rose); }
.dance-card-location::before { content: "@ "; color: var(--gold); }

.dance-card-message {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 8px;
    line-height: 1.6;
}

.dance-report-cta {
    text-align: center;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.dance-report-cta p {
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 1rem;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 10, 46, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
}

.modal-content h3 {
    color: var(--plum);
    margin-bottom: 8px;
}

.modal-content > p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.modal-content textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8dfe8;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text);
    transition: border-color 0.2s;
    background: var(--white);
    resize: vertical;
}

.modal-content textarea:focus {
    outline: none;
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(232, 69, 107, 0.1);
}

/* Guide */
#guide {
    padding: 120px 0;
    background: var(--white);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.guide-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.guide-card h3 {
    color: var(--plum);
    margin-bottom: 12px;
    font-size: 1.15rem;
}

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

.guide-card em {
    color: var(--rose);
    font-style: italic;
}

/* Sign Up */
#sign {
    padding: 120px 0;
    background: var(--cream);
}

.signup-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.signup-left h2 {
    color: var(--plum);
    margin-bottom: 16px;
}

.signup-left > p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.signup-promise {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    border-left: 4px solid var(--rose);
}

.signup-promise p {
    font-weight: 600;
    color: var(--plum);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.signup-promise ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.signup-promise li {
    padding-left: 24px;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}

.signup-promise li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--rose);
}

/* Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--plum);
    margin-bottom: 6px;
}

.optional {
    font-weight: 400;
    color: var(--text-light);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8dfe8;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text);
    transition: border-color 0.2s;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(232, 69, 107, 0.1);
}

.form-group input::placeholder { color: #c4b8c9; }

.form-check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.form-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--rose);
    flex-shrink: 0;
}

.form-check label {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    cursor: pointer;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 12px;
}

/* Invite link box */
.invite-link-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--cream);
    border: 2px solid #e8dfe8;
    border-radius: var(--radius);
    padding: 12px 16px;
    margin: 16px 0 8px;
}

.invite-link-box code {
    flex: 1;
    font-size: 0.85rem;
    color: var(--plum);
    word-break: break-all;
    font-family: 'Inter', monospace;
}

.invite-link-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: center;
}

.post-signup-actions {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e8dfe8;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Success */
.form-success {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    color: var(--rose);
    margin: 0 auto 20px;
}
.success-icon svg { width: 100%; height: 100%; }

.form-success h3 {
    color: var(--plum);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.form-success > p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.share-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Your Ripple */
.your-ripple-section {
    padding: 80px 0;
    background: var(--white);
}

.your-ripple-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
}

.yr-stat { text-align: center; }

.yr-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--rose);
    line-height: 1;
}

.yr-stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
}

.yr-invites-list {
    max-width: 480px;
    margin: 0 auto;
}

.yr-invite {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    background: var(--cream);
    margin-bottom: 8px;
}

.yr-invite strong { color: var(--plum); }
.yr-invite span { color: var(--text-light); font-size: 0.85rem; }
.yr-invite-time { margin-left: auto; font-size: 0.8rem; }

.yr-empty {
    text-align: center;
    color: var(--text-light);
    padding: 24px;
}

/* Gift Bag */
#gift-bag {
    padding: 100px 0;
    background: var(--cream);
}

.gift-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 920px;
    margin: 0 auto;
}

.gift-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(74, 25, 66, 0.06);
    display: flex;
    flex-direction: column;
}

.gift-card-vip {
    background: linear-gradient(135deg, #fff8eb 0%, #fef0e6 100%);
    border: 1px solid rgba(245, 166, 35, 0.3);
    box-shadow: 0 8px 32px rgba(245, 166, 35, 0.15);
    position: relative;
}

.gift-card-vip::before {
    content: '✨';
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.4rem;
}

.gift-tag {
    display: inline-block;
    align-self: flex-start;
    background: rgba(74, 25, 66, 0.08);
    color: var(--plum);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.gift-tag-vip {
    background: rgba(245, 166, 35, 0.18);
    color: #b07000;
}

.gift-card h3 {
    color: var(--plum);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.gift-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 4px 0 20px;
}

.gift-preview img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(74, 25, 66, 0.12);
    background: #fdf6f0;
    display: block;
}

.gift-preview .gift-preview-portrait {
    object-fit: contain;
    background: #0d1840;
    padding: 10px;
}

/* Gift card (16:9 image) shouldn't be cover-cropped — dancers sit at the edges */
.gift-card-vip .gift-preview img:last-child {
    object-fit: contain;
    background: #fdf6f0;
    padding: 6px;
}

.charity-note {
    color: #b07000;
    font-weight: 600;
    font-size: 0.85em;
    white-space: nowrap;
}

.signup-giftbag {
    background: linear-gradient(135deg, #fff8eb 0%, #fef0e6 100%);
    border: 1px solid rgba(245, 166, 35, 0.3);
    border-radius: 14px;
    padding: 18px 22px;
    margin: 0 0 24px;
}

.signup-giftbag-headline {
    color: #b07000;
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0 0 6px;
}

.signup-giftbag-body {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
}

.gift-card-sub {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.gift-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.gift-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: var(--text);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(74, 25, 66, 0.06);
}

.gift-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--rose);
    font-weight: 700;
}

.gift-list li:last-child { border-bottom: none; }

.gift-card-cta {
    margin-top: auto;
}

@media (max-width: 720px) {
    .gift-grid { grid-template-columns: 1fr; }
}

/* VIP unlock indicator (Your Ripple) */
.vip-status {
    background: linear-gradient(135deg, #fff8eb 0%, #fef0e6 100%);
    border: 1px solid rgba(245, 166, 35, 0.35);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 0 auto 24px;
    max-width: 560px;
    text-align: center;
}

.vip-status-locked .vip-status-headline {
    color: var(--plum);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 6px;
}

.vip-status-unlocked {
    background: linear-gradient(135deg, #fff3d4 0%, #ffe1b8 100%);
    border-color: rgba(245, 166, 35, 0.55);
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.2);
}

.vip-status-unlocked .vip-status-headline {
    color: #b07000;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.vip-status-sub {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.vip-progress-track {
    margin-top: 12px;
    display: flex;
    gap: 6px;
    justify-content: center;
}

.vip-progress-pip {
    width: 28px;
    height: 8px;
    border-radius: 4px;
    background: rgba(74, 25, 66, 0.12);
}

.vip-progress-pip.filled {
    background: var(--rose);
}

/* Grand Finale */
#grand-finale {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a0a2e 0%, var(--plum) 50%, #2d1042 100%);
    position: relative;
    overflow: hidden;
}

#grand-finale::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
}

.finale-content {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.finale-badge {
    display: inline-block;
    background: rgba(245, 166, 35, 0.2);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(245, 166, 35, 0.3);
}

#grand-finale h2 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.finale-description {
    color: rgba(255,255,255,0.75);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 48px;
}

.finale-description strong {
    color: var(--gold);
}

.finale-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
    margin-bottom: 48px;
}

.finale-detail {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.finale-detail strong {
    display: block;
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

.finale-detail span {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.5;
}

.finale-progress {
    margin-bottom: 32px;
}

.finale-progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    overflow: hidden;
}

.finale-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--rose), var(--gold));
    border-radius: 6px;
    width: 0%;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.finale-progress-text {
    margin-top: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.finale-progress-text span {
    color: var(--gold);
    font-weight: 700;
}

/* Partners */
#partners {
    padding: 80px 0;
    background: var(--cream);
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.partner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 48px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.partner-card-featured {
    gap: 12px;
}

.partner-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.partner-card-book {
    gap: 14px;
}

.partner-book-cover {
    height: 64px;
    width: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.partner-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--plum);
}

.partner-cta {
    max-width: 600px;
    margin: 48px auto 0;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--rose);
}

.partner-cta h3 {
    color: var(--plum);
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.partner-cta p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Footer */
footer {
    background: var(--plum);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 32px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 48px;
    align-items: start;
    margin-bottom: 48px;
}

.footer-brand .logo {
    display: block;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
    max-width: 280px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-social p {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.8rem;
}

.footer-earthpilot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.footer-earthpilot a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-earthpilot a:hover {
    color: var(--white);
}

.earthpilot-logo {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    opacity: 0.8;
}

/* Social Proof Toast */
.social-toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 500;
    background: var(--white);
    border-radius: var(--radius);
    padding: 14px 20px;
    box-shadow: 0 8px 32px rgba(74, 25, 66, 0.15);
    border-left: 3px solid var(--rose);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 320px;
    opacity: 0;
    transform: translateY(20px) translateX(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.social-toast.visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.social-toast-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--rose-light);
    color: var(--rose);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.social-toast-text {
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.4;
}

.social-toast-text strong {
    color: var(--plum);
}

.social-toast-time {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 2px;
}

.toast-media {
    display: block;
    width: 100%;
    max-height: 80px;
    object-fit: cover;
    border-radius: 6px;
    margin-top: 6px;
}

@media (max-width: 640px) {
    .social-toast {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
    }
}

/* ========================================
   Animations
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 900px) {
    .steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .guide-grid { grid-template-columns: 1fr; }
    .signup-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .ripple-wrapper { grid-template-columns: 1fr; }
    #ripple-canvas { max-width: 360px; margin: 0 auto; aspect-ratio: 1; }
    .pledge-details { grid-template-columns: 1fr; }
    .finale-details { grid-template-columns: 1fr; }
    .dance-feed { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .hero-stats { gap: 20px; }
    .counter-number { font-size: 1.8rem; }
}

@media (max-width: 640px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(74, 25, 66, 0.98);
        padding: 24px;
        gap: 20px;
    }
    .mobile-menu { display: flex; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-lg { width: 100%; max-width: 320px; }
    .steps { grid-template-columns: 1fr; }
    #hero { padding-bottom: 120px; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-stat-divider { width: 48px; height: 1px; }
    .scroll-hint { bottom: 16px; }
    .your-ripple-stats { flex-direction: column; gap: 24px; }
}

/* Photo Upload */
.photo-upload {
    position: relative;
    border: 2px dashed rgba(74, 25, 66, 0.2);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s;
    cursor: pointer;
}
.photo-upload:hover, .photo-upload.dragover {
    border-color: var(--rose);
}
.photo-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}
.photo-upload-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 28px 16px;
    color: var(--text-light);
    text-align: center;
}
.photo-upload-prompt svg { color: var(--rose); opacity: 0.6; }
.photo-upload-hint { font-size: 0.75rem; opacity: 0.6; }
.photo-preview {
    position: relative;
}
.photo-preview img {
    width: 100%;
    max-height: 240px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
}
.photo-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    line-height: 1;
}
.photo-remove:hover { background: var(--rose); }

/* Dance card photo in feed */
img.dance-card-photo {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 10px;
}

video.dance-card-photo {
    width: 100%;
    max-height: 400px;
    border-radius: 8px;
    margin-top: 10px;
}
