:root {
    --bg-dark: #070709;
    --bg-card: rgba(18, 18, 22, 0.75);
    --border: rgba(255, 255, 255, 0.1);
    --primary: #00ff55;
    --primary-glow: rgba(0, 255, 85, 0.4);
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --accent-red: #ff3366;
    --font-family: 'Outfit', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Site Background & Glow Overlay */
.site-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
}

.site-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.25) contrast(1.2);
}

.site-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(0, 255, 85, 0.08) 0%, rgba(7, 7, 9, 0.95) 75%);
}

.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out;
}

/* Top Urgency Ticker */
.urgency-bar {
    background: linear-gradient(90deg, #00cc44 0%, #00ff55 50%, #00cc44 100%);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    padding: 8px 15px;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 255, 85, 0.3);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(7, 7, 9, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-item {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px var(--primary-glow);
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.hero-content {
    max-width: 850px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 85, 0.1);
    border: 1px solid rgba(0, 255, 85, 0.3);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 85, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 255, 85, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 85, 0); }
}

.main-heading {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 30px var(--primary-glow);
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
}

.time-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    padding: 15px 22px;
    border-radius: 12px;
    min-width: 90px;
}

.time-box span {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.time-box label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    padding: 16px 36px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px var(--primary-glow);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px var(--primary-glow);
}

.btn-hero {
    font-size: 1.25rem;
    padding: 18px 45px;
    border-radius: 12px;
}

.btn-secondary-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

/* Social Proof Ticker */
.social-proof-ticker {
    margin-top: 35px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(18, 18, 22, 0.8);
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #00ff55;
    border-radius: 50%;
    box-shadow: 0 0 8px #00ff55;
}

/* Section Title Wrap */
.section-title-wrap {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.section-tag {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title-wrap h2 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    margin: 5px 0 10px;
}

.section-title-wrap p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Feature Cards Grid */
.details-section {
    padding: 80px 5%;
    background: rgba(10, 10, 14, 0.8);
}

.features-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 30px 25px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(0, 255, 85, 0.15);
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* Details Split Grid */
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.details-text h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.details-text p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.specs-list {
    list-style: none;
    margin-top: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.specs-list li {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.specs-list strong {
    color: var(--primary);
}

.image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.accent-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary);
    border-radius: 16px;
    pointer-events: none;
    box-shadow: inset 0 0 20px var(--primary-glow);
}

/* Story Section */
.story-section {
    padding: 90px 5%;
    background: linear-gradient(180deg, rgba(10, 10, 14, 0.9) 0%, rgba(5, 5, 8, 0.95) 100%);
}

.story-container {
    max-width: 900px;
    margin: 0 auto;
}

.story-header {
    text-align: center;
    margin-bottom: 40px;
}

.story-tag {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.story-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
}

.story-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.story-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 45px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.quote-mark {
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 25px;
    line-height: 1;
}

.story-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.2rem !important;
    color: #fff !important;
    font-weight: 500;
}

.highlight-text {
    color: var(--primary) !important;
    font-weight: 600;
    border-left: 3px solid var(--primary);
    padding-left: 15px;
}

.story-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 15px;
}

.story-author strong {
    display: block;
    font-size: 1.1rem;
    color: #fff;
}

.story-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Pricing Section */
.ticket-section {
    padding: 90px 5%;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 30px;
    flex: 1;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s, border-color 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(0, 255, 85, 0.2);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 5px 15px;
    border-radius: 20px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.package-tag {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.package-tag.glow {
    color: var(--primary);
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
}

.price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    margin: 10px 0;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 25px;
}

.btn-glow {
    box-shadow: 0 0 30px var(--primary-glow);
}

/* Trust Signals */
.trust-signals-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 45px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.t-icon {
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 5%;
    background: rgba(10, 10, 14, 0.7);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 25px;
    border-radius: 14px;
}

.faq-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* Share Section */
.share-section {
    padding: 60px 5%;
    text-align: center;
}

.share-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 35px;
    border-radius: 20px;
}

.share-container h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.share-container p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

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

.share-btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.fb { background: #1877f2; color: #fff; }
.share-btn.x { background: #000; color: #fff; border: 1px solid #333; }
.share-btn.copy { background: #22222a; color: var(--primary); border: 1px solid var(--border); }

.copy-toast {
    margin-top: 15px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: bold;
}

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

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 5, 8, 0.92);
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-card {
    background: #111116;
    border: 1px solid var(--primary);
    box-shadow: 0 0 50px rgba(0, 255, 85, 0.2);
    border-radius: 20px;
    width: 100%;
    max-width: 540px;
    padding: 35px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

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

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-badge {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.modal-price {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--primary);
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    background: #08080a;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary);
}

.form-row {
    display: flex;
    gap: 15px;
}

.security-info {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 15px 0;
    display: flex;
    justify-content: space-between;
}

.payment-error {
    background: rgba(255, 51, 102, 0.15);
    color: var(--accent-red);
    padding: 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.btn-block {
    width: 100%;
}

/* Mission & Cause Section */
.mission-section {
    padding: 80px 5%;
    background: linear-gradient(180deg, rgba(7, 7, 9, 0.95) 0%, rgba(18, 24, 20, 0.95) 50%, rgba(7, 7, 9, 0.95) 100%);
    position: relative;
    border-top: 1px solid rgba(0, 255, 85, 0.2);
    border-bottom: 1px solid rgba(0, 255, 85, 0.2);
}

.mission-container {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card {
    background: rgba(18, 18, 22, 0.85);
    border: 1px solid rgba(0, 255, 85, 0.35);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 0 50px rgba(0, 255, 85, 0.12);
    text-align: center;
    position: relative;
    backdrop-filter: blur(12px);
}

.mission-badge {
    display: inline-block;
    background: rgba(0, 255, 85, 0.15);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.mission-card h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.mission-lead {
    font-size: 1.25rem;
    color: #f0f0f5;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 400;
}

.mission-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 35px;
}

.mission-text strong {
    color: var(--primary);
}

.mission-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.m-stat {
    background: rgba(8, 8, 10, 0.6);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 16px;
}

.m-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 6px;
}

.m-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* Responsiveness */
@media (max-width: 900px) {
    .main-heading { font-size: 3rem; }
    .mission-card h2 { font-size: 2.2rem; }
    .details-grid { grid-template-columns: 1fr; }
    .pricing-cards { flex-direction: column; }
    .card.featured { transform: none; }
    .faq-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}
