/* ============================================================================
   Variables & Root
   ============================================================================ */
:root {
    --background: #000000;
    --foreground: #ffffff;
    --card: #0f0f0f;
    --card-foreground: #ffffff;
    --primary: #ee1d52;
    --primary-foreground: #ffffff;
    --secondary: #f9d4e8;
    --secondary-foreground: #000000;
    --muted: #3a3a3a;
    --muted-foreground: #a6a6a6;
    --accent: #ee1d52;
    --accent-foreground: #ffffff;
    --border: #262626;
    --radius: 0.75rem;

    /* Typography */
    --font-display: 'DM Serif Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, rgba(238, 29, 82, 0.3), transparent 60%);
    --gradient-card: linear-gradient(180deg, #171717, #0f0f0f);
    --gradient-cta: linear-gradient(135deg, #ee1d52, #b31541);
    --gradient-pink: linear-gradient(135deg, #ee1d52, #f9d4e8);

    /* Shadows */
    --shadow-glow: 0 0 40px rgba(238, 29, 82, 0.3);
    --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* ============================================================================
   Base Styles
   ============================================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-color: var(--border);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    line-height: 1.6;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    opacity: 0.8;
}

/* ============================================================================
   Utilities
   ============================================================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-gradient-pink {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.italic {
    font-style: italic;
}

.hidden {
    display: none !important;
}

.active {
    display: flex;
}

/* ============================================================================
   Button Styles
   ============================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-lg {
    padding: 1.5rem 2.5rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-cta);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(238, 29, 82, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: rgba(238, 29, 82, 0.1);
}

/* ============================================================================
   Intro Animation
   ============================================================================ */
.intro-animation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.6s ease 0.5s, visibility 0.6s ease 0.5s;
}

.intro-animation.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.intro-logo {
    font-size: 5rem;
    font-family: var(--font-display);
    font-weight: bold;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: intro-bounce 1s ease-in-out;
}

.intro-text {
    font-size: 2rem;
    font-family: var(--font-display);
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 1rem;
    animation: intro-fade-in 1s ease-in-out;
}

@keyframes intro-bounce {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes intro-fade-in {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ============================================================================
   Main Content
   ============================================================================ */
.main-content {
    opacity: 1;
    transition: opacity 0.6s ease;
}

.main-content.hidden {
    opacity: 0;
}

/* ============================================================================
   Hero Section
   ============================================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 1.5rem 0;
    animation: slide-down 0.6s ease;
}

.logo-header {
    height: 250px;
    animation: fade-in 0.6s ease;
}

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

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.6), rgba(0,0,0,1));
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(238,29,82,0.2), transparent);
}

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

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
    animation: slide-up 0.8s ease 0.2s backwards;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    animation: slide-up 0.8s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slide-up 0.5s ease 0.6s backwards;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

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

/* ============================================================================
   Benefits Section
   ============================================================================ */
.benefits {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    background: #000000;
}

.benefits-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.benefits-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 800px 600px at -20% 50%, rgba(238, 29, 82, 0.15), transparent 80%);
    z-index: 0;
}

.benefits-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(hsl(0, 0%, 100%) 1px, transparent 1px),
        linear-gradient(90deg, hsl(0, 0%, 100%) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.02;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
}

.orb-1 {
    width: 380px;
    height: 380px;
    background: #ee1d52;
    top: 40px;
    left: -192px;
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    width: 288px;
    height: 288px;
    background: #f9d4e8;
    bottom: 80px;
    right: 40px;
    animation: float 8s ease-in-out infinite 1s;
}

.orb-3 {
    width: 224px;
    height: 224px;
    background: rgba(238, 29, 82, 0.5);
    top: 50%;
    left: 33.333%;
    animation: float 8s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); }
    50% { transform: translateY(-30px) translateX(15px) scale(1.1); }
}

.benefits .container {
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    animation: fade-in-up 0.6s ease;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-weight: 400;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 28rem;
    margin: 0 auto;
    font-family: var(--font-body);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(38, 38, 38, 0.5);
    border-radius: 16px;
    overflow: hidden;
}

.benefit-card {
    background: linear-gradient(180deg, #1a0f15 0%, #0f0a0f 100%);
    padding: 2.5rem;
    position: relative;
    border: 1px solid rgba(238, 29, 82, 0.1);
    transition: all 0.5s ease;
    cursor: pointer;
    animation: fade-in-up 0.5s ease backwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.08s; }
.benefit-card:nth-child(2) { animation-delay: 0.16s; }
.benefit-card:nth-child(3) { animation-delay: 0.24s; }
.benefit-card:nth-child(4) { animation-delay: 0.32s; }
.benefit-card:nth-child(5) { animation-delay: 0.4s; }
.benefit-card:nth-child(6) { animation-delay: 0.48s; }

.benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(238, 29, 82, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    border-radius: 0;
}

.benefit-card:hover {
    background: linear-gradient(180deg, rgba(238, 29, 82, 0.1) 0%, #1a0f15 100%);
    border-color: rgba(238, 29, 82, 0.3);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card > * {
    position: relative;
    z-index: 1;
}

.benefit-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: #ee1d52;
    display: block;
    margin-bottom: 1rem;
    transition: color 0.5s ease;
    font-weight: 400;
    opacity: 0.6;
}

.benefit-card:hover .benefit-number {
    opacity: 1;
    color: #ff4d7d;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    font-family: var(--font-display);
    font-weight: 400;
}

.benefit-card:hover h3 {
    color: var(--primary);
}

.benefit-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    font-family: var(--font-body);
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ee1d52, transparent);
    width: 0;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover::after {
    width: 100%;
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================================
   Tiers Section
   ============================================================================ */
.tiers {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tier-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    animation: fade-in-up 0.5s ease backwards;
}

.tier-card:nth-child(1) { animation-delay: 0.1s; }
.tier-card:nth-child(2) { animation-delay: 0.2s; }
.tier-card:nth-child(3) { animation-delay: 0.3s; }

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

.tier-card.tier-popular {
    border: 2px solid rgba(238,29,82,0.6);
    transform: scale(1.05);
}

.tier-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.tier-level {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.tier-name {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.tier-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tier-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.tier-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.tier-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
    text-align: right;
}

.tier-reward {
    font-size: 0.875rem;
    font-weight: bold;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: right;
}

.tier-separator {
    height: 1px;
    background: var(--border);
}

/* ============================================================================
   Goal Section
   ============================================================================ */
.goal {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.goal-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(238,29,82,0.05), rgba(238,29,82,0.1), rgba(238,29,82,0.05));
    z-index: 0;
}

.goal .container {
    position: relative;
    z-index: 10;
}

.goal-card {
    max-width: 48rem;
    margin: 0 auto;
    border: 1px solid rgba(238,29,82,0.3);
    border-radius: 1.5rem;
    padding: 3rem 4rem;
    background: linear-gradient(to bottom, rgba(238,29,82,0.1), var(--background));
    text-align: center;
    animation: scale-in 0.6s ease;
}

@keyframes scale-in {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.goal-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.goal-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.goal-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.goal-amount {
    color: var(--foreground);
    font-weight: 600;
}

.goal-rewards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.reward-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    animation: slide-right 0.6s ease backwards;
}

.reward-item:nth-child(1) { animation-delay: 0.2s; }
.reward-item:nth-child(2) { animation-delay: 0.3s; }
.reward-item:nth-child(3) { animation-delay: 0.4s; }
.reward-item:nth-child(4) { animation-delay: 0.5s; }

@keyframes slide-right {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.reward-dot {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    margin-top: 6px;
    flex-shrink: 0;
}

.reward-item p {
    color: var(--foreground);
}

/* ============================================================================
   Social Proof Section
   ============================================================================ */
.social-proof {
    padding: 6rem 0;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.video-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 9 / 16;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: zoom-in 0.5s ease backwards;
}

.video-card:nth-child(1) { animation-delay: 0.1s; }
.video-card:nth-child(2) { animation-delay: 0.2s; }
.video-card:nth-child(3) { animation-delay: 0.3s; }
.video-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes zoom-in {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.video-card:hover {
    border-color: rgba(238,29,82,0.5);
    transform: translateY(-5px);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--card);
}

/* ============================================================================
   FAQ Section
   ============================================================================ */
.faq {
    padding: 6rem 0;
}

.faq .container {
    max-width: 48rem;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.accordion-item {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    animation: fade-in-up 0.5s ease backwards;
}

.accordion-item:nth-child(1) { animation-delay: 0.1s; }
.accordion-item:nth-child(2) { animation-delay: 0.2s; }
.accordion-item:nth-child(3) { animation-delay: 0.3s; }
.accordion-item:nth-child(4) { animation-delay: 0.4s; }

.accordion-trigger {
    width: 100%;
    padding: 1.5rem;
    background: var(--gradient-card);
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s ease;
}

.accordion-trigger:hover {
    color: var(--primary);
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

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

.accordion-content {
    display: none;
    padding: 1.5rem;
    background: var(--background);
    border-top: 1px solid var(--border);
    color: var(--muted-foreground);
    line-height: 1.8;
}

.accordion-item.open .accordion-content {
    display: block;
    animation: expand 0.3s ease;
}

@keyframes expand {
    from { opacity: 0; max-height: 0; }
    to { opacity: 1; max-height: 500px; }
}

/* ============================================================================
   CTA Footer Section
   ============================================================================ */
.cta-footer {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    text-align: center;
}

.cta-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(238,29,82,0.1), transparent);
    z-index: 0;
}

.cta-footer .container {
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    animation: fade-in-up 0.6s ease;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 28rem;
    margin: 0 auto 2.5rem;
    animation: fade-in-up 0.6s ease 0.2s backwards;
}

.cta-footer .btn {
    animation: fade-in-up 0.6s ease 0.4s backwards;
}

/* ============================================================================
   Footer
   ============================================================================ */
.footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 0;
    background: var(--background);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    height: 2.5rem;
}

.footer-note {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-align: center;
    max-width: 28rem;
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* ============================================================================
   Responsive Design
   ============================================================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        gap: 0.5rem;
    }

    .btn-lg {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-card {
        padding: 2rem;
    }

    .goal-card {
        padding: 2rem;
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .accordion-trigger {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .accordion-content {
        padding: 1rem;
    }

    .tier-card.tier-popular {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .logo-header {
        height: 150px;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-number {
        font-size: 2.5rem;
    }

    .goal-card {
        padding: 1.5rem 1rem;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .tiers-grid {
        gap: 1rem;
    }
}
