:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --accent: #f59e0b;
    --dark: #0f172a;
    --darker: #020617;
    --card-bg: #1e293b;
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --success: #22c55e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--darker);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.container-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}
img {
    max-width: 100%;
    height: auto;
}

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

.scale-in {
    opacity: 0;
    transform: scale(0.92);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}
.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ========== TOP BAR ========== */
.top-bar {
    background: linear-gradient(90deg, var(--accent), #f97316);
    text-align: center;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
}
.top-bar i {
    margin-right: 8px;
}

/* ========== HERO ========== */
.hero {
    background: linear-gradient(
        180deg,
        var(--dark) 0%,
        var(--darker) 100%
    );
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(
            circle at 30% 50%,
            rgba(14, 165, 233, 0.08) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 70% 80%,
            rgba(245, 158, 11, 0.05) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.hero-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1 1 500px;
    padding: 60px 20px 80px 20px;
}

.hero-headline {
    font-family: "Playfair Display", serif;
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}
.hero-headline .accent {
    color: var(--accent);
}

.hero-sub {
    font-size: clamp(16px, 2.5vw, 22px);
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-power-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 30px;
}
.hero-power-box h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--accent);
}
.hero-power-box ul {
    list-style: none;
    padding: 0;
}
.hero-power-box li {
    padding: 8px 0;
    font-size: 16px;
    color: var(--text-muted);
}
.hero-power-box li i {
    color: var(--success);
    margin-right: 10px;
    font-size: 14px;
}

.hero-image {
    margin-bottom: -30px;
    margin-top: auto;
    flex: 0 0 320px;
    text-align: center;
}
.hero-image img {
    max-width: 500px;
    border-radius: 20px;
}

/* ========== CTA BUTTON ========== */
.cta-btn {
    display: inline-block;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );
    color: #fff;
    font-family: inherit;
    font-weight: 700;
    font-size: 18px;
    padding: 18px 44px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(14, 165, 233, 0.4);
    animation: pulse-btn 2.5s ease-in-out infinite;
    line-height: 1.2;
}
.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(14, 165, 233, 0.6);
}
button.cta-btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: inherit;
    text-align: center;
    vertical-align: middle;
}
.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(14, 165, 233, 0.6);
}
.cta-btn .sub {
    display: block;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 4px;
    letter-spacing: 0;
    text-transform: none;
}

@keyframes pulse-btn {
    0%,
    100% {
        box-shadow: 0 4px 25px rgba(14, 165, 233, 0.4);
    }
    50% {
        box-shadow: 0 4px 40px rgba(14, 165, 233, 0.7);
    }
}

/* ========== HOST SECTION ========== */
.host-section {
    background: var(--darker);
    padding: 50px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.host-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.host-photo {
    flex: 0 0 100px;
}
.host-photo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}
.host-info {
    flex: 1 1 300px;
}
.host-info .label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.host-info .name {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}
.host-info p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}
.host-badges {
    display: flex;
    gap: 15px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.host-badge {
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

/* ========== SECTION STYLES ========== */
.section {
    padding: 80px 20px;
}
.section-dark {
    background: var(--dark);
}
.section-darker {
    background: var(--darker);
}

.section-label {
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
}
.section-title {
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}
.section-subtitle {
    text-align: center;
    font-size: 17px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.7;
}
.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--primary),
        var(--accent)
    );
    margin: 16px auto 40px;
    border-radius: 2px;
}

/* ========== URGENCY BAR ========== */
.urgency-bar {
    background: linear-gradient(90deg, #dc2626, #ef4444);
    text-align: center;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 15px;
}
.urgency-bar i {
    margin-right: 8px;
}
.urgency-bar .countdown {
    font-weight: 800;
    font-size: 18px;
    margin-left: 8px;
    letter-spacing: 1px;
}

/* ========== WHAT YOU'LL LEARN (3 CARDS) ========== */
.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.learn-card {
    background: linear-gradient(135deg, var(--card-bg), #0f172a);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px 28px;
    text-align: center;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}
.learn-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--primary),
        var(--accent)
    );
    opacity: 0;
    transition: opacity 0.3s;
}
.learn-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, 0.3);
}
.learn-card:hover::before {
    opacity: 1;
}

.learn-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
}

.learn-card .secret-num {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 8px;
}

.learn-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.3;
}

.learn-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========== TAKEAWAY SECTION ========== */
.takeaway-box {
    max-width: 700px;
    margin: 60px auto 0;
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: 16px;
    padding: 40px 35px;
}
.takeaway-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary);
}
.takeaway-box ul {
    list-style: none;
    padding: 0;
}
.takeaway-box li {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.takeaway-box li:last-child {
    border-bottom: none;
}
.takeaway-box li i {
    color: var(--accent);
    margin-top: 4px;
    flex-shrink: 0;
}

.text-center {
    text-align: center;
}
.mt-40 {
    margin-top: 40px;
}
.mt-60 {
    margin-top: 60px;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    position: relative;
}
.testimonial-card .quote-icon {
    font-size: 40px;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 25px;
}
.testimonial-card blockquote {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}
.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-card .author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #000;
    overflow: hidden;
}
.testimonial-card .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.testimonial-card .author-info .name {
    font-weight: 600;
    font-size: 15px;
}
.testimonial-card .author-info .location {
    font-size: 13px;
    color: var(--text-muted);
}
.testimonial-card .stars {
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 15px;
}

/* ========== FAQ ========== */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}
.faq-question:hover {
    background: rgba(255, 255, 255, 0.06);
}
.faq-question .arrow {
    transition: transform 0.3s;
    color: var(--primary);
}
.faq-item.open .faq-question .arrow {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        padding 0.4s ease;
    padding: 0 22px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}
.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 18px 22px;
}

/* ========== REGISTRATION FORM ========== */
.form-section {
    background: linear-gradient(
        180deg,
        var(--darker),
        var(--dark),
        var(--darker)
    );
    padding: 80px 20px;
}
.form-container {
    max-width: 500px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 35px;
    position: relative;
    overflow: hidden;
}
.form-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary),
        var(--accent)
    );
}
.form-container h2 {
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: 28px;
    margin-bottom: 8px;
}
.form-container .form-sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 30px;
}
.form-group {
    position: relative;
    margin-bottom: 18px;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 45px 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 16px;
    font-family: "Inter", sans-serif;
    transition: border-color 0.3s;
}
.form-group input::placeholder {
    color: var(--text-muted);
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}
.form-group .input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}
.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}
.form-group select option {
    background: var(--dark);
    color: var(--text);
}
.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 25px rgba(14, 165, 233, 0.4);
    margin-top: 10px;
}
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(14, 165, 233, 0.6);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--darker);
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer p {
    color: var(--text-muted);
    font-size: 13px;
}

@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column-reverse;
        text-align: center;
    }
    .hero-text{
        padding-top: 0px;
    }
    .hero-image {
        flex: 0 0 auto;
        margin-left:auto;
        margin-right:auto;
    }
    .hero-image img {
        width: 80%;
        /* max-width: 420px; */
    }
    .host-inner {
        flex-direction: column;
        text-align: center;
    }
    .host-badges {
        justify-content: center;
    }
    .learn-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}