* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #050816;
    color: #f9fafb;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.accent {
    color: #fa9711;
}

.section {
    padding: 72px 16px;
    max-width: 1120px;
    margin: 0 auto;
}

.section-alt {
    background: radial-gradient(circle at top left, #111827, #020617 55%);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: clamp(1.7rem, 2.4vw, 2.1rem);
    font-weight: 700;
    letter-spacing: 0.01em;
}

/* Top marquee */
.marquee {
    background: linear-gradient(90deg, #f97316, #facc15);
    color: #111827;
    overflow: hidden;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    font-weight: 600;
    font-size: 0.9rem;
}

.marquee-track {
    display: inline-flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee-track span {
    padding: 0 1.5rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Hero */
.hero {
    padding: 32px 16px 64px;
    background: radial-gradient(circle at top left, #1e293b, #020617 50%, #020617);
}

.hero-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 40px;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-image {
    border-radius: 32px;
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: #020617;
}

.badge {
    background: rgba(15, 23, 42, 0.9);
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(251, 191, 36, 0.6);
    font-size: 0.8rem;
    text-align: center;
}

.hero-right h1 {
    font-size: clamp(1.9rem, 3.1vw, 2.6rem);
    line-height: 1.2;
    margin-bottom: 16px;
}

.highlight-text {
    font-size: 1rem;
    color: #e5e7eb;
    background: linear-gradient(to right, rgba(251, 191, 36, 0.1), transparent);
    border-radius: 999px;
    padding: 10px 18px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-points {
    list-style: none;
    margin-bottom: 24px;
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.hero-points li::before {
    content: "✔";
    color: #22c55e;
    font-size: 0.9rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
    font-size: 0.85rem;
}

.hero-meta span {
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
}

.note {
    font-size: 0.85rem;
    margin-top: 10px;
    color: #e5e7eb;
}

/* Buttons */
.btn {
    padding: 12px 22px;
    border-radius: 999px;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn.primary {
    background: linear-gradient(135deg, #f97316, #facc15);
    color: #111827;
    box-shadow: 0 16px 40px rgba(248, 171, 60, 0.45);
}

.btn.secondary {
    background: #111827;
    color: #f9fafb;
    border: 1px solid rgba(148, 163, 184, 0.6);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
}

.btn:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Cards grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.card {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 24px;
    padding: 18px 18px 22px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.45);
}

.card img {
    border-radius: 16px;
    margin-bottom: 14px;
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.card p {
    font-size: 0.9rem;
    color: #e5e7eb;
}

.section-cta {
    margin-top: 32px;
    text-align: center;
}

/* Membership */
.membership-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

.membership-card {
    background: rgba(15, 23, 42, 0.9);
    padding: 22px 20px;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.5);
}

.membership-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.membership-card ul {
    list-style: none;
    font-size: 0.9rem;
}

.membership-card li {
    margin-bottom: 8px;
    display: flex;
    gap: 8px;
}

.membership-card li::before {
    content: "•";
    color: #facc15;
}

.membership-cta {
    background: radial-gradient(circle at top, #f97316, #f97316);
    color: #111827;
    padding: 22px 20px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.7);
}

.price-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.price-cut {
    font-size: 0.9rem;
    margin-left: 8px;
    opacity: 0.8;
}

.deadline-label {
    font-size: 0.85rem;
    margin-top: 8px;
}

.deadline {
    font-weight: 600;
    margin-bottom: 12px;
}

.seats-left {
    font-size: 0.9rem;
    margin-top: 8px;
}

/* Founder */
.founder-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 32px;
    align-items: center;
}

.founder-name {
    margin-top: 4px;
    font-size: 1.4rem;
    color: #e5e7eb;
}

.founder-text p {
    font-size: 0.95rem;
    color: #e5e7eb;
    margin-bottom: 10px;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    font-size: 0.85rem;
    margin-top: 8px;
}

.founder-image-wrap img {
    border-radius: 32px;
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.4);
}

/* Videos */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.video-card iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    border: none;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.gallery-item {
    position: relative;
    padding-top: 70%;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.85);
}

/* FAQ */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: grid;
    gap: 10px;
}

.faq-list details {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 16px;
    padding: 10px 14px;
    border: 1px solid rgba(148, 163, 184, 0.5);
}

.faq-list summary {
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    float: right;
    font-weight: 400;
}

.faq-list details[open] summary::after {
    content: "–";
}

.faq-list p {
    font-size: 0.9rem;
    color: #e5e7eb;
    margin-top: 6px;
}

/* Footer */
.footer {
    padding: 36px 16px 80px;
    border-top: 1px solid rgba(31, 41, 55, 1);
    background: #020617;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.footer-links a {
    color: #e5e7eb;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
}

.disclaimer {
    max-width: 960px;
    margin: 0 auto;
    font-size: 0.8rem;
    color: #9ca3af;
    text-align: center;
}

/* WhatsApp Floating */
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 92px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 35px rgba(22, 163, 74, 0.7);
    z-index: 40;
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Bottom sticky bar */
.bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.98);
    border-top: 1px solid rgba(31, 41, 55, 1);
    padding: 10px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 30;
}

.bottom-bar-left,
.bottom-bar-right {
    display: flex;
    align-items: center;
}

.bottom-bar {
    gap: 24px;
    flex-wrap: wrap;
}

.countdown {
    display: flex;
    gap: 12px;
}

.countdown div {
    text-align: center;
    min-width: 54px;
    padding: 4px 0;
    border-radius: 10px;
    background: rgba(15, 23, 42, 1);
    border: 1px solid rgba(55, 65, 81, 1);
}

.countdown span {
    display: block;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.countdown small {
    font-size: 0.7rem;
    color: #9ca3af;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 2px solid rgba(250, 151, 17, 0.9);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.06s ease, width 0.12s ease, height 0.12s ease, border-color 0.12s ease, background 0.12s ease;
    z-index: 9999;
    mix-blend-mode: screen;
}

.cursor.cursor-grow {
    width: 34px;
    height: 34px;
    background: rgba(250, 151, 17, 0.2);
    border-color: rgba(250, 204, 21, 0.95);
}

/* Responsive */
@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-right {
        order: -1;
    }

    .cards-grid,
    .video-grid,
    .gallery-grid,
    .membership-grid,
    .founder-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .section {
        padding-inline: 20px;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 15px;
    }

    .hero {
        padding-top: 20px;
    }

    .hero-right h1 {
        font-size: 1.6rem;
    }

    .bottom-bar {
        padding-bottom: 12px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 84px;
    }
}
