:root {
    --bg: #07101f;
    --bg2: #0b162b;
    --card: rgba(13, 21, 41, 0.95);
    --line: rgba(255, 255, 255, 0.08);
    --text: #ffffff;
    --muted: #b9c3d9;
    --green: #63ffab;
    --green-dark: #0d1a14;
    --yellow: #ffd56a;
    --danger: #ff7a7a;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    --radius: 22px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Hind Siliguri', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(76, 121, 255, 0.18), transparent 30%),
        radial-gradient(circle at right, rgba(99, 255, 171, 0.12), transparent 25%),
        linear-gradient(180deg, #040914 0%, #07101f 100%);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    padding-left: 18px;
}

.container {
    width: min(1140px, calc(100% - 32px));
    margin: 0 auto;
}

/* =========================
   Background Animation
========================= */

.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        rgba(99, 255, 171, 0.14) 0%,
        rgba(76, 121, 255, 0.10) 30%,
        rgba(76, 121, 255, 0.04) 55%,
        rgba(0, 0, 0, 0) 75%
    );
    filter: blur(18px);
    transition: transform 0.08s linear;
}

.stars {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
    animation: floatStar linear infinite, twinkle ease-in-out infinite;
    opacity: 0.45;
}

@keyframes floatStar {
    0% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-18px) translateX(8px);
    }
    100% {
        transform: translateY(0px) translateX(0px);
    }
}

@keyframes twinkle {
    0%,
    100% {
        opacity: 0.18;
    }
    50% {
        opacity: 0.75;
    }
}

/* make sure real content stays above animation */
.site-header,
main,
.site-footer,
.sticky-cta {
    position: relative;
    z-index: 2;
}

/* Optional: slight premium hover lift */
.feature-card,
.audience-card,
.stat-box,
.proof-box,
.summary-card,
.form-card,
.bonus-box,
.faq-item,
.ebook-card {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.feature-card:hover,
.audience-card:hover,
.stat-box:hover,
.proof-box:hover,
.summary-card:hover,
.form-card:hover,
.bonus-box:hover,
.faq-item:hover,
.ebook-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
    border-color: rgba(99, 255, 171, 0.14);
}

/* subtle animated hero glow */
.hero-section {
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 30%, rgba(76, 121, 255, 0.10), transparent 22%),
        radial-gradient(circle at 80% 20%, rgba(99, 255, 171, 0.08), transparent 20%);
    animation: heroGlowMove 8s ease-in-out infinite alternate;
}

.hero-section > .container {
    position: relative;
    z-index: 1;
}

@keyframes heroGlowMove {
    0% {
        transform: translateX(0px) translateY(0px) scale(1);
    }
    100% {
        transform: translateX(12px) translateY(8px) scale(1.03);
    }
}

/* reduce on mobile */
@media (max-width: 768px) {
    .cursor-glow {
        width: 180px;
        height: 180px;
        opacity: 0.75;
    }

    .star {
        opacity: 0.22;
    }
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 10, 22, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.2px;
    line-height: 1.3;
}

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

.nav-links a {
    color: var(--muted);
    font-weight: 600;
    transition: 0.25s ease;
}

.nav-links a:hover {
    color: var(--text);
}

/* Mobile menu */
.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
    transition: 0.25s ease;
}

.mobile-menu {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(5, 10, 22, 0.96);
    backdrop-filter: blur(12px);
    padding: 10px 16px 16px;
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    color: var(--text);
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu a:last-child {
    border-bottom: 0;
}

.mobile-menu-btn {
    margin-top: 10px;
    text-align: center;
    padding: 14px 16px !important;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--green), #b2ffcb);
    color: #08140d !important;
    font-weight: 800 !important;
}

.mobile-menu.active {
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 700;
    transition: 0.25s ease;
    text-align: center;
}

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

.btn-sm {
    padding: 10px 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green), #b2ffcb);
    color: #08140d;
    box-shadow: 0 14px 30px rgba(99, 255, 171, 0.2);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-full {
    width: 100%;
}

/* Badge */
.badge {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    background: rgba(99, 255, 171, 0.1);
    border: 1px solid rgba(99, 255, 171, 0.18);
    color: var(--green);
}

.badge.light {
    background: rgba(255, 213, 106, 0.08);
    border-color: rgba(255, 213, 106, 0.14);
    color: var(--yellow);
}

/* Sections */
.hero-section,
.proof-section,
.stats-section,
.features-section,
.audience-section,
.bonus-section,
.offer-section,
.faq-section,
.order-section {
    padding: 78px 0;
}

/* Layout overflow safety */
.hero-content,
.hero-card,
.order-summary-box,
.form-card,
.bonus-content,
.bonus-box {
    min-width: 0;
}

/* Hero */
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
}

.hero-content h1 {
    margin: 18px 0 16px;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 1.08;
    letter-spacing: -0.8px;
    word-break: break-word;
}

.hero-content h1 span {
    color: var(--green);
}

.hero-text {
    color: var(--muted);
    line-height: 1.85;
    font-size: 1.08rem;
    max-width: 700px;
}

.hero-price-box {
    margin-top: 28px;
    max-width: 420px;
    padding: 24px;
    border-radius: 22px;
    border: 1px solid rgba(99, 255, 171, 0.14);
    background: linear-gradient(180deg, rgba(12, 21, 39, 0.96), rgba(10, 17, 33, 0.96));
    box-shadow: var(--shadow);
}

.old-price {
    text-decoration: line-through;
    color: #ff9d9d;
    margin-bottom: 10px;
    font-size: 1rem;
}

.new-price {
    color: var(--green);
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 8px;
    font-weight: 800;
}

.price-note {
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.hero-actions .btn {
    min-height: 52px;
}

.hero-points {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--muted);
    font-weight: 600;
}

.hero-card {
    display: flex;
    justify-content: center;
}

.ebook-card {
    width: 100%;
    max-width: 440px;
    min-height: 560px;
    padding: 34px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top right, rgba(99, 255, 171, 0.16), transparent 30%),
        linear-gradient(160deg, #091327 0%, #0b1730 50%, #0d211a 100%);
    box-shadow: var(--shadow);
}

.ebook-mini {
    display: inline-block;
    margin-bottom: 22px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--yellow);
    font-weight: 700;
}

.ebook-card h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.03;
    margin-bottom: 14px;
}

.ebook-card p,
.ebook-card li {
    color: #dce5f7;
}

.ebook-card ul {
    margin-top: 24px;
    line-height: 1.9;
}

/* Section Head */
.section-head h2 {
    margin: 12px 0 10px;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
}

.section-head p {
    color: var(--muted);
    max-width: 760px;
    line-height: 1.8;
}

.section-head.center {
    text-align: center;
}

.section-head.center p {
    margin: 0 auto;
}

/* Shared card look */
.proof-box,
.bonus-wrap,
.offer-wrap,
.summary-card,
.form-card,
.faq-item,
.stat-box,
.feature-card,
.audience-card {
    background: var(--card);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

/* Proof */
.proof-box {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px;
    border-radius: 24px;
}

.proof-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.9rem;
    background: linear-gradient(135deg, #ff7a7a, #ffb36a);
    box-shadow: 0 12px 30px rgba(255, 122, 122, 0.26);
    flex-shrink: 0;
}

.proof-box h3 {
    margin-bottom: 8px;
    font-size: 1.35rem;
}

.proof-box p {
    color: var(--muted);
    line-height: 1.8;
}

/* Stats / Features / Audience */
.stats-grid,
.feature-grid,
.audience-grid {
    display: grid;
    gap: 18px;
}

.stats-grid {
    grid-template-columns: repeat(4, 1fr);
}

.feature-grid,
.audience-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 34px;
}

.stat-box,
.feature-card,
.audience-card {
    padding: 24px 20px;
    border-radius: 20px;
}

.stat-box h3 {
    font-size: 2rem;
    color: var(--green);
    margin-bottom: 8px;
    font-weight: 800;
}

.stat-box p {
    color: var(--muted);
    font-weight: 600;
}

.feature-card,
.audience-card {
    color: var(--text);
    background: linear-gradient(180deg, rgba(11, 18, 35, 0.95), rgba(9, 15, 28, 0.95));
    font-weight: 600;
    line-height: 1.7;
}

/* Bonus / Offer / Order */
.bonus-wrap,
.offer-wrap,
.order-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: center;
    border-radius: 24px;
    padding: 28px;
}

.check-list {
    list-style: none;
    margin-top: 20px;
    padding-left: 0;
}

.check-list li {
    position: relative;
    padding: 12px 0 12px 32px;
    color: var(--text);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--green);
    font-weight: 800;
}

.check-list.compact li {
    color: var(--muted);
}

.bonus-content h2,
.order-summary-box h2 {
    margin: 12px 0 16px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.2;
}

.bonus-box {
    min-height: 250px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(99, 255, 171, 0.14), rgba(255, 213, 106, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.bonus-box p,
.bonus-box span {
    color: var(--muted);
}

.bonus-box h3 {
    font-size: 3rem;
    color: var(--green);
    margin: 6px 0;
    font-weight: 800;
}

.offer-wrap h2 {
    margin: 12px 0 10px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.2;
}

.offer-wrap p {
    color: var(--muted);
    line-height: 1.8;
}

/* Countdown */
.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.time-box {
    padding: 20px 16px;
    border-radius: 18px;
    text-align: center;
    background: linear-gradient(180deg, rgba(27, 35, 70, 0.95), rgba(16, 21, 47, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.time-box strong {
    display: block;
    font-size: 1.9rem;
    color: var(--yellow);
    font-weight: 800;
}

.time-box span {
    color: var(--muted);
}

/* FAQ */
.faq-container {
    max-width: 860px;
}

.faq-item {
    margin-top: 16px;
    border-radius: 18px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    color: var(--text);
    padding: 20px 22px;
    text-align: left;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.25s ease;
    padding: 0 22px;
}

.faq-answer p {
    color: var(--muted);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 220px;
    padding: 0 22px 20px;
}

/* Order */
.order-grid {
    align-items: start;
}

.summary-card {
    margin-top: 20px;
    border-radius: 20px;
    padding: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-row span {
    color: var(--muted);
}

.summary-row strong {
    text-align: right;
}

.summary-row.total {
    border-bottom: none;
    font-size: 1.08rem;
    font-weight: 800;
}

.form-card {
    border-radius: 24px;
    padding: 28px;
}

.form-card h3 {
    font-size: 1.7rem;
    margin-bottom: 18px;
    line-height: 1.2;
}

.success-message {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(99, 255, 171, 0.1);
    border: 1px solid rgba(99, 255, 171, 0.2);
    color: #ddffeb;
    font-weight: 700;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    padding: 14px 16px;
    border-radius: 14px;
    font: inherit;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8c98b3;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(99, 255, 171, 0.5);
    box-shadow: 0 0 0 4px rgba(99, 255, 171, 0.08);
}

.form-note {
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.96rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 14px;
    z-index: 999;
    display: flex;
    justify-content: center;
    padding: 0 14px;
    background: transparent;
    border-top: 0;
    backdrop-filter: none;
}

.sticky-cta .btn {
    width: min(520px, 100%);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    margin: 0;
}

/* Footer */
.site-footer {
    padding: 26px 0 110px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--muted);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-grid,
    .bonus-wrap,
    .offer-wrap,
    .order-grid,
    .stats-grid,
    .feature-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .site-header {
        position: sticky;
        top: 0;
    }

    .header-wrap {
        min-height: 66px;
    }

    .brand {
        font-size: 1rem;
        max-width: calc(100% - 64px);
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .countdown-grid {
        margin-top: 10px;
    }

    .hero-card {
        justify-content: flex-start;
        order: -1;
    }

    .ebook-card {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 20px, 1140px);
    }

    .hero-section,
    .proof-section,
    .stats-section,
    .features-section,
    .audience-section,
    .bonus-section,
    .offer-section,
    .faq-section,
    .order-section {
        padding: 58px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.15;
    }

    .hero-text {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .section-head h2,
    .bonus-content h2,
    .order-summary-box h2,
    .offer-wrap h2 {
        font-size: 1.6rem;
        line-height: 1.25;
    }

    .hero-actions,
    .hero-points,
    .proof-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

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

    .time-box {
        padding: 16px 12px;
    }

    .time-box strong {
        font-size: 1.5rem;
    }

    .ebook-card {
        min-height: auto;
        padding: 24px;
    }

    .ebook-card h2 {
        font-size: 2rem;
    }

    .new-price {
        font-size: 1.8rem;
    }

    .bonus-box h3 {
        font-size: 2.3rem;
    }

    .proof-box,
    .summary-card,
    .form-card,
    .bonus-wrap,
    .offer-wrap,
    .order-grid {
        padding: 20px;
    }

    .summary-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .summary-row strong {
        text-align: left;
    }

    .sticky-cta {
        bottom: 10px;
        padding: 0 10px;
    }

    .sticky-cta .btn {
        width: 100%;
    }

    .site-footer {
        padding-bottom: 110px;
    }
}

@media (max-width: 380px) {
    .container {
        width: calc(100% - 16px);
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .btn,
    .btn-sm {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
    }

    .summary-card,
    .form-card,
    .proof-box {
        padding: 16px;
    }

    .brand {
        font-size: 0.95rem;
    }
}