:root {
    --bg: #050712;
    --bg-soft: #0b1022;
    --card: rgba(255, 255, 255, 0.07);
    --card-strong: rgba(255, 255, 255, 0.11);
    --text: #ffffff;
    --muted: #b7bfd6;
    --line: rgba(255, 255, 255, 0.12);
    --orange: #ff8a1d;
    --amber: #ffc14d;
    --cyan: #28d7ff;
    --blue: #3768ff;
    --green: #24c46b;
    --red: #ff4e64;
    --radius: 24px;
    --shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, rgba(255, 138, 29, 0.13), transparent 32%),
                radial-gradient(circle at top right, rgba(40, 215, 255, 0.13), transparent 32%),
                var(--bg);
    color: var(--text);
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

img {
    max-width: 100%;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(5, 7, 18, 0.82);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-icon {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--orange), var(--cyan));
    color: #050712;
    box-shadow: 0 0 24px rgba(255, 138, 29, 0.35);
}

.brand-text {
    font-size: 1.35rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

.nav-cta {
    padding: 10px 18px;
    border-radius: 999px;
    color: #050712 !important;
    background: linear-gradient(135deg, var(--orange), var(--amber));
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--card);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    display: flex;
    align-items: center;
    padding: 90px 0;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.hero-content h1 {
    margin: 18px 0 24px;
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 0.95;
    letter-spacing: -0.07em;
}

.hero-content p {
    max-width: 670px;
    color: var(--muted);
    font-size: 1.2rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--amber);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.78rem;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--cyan));
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
    color: #050712;
    background: linear-gradient(135deg, var(--orange), var(--amber));
    box-shadow: 0 18px 46px rgba(255, 138, 29, 0.28);
}

.btn-secondary {
    color: var(--text);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.07);
}

.hero-visual {
    position: relative;
    min-height: 520px;
    border-radius: 42px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 40px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 95px;
    border: 1px dashed rgba(40, 215, 255, 0.22);
    border-radius: 50%;
}

.screen-card {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(360px, 78%);
    padding: 24px;
    border-radius: 28px;
    background: rgba(5, 7, 18, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.screen-topline {
    display: flex;
    gap: 7px;
    margin-bottom: 24px;
}

.screen-topline span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--orange);
}

.screen-topline span:nth-child(2) {
    background: var(--amber);
}

.screen-topline span:nth-child(3) {
    background: var(--cyan);
}

.metric-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.metric-row div {
    padding: 18px;
    border-radius: 18px;
    background: var(--card);
}

.metric-row small {
    display: block;
    color: var(--muted);
    font-size: 0.75rem;
}

.metric-row strong {
    display: block;
    margin-top: 5px;
    font-size: 1.8rem;
}

.chart-lines {
    display: flex;
    align-items: end;
    gap: 12px;
    min-height: 145px;
    margin-top: 24px;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(40, 215, 255, 0.08), rgba(255, 138, 29, 0.07));
}

.bar {
    flex: 1;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, var(--cyan), var(--orange));
}

.bar-one { height: 60px; }
.bar-two { height: 95px; }
.bar-three { height: 125px; }
.bar-four { height: 80px; }

.orbit-card {
    position: absolute;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid var(--line);
    color: var(--text);
    font-weight: 900;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.36);
}

.orbit-one { top: 80px; left: 60px; color: var(--amber); }
.orbit-two { right: 44px; top: 126px; color: var(--green); }
.orbit-three { left: 38px; bottom: 108px; color: var(--cyan); }
.orbit-four { right: 48px; bottom: 78px; color: #ff94a2; }

.hero-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.32;
}

.hero-glow-one {
    background: var(--orange);
    left: -100px;
    top: 130px;
}

.hero-glow-two {
    background: var(--cyan);
    right: -120px;
    bottom: 120px;
}

.section {
    padding: 95px 0;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 46px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading.centered .eyebrow {
    justify-content: center;
}

.section-heading h2,
.market-card h2,
.cta-box h2 {
    margin: 14px 0 18px;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.section-heading p,
.market-card p,
.cta-box p {
    color: var(--muted);
    font-size: 1.08rem;
}

.card-grid,
.product-grid,
.benefit-grid,
.process-grid,
.market-grid,
.footer-grid {
    display: grid;
    gap: 22px;
}

.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.insight-card,
.product-card,
.market-card,
.benefit-card,
.process-step,
.cta-box {
    border: 1px solid var(--line);
    background: linear-gradient(145deg, var(--card-strong), rgba(255, 255, 255, 0.035));
    border-radius: var(--radius);
    box-shadow: 0 14px 50px rgba(0, 0, 0, 0.24);
}

.insight-card {
    padding: 28px;
}

.tag {
    display: inline-flex;
    color: #050712;
    background: linear-gradient(135deg, var(--cyan), var(--amber));
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 0.76rem;
    font-weight: 900;
}

.insight-card h3,
.product-card h3,
.benefit-card h3,
.process-step h3 {
    margin: 18px 0 10px;
    line-height: 1.15;
}

.insight-card p,
.product-card p,
.benefit-card p,
.process-step p {
    color: var(--muted);
}

.insight-card a,
.product-link {
    display: inline-flex;
    margin-top: 14px;
    color: var(--amber);
    text-decoration: none;
    font-weight: 900;
}

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

.product-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    min-height: 390px;
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    pointer-events: none;
}

.india-card::before {
    background: linear-gradient(135deg, var(--orange), transparent, var(--green));
}

.us-card::before {
    background: linear-gradient(135deg, var(--blue), transparent, var(--red));
}

.product-card > * {
    position: relative;
    z-index: 2;
}

.product-code {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.22);
    font-weight: 950;
    letter-spacing: 0.04em;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.product-meta span,
.mini-products span {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
}

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

.market-card {
    padding: 42px;
}

.india-market {
    background: radial-gradient(circle at top left, rgba(255, 138, 29, 0.2), transparent 45%), var(--card);
}

.us-market {
    background: radial-gradient(circle at top right, rgba(55, 104, 255, 0.22), transparent 45%), var(--card);
}

.mini-products {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.benefit-grid {
    grid-template-columns: repeat(5, 1fr);
}

.benefit-card {
    padding: 24px;
}

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

.process-step {
    padding: 26px;
}

.process-step span {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    color: #050712;
    background: linear-gradient(135deg, var(--orange), var(--cyan));
    font-weight: 950;
}

.cta-section {
    padding: 80px 0 110px;
}

.cta-box {
    text-align: center;
    padding: 62px;
    background: radial-gradient(circle at top, rgba(255, 138, 29, 0.22), transparent 45%),
                linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
}

.cta-box .eyebrow {
    justify-content: center;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 54px 0 28px;
    background: rgba(0, 0, 0, 0.18);
}

.footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
}

.footer-grid p {
    max-width: 430px;
    color: var(--muted);
}

.footer-grid h4 {
    margin: 0 0 16px;
}

.footer-grid a:not(.brand) {
    display: block;
    color: var(--muted);
    text-decoration: none;
    margin: 8px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.9rem;
}

@media (max-width: 1080px) {
    .hero-grid,
    .market-grid {
        grid-template-columns: 1fr;
    }

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

    .three-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        inset: 78px 14px auto 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        border-radius: 22px;
        border: 1px solid var(--line);
        background: rgba(5, 7, 18, 0.96);
        box-shadow: var(--shadow);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 12px 10px;
    }

    .hero {
        min-height: auto;
        padding: 70px 0;
    }

    .hero-grid {
        gap: 42px;
    }

    .hero-visual {
        min-height: 430px;
    }

    .product-grid,
    .benefit-grid,
    .process-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .market-card,
    .cta-box {
        padding: 30px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
