:root {
    --bg: #030408;
    --panel: rgba(255, 255, 255, .05);
    --panel2: rgba(255, 255, 255, .07);
    --text: rgba(255, 255, 255, .95);
    --muted: rgba(255, 255, 255, .75);
    --faint: rgba(255, 255, 255, .60);
    --line: rgba(255, 255, 255, .10);
    --shadow: 0 24px 70px rgba(0, 0, 0, .65);
    --shadow2: 0 14px 44px rgba(0, 0, 0, .45);

    --brand: #00E5FF;
    /* Glowing Cyan */
    --brand2: #FFD700;
    /* Gold */
    --accent: #FFD700;
    /* Gold */
    --danger: #EF4444;

    --radius: 18px;
    --radius2: 28px;
    --max: 1120px;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.45;
    letter-spacing: -0.01em;
    overflow-x: hidden;
    position: relative;
}

/* Futuristic Mesh Background */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 229, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.05) 0%, transparent 50%);
    filter: blur(80px);
    z-index: -1;
    animation: meshMove 20s infinite alternate ease-in-out;
}

@keyframes meshMove {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(5%, 5%) scale(1.1);
    }
}

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

.wrap {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

/* Top bar */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(7, 10, 18, .55);
    border-bottom: 1px solid var(--line);
}

.topbar .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 12px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.logo {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .35), transparent 55%),
        linear-gradient(135deg, rgba(0, 229, 255, 1), rgba(255, 215, 0, 1));
    box-shadow: 0 10px 30px rgba(0, 229, 255, .2);
    border: 1px solid rgba(255, 255, 255, .14);
}

.nav {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-weight: 600;
    font-size: 14px;
}

.nav a {
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid transparent;
}

.nav a:hover {
    border-color: rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .04);
    color: var(--text);
}

.brand-logo {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.employee-avatar {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 1px solid var(--line);
    object-fit: cover;
    animation: float 4s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow2);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    padding: 12px 16px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    color: var(--text);
    cursor: pointer;
    transition: transform .12s ease, background .12s ease, border-color .12s ease;
    user-select: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .22);
}

.btn:active {
    transform: translateY(0px);
}

.btn.primary {
    border-color: rgba(0, 229, 255, .40);
    background: linear-gradient(135deg, rgba(0, 229, 255, .95), rgba(0, 180, 255, .82));
    box-shadow: 0 10px 40px rgba(0, 229, 255, .15);
}

.btn.primary:hover {
    border-color: rgba(0, 229, 255, 1);
    background: linear-gradient(135deg, rgba(0, 229, 255, 1), rgba(0, 180, 255, .92));
    box-shadow: 0 0 30px rgba(0, 229, 255, .4);
}

.btn.glow {
    position: relative;
    overflow: hidden;
}

.btn.glow::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--brand), transparent 30%);
    animation: rotateGlow 4s infinite linear;
    z-index: -1;
    opacity: 0.3;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.btn.small {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .05);
    color: var(--muted);
    font-weight: 600;
    font-size: 13px;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 1), rgba(0, 150, 255, 1));
    box-shadow: 0 0 0 6px rgba(0, 229, 255, .15);
}

/* Hero */
.hero {
    padding: 54px 0 24px;
}

.heroGrid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 26px;
    align-items: start;
}

@media (max-width: 980px) {
    .heroGrid {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
    }
}

h1 {
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 12px 0 14px;
}

h2 {
    font-size: clamp(22px, 2.2vw, 28px);
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}

h3 {
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}

.sub {
    color: var(--muted);
    font-size: 16px;
    max-width: 56ch;
    margin: 0 0 18px;
}

.heroActions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 18px 0 14px;
}

.micro {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    color: var(--faint);
    font-weight: 600;
    font-size: 13px;
}

.micro span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.check {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: rgba(0, 229, 255, .16);
    border: 1px solid rgba(0, 229, 255, .30);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.check svg {
    width: 12px;
    height: 12px;
}

/* Video card */
.card {
    border-radius: var(--radius2);
    background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .04));
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: var(--shadow2);
}

.cardPad {
    padding: 18px;
}

.videoBox {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(0, 0, 0, .35);
    position: relative;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.videoBox iframe,
.videoBox video,
.videoBox img {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    object-fit: cover;
}

.videoOverlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 14px;
    gap: 10px;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .52));
}

.overlayLeft {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.kicker {
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: 14px;
}

.hint {
    color: rgba(255, 255, 255, .72);
    font-weight: 600;
    font-size: 12px;
}

/* Offer box */
.offer {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.offerHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-weight: 800;
}

.price .now {
    font-size: 28px;
}

.price .was {
    color: rgba(255, 255, 255, .55);
    text-decoration: line-through;
    font-weight: 700;
    font-size: 14px;
}

.timer {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, .74);
    font-weight: 700;
    font-size: 13px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(239, 68, 68, .12);
    border: 1px solid rgba(239, 68, 68, .28);
    color: rgba(255, 255, 255, .86);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .02em;
}

.divider {
    height: 1px;
    background: var(--line);
    margin: 10px 0;
}

/* Sections */
section {
    padding: 28px 0;
}

.sectionTitle {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.lead {
    color: var(--muted);
    max-width: 64ch;
    margin: 0;
    font-weight: 600;
}

.grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

@media (max-width: 980px) {
    .grid3 {
        grid-template-columns: 1fr;
    }
}

.feature {
    padding: 18px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .26);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--brand);
    box-shadow: 0 20px 50px rgba(0, 229, 255, 0.15);
}

.icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .14);
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .18), rgba(255, 255, 255, .06));
    margin-bottom: 10px;
}

.feature p {
    margin: 0;
    color: var(--muted);
    font-weight: 600;
}

.twoCol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start;
}

@media (max-width: 980px) {
    .twoCol {
        grid-template-columns: 1fr;
    }
}

.quote {
    padding: 18px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
}

.quote p {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, .82);
    font-weight: 600;
}

.quote .who {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--faint);
    font-weight: 700;
    font-size: 13px;
}

.quote .stars {
    color: #F59E0B;
    font-size: 14px;
    margin-bottom: 8px;
}

/* Pricing */
.pricing {
    padding: 24px;
    border-radius: var(--radius2);
    border: 1px solid rgba(255, 255, 255, .14);
    background: linear-gradient(180deg, rgba(0, 229, 255, .08), rgba(255, 255, 255, .04));
    box-shadow: var(--shadow2);
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px 0;
}

@media (max-width: 600px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }
}

.offer-card {
    padding: 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.offer-card:hover {
    background: rgba(255, 255, 255, .08);
    transform: translateY(-2px);
}

.offer-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 229, 255, .15);
    color: #00E5FF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-detail h4 {
    margin: 0;
    font-size: 14px;
    color: white;
    line-height: 1.3;
}

.offer-detail span {
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
}

.stack {
    display: grid;
    gap: 10px;
    margin: 12px 0 0;
}

.li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .84);
    font-weight: 650;
    font-size: 15px;
}

.li .bullet {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    border-radius: 7px;
    background: rgba(0, 229, 255, .12);
    border: 1px solid rgba(0, 229, 255, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.li .bullet svg {
    width: 12px;
    height: 12px;
}

/* FAQ */
details {
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    padding: 14px 16px;
}

details+details {
    margin-top: 10px;
}

summary {
    cursor: pointer;
    font-weight: 800;
    letter-spacing: -0.01em;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

summary::-webkit-details-marker {
    display: none;
}

details p {
    margin: 10px 0 0;
    color: var(--muted);
    font-weight: 600;
}

.chev {
    width: 22px;
    height: 22px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    transition: transform .16s ease;
}

details[open] .chev {
    transform: rotate(180deg);
}

/* Footer */
footer {
    padding: 34px 0 44px;
    border-top: 1px solid var(--line);
    color: var(--faint);
    font-weight: 600;
}

.footGrid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 16px;
    align-items: start;
}

@media (max-width: 980px) {
    .footGrid {
        grid-template-columns: 1fr;
    }
}

.fine {
    font-size: 12px;
    color: rgba(255, 255, 255, .52);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Utilities */
.highlight-text {
    color: var(--accent);
}

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

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mt-4 {
    margin-top: 1rem;
}