:root {
    --bg: #070A12;
    --panel: rgba(255, 255, 255, .06);
    --panel2: rgba(255, 255, 255, .08);
    --text: rgba(255, 255, 255, .92);
    --muted: rgba(255, 255, 255, .70);
    --faint: rgba(255, 255, 255, .55);
    --line: rgba(255, 255, 255, .12);
    --shadow: 0 24px 70px rgba(0, 0, 0, .55);
    --shadow2: 0 14px 44px rgba(0, 0, 0, .38);

    --brand: #8B5CF6;
    /* purple */
    --brand2: #22C55E;
    /* green */
    --accent: #F59E0B;
    /* amber */
    --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: radial-gradient(900px 600px at 20% 10%, rgba(139, 92, 246, .22), transparent 60%),
        radial-gradient(900px 600px at 80% 20%, rgba(34, 197, 94, .16), transparent 62%),
        radial-gradient(700px 520px at 50% 85%, rgba(245, 158, 11, .12), transparent 60%),
        var(--bg);
    color: var(--text);
    line-height: 1.45;
    letter-spacing: -0.01em;
}

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(139, 92, 246, 1), rgba(34, 197, 94, 1));
    box-shadow: 0 10px 30px rgba(139, 92, 246, .18);
    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;
}

.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(139, 92, 246, .40);
    background: linear-gradient(135deg, rgba(139, 92, 246, .95), rgba(34, 197, 94, .82));
    box-shadow: 0 18px 52px rgba(139, 92, 246, .18);
}

.btn.primary:hover {
    border-color: rgba(255, 255, 255, .24);
    background: linear-gradient(135deg, rgba(139, 92, 246, 1), rgba(34, 197, 94, .92));
}

.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(34, 197, 94, 1), rgba(139, 92, 246, 1));
    box-shadow: 0 0 0 6px rgba(34, 197, 94, .10);
}

/* 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(34, 197, 94, .16);
    border: 1px solid rgba(34, 197, 94, .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);
}

.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(139, 92, 246, .10), 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(139, 92, 246, .2);
    color: #a78bfa;
    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(139, 92, 246, .18);
    border: 1px solid rgba(139, 92, 246, .34);
    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;
}