:root {
    --bg: #0b1020;
    --bg-soft: #10162b;
    --card: rgba(255, 255, 255, 0.04);
    --card-border: rgba(255, 255, 255, 0.08);
    --text: #e6edf7;
    --muted: rgba(230, 237, 247, 0.68);
    --brand: #ff914d;
    --brand-2: #ffd07a;
    --accent: #4ec8ff;
    --radius: 20px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Work Sans", sans-serif;
    background: radial-gradient(circle at top left, #1b223b, transparent 55%),
        radial-gradient(circle at 20% 30%, rgba(255, 145, 77, 0.18), transparent 50%),
        var(--bg);
    color: var(--text);
    min-height: 100vh;
}

.landing-page {
    overflow-x: hidden;
}

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

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

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.ambient-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(0px);
    opacity: 0.6;
}

.orb-1 {
    width: 380px;
    height: 380px;
    top: -140px;
    right: -120px;
    background: radial-gradient(circle, rgba(78, 200, 255, 0.7), transparent 70%);
}

.orb-2 {
    width: 460px;
    height: 460px;
    left: -160px;
    bottom: 10%;
    background: radial-gradient(circle, rgba(255, 145, 77, 0.6), transparent 70%);
}

.orb-3 {
    width: 320px;
    height: 320px;
    right: 15%;
    bottom: -160px;
    background: radial-gradient(circle, rgba(255, 208, 122, 0.5), transparent 70%);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: rgba(11, 16, 32, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
}

.brand img {
    height: 44px;
}

.nav-links {
    display: flex;
    gap: 20px;
    font-weight: 500;
    color: var(--muted);
}

.nav-links a {
    transition: color 0.2s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn.primary {
    background: linear-gradient(120deg, var(--brand), var(--brand-2));
    color: #1a0f05;
    box-shadow: 0 14px 30px rgba(255, 145, 77, 0.35);
}

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

.btn.ghost {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--text);
}

.btn.outline {
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--text);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    display: block;
}

.hero {
    padding: 80px 0 50px;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
    gap: 50px;
}

.hero-copy h1 {
    font-family: "Sora", sans-serif;
    font-size: clamp(2.4rem, 3.5vw, 3.6rem);
    margin-bottom: 18px;
}

.hero-copy p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(78, 200, 255, 0.15);
    color: #c7ecff;
    border: 1px solid rgba(78, 200, 255, 0.35);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin: 28px 0;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-badges div {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 12px 18px;
    min-width: 140px;
}

.hero-badges strong {
    display: block;
    font-size: 1.4rem;
    font-family: "Sora", sans-serif;
}

.hero-badges span {
    color: var(--muted);
    font-size: 0.85rem;
}

.hero-visual {
    position: relative;
}

.screen-frame {
    background: rgba(15, 23, 42, 0.85);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.screen-header {
    display: flex;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(10, 15, 30, 0.9);
}

.screen-header span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.screen-stack {
    position: absolute;
    bottom: -40px;
    right: -40px;
    display: grid;
    gap: 14px;
}

.stack-card {
    width: 160px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    transform-origin: center;
}

.card-1 {
    transform: rotate(-6deg);
}

.card-2 {
    transform: rotate(4deg);
}

.card-3 {
    transform: rotate(-2deg);
}

.section-head {
    text-align: left;
    margin-bottom: 36px;
}

.section-head h2 {
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 12px;
}

.section-head p {
    color: var(--muted);
}

.section-callout {
    margin-top: 10px;
    font-weight: 600;
    color: #cfe9ff;
}

.trust {
    padding: 60px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    align-items: center;
}

.trust-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    align-items: center;
    opacity: 0.8;
}

.screens {
    padding: 70px 0;
}

.screens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    align-items: start;
}

.screen-tabs {
    display: grid;
    gap: 12px;
}

.screen-tabs .tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
    padding: 12px 18px;
    border-radius: 14px;
    text-align: left;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.screen-tabs .tab.active,
.screen-tabs .tab:hover {
    border-color: rgba(255, 145, 77, 0.5);
    box-shadow: 0 10px 30px rgba(255, 145, 77, 0.25);
    transform: translateY(-2px);
}

.screen-display {
    display: grid;
    gap: 20px;
}

.screen-stage {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.screen-stage img {
    width: 100%;
}

.screen-meta p {
    color: var(--muted);
}

.screen-meta ul {
    margin: 12px 0 20px;
    padding-left: 18px;
    color: var(--muted);
    display: grid;
    gap: 6px;
}

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

.btn.pulse::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 145, 77, 0.7);
    animation: pulseGlow 2.2s ease infinite;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.9;
        transform: scale(1);
    }
    70% {
        opacity: 0;
        transform: scale(1.2);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--accent);
}

.features {
    padding: 70px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(78, 200, 255, 0.3);
}

.feature-card h3 {
    margin-top: 0;
    font-family: "Sora", sans-serif;
}

.feature-card p {
    color: var(--muted);
}

.workflow {
    padding: 70px 0;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: center;
}

.workflow-steps {
    display: grid;
    gap: 18px;
}

.workflow-steps .step {
    display: flex;
    gap: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px;
}

.workflow-steps span {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--brand);
}

.metrics {
    padding: 60px 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 20px;
}

.metric-label {
    color: var(--muted);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 6px;
}

.metric-number {
    font-family: "Sora", sans-serif;
    font-size: 1.8rem;
}

.pricing {
    padding: 70px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 330px));
    gap: 24px;
    justify-content: center;
}

.pricing-toggle {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px 0 30px;
    color: var(--muted);
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    display: inline-block;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    transition: 0.3s ease;
}

.toggle-slider::before {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    left: 3px;
    top: 2px;
    border-radius: 50%;
    background: linear-gradient(120deg, var(--brand), var(--brand-2));
    transition: 0.3s ease;
}

.toggle-switch input:checked + .toggle-slider {
    background: rgba(78, 200, 255, 0.2);
    border-color: rgba(78, 200, 255, 0.5);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(24px);
}

.price-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(78, 200, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: 32px;
    display: grid;
    gap: 18px;
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.35);
}

.price-card.featured {
    border-color: rgba(255, 145, 77, 0.6);
    box-shadow: 0 20px 40px rgba(255, 145, 77, 0.25);
}

.price-card h3 {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.02em;
}

.price {
    font-family: "Sora", sans-serif;
    font-size: 2.4rem;
    margin: 0;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.price-value {
    font-weight: 700;
}

.price-value {
    margin: 0;
    font-size: clamp(2.2rem, 3.4vw, 2.9rem);
    line-height: 1;
}

.price-value.price-custom {
    font-size: clamp(1.6rem, 2.4vw, 2rem);
}

.price span {
    font-size: 1rem;
    color: var(--muted);
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--muted);
    display: grid;
    gap: 10px;
}

.price-card ul strong {
    color: #ffffff;
}

.price-card ul li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.4;
}

.price-card ul li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 700;
    margin-top: 2px;
}

.faq {
    padding: 70px 0;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.faq-question {
    width: 100%;
    padding: 16px 20px;
    background: transparent;
    color: var(--text);
    border: none;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
}

.faq-answer {
    display: none;
    padding: 0 20px 18px;
    color: var(--muted);
}

.faq-item.active .faq-answer {
    display: block;
}

.cta {
    padding: 70px 0 90px;
}

.cta-card {
    background: linear-gradient(120deg, rgba(255, 145, 77, 0.2), rgba(78, 200, 255, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.site-footer {
    padding: 50px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 44px;
    margin-bottom: 12px;
}

.footer-grid h4 {
    margin-bottom: 12px;
}

.footer-grid a {
    display: block;
    color: var(--muted);
    margin-bottom: 8px;
}

.footer-bottom {
    color: var(--muted);
    font-size: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.footer-bottom a {
    color: var(--accent);
}
}

[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-demo {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 30;
    background: linear-gradient(120deg, var(--brand), var(--brand-2));
    color: #1a0f05;
    padding: 14px 20px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 18px 38px rgba(255, 145, 77, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 920px) {
    .nav-links {
        position: absolute;
        top: 72px;
        right: 4vw;
        background: rgba(11, 16, 32, 0.95);
        flex-direction: column;
        padding: 20px;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        display: none;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 700px) {
    .screen-stack {
        position: static;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .hero {
        padding-top: 60px;
    }
}
