* {
    box-sizing: border-box;
}

:root {
    --dark: #020617;
    --dark-2: #0f172a;
    --blue: #1463FF;
    --blue-2: #0A4FE0;
    --cyan: #36A3FF;
    --green: #22c55e;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e2e8f0;
    --soft: #f8fafc;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(15, 23, 42, .10);
    --shadow-soft: 0 16px 46px rgba(15, 23, 42, .07);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(20, 99, 255, .10), transparent 34%),
        #f8fafc;
    color: var(--text);
}



body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(15, 23, 42, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, .035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, black, transparent 60%);
    z-index: -1;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}
.header {
    position: sticky;
    top: 16px;
    z-index: 999;
    padding: 0 20px;
    background: transparent;
    border: none;
}

.nav {
    max-width: 1180px;
    margin: auto;

    height: 72px;

    background: rgba(255,255,255,.75);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,.4);

    box-shadow:
        0 10px 40px rgba(15,23,42,.08);

    border-radius: 20px;

    padding: 0 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-icon {
    width: 42px;
    height: 42px;

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #1463FF,
        #0A4FE0
    );

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 800;
    font-size: 18px;

    box-shadow:
        0 10px 25px rgba(20,99,255,.25);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text strong {
    color: #020617;
    font-size: 18px;
    line-height: 1;
}

.brand-text small {
    color: #64748b;
    font-size: 11px;
    margin-top: 2px;
}

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

.nav-links a {
    text-decoration: none;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    transition: .2s;
}

.nav-links a:hover {
    color: #1463FF;
}

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

.nav-secondary {
    text-decoration: none;

    color: #475569;

    padding: 11px 16px;

    border-radius: 12px;

    transition: .2s;
}

.nav-secondary:hover {
    background: #f8fafc;
}

.nav-login {
    text-decoration: none;

    background: #020617;

    color: #fff;

    padding: 12px 18px;

    border-radius: 14px;

    font-weight: 700;

    transition: .2s;
}

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

.hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 92px;
}

.hero-blur {
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
    opacity: .7;
    pointer-events: none;
}

.hero-blur-one {
    width: 420px;
    height: 420px;
    background: rgba(20, 99, 255, .14);
    top: 40px;
    left: -140px;
}

.hero-blur-two {
    width: 360px;
    height: 360px;
    background: rgba(6, 182, 212, .12);
    right: -120px;
    bottom: 0;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 62px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    border: 1px solid rgba(20, 99, 255, .18);
    color: #0A4FE0;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 22px;
    box-shadow: 0 12px 30px rgba(20, 99, 255, .08);
}

.hero-badge span {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(34, 197, 94, .14);
}

.hero h1 {
    font-size: clamp(42px, 5.7vw, 78px);
    line-height: .94;
    letter-spacing: -4px;
    margin: 0 0 24px;
}

.hero p {
    font-size: 18px;
    line-height: 1.75;
    color: #475569;
    max-width: 650px;
    margin: 0;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue), var(--blue-2));
    color: #fff;
    text-decoration: none;
    padding: 15px 22px;
    border-radius: 15px;
    font-weight: 950;
    border: 0;
    box-shadow: 0 16px 34px rgba(20, 99, 255, .24);
    transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(20, 99, 255, .30);
}

.btn.ghost {
    background: rgba(255,255,255,.8);
    color: var(--dark);
    border: 1px solid var(--border);
    box-shadow: none;
}

.btn.full {
    width: 100%;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.hero-points span {
    background: rgba(255,255,255,.76);
    border: 1px solid var(--border);
    color: #475569;
    padding: 9px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 850;
}

.saas-preview {
    position: relative;
}

.preview-window {
    background: #08111f;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 34px;
    padding: 14px;
    box-shadow: 0 48px 110px rgba(15,23,42,.34);
}

.preview-top {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 10px;
    color: #94a3b8;
    font-size: 12px;
}

.preview-dots {
    display: flex;
    gap: 8px;
}

.preview-dots span {
    width: 10px;
    height: 10px;
    background: #334155;
    border-radius: 50%;
}

.preview-body {
    min-height: 480px;
    border-radius: 24px;
    overflow: hidden;
    background: #f8fafc;
    display: grid;
    grid-template-columns: 168px 1fr;
}

.preview-sidebar {
    background: #0f172a;
    color: #fff;
    padding: 24px 20px;
}

.preview-sidebar strong {
    display: block;
    font-size: 20px;
    margin-bottom: 26px;
}

.preview-sidebar nav {
    display: grid;
    gap: 9px;
}

.preview-sidebar span {
    color: #94a3b8;
    font-size: 13px;
    padding: 10px 12px;
    border-radius: 12px;
}

.preview-sidebar span.active {
    color: #fff;
    background: rgba(20,99,255,.22);
}

.preview-main {
    padding: 24px;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.preview-header small,
.panel-title small {
    display: block;
    color: var(--muted);
    margin-bottom: 4px;
}

.preview-header strong {
    font-size: 21px;
}

.preview-header button {
    border: 0;
    color: #fff;
    background: var(--blue);
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 900;
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.preview-card,
.preview-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 12px 30px rgba(15,23,42,.04);
}

.preview-card.dark {
    background: #111827;
    color: #fff;
    border-color: #111827;
}

.preview-card span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 8px;
}

.preview-card.dark span,
.preview-card.dark small {
    color: #cbd5e1;
}

.preview-card strong {
    display: block;
    font-size: 25px;
    letter-spacing: -1px;
}

.preview-card small {
    color: var(--muted);
}

.preview-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.panel-title {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 16px;
}

.bar-list {
    display: grid;
    gap: 14px;
}

.bar-list div {
    display: grid;
    gap: 7px;
}

.bar-list span {
    color: #475569;
    font-size: 13px;
    font-weight: 800;
}

.bar-list i {
    display: block;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.ticket-list {
    display: grid;
    gap: 10px;
}

.ticket-list article {
    border-left: 4px solid var(--blue);
    background: #f8fafc;
    border-radius: 14px;
    padding: 12px;
}

.ticket-list b {
    display: block;
    font-size: 13px;
}

.ticket-list span {
    color: var(--muted);
    font-size: 12px;
}

.floating-card {
    position: absolute;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(226,232,240,.9);
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: var(--shadow-soft);
}

.floating-card span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 5px;
}

.floating-card strong {
    color: var(--dark);
}

.floating-card-one {
    left: -32px;
    bottom: 62px;
}

.floating-card-two {
    right: -26px;
    top: 98px;
}

.proof {
    padding: 28px 0;
    background: rgba(255,255,255,.78);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.proof-grid div {
    text-align: center;
}

.proof-grid strong {
    display: block;
    font-size: 20px;
}

.proof-grid span {
    color: var(--muted);
}

.pain,
.steps,
.features,
.pricing,
.highlight,
.modules,
.spotlight {
    padding: 92px 0;
}

.section-title {
    max-width: 780px;
    margin-bottom: 38px;
}

.section-title.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-title span,
.highlight span,
.spotlight-copy span,
.final-cta span {
    color: var(--blue);
    font-weight: 950;
}

.section-title h2,
.highlight h2,
.final-cta h2,
.spotlight-copy h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.04;
    letter-spacing: -2.4px;
    margin: 10px 0 0;
}

.section-title p,
.spotlight-copy p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.pain-grid,
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}

.pain-card,
.feature-card,
.step,
.price-card,
.module-card {
    background: rgba(255,255,255,.82);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
}

.icon-box,
.step span,
.module-card span {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: #EAF2FF;
    color: #0A4FE0;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    margin-bottom: 22px;
}

.pain-card h3,
.feature-card h3,
.step h3,
.module-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    letter-spacing: -.6px;
}

.pain-card p,
.feature-card p,
.step p,
.module-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.modules {
    background: #fff;
    border-block: 1px solid var(--border);
}

.modules-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 22px;
}

.module-card {
    min-height: 260px;
}

.module-card.large {
    grid-row: span 2;
    background:
        radial-gradient(circle at top right, rgba(20,99,255,.18), transparent 36%),
        #0f172a;
    color: #fff;
}

.module-card.large p {
    color: #cbd5e1;
}

.steps-line {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

.spotlight {
    background:
        radial-gradient(circle at top right, rgba(20,99,255,.12), transparent 34%),
        #fff;
    border-block: 1px solid var(--border);
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 58px;
    align-items: center;
}

.spotlight-copy ul {
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 12px;
    list-style: none;
}

.spotlight-copy li {
    color: #475569;
    font-weight: 800;
    position: relative;
    padding-left: 28px;
}

.spotlight-copy li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green);
    font-weight: 950;
}

.spotlight-card {
    background: #0f172a;
    color: #fff;
    border-radius: 34px;
    padding: 34px;
    box-shadow: 0 34px 80px rgba(15,23,42,.28);
}

.cash-row,
.cash-total {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.cash-row span {
    color: #cbd5e1;
}

.cash-row strong {
    font-size: 20px;
}

.cash-total {
    margin-top: 10px;
    border: 0;
    background: rgba(20,99,255,.20);
    border-radius: 20px;
    padding: 20px;
}

.cash-total span {
    color: #EAF2FF;
    font-weight: 900;
}

.cash-total strong {
    font-size: 26px;
}

.highlight-box {
    background:
        radial-gradient(circle at top left, rgba(20,99,255,.26), transparent 34%),
        var(--dark);
    color: #fff;
    border-radius: 36px;
    padding: 58px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 34px;
    align-items: center;
    box-shadow: 0 30px 80px rgba(15,23,42,.24);
}

.highlight-box ul {
    margin: 0;
    display: grid;
    gap: 14px;
    color: #cbd5e1;
    font-size: 18px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 64px;
    align-items: center;
}

.price-card {
    border: 2px solid rgba(20,99,255,.56);
    box-shadow: 0 30px 80px rgba(20,99,255,.13);
}

.price-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-top h3 {
    font-size: 26px;
    margin: 0;
}

.price-top span {
    background: #EAF2FF;
    color: #0A4FE0;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.price {
    font-size: 56px;
    font-weight: 950;
    margin: 24px 0;
    letter-spacing: -2px;
}

.price small {
    font-size: 16px;
    color: var(--muted);
}

.price-card ul {
    color: #475569;
    line-height: 2;
    padding-left: 20px;
    margin-bottom: 26px;
}

.final-cta {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    text-align: center;
    background:
        radial-gradient(circle at top left, rgba(20,99,255,.32), transparent 34%),
        linear-gradient(135deg, #020617, #0f172a 48%, #073EBA);
    color: #fff;
}

.final-cta h2 {
    max-width: 820px;
    margin-inline: auto;
}

.final-cta p {
    color: #cbd5e1;
    font-size: 18px;
    max-width: 720px;
    margin: 18px auto 30px;
    line-height: 1.75;
}

.footer {
    background: #020617;
    color: #fff;
    padding: 36px 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    color: #94a3b8;
}

.footer a {
    color: #fff;
    text-decoration: none;
    font-weight: 850;
}

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

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

    .hero p {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-points {
        justify-content: center;
    }

    .floating-card {
        display: none;
    }

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

    .module-card.large {
        grid-row: auto;
        grid-column: span 2;
    }

    .steps-line,
    .pain-grid,
    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 760px) {
    .nav nav {
        display: none;
    }

    .hero {
        padding: 64px 0 72px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .preview-body {
        grid-template-columns: 1fr;
    }

    .preview-sidebar {
        display: none;
    }

    .preview-stats,
    .preview-content-grid,
    .proof-grid,
    .pain-grid,
    .feature-grid,
    .modules-grid,
    .steps-line {
        grid-template-columns: 1fr;
    }

    .module-card.large {
        grid-column: auto;
    }

    .preview-window {
        border-radius: 24px;
        padding: 10px;
    }

    .preview-main {
        padding: 18px;
    }

    .preview-header,
    .price-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .highlight-box {
        padding: 34px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
h1,
h2,
h3,
.brand,
.price,
.metric-value,
.preview-card strong,
.cash-total strong {
    font-family: "Sora", "Inter", Arial, sans-serif;
}

.hero p,
.section-title p,
.feature-card p,
.step p,
.module-card p,
.spotlight-copy p {
    font-weight: 400;
}

.pricing-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:50px;
}

.price-card{
    position:relative;
}

.price-card.featured{
    transform:scale(1.04);
    border:2px solid #1463FF;
}

.popular{
    position:absolute;
    top:-12px;
    left:50%;
    transform:translateX(-50%);
    background:#1463FF;
    color:#fff;
    padding:8px 16px;
    border-radius:999px;
    font-size:12px;
    font-weight:800;
    letter-spacing:.08em;
}

.price-badge{
    display:inline-flex;
    background:#EAF2FF;
    color:#1463FF;
    padding:8px 14px;
    border-radius:999px;
    font-size:12px;
    font-weight:800;
    margin-bottom:20px;
}

.pricing-note{
    margin-top:50px;
    text-align:center;
    background:#f8fafc;
    border:1px solid #e2e8f0;
    padding:30px;
    border-radius:24px;
}

.pricing-note strong{
    display:block;
    margin-bottom:10px;
    font-size:18px;
}

@media(max-width:900px){

    .pricing-cards{
        grid-template-columns:1fr;
    }

    .price-card.featured{
        transform:none;
    }

}
.plan-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.plan-features li {
    padding: 14px 0;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
    font-size: 15px;
}

.plan-features li:last-child {
    border-bottom: none;
}
.brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 30px;
    width: auto;
    display: block;
}
.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: rgba(255,255,255,.8);

    font-size: 24px;
    cursor: pointer;
}

@media(max-width:760px){

    .menu-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .nav-actions{
        display:none;
    }

    .nav-links{

        position:absolute;

        top:90px;
        left:20px;
        right:20px;

        display:none;

        flex-direction:column;
        align-items:flex-start;

        gap:16px;

        padding:24px;

        background:#fff;

        border:1px solid var(--border);

        border-radius:20px;

        box-shadow:0 20px 50px rgba(15,23,42,.12);
    }

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

    .mobile-actions{

        display:flex;
        flex-direction:column;

        width:100%;

        gap:12px;

        margin-top:12px;
        padding-top:16px;

        border-top:1px solid var(--border);
    }

    .mobile-actions .nav-secondary,
    .mobile-actions .nav-login{
        width:100%;
        text-align:center;
    }

}
.mobile-actions{
    display:none;
}