* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #080b12;
    color: #f5f7fb;
    line-height: 1.6;
}


/* =========================
   GLOBAL
========================= */

a {
    color: inherit;
    text-decoration: none;
}

section {
    width: 100%;
}

.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 30px;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;

    width: 100%;
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 5%;

    background: rgba(8, 11, 18, 0.88);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.navbar nav {
    display: flex;
    gap: 34px;
}

.navbar nav a {
    color: #aeb6c7;
    font-size: 14px;
    transition: 0.2s ease;
}

.navbar nav a:hover {
    color: #ffffff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.login-button {
    color: #c7cedb;
    font-size: 14px;
}

.nav-cta {
    padding: 10px 18px;

    border-radius: 9px;

    background: #ffffff;
    color: #080b12;

    font-size: 14px;
    font-weight: 700;

    transition: 0.2s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 820px;

    max-width: 1300px;
    margin: 0 auto;

    padding: 120px 40px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-block;

    padding: 7px 13px;
    margin-bottom: 25px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;

    background: rgba(255, 255, 255, 0.04);

    color: #b8c0d0;

    font-size: 12px;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(48px, 6vw, 76px);

    line-height: 1.03;

    letter-spacing: -4px;

    margin-bottom: 28px;
}

.hero h1 span {
    display: block;

    background: linear-gradient(
        90deg,
        #ffffff,
        #7d879b
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero p {
    max-width: 600px;

    color: #9da6b8;

    font-size: 18px;
    line-height: 1.7;

    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    align-items: center;
}

.primary-button,
.secondary-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 14px 23px;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.2s ease;
}

.primary-button {
    background: #ffffff;
    color: #080b12;
}

.primary-button:hover {
    transform: translateY(-2px);
}

.secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.12);

    color: #d7dce6;

    background: rgba(255, 255, 255, 0.03);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.07);
}

.hero-note {
    margin-top: 15px !important;

    font-size: 12px !important;
    color: #687386 !important;
}


/* =========================
   APP PREVIEW
========================= */

.app-preview {
    width: 100%;

    border-radius: 18px;

    overflow: hidden;

    background: #10151f;

    border: 1px solid rgba(255, 255, 255, 0.1);

    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(255, 255, 255, 0.03);

    transform: perspective(1000px) rotateY(-5deg);
}

.preview-topbar {
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 20px;

    background: #0c1119;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.preview-logo {
    font-weight: 800;
    font-size: 15px;
}

.preview-user {
    font-size: 11px;
    color: #788296;
}

.preview-content {
    padding: 28px;
}

.preview-heading {
    font-size: 22px;
    font-weight: 700;
}

.preview-subheading {
    color: #727d90;
    font-size: 12px;
    margin-top: 4px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;

    margin-top: 25px;
}

.stat-card {
    padding: 18px;

    border-radius: 10px;

    background: #151b26;

    border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-card span {
    display: block;

    color: #727d90;

    font-size: 10px;

    margin-bottom: 6px;
}

.stat-card strong {
    font-size: 20px;
}

.quote-preview {
    margin-top: 15px;

    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-radius: 12px;

    background: #151b26;

    border: 1px solid rgba(255, 255, 255, 0.06);
}

.quote-preview small {
    color: #687386;
    font-size: 10px;
}

.quote-preview h3 {
    font-size: 14px;
    margin-top: 4px;
}

.quote-preview p {
    margin: 0;

    font-size: 10px;

    color: #707b8e;
}

.quote-preview > strong {
    font-size: 17px;
}


/* =========================
   SECTION HEADINGS
========================= */

.section-heading {
    max-width: 700px;

    margin: 0 auto 60px;

    text-align: center;
}

.section-label {
    margin-bottom: 15px;

    color: #7e899c;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}

.section-heading h2 {
    font-size: clamp(35px, 5vw, 52px);

    line-height: 1.1;

    letter-spacing: -2px;

    margin-bottom: 18px;
}

.section-heading h2 span {
    color: #7e899c;
}

.section-heading p {
    color: #858fa1;

    font-size: 16px;
}


/* =========================
   FEATURES
========================= */

.feature-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}

.feature-card {
    padding: 30px;

    min-height: 240px;

    border-radius: 15px;

    background: #0e131c;

    border: 1px solid rgba(255, 255, 255, 0.07);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-5px);

    background: #121822;

    border-color: rgba(255, 255, 255, 0.14);
}

.feature-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 10px;

    background: #171d28;

    border: 1px solid rgba(255, 255, 255, 0.08);

    font-size: 14px;
    font-weight: 800;
}

.feature-card h3 {
    font-size: 17px;

    margin-bottom: 10px;
}

.feature-card p {
    color: #7d8799;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================
   WORKFLOW
========================= */

.workflow-section {
    max-width: 1300px;
}

.workflow {
    display: flex;

    align-items: flex-start;
    justify-content: center;

    gap: 20px;
}

.workflow-step {
    flex: 1;

    text-align: center;

    max-width: 240px;
}

.step-number {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: #121822;

    border: 1px solid rgba(255, 255, 255, 0.1);

    color: #cbd1dc;

    font-size: 12px;
    font-weight: 800;
}

.workflow-step h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.workflow-step p {
    color: #737e91;
    font-size: 12px;
}

.workflow-line {
    width: 60px;
    height: 1px;

    margin-top: 26px;

    background: rgba(255, 255, 255, 0.1);
}


/* =========================
   PRICING
========================= */

.pricing-section {
    max-width: 1000px;
}

.pricing-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.pricing-card {
    position: relative;

    padding: 38px;

    border-radius: 16px;

    background: #0e131c;

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pro-card {
    background: #121822;

    border-color: rgba(255, 255, 255, 0.2);

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.popular {
    position: absolute;

    top: 18px;
    right: 18px;

    padding: 5px 9px;

    border-radius: 20px;

    background: #ffffff;
    color: #080b12;

    font-size: 9px;
    font-weight: 800;
}

.pricing-name {
    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    color: #8d97a8;
}

.price {
    margin-top: 12px;

    font-size: 52px;

    font-weight: 800;

    letter-spacing: -3px;
}

.price span {
    font-size: 14px;

    color: #737e90;

    letter-spacing: 0;
}

.price-description {
    min-height: 50px;

    margin-top: 5px;

    color: #7b8597;

    font-size: 13px;
}

.pricing-card ul {
    list-style: none;

    margin: 25px 0;
}

.pricing-card li {
    padding: 8px 0;

    color: #aeb6c6;

    font-size: 13px;
}

.pricing-button {
    display: block;

    width: 100%;

    padding: 13px;

    text-align: center;

    border-radius: 9px;

    background: #181f2b;

    border: 1px solid rgba(255, 255, 255, 0.08);

    font-size: 13px;
    font-weight: 700;

    transition: 0.2s ease;
}

.pricing-button:hover {
    background: #202938;
}

.pro-button {
    background: #ffffff;
    color: #080b12;
}

.pro-button:hover {
    background: #e9edf3;
}


/* =========================
   FINAL CTA
========================= */

.final-cta {
    max-width: 1100px;

    margin: 40px auto 120px;

    padding: 90px 40px;

    text-align: center;

    border-radius: 22px;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.07),
            transparent 60%
        );

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.final-cta h2 {
    max-width: 700px;

    margin: 0 auto 18px;

    font-size: clamp(35px, 5vw, 55px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.final-cta p {
    max-width: 600px;

    margin: 0 auto 30px;

    color: #7f899b;

    font-size: 15px;
}


/* =========================
   FOOTER
========================= */

footer {
    max-width: 1200px;

    margin: 0 auto;

    padding: 60px 30px 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand strong {
    font-size: 20px;
}

.footer-brand p {
    margin-top: 8px;

    color: #697487;

    font-size: 12px;
}

.footer-links {
    display: flex;

    gap: 25px;

    margin-top: 30px;
}

.footer-links a {
    color: #7c8799;

    font-size: 12px;

    transition: 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    margin-top: 50px;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.05);

    color: #515b6c;

    font-size: 11px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .navbar nav {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;

        padding-top: 80px;

        gap: 60px;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .app-preview {
        transform: none;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .workflow {
        flex-direction: column;
        align-items: center;
    }

    .workflow-line {
        width: 1px;
        height: 35px;
        margin: 0;
    }
}


@media (max-width: 600px) {

    .navbar {
        padding: 0 20px;
    }

    .login-button {
        display: none;
    }

    .hero {
        padding: 70px 20px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .section {
        padding: 80px 20px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .quote-preview {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .final-cta {
        margin: 20px 20px 80px;
        padding: 60px 25px;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}
/* =========================
   AUTH PAGES
========================= */

.auth-page {
    min-height: 100vh;
    background: #080b12;
}

.auth-container {
    min-height: calc(100vh - 76px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 70px 20px;
}

.auth-card {
    width: 100%;
    max-width: 480px;

    padding: 42px;

    border-radius: 18px;

    background: #0e131c;

    border: 1px solid rgba(255, 255, 255, 0.09);

    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.45);
}

.auth-header {
    text-align: center;

    margin-bottom: 32px;
}

.auth-header h1 {
    font-size: 38px;

    line-height: 1.08;

    letter-spacing: -1.8px;

    margin-bottom: 15px;
}

.auth-header h1 span {
    display: block;

    color: #7e899c;
}

.auth-header p {
    color: #7c8799;

    font-size: 13px;

    line-height: 1.7;
}


/* FORM */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #c8ced9;

    font-size: 12px;
    font-weight: 700;
}

.form-group input {
    width: 100%;

    padding: 14px 15px;

    border-radius: 9px;

    border: 1px solid rgba(255, 255, 255, 0.09);

    background: #080c13;

    color: #ffffff;

    outline: none;

    font-size: 13px;

    transition: 0.2s ease;
}

.form-group input::placeholder {
    color: #4f596a;
}

.form-group input:focus {
    border-color: rgba(255, 255, 255, 0.3);

    background: #0b1018;
}

.form-group small {
    display: block;

    margin-top: 6px;

    color: #596477;

    font-size: 10px;
}


/* SUBMIT BUTTON */

.auth-submit {
    width: 100%;

    margin-top: 5px;

    padding: 14px;

    border: none;

    border-radius: 9px;

    background: #ffffff;

    color: #080b12;

    cursor: pointer;

    font-size: 13px;
    font-weight: 800;

    transition: 0.2s ease;
}

.auth-submit:hover {
    transform: translateY(-2px);

    background: #e9edf3;
}


/* MESSAGE */

.auth-message {
    min-height: 20px;

    margin-top: 15px;

    text-align: center;

    font-size: 12px;
}

.auth-message.error {
    color: #e28b8b;
}

.auth-message.success {
    color: #9faabd;
}


/* DIVIDER */

.auth-divider {
    display: flex;

    align-items: center;

    gap: 15px;

    margin: 32px 0 20px;

    color: #505a6b;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.auth-divider::before,
.auth-divider::after {
    content: "";

    height: 1px;

    flex: 1;

    background: rgba(255, 255, 255, 0.07);
}


/* BENEFITS */

.auth-benefits {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    color: #8d97a8;

    font-size: 11px;
}

.auth-benefits div {
    padding: 10px;

    border-radius: 7px;

    background: rgba(255, 255, 255, 0.025);

    border: 1px solid rgba(255, 255, 255, 0.05);
}


/* TERMS */

.terms {
    margin-top: 25px;

    text-align: center;

    color: #4f596a;

    font-size: 9px;

    line-height: 1.6;
}

.auth-question {
    color: #626d7e;

    font-size: 12px;
}


/* MOBILE */

@media (max-width: 600px) {

    .auth-card {
        padding: 30px 22px;
    }

    .auth-header h1 {
        font-size: 32px;
    }

    .auth-question {
        display: none;
    }

    .auth-benefits {
        grid-template-columns: 1fr;
    }
}