:root {
    --bg: #0b1020;
    --panel: #121933;
    --panel-soft: #0f1730;
    --text: #f4f7fb;
    --muted: #a7b0c3;
    --border: rgba(255, 255, 255, 0.08);
    --accent: #6ea8fe;
    --accent-strong: #4c8df6;
    --container: 1120px;
    --radius: 20px;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top, rgba(110, 168, 254, 0.12), transparent 30%),
        linear-gradient(180deg, #08101f 0%, #0b1020 100%);
    color: var(--text);
}

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

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

.hero,
.features,
.how-it-works,
.cta-section {
    padding: 88px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
}

.eyebrow,
.section-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--accent);
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.9rem;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero-subtext,
.section-heading p,
.feature-card p,
.step-card p,
.cta-card p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-weight: 600;
    transition: 0.2s ease;
}

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

.btn-primary {
    background: var(--accent);
    color: #08101f;
    border-color: transparent;
}

.btn-primary:hover {
    background: var(--accent-strong);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
}

.hero-card,
.feature-card,
.step-card,
.cta-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card {
    padding: 20px;
}

.code-window {
    overflow: hidden;
    border-radius: 16px;
    background: #0a0f1d;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.code-header {
    display: flex;
    gap: 8px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.code-window pre {
    margin: 0;
    padding: 20px;
    overflow-x: auto;
}

.code-window code {
    color: #dbe7ff;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.95rem;
    line-height: 1.7;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 32px;
}

.section-heading h2,
.cta-card h2 {
    margin: 0 0 14px;
    font-size: clamp(1.8rem, 3vw, 3rem);
    letter-spacing: -0.02em;
}

.feature-grid,
.steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.feature-card,
.step-card {
    padding: 26px;
}

.feature-card h3,
.step-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.step-number {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 12px;
    background: rgba(110, 168, 254, 0.12);
    color: var(--accent);
    font-weight: 700;
}

.cta-card {
    padding: 42px;
    text-align: center;
}

@media (max-width: 900px) {
    .hero-content,
    .feature-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .hero,
    .features,
    .how-it-works,
    .cta-section {
        padding: 64px 0;
    }

    .cta-card {
        padding: 28px;
    }
}

/* NAVBAR */

.navbar {
    position: sticky;
    top: 0;
    z-index: 10;

    backdrop-filter: blur(10px);

    background: rgba(11,16,32,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-container {
    height: 70px;

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 140px; 
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 24px;

    font-weight: 500;
}

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

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

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

.nav-login {
    color: var(--muted);
}


/* FOOTER */

.footer {
    padding: 60px 0;

    border-top: 1px solid rgba(255,255,255,0.06);

    background: rgba(255,255,255,0.02);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 40px;
    align-items: center;
}

.footer-left p {
    color: var(--muted);
    margin-top: 6px;
}

.footer-links {
    display: flex;
    gap: 18px;
}

.footer-links a {
    color: var(--muted);
}

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

.footer-copy {
    color: var(--muted);
    font-size: 0.9rem;
}


@media (max-width: 900px) {

    .nav-links {
        display: none;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

}

.page-hero {
    padding: 88px 0 44px;
}

.page-hero-content {
    max-width: 760px;
}

.page-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
}

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

.feature-section {
    padding: 24px 0 88px;
}

.feature-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.feature-detail-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.feature-detail-card h2 {
    margin: 0 0 14px;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
}

.feature-detail-card p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.7;
}

.feature-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 14px;
    background: rgba(110, 168, 254, 0.12);
    color: var(--accent);
    font-weight: 700;
}

.feature-list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.9;
}

.feature-band {
    padding: 0 0 88px;
}

.feature-band-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    padding: 36px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.feature-band-card h2 {
    margin: 0 0 14px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    letter-spacing: -0.02em;
}

.feature-band-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    max-width: 720px;
}

@media (max-width: 900px) {
    .feature-detail-grid {
        grid-template-columns: 1fr;
    }

    .feature-band-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px;
    }
}

.pricing-section {
    padding: 24px 0 88px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.pricing-card-featured {
    border-color: rgba(110, 168, 254, 0.35);
    background: linear-gradient(180deg, rgba(110, 168, 254, 0.08), rgba(255, 255, 255, 0.03));
}

.pricing-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(110, 168, 254, 0.14);
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 600;
}

.pricing-plan {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--accent);
    font-weight: 600;
}

.pricing-card-top h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1;
    letter-spacing: -0.03em;
}

.pricing-card-top h2 span {
    font-size: 1rem;
    color: var(--muted);
    font-weight: 500;
    margin-left: 4px;
}

.pricing-card-top p {
    margin: 0 0 24px;
    color: var(--muted);
    line-height: 1.7;
}

.pricing-features {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 2;
    flex: 1;
}

.pricing-button {
    margin-top: 24px;
    width: 100%;
}

.pricing-compare-section {
    padding: 0 0 88px;
}

.pricing-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.pricing-table th,
.pricing-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-table th {
    color: var(--text);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.02);
}

.pricing-table td {
    color: var(--muted);
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.faq-section {
    padding: 0 0 88px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.faq-card {
    padding: 26px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.faq-card h3 {
    margin: 0 0 12px;
    font-size: 1.1rem;
}

.faq-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

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

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

.docs-section {
    padding: 24px 0 88px;
}

.docs-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
}

.docs-sidebar {
    position: sticky;
    top: 90px;
    height: fit-content;
}

.docs-sidebar h3 {
    margin: 24px 0 10px;
    font-size: 0.9rem;
    color: var(--muted);
}

.docs-sidebar a {
    display: block;
    padding: 6px 0;
    color: var(--text);
    opacity: 0.7;
}

.docs-sidebar a:hover {
    opacity: 1;
}

.docs-content h2 {
    margin-top: 40px;
    margin-bottom: 10px;
}

.docs-content p {
    color: var(--muted);
    line-height: 1.7;
}

.docs-content pre {
    margin-top: 16px;
    padding: 18px;
    background: #0a0f1d;
    border-radius: 12px;
    overflow-x: auto;
}

.docs-content code {
    font-family: ui-monospace, monospace;
    font-size: 0.9rem;
    color: #dbe7ff;
}

@media (max-width: 900px) {

    .docs-layout {
        grid-template-columns: 1fr;
    }

    .docs-sidebar {
        position: static;
    }

}

.auth-section {
    padding: 40px 0 100px;
}

.auth-card {
    max-width: 420px;
    margin: 0 auto;
    padding: 32px;

    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.auth-card form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.auth-card label {
    font-size: 0.9rem;
    color: var(--muted);
}

.auth-card input {
    height: 42px;
    padding: 0 12px;

    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 10px;

    color: var(--text);
}

.auth-card input:focus {
    outline: none;
    border-color: var(--accent);
}

.auth-button {
    margin-top: 10px;
}

.auth-message {
    margin-top: 18px;
    padding: 12px;

    background: rgba(110,168,254,0.08);
    border: 1px solid rgba(110,168,254,0.25);
    border-radius: 10px;

    color: var(--accent);
}

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

.page-hero-center .page-hero-content {
    margin: 0 auto;
}

.contact-section {
    padding: 24px 0 88px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: start;
}

.contact-card,
.contact-info-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-card h2,
.contact-info-card h2 {
    margin: 0 0 14px;
    font-size: 1.6rem;
    letter-spacing: -0.02em;
}

.contact-intro,
.contact-info-card p,
.contact-point p {
    color: var(--muted);
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 22px;
}

.contact-form label {
    font-size: 0.92rem;
    color: var(--muted);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font: inherit;
    resize: vertical;
}

.contact-form input {
    height: 44px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.contact-button {
    margin-top: 8px;
}

.contact-points {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.contact-point h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}

.contact-point p {
    margin: 0;
}

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

.legal-section {
    padding: 40px 0 100px;
}

.legal-content {
    max-width: 800px;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 12px;
}

.legal-content p {
    color: var(--muted);
    line-height: 1.7;
}