﻿html {
    scroll-behavior: smooth;
}

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

.home-page {
    min-height: 100vh;
    color: #e5eef8;
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(99, 102, 241, 0.18), transparent 32%),
        linear-gradient(180deg, #06111f 0%, #081829 38%, #0d1f35 100%);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(6, 17, 31, 0.72);
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.nav-shell {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #f8fbff;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #22d3ee, #2563eb);
    color: #ffffff;
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.35);
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.top-nav a,
.footer-links a,
.link-btn {
    color: #bfd0e4;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: color .2s ease, opacity .2s ease, border-color .2s ease, background .2s ease;
}

.top-nav a:hover,
.footer-links a:hover,
.link-btn:hover {
    color: #ffffff;
}

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

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.primary-btn {
    color: #ffffff;
    background: linear-gradient(135deg, #06b6d4, #2563eb);
    box-shadow: 0 18px 35px rgba(37, 99, 235, 0.32);
}

.secondary-btn {
    color: #e8f4ff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(191, 208, 228, 0.18);
}

.secondary-btn.light {
    border-color: rgba(255, 255, 255, 0.22);
}

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

.large {
    min-height: 54px;
    padding: 0 28px;
    font-size: 1rem;
}

.hero-section {
    padding: 44px 0 34px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 42px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.18);
    color: #80f2ff;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.hero-copy h1,
.section-heading h2,
.split-grid h2,
.setup-copy h2,
.cta-shell h2 {
    margin: 0;
    color: #f8fbff;
    line-height: 1.03;
}

.hero-copy h1 {
    max-width: 780px;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.hero-text,
.section-heading p,
.split-grid p,
.setup-copy p,
.testimonial-shell p,
.cta-shell p,
.faq-card p,
.feature-card p,
.step-card p,
.setup-card p,
.preview-card p,
.compare-column li,
.task-bullets li,
.proof-card span,
.floating-card p,
.stat-card span,
.outcome-card p {
    color: #bfd0e4;
    line-height: 1.7;
}

.hero-text {
    max-width: 700px;
    margin: 24px 0 0;
    font-size: 1.08rem;
}

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

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.proof-card,
.dashboard-card,
.floating-card,
.feature-card,
.step-card,
.setup-note,
.setup-card,
.preview-card,
.stat-card,
.faq-card,
.compare-card,
.testimonial-shell,
.cta-shell,
.outcome-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(191, 208, 228, 0.12);
    box-shadow: 0 24px 70px rgba(3, 8, 20, 0.28);
}

.proof-card {
    border-radius: 22px;
    padding: 18px;
}

.proof-card strong,
.feature-card h3,
.step-card h3,
.setup-card h3,
.preview-card h3,
.faq-card h3,
.compare-column h3,
.stat-card strong,
.outcome-card h3 {
    color: #f8fbff;
}

.proof-card strong {
    display: block;
    margin-bottom: 6px;
}

.hero-visual {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.main-card {
    width: 100%;
    max-width: 540px;
    padding: 24px;
    border-radius: 30px;
    order: 1;
}

.dashboard-top,
.dashboard-summary,
.task-row {
    display: flex;
    align-items: center;
}

.dashboard-top {
    gap: 12px;
    margin-bottom: 22px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.12);
}

.dashboard-title {
    color: #f8fbff;
    font-weight: 800;
}

.dashboard-badge {
    margin-left: auto;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.12);
    color: #8ef4ff;
    font-size: .8rem;
    font-weight: 700;
}

.dashboard-summary {
    gap: 12px;
    margin-bottom: 18px;
}

.dashboard-summary > div {
    flex: 1;
    min-width: 0;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(191, 208, 228, 0.08);
}

.summary-label,
.mini-label {
    display: block;
    margin-bottom: 8px;
    color: #8fa9c5;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.dashboard-summary strong {
    color: #ffffff;
    font-size: 1.7rem;
}

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

.task-row {
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(191, 208, 228, 0.08);
}

.task-row > div {
    min-width: 0;
}

.task-row strong {
    display: block;
    margin-bottom: 5px;
    color: #f8fbff;
}

.task-row span {
    color: #a9bfd7;
    font-size: .92rem;
}

.task-pill {
    flex-shrink: 0;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.16);
    color: #ffd48a !important;
    font-size: .8rem !important;
    font-weight: 800;
}

.task-pill.muted {
    background: rgba(148, 163, 184, 0.15);
    color: #d3dfec !important;
}

.task-pill.success {
    background: rgba(34, 197, 94, 0.16);
    color: #90f0ae !important;
}

.floating-card {
    position: relative;
    width: clamp(180px, 22vw, 250px);
    border-radius: 24px;
    padding: 18px;
    box-sizing: border-box;
    transition: transform .18s ease, width .18s ease;
}

.floating-card strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
}

.floating-left {
    order: 2;
}

.floating-right {
    order: 3;
}

.logo-band {
    padding: 14px 0 24px;
}

.logo-band-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.logo-band-inner span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 0 16px;
    border-radius: 18px;
    text-align: center;
    color: #d7e5f3;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(191, 208, 228, 0.1);
}

.section-pad {
    padding: 94px 0;
}

.alt-bg {
    background: rgba(255, 255, 255, 0.025);
    border-top: 1px solid rgba(191, 208, 228, 0.08);
    border-bottom: 1px solid rgba(191, 208, 228, 0.08);
}

.section-grid,
.preview-grid,
.setup-grid {
    display: grid;
    gap: 28px;
}

.split-grid {
    grid-template-columns: .95fr 1.05fr;
    align-items: center;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 34px;
}

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

.section-heading h2,
.split-grid h2,
.setup-copy h2,
.cta-shell h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 3vw, 3.2rem);
}

.compare-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 20px;
    border-radius: 30px;
}

.compare-column {
    padding: 24px;
    border-radius: 24px;
}

.compare-column.bad {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.16);
}

.compare-column.good {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.16);
}

.compare-column ul,
.task-bullets {
    margin: 18px 0 0;
    padding-left: 20px;
}

.compare-column li,
.task-bullets li {
    margin-bottom: 12px;
}

.feature-grid,
.steps-grid,
.setup-steps,
.stats-grid,
.faq-grid,
.inside-grid,
.audience-grid,
.outcomes-grid {
    display: grid;
    gap: 20px;
}

.feature-grid {
    grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.step-card,
.setup-card,
.preview-card,
.stat-card,
.faq-card,
.outcome-card {
    padding: 28px;
    border-radius: 28px;
}

.feature-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(191, 208, 228, 0.12);
    font-size: 1.55rem;
}

.steps-grid {
    grid-template-columns: repeat(3, 1fr);
}

.setup-grid {
    grid-template-columns: .92fr 1.08fr;
    align-items: start;
}

.setup-note {
    margin-top: 24px;
    padding: 22px;
    border-radius: 24px;
}

.setup-note strong {
    display: block;
    margin-bottom: 8px;
    color: #f8fbff;
}

.setup-note span {
    color: #bfd0e4;
    line-height: 1.7;
}

.setup-steps {
    grid-template-columns: repeat(2, 1fr);
}

.step-number {
    display: inline-flex;
    margin-bottom: 16px;
    color: #8ef4ff;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.preview-grid {
    grid-template-columns: .95fr 1.05fr;
    align-items: start;
}

.preview-stack {
    display: grid;
    gap: 18px;
}

.inside-grid {
    grid-template-columns: repeat(2, 1fr);
}

.inside-card,
.audience-card {
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(191, 208, 228, 0.12);
    box-shadow: 0 24px 70px rgba(3, 8, 20, 0.28);
}

.inside-card h3,
.audience-card h3 {
    margin: 0 0 12px;
    color: #f8fbff;
}

.inside-card p,
.audience-card p {
    margin: 0;
    color: #bfd0e4;
    line-height: 1.7;
}

.audience-grid,
.outcomes-grid {
    grid-template-columns: repeat(3, 1fr);
}

.outcome-card h3,
.setup-card h3 {
    margin: 0 0 12px;
}

.outcome-card p,
.setup-card p {
    margin: 0;
}

.stats-grid {
    grid-template-columns: repeat(4, 1fr);
}

.stat-card {
    text-align: center;
}

.stat-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.testimonial-shell {
    max-width: 880px;
    margin: 0 auto;
    padding: 42px;
    border-radius: 34px;
    text-align: center;
}

.testimonial-shell blockquote {
    margin: 0;
    color: #f8fbff;
    font-size: clamp(1.5rem, 2.4vw, 2.3rem);
    line-height: 1.35;
    font-weight: 800;
}

.faq-grid {
    grid-template-columns: repeat(2, 1fr);
}

.cta-section {
    padding: 0 0 94px;
}

.cta-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 42px;
    border-radius: 36px;
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(9, 22, 40, 0.98), rgba(13, 31, 53, 0.98));
}

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

.site-footer {
    padding: 0 0 46px;
}

.footer-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding-top: 28px;
    border-top: 1px solid rgba(191, 208, 228, 0.1);
}

.footer-brand {
    margin-bottom: 8px;
}

.footer-shell p {
    margin: 0;
    color: #93aac1;
}

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

@media (max-width: 1100px) {
    .hero-grid,
    .split-grid,
    .preview-grid,
    .setup-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .stats-grid,
    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .inside-grid,
    .audience-grid,
    .setup-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-proof,
    .steps-grid,
    .faq-grid,
    .logo-band-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-visual {
        min-height: auto;
        padding-top: 20px;
        flex-direction: column;
        align-items: stretch;
    }

    .main-card {
        order: 1;
        width: 100%;
        max-width: 100%;
    }

    .floating-card {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 820px) {
    .site-header {
        position: static;
    }

    .nav-shell,
    .cta-shell,
    .footer-shell {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-nav {
        width: 100%;
        order: 3;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: thin;
    }

    .hero-copy h1 {
        font-size: clamp(2.4rem, 10vw, 3.5rem);
    }

    .feature-grid,
    .inside-grid,
    .audience-grid,
    .setup-steps,
    .outcomes-grid,
    .hero-proof,
    .steps-grid,
    .stats-grid,
    .faq-grid,
    .logo-band-inner,
    .compare-card {
        grid-template-columns: 1fr;
    }

    .container {
        width: min(1180px, calc(100% - 24px));
    }

    .nav-actions,
    .hero-actions,
    .cta-actions {
        width: 100%;
    }

    .nav-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .hero-actions .primary-btn,
    .hero-actions .secondary-btn,
    .cta-actions .primary-btn,
    .cta-actions .secondary-btn {
        width: 100%;
    }

    .section-pad {
        padding: 76px 0;
    }

    .setup-copy h2 {
        font-size: clamp(1.9rem, 8vw, 2.6rem);
    }

    .main-card,
    .feature-card,
    .inside-card,
    .audience-card,
    .setup-note,
    .setup-card,
    .outcome-card,
    .step-card,
    .preview-card,
    .faq-card,
    .stat-card,
    .testimonial-shell,
    .cta-shell,
    .compare-card {
        border-radius: 24px;
    }
}

@media (max-width: 560px) {
    .brand {
        width: 100%;
    }

    .nav-shell {
        gap: 18px;
        min-height: auto;
        padding: 18px 0;
    }

    .top-nav a {
        padding: 10px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(191, 208, 228, 0.1);
    }

    .nav-actions .link-btn,
    .nav-actions .primary-btn {
        width: 100%;
    }

    .hero-section {
        padding: 24px 0;
    }

    .hero-copy h1 {
        font-size: clamp(2rem, 11vw, 2.7rem);
    }

    .hero-text {
        font-size: 1rem;
    }

    .main-card {
        padding: 18px;
    }

    .dashboard-summary,
    .task-row,
    .footer-links {
        gap: 12px;
    }

    .dashboard-summary,
    .task-row {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-summary strong {
        font-size: 1.4rem;
    }

    .task-row span {
        overflow-wrap: anywhere;
    }

    .task-pill {
        align-self: flex-start;
    }

    .proof-card,
    .feature-card,
    .inside-card,
    .audience-card,
    .setup-note,
    .setup-card,
    .outcome-card,
    .step-card,
    .preview-card,
    .faq-card,
    .stat-card,
    .testimonial-shell,
    .cta-shell,
    .compare-card,
    .compare-column {
        padding: 20px;
    }

    .testimonial-shell blockquote {
        font-size: 1.35rem;
    }
}
