:root {
    --navy-950: #07111f;
    --navy-900: #0b1728;
    --navy-800: #13233a;
    --ink: #102039;
    --muted: #65738a;
    --line: #e3e9f1;
    --surface: #f5f7fb;
    --white: #ffffff;
    --blue: #229ed9;
    --blue-dark: #1688c0;
    --orange: #f47a32;
    --violet: #7567f8;
}

html {
    scroll-behavior: smooth;
}

body.home-page {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.home-page a {
    color: var(--blue-dark);
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page h4 {
    margin-top: 0;
    color: var(--ink) !important;
    font-weight: 750;
    letter-spacing: -.035em;
}

.site-header {
    position: absolute;
    z-index: 20;
    top: 0;
    right: 0;
    left: 0;
}

.home-page .navbar {
    min-height: 78px;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.home-page .navbar .container {
    padding-top: 14px;
}

.home-page .navbar-brand {
    height: 50px;
    padding: 10px 15px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white) !important;
    font-size: 18px;
    font-weight: 750;
    letter-spacing: -.02em;
}

.brand-mark {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: white;
    background: linear-gradient(135deg, var(--orange), #ff9a4b);
    font-size: 25px;
    line-height: 1;
    transform: rotate(-30deg);
}

.home-page .navbar-default .navbar-nav > li > a {
    margin: 5px 2px;
    padding: 10px 13px;
    border-radius: 10px;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    font-weight: 600;
}

.home-page .navbar-default .navbar-nav > li > a:hover,
.home-page .navbar-default .navbar-nav > li > a:focus,
.home-page .navbar-default .navbar-nav > .active > a,
.home-page .navbar-default .navbar-nav > .active > a:hover,
.home-page .navbar-default .navbar-nav > .open > a,
.home-page .navbar-default .navbar-nav > .open > a:hover {
    color: var(--white);
    background: rgba(255,255,255,.08);
}

.home-page .navbar-default .navbar-nav > .nav-cta > a {
    margin-left: 8px;
    padding-right: 18px;
    padding-left: 18px;
    color: var(--white);
    background: var(--blue);
}

.home-page .navbar-default .navbar-nav > .nav-cta > a:hover {
    background: var(--blue-dark);
}

.home-page .dropdown-menu {
    padding: 8px;
    border: 1px solid rgba(16,32,57,.08);
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(7,17,31,.18);
}

.home-page .dropdown-menu > li > a {
    padding: 8px 12px;
    border-radius: 7px;
    color: var(--ink);
}

.home-page .dropdown-menu > .dropdown-header {
    padding: 9px 12px 5px;
    color: var(--blue-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    padding: 180px 0 105px;
    color: var(--white);
    background:
        radial-gradient(circle at 75% 18%, rgba(34,158,217,.18), transparent 30%),
        linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 55%, #102843 100%);
}

.hero::after {
    position: absolute;
    right: -8%;
    bottom: -270px;
    left: -8%;
    height: 330px;
    border-radius: 50%;
    background: var(--white);
    content: "";
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-copy {
    padding-top: 25px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    color: var(--blue-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #72cef6;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #51d6a1;
    box-shadow: 0 0 0 5px rgba(81,214,161,.12);
}

.home-page .hero h1 {
    max-width: 740px;
    margin-bottom: 24px;
    color: var(--white) !important;
    font-size: clamp(48px, 5.8vw, 78px);
    line-height: 1.02;
}

.hero h1 span {
    background: linear-gradient(90deg, #73d4ff, #9b8cff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    max-width: 650px;
    margin-bottom: 32px;
    color: #aebbd0;
    font-size: 20px;
    line-height: 1.6;
}

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

.home-page .btn {
    border-radius: 12px;
    font-weight: 700;
    box-shadow: none;
}

.home-page .btn-lg {
    padding: 14px 22px;
    font-size: 16px;
}

.home-page .btn-primary {
    border-color: var(--blue);
    color: var(--white);
    background: var(--blue);
    box-shadow: 0 10px 30px rgba(34,158,217,.22);
}

.home-page .btn-primary:hover,
.home-page .btn-primary:focus {
    border-color: var(--blue-dark);
    background: var(--blue-dark);
    transform: translateY(-2px);
}

.btn-ghost {
    border: 1px solid rgba(255,255,255,.18);
    color: var(--white) !important;
    background: rgba(255,255,255,.05);
}

.btn-ghost:hover {
    border-color: rgba(255,255,255,.35);
    background: rgba(255,255,255,.1);
}

.hero-proof {
    display: flex;
    gap: 28px;
    margin-top: 38px;
    color: #8999b1;
    font-size: 13px;
}

.hero-proof strong {
    color: var(--white);
    font-size: 15px;
}

.bot-visual {
    position: relative;
    height: 430px;
}

.logo-card {
    position: absolute;
    z-index: 3;
    top: 22px;
    right: 25px;
    display: flex;
    width: 340px;
    height: 340px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 42px;
    background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.04));
    box-shadow: 0 35px 80px rgba(0,0,0,.3);
    backdrop-filter: blur(10px);
    transform: rotate(3deg);
}

.logo-card img {
    width: 82%;
    height: auto;
    filter: drop-shadow(0 20px 20px rgba(0,0,0,.28));
    transform: rotate(-3deg);
}

.visual-orbit {
    position: absolute;
    border: 1px solid rgba(115,212,255,.13);
    border-radius: 50%;
}

.orbit-one {
    top: -35px;
    right: -42px;
    width: 450px;
    height: 450px;
}

.orbit-two {
    top: 38px;
    right: 30px;
    width: 300px;
    height: 300px;
}

.floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    min-width: 210px;
    align-items: center;
    gap: 12px;
    padding: 13px 15px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 15px;
    color: white;
    background: rgba(13,29,48,.88);
    box-shadow: 0 20px 45px rgba(0,0,0,.25);
    backdrop-filter: blur(12px);
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    font-size: 13px;
}

.floating-card small {
    color: #8fa2bb;
    font-size: 11px;
}

.floating-card-rss {
    top: 64px;
    left: -30px;
}

.floating-card-social {
    right: -15px;
    bottom: 42px;
}

.mini-icon {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    border-radius: 10px;
}

.rss-icon {
    background: rgba(244,122,50,.18);
    color: #ff9a5d;
    font-size: 25px;
    transform: rotate(-30deg);
}

.social-icon {
    background: rgba(34,158,217,.18);
    color: #70d1fb;
}

.integration-strip {
    position: relative;
    z-index: 4;
    padding: 22px 0 30px;
}

.integration-strip .container {
    display: flex;
    align-items: center;
    gap: 34px;
}

.strip-label {
    flex: 0 0 auto;
    color: #98a3b3;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.integration-list {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    color: #758197;
    font-size: 15px;
    font-weight: 700;
}

.section {
    padding: 105px 0;
}

.section-heading {
    max-width: 690px;
    margin: 0 auto 52px;
    text-align: center;
}

.home-page .section-heading h2,
.home-page .premium-panel h2,
.home-page .cta-box h2 {
    margin-bottom: 18px;
    font-size: 42px;
    line-height: 1.15;
}

.section-heading p {
    color: var(--muted);
    font-size: 18px;
}

.card-grid > div {
    display: flex;
}

.feature-card {
    width: 100%;
    min-height: 310px;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 12px 40px rgba(16,32,57,.055);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card:hover {
    border-color: #cfd9e7;
    box-shadow: 0 22px 55px rgba(16,32,57,.1);
    transform: translateY(-6px);
}

.feature-icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    margin-bottom: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 28px;
}

.icon-orange {
    color: var(--orange);
    background: #fff1e8;
    transform: rotate(-25deg);
}

.icon-blue {
    color: var(--blue);
    background: #e8f7fd;
}

.icon-violet {
    color: var(--violet);
    background: #efedff;
}

.home-page .feature-card h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.feature-card p {
    min-height: 82px;
    color: var(--muted);
    font-size: 15px;
}

.feature-card a,
.text-link {
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
}

.workflow-section {
    background: var(--surface);
}

.workflow-layout {
    display: flex;
    align-items: center;
}

.section-heading-left {
    margin: 0;
    padding-right: 45px;
    text-align: left;
}

.steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps li {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid #dfe5ed;
}

.steps li:last-child {
    border-bottom: 0;
}

.step-number {
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
}

.home-page .steps h3 {
    margin-bottom: 5px;
    font-size: 20px;
}

.steps p {
    margin: 0;
    color: var(--muted);
}

.premium-section {
    padding-bottom: 70px;
}

.premium-panel {
    position: relative;
    overflow: hidden;
    padding: 70px;
    border-radius: 30px;
    color: #b7c4d7;
    background:
        radial-gradient(circle at 90% 10%, rgba(117,103,248,.24), transparent 38%),
        linear-gradient(135deg, #0b1728, #152945);
    box-shadow: 0 30px 70px rgba(7,17,31,.18);
}

.premium-panel::before {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    content: "";
}

.home-page .premium-panel h2 {
    color: var(--white) !important;
}

.premium-panel p {
    max-width: 650px;
    margin-bottom: 25px;
    font-size: 17px;
}

.eyebrow-light {
    color: #8ddcff;
}

.premium-list {
    display: grid;
    margin: 0 0 32px;
    padding: 0;
    grid-template-columns: 1fr 1fr;
    gap: 11px 22px;
    list-style: none;
    font-size: 14px;
}

.premium-list li::before {
    margin-right: 8px;
    color: #62d5a7;
    content: "✓";
    font-weight: 800;
}

.btn-light {
    border-color: var(--white);
    color: var(--navy-900) !important;
    background: var(--white);
}

.btn-light:hover {
    border-color: #dce7f5;
    background: #dce7f5;
    transform: translateY(-2px);
}

.premium-preview {
    margin: 40px 0 0 30px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 20px;
    background: #182d47;
    box-shadow: 0 25px 60px rgba(0,0,0,.3);
    transform: rotate(2deg);
}

.preview-header {
    display: flex;
    gap: 6px;
    padding: 14px;
    background: rgba(255,255,255,.06);
}

.preview-header span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
}

.preview-body {
    padding: 28px;
}

.preview-badge {
    display: inline-block;
    margin-bottom: 24px;
    padding: 5px 10px;
    border-radius: 20px;
    color: #d5ceff;
    background: rgba(117,103,248,.2);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.preview-line {
    height: 8px;
    margin-bottom: 12px;
    border-radius: 8px;
    background: rgba(255,255,255,.13);
}

.preview-line-title {
    width: 72%;
    height: 13px;
    background: rgba(255,255,255,.3);
}

.preview-line-short {
    width: 58%;
}

.preview-message {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding: 15px;
    border-radius: 13px;
    background: rgba(7,17,31,.55);
}

.preview-avatar {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: white;
    background: var(--orange);
    transform: rotate(-30deg);
}

.preview-message strong,
.preview-message small {
    display: block;
}

.preview-message strong {
    color: white;
    font-size: 12px;
}

.preview-message small {
    color: #8295ad;
    font-size: 10px;
}

.final-cta {
    padding-top: 50px;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 48px 55px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--surface);
}

.home-page .cta-box h2 {
    margin-bottom: 6px;
    font-size: 32px;
}

.cta-box p {
    margin: 0;
    color: var(--muted);
}

.site-footer {
    padding: 34px 0;
    border-top: 1px solid var(--line);
    background: var(--white);
}

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

.footer-brand {
    color: var(--ink) !important;
    font-size: 15px;
}

.footer-brand .brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    font-size: 20px;
}

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

.footer-links a,
.footer-content p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

@media (max-width: 991px) {
    .site-header {
        position: relative;
        background: var(--navy-950);
    }

    .home-page .navbar {
        min-height: 64px;
    }

    .home-page .navbar .container {
        padding-top: 7px;
    }

    .home-page .navbar-default .navbar-toggle {
        border-color: rgba(255,255,255,.15);
    }

    .home-page .navbar-default .navbar-toggle .icon-bar {
        background: white;
    }

    .home-page .navbar-default .navbar-collapse {
        border: 0;
        box-shadow: none;
    }

    .hero {
        min-height: auto;
        padding-top: 80px;
    }

    .bot-visual {
        max-width: 480px;
        margin: 60px auto 0;
    }

    .workflow-layout {
        display: block;
    }

    .section-heading-left {
        margin-bottom: 40px;
        padding-right: 0;
    }

    .premium-panel {
        padding: 50px;
    }

    .premium-preview {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .home-page .navbar-default .navbar-nav > li > a,
    .home-page .navbar-default .navbar-nav > .nav-cta > a {
        margin: 2px 0;
    }

    .home-page .navbar-default .navbar-nav > .nav-cta > a {
        margin-top: 10px;
        text-align: center;
    }

    .hero {
        padding: 65px 0 75px;
    }

    .home-page .hero h1 {
        font-size: 46px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .hero-proof {
        flex-wrap: wrap;
        gap: 12px 22px;
    }

    .bot-visual {
        height: 350px;
    }

    .logo-card {
        right: 8%;
        width: 280px;
        height: 280px;
    }

    .floating-card-rss {
        left: 0;
    }

    .floating-card-social {
        right: 0;
        bottom: 10px;
    }

    .integration-strip .container {
        display: block;
    }

    .strip-label {
        display: block;
        margin-bottom: 14px;
    }

    .integration-list {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 10px 20px;
    }

    .section {
        padding: 72px 0;
    }

    .home-page .section-heading h2,
    .home-page .premium-panel h2 {
        font-size: 34px;
    }

    .card-grid > div {
        margin-bottom: 18px;
    }

    .feature-card {
        min-height: auto;
    }

    .feature-card p {
        min-height: auto;
    }

    .premium-panel {
        padding: 38px 28px;
        border-radius: 22px;
    }

    .premium-list {
        grid-template-columns: 1fr;
    }

    .cta-box,
    .footer-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .cta-box {
        padding: 35px 28px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 10px 20px;
    }
}

@media (max-width: 420px) {
    .home-page .hero h1 {
        font-size: 40px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .bot-visual {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .home-page *,
    .home-page *::before,
    .home-page *::after {
        transition: none !important;
    }
}
