/* DynoRaptor Landing Theme */
html {
    background: #0b0b0b;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0b0b0b;
    /* unified solid black */
    color: #f4f4f4;
}

/* Utility container */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar {
    background: #111;
    color: #44ff66;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px #44ff6655;
}

/* top bar nav links */
.top-bar-menu {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-menu a.nav-link {
    color: #f4f4f4;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background .2s ease;
}

.top-bar-menu a.nav-link:hover {
    background: rgba(68, 255, 102, 0.08);
    color: #f4f4f4;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* neutral vignette instead of green cast */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.85));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    padding: 20px;
}

.hero-logo {
    width: 120px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3em;
    color: #44ff66;
    margin: 0;
}

.hero-subtitle {
    font-size: 1.2em;
    margin: 20px 0;
    color: #f4f4f4;
}

.cta-btn {
    display: inline-block;
    background-color: #44ff66;
    color: #0f0f0f;
    padding: 14px 30px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 0 12px #44ff66;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background-color: #44ff66;
}

/* Features Section */
.features-section {
    padding: 60px 20px;
    background: #0b0b0b;
    text-align: center;
    border-top: 1px solid rgba(68, 255, 102, 0.08);
    border-bottom: 1px solid rgba(68, 255, 102, 0.08);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.feature-card {
    background: #222;
    padding: 25px;
    border: 1px solid #44ff66;
    border-radius: 12px;
    box-shadow: 0 0 10px #44ff6655;
}

.feature-card h3 {
    color: #44ff66;
    margin-top: 0;
}

.feature-card p {
    color: #ccc;
    font-size: 0.95em;
}

/* CTA Section */
.cta-section {
    padding: 60px 20px;
    text-align: center;
    background: #0b0b0b;
    border-top: 1px solid rgba(68, 255, 102, 0.08);
    border-bottom: 1px solid rgba(68, 255, 102, 0.08);
}

.cta-section h2 {
    color: #44ff66;
    margin-bottom: 10px;
}

.cta-section p {
    color: #ccc;
    margin-bottom: 30px;
}

.cta-btn-secondary {
    background-color: transparent;
    border: 2px solid #44ff66;
    color: #44ff66;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

.cta-btn-secondary:hover {
    background-color: #44ff66;
    color: #0f0f0f;
}

/* Footer */
.footer {
    background: #0b0b0b;
    padding: 20px;
    text-align: center;
    font-size: 0.9em;
    color: #888;
}

/* ============= Demo Section (Live Panels) ============= */
.demo-section {
    position: relative;
    padding: 56px 0 64px;
    background: #0b0b0b;
    border-top: 1px solid rgba(68, 255, 102, 0.08);
    border-bottom: 1px solid rgba(68, 255, 102, 0.08);
}

.demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.demo-title {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.demo-title .eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #d0d0d0;
    opacity: .85;
}

.demo-title h2 {
    margin: 0;
    font-size: 1.8rem;
    color: #44ff66;
}

.demo-title .subtitle {
    margin: 0;
    color: #f4f4f4;
    opacity: .9;
}

.demo-cta {
    white-space: nowrap;
}

.demo-panels .dashboard-container {
    background: linear-gradient(180deg, rgba(18, 24, 22, 0.9), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(68, 255, 102, 0.25);
    border-radius: 14px;
    padding: 18px 16px 8px;
    box-shadow: 0 6px 28px rgba(68, 255, 102, 0.08);
}

.demo-panels .section-title {
    font-weight: 600;
}

@media (max-width: 820px) {
    .demo-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .demo-cta {
        align-self: stretch;
        text-align: center;
    }
}

/* On small screens in the landing demo, hide the expand buttons to prevent overflow */
@media (max-width: 820px) {
    .demo-section .expand-btn {
        display: none !important;
    }
}


/* produc */
.product-showcase {
    background: #0b0b0b;
    color: #f4f4f4;
    padding: 60px 20px;
    border-top: 1px solid rgba(68, 255, 102, 0.08);
    border-bottom: 1px solid rgba(68, 255, 102, 0.08);
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.product-text {
    flex: 1 1 400px;
    max-width: 600px;
}

.product-text h2 {
    font-size: 2rem;
    /* color: #44ff66; */
    margin-bottom: 20px;
}

.highlight {
    color: #44ff66;
}

.product-text p {
    font-size: 2rem;
    margin-bottom: 20px;
}

.product-image {
    flex: 1 1 300px;
    text-align: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(68, 255, 102, 0.3);
}

.product-text ul {
    list-style: none;
    padding-left: 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.network-section {
    background: #0b0b0b;
    color: #f4f4f4;
    padding: 60px 20px;
    border-top: 1px solid rgba(68, 255, 102, 0.08);
    border-bottom: 1px solid rgba(68, 255, 102, 0.08);
}

.network-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.network-image {
    flex: 1 1 400px;
    text-align: center;
}

.network-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(68, 255, 102, 0.2);
}

.network-text {
    flex: 1 1 400px;
    max-width: 600px;
}

.network-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.network-text ul {
    list-style: none;
    padding-left: 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Topology card */
.topology-card {
    border: 1px solid rgba(68, 255, 102, 0.18);
    border-radius: 14px;
    padding: 22px 18px;
    background: linear-gradient(180deg, rgba(18, 24, 22, 0.6), rgba(10, 10, 10, 0.6));
    box-shadow: 0 6px 28px rgba(68, 255, 102, 0.06);
}

.topology-header {
    text-align: center;
    margin-bottom: 10px;
}

.topology-header .eyebrow {
    display: inline-block;
    font-size: .85rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #d0d0d0;
    opacity: .85;
}

.topology-header h2 {
    margin: 8px 0 4px;
    color: #44ff66;
}

.topology-header .subtitle {
    margin: 0;
    color: #f4f4f4;
    opacity: .9;
}

@media (max-width: 900px) {
    .network-container {
        flex-direction: column;
    }

    .network-text {
        max-width: 100%;
    }
}

.pricing-section {
    background: #0b0b0b;
    color: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(68, 255, 102, 0.08);
    border-bottom: 1px solid rgba(68, 255, 102, 0.08);
}

.pricing-container {
    max-width: 900px;
    margin: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.pricing-table th,
.pricing-table td {
    padding: 15px;
    border-bottom: 1px solid #444;
}

.pricing-table th {
    background: #111;
    color: #44ff66;
    font-weight: bold;
}

.pricing-note {
    font-size: 1rem;
    margin-top: 10px;
    color: #ccc;
}

.dev-label {
    background: #444;
    color: #44ff66;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    text-transform: uppercase;
}


.install-section {
    background: #0b0b0b;
    color: #f4f4f4;
    padding: 60px 20px;
    border-top: 1px solid rgba(68, 255, 102, 0.08);
    border-bottom: 1px solid rgba(68, 255, 102, 0.08);
}

.install-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    /* <-- force image to right */
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}


.install-image {
    flex: 1 1 400px;
    text-align: center;
}

.install-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(68, 255, 102, 0.2);
}

.install-text {
    flex: 1 1 400px;
    max-width: 600px;
}

.install-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.install-text ul {
    list-style: none;
    padding-left: 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ---- Generic sections + headings ---- */

.section {
    padding: 60px 20px;
    background: #0b0b0b;
    border-top: 1px solid rgba(68, 255, 102, 0.08);
    border-bottom: 1px solid rgba(68, 255, 102, 0.08);
}

.section-title {
    margin: 8px 0 6px;
    font-size: 2rem;
    color: #44ff66;
    text-align: center;
}

.section-subtitle {
    max-width: 760px;
    margin: 0 auto 30px;
    color: #ccc;
    font-size: 0.98rem;
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #d0d0d0;
    opacity: .85;
    margin-bottom: 4px;
}

/* ---- Hero tweaks ---- */

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 760px;
    padding: 20px;
}

.hero-title {
    font-size: 2.7rem;
    color: #44ff66;
    margin: 6px 0 12px;
}

.hero-subtitle {
    font-size: 1.05rem;
    margin: 0 0 24px;
    color: #f4f4f4;
    opacity: 0.95;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
}

.hero-secondary-btn {
    border-width: 2px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(68, 255, 102, 0.35);
    font-size: 0.8rem;
    color: #d8ffd8;
    background: rgba(17, 17, 17, 0.9);
}

.pill-muted {
    border-color: rgba(150, 150, 150, 0.5);
    color: #cccccc;
}

/* ---- Card grid / problem & audience sections ---- */

.problem-section .card-grid,
.audience-section .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
    margin-top: 30px;
}

.card {
    background: #151515;
    border-radius: 12px;
    border: 1px solid rgba(68, 255, 102, 0.3);
    padding: 20px 18px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.card h3 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #44ff66;
    font-size: 1.1rem;
}

.card p {
    margin: 0 0 12px;
    color: #d0d0d0;
    font-size: 0.92rem;
}

.card-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* Small caption under images */
.small-caption {
    margin-top: 8px;
    font-size: 0.8rem;
    color: #b0b0b0;
}

/* ---- How it works flow ---- */

.how-flow {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    align-items: center;
}

.flow-arrow {
    font-size: 1.1rem;
    color: #44ff66;
}

/* ---- Alerts section ---- */

.alerts-section .integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 30px;
}

.integration-card {
    background: #151515;
    border-radius: 14px;
    border: 1px solid rgba(68, 255, 102, 0.35);
    padding: 22px 18px 18px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6);
}

.integration-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(68, 255, 102, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.integration-icon i {
    font-size: 1.2rem;
    color: #44ff66;
}

.integration-card h3 {
    margin: 4px 0 8px;
    color: #44ff66;
}

.integration-card p {
    margin: 0 0 10px;
    font-size: 0.9rem;
    color: #d0d0d0;
}

.integration-card ul {
    margin: 0;
    padding-left: 16px;
    font-size: 0.88rem;
    color: #c0c0c0;
}

.alerts-note {
    margin-top: 24px;
    text-align: center;
    font-size: 0.9rem;
    color: #cfcfcf;
}

/* ---- Demo explainer ---- */

.demo-explainer {
    margin: 0 0 12px;
    font-size: 0.9rem;
    color: #cfcfcf;
}

.demo-bullets {
    list-style: disc;
    margin: 16px 0 0 22px;
    color: #cfcfcf;
    font-size: 0.9rem;
}

/* ---- Pricing comparison ---- */

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.comparison-col {
    background: #151515;
    border-radius: 12px;
    border: 1px solid rgba(68, 255, 102, 0.3);
    padding: 20px;
    text-align: left;
}

.comparison-col h3 {
    margin-top: 0;
    color: #44ff66;
}

.comparison-col ul {
    padding-left: 18px;
    margin: 8px 0 0;
    font-size: 0.9rem;
    color: #d0d0d0;
}

/* ---- Audience section ---- */

.audience-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* ---- FAQ ---- */

.faq-section .faq-list {
    max-width: 900px;
    margin: 30px auto 0;
}

.faq-item {
    border-bottom: 1px solid #333;
    padding: 14px 0;
}

.faq-question {
    margin: 0 0 4px;
    font-size: 1rem;
    color: #f4f4f4;
}

.faq-answer {
    margin: 0;
    font-size: 0.9rem;
    color: #c8c8c8;
}

/* ---- CTA section tweaks ---- */

.cta-section .hero-cta-group {
    margin-top: 16px;
}

/* ---- Top bar nav overflow on small screens ---- */

@media (max-width: 900px) {
    .top-bar-menu {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 10px;
    }
}

/* ---- Mobile hero ---- */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }
}

/* ---- Generic sections + headings ---- */

.section {
    padding: 60px 20px;
    background: #0b0b0b;
    border-top: 1px solid rgba(68, 255, 102, 0.08);
    border-bottom: 1px solid rgba(68, 255, 102, 0.08);
}

.section-title {
    margin: 8px 0 6px;
    font-size: 2rem;
    color: #44ff66;
    text-align: center;
}

.section-subtitle {
    max-width: 720px;
    margin: 0 auto 24px;
    color: #ccc;
    font-size: 0.95rem;
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #d0d0d0;
    opacity: .85;
    margin-bottom: 4px;
}

/* ---- Hero tweaks ---- */

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 720px;
    padding: 20px;
}

.hero-title {
    font-size: 2.5rem;
    color: #44ff66;
    margin: 6px 0 10px;
}

.hero-subtitle {
    font-size: 1rem;
    margin: 0 0 20px;
    color: #f4f4f4;
    opacity: 0.95;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.hero-secondary-btn {
    border-width: 2px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

/* ---- Pills / small labels ---- */

.pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(68, 255, 102, 0.35);
    font-size: 0.8rem;
    color: #d8ffd8;
    background: rgba(17, 17, 17, 0.9);
}

/* ---- Card grids (problem, audience, peripherals) ---- */

.problem-section .card-grid,
.audience-section .card-grid,
.peripherals-section .peripherals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
    margin-top: 26px;
}

.card {
    background: #151515;
    border-radius: 12px;
    border: 1px solid rgba(68, 255, 102, 0.3);
    padding: 18px 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.card h3 {
    margin-top: 0;
    margin-bottom: 6px;
    color: #44ff66;
    font-size: 1.05rem;
}

.card p {
    margin: 0;
    color: #d0d0d0;
    font-size: 0.9rem;
}

/* Small caption under images */

.small-caption {
    margin-top: 8px;
    font-size: 0.8rem;
    color: #b0b0b0;
}

/* Inline note */

.inline-note {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #b8ffca;
}

/* ---- How it works flow ---- */

.how-flow {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    align-items: center;
}

.flow-arrow {
    font-size: 1.1rem;
    color: #44ff66;
}

/* ---- Alerts section ---- */

.alerts-section .integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 26px;
}

.integration-card {
    background: #151515;
    border-radius: 14px;
    border: 1px solid rgba(68, 255, 102, 0.35);
    padding: 18px 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6);
}

.integration-icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(68, 255, 102, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.integration-icon i {
    font-size: 1.1rem;
    color: #44ff66;
}

.integration-card h3 {
    margin: 2px 0 6px;
    color: #44ff66;
}

.integration-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #d0d0d0;
}

.alerts-note {
    margin-top: 18px;
    text-align: center;
    font-size: 0.88rem;
    color: #cfcfcf;
}

/* ---- Demo ---- */

.demo-bullets {
    list-style: disc;
    margin: 16px 0 0 22px;
    color: #cfcfcf;
    font-size: 0.88rem;
}

/* ---- Pricing comparison ---- */

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin: 26px 0;
}

.comparison-col {
    background: #151515;
    border-radius: 12px;
    border: 1px solid rgba(68, 255, 102, 0.3);
    padding: 18px 16px;
    text-align: left;
}

.comparison-col h3 {
    margin-top: 0;
    color: #44ff66;
}

.comparison-col ul {
    padding-left: 18px;
    margin: 6px 0 0;
    font-size: 0.88rem;
    color: #d0d0d0;
}

/* ---- FAQ ---- */

.faq-section .faq-list {
    max-width: 820px;
    margin: 26px auto 0;
}

.faq-item {
    border-bottom: 1px solid #333;
    padding: 12px 0;
}

.faq-question {
    margin: 0 0 4px;
    font-size: 0.95rem;
    color: #f4f4f4;
}

.faq-answer {
    margin: 0;
    font-size: 0.88rem;
    color: #c8c8c8;
}

/* ---- CTA section ---- */

.cta-section .hero-cta-group {
    margin-top: 14px;
}

/* ---- Top bar nav on small screens ---- */

@media (max-width: 900px) {
    .top-bar-menu {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 8px;
    }
}

/* ---- Mobile hero ---- */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }
}