/* 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: #e0ffe0;
}

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

.top-bar {
    background: #111;
    color: #00ff88;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px #00ff8855;
}
/* top bar nav links */
.top-bar-menu { display: flex; align-items: center; gap: 16px; }
.top-bar-menu a.nav-link {
    color: #cfeedd;
    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(0,255,136,0.08); color: #e8fff3; }

/* 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: #00ff88;
    margin: 0;
}

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

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

.cta-btn:hover {
    background-color: #00cc6a;
}

/* Features Section */
.features-section {
    padding: 60px 20px;
    background: #0b0b0b;
    text-align: center;
    border-top: 1px solid rgba(0,255,136,0.08);
    border-bottom: 1px solid rgba(0,255,136,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 #00ff88;
    border-radius: 12px;
    box-shadow: 0 0 10px #00ff8855;
}

.feature-card h3 {
    color: #00ff88;
    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(0,255,136,0.08);
    border-bottom: 1px solid rgba(0,255,136,0.08);
}

.cta-section h2 {
    color: #00ff88;
    margin-bottom: 10px;
}

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

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

.cta-btn-secondary:hover {
    background-color: #00ff88;
    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(0,255,136,0.08);
    border-bottom: 1px solid rgba(0,255,136,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: #9fffd3;
    opacity: .85;
}

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

.demo-title .subtitle {
    margin: 0;
    color: #cfeedd;
    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(0,255,136,0.25);
    border-radius: 14px;
    padding: 18px 16px 8px;
    box-shadow: 0 6px 28px rgba(0,255,136,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: #e0ffe0;
    padding: 60px 20px;
    border-top: 1px solid rgba(0,255,136,0.08);
    border-bottom: 1px solid rgba(0,255,136,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: #00ff88; */
    margin-bottom: 20px;
}

.highlight {
    color: #00ff88;
}

.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(0, 255, 136, 0.3);
}

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

.network-section {
    background: #0b0b0b;
    color: #e0ffe0;
    padding: 60px 20px;
    border-top: 1px solid rgba(0,255,136,0.08);
    border-bottom: 1px solid rgba(0,255,136,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(0, 255, 136, 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(0,255,136,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(0,255,136,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:#9fffd3; opacity:.85; }
.topology-header h2 { margin:8px 0 4px; color:#00ff88; }
.topology-header .subtitle { margin:0; color:#cfeedd; opacity:.9; }

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

.pricing-section {
    background: #0b0b0b;
    color: #e0ffe0;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(0,255,136,0.08);
    border-bottom: 1px solid rgba(0,255,136,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: #00ff88;
    font-weight: bold;
}

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

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


.install-section {
    background: #0b0b0b;
    color: #e0ffe0;
    padding: 60px 20px;
    border-top: 1px solid rgba(0,255,136,0.08);
    border-bottom: 1px solid rgba(0,255,136,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(0, 255, 136, 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;
}
