/* MoonBIM Website Styles */

/* CSS Custom Properties */
:root {
    --hero-logo-size: 400px;
    --hero-logo-opacity: 0.08;
    --hero-logo-size-mobile: 250px;
    --hero-logo-opacity-mobile: 0.04;
}

/* Bootstrap-like utility classes for responsive design */
* {
    box-sizing: border-box;
}

/* Prevent any element from creating a horizontal scrollbar */
html,
body {
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #1a2332;
    margin: 0;
    padding-top: 70px; /* Account for fixed navbar */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-4, .col-md-6, .col-md-8 {
    padding: 0 15px;
    flex: 1;
}

.col-md-4 { flex: 0 0 33.333333%; }
.col-md-6 { flex: 0 0 50%; }
.col-md-8 { flex: 0 0 66.666667%; }

/* Responsive breakpoints */
@media (max-width: 768px) {
    .col-md-4, .col-md-6, .col-md-8 {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    body {
        padding-top: 60px;
    }
}

/* Header/Navigation */
.navbar {
    background-color: #1a2332 !important;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(126, 231, 199, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    color: #7ee7c7 !important;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.moonbim-logo-img {
    width: 280px;
    height: auto;
    display: block;
}

.navbar-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    margin-left: 1rem;
}

.nav-link {
    color: rgba(255,255,255,0.8) !important;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s;
    font-weight: 500;
}

.nav-link:hover {
    background-color: rgba(126, 231, 199, 0.1);
    color: #7ee7c7 !important;
}

.navbar-toggler {
    display: none;
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .navbar-toggler {
        display: block;
    }
    
    .navbar-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1a2332;
        padding: 1rem;
        border-top: 1px solid rgba(126, 231, 199, 0.1);
    }
    
    .navbar-nav.show {
        display: block;
    }
    
    .navbar-nav ul {
        flex-direction: column;
    }
    
    .nav-item {
        margin: 0.5rem 0;
    }
}

/* Main content */
.content {
    min-height: calc(100vh - 200px);
    background-color: #1a2332;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #1a2332 0%, #243447 100%);
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(126, 231, 199, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: var(--hero-logo-size);
    height: var(--hero-logo-size);
    background-image: url('../images/moonbim-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: var(--hero-logo-opacity);
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

/* Reusable background logo for any section */
.section-with-background-logo {
    position: relative;
    overflow: hidden;
}

.section-with-background-logo::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: var(--hero-logo-size);
    height: var(--hero-logo-size);
    background-image: url('../images/moonbim-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: var(--hero-logo-opacity);
    pointer-events: none;
    z-index: 0;
}

.section-with-background-logo .container,
.section-with-background-logo > div {
    position: relative;
    z-index: 1;
}

/* Centered variant for pages with minimal content */
.section-with-background-logo-center::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: var(--hero-logo-size);
    height: var(--hero-logo-size);
    background-image: url('../images/moonbim-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: var(--hero-logo-opacity);
    pointer-events: none;
    z-index: 0;
}

.section-with-background-logo-center {
    position: relative;
    overflow: hidden;
}

.section-with-background-logo-center .container,
.section-with-background-logo-center > div {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(126, 231, 199, 0.1);
    border: 1px solid rgba(126, 231, 199, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: #7ee7c7;
}

.hero-badge-icon {
    font-size: 1.2rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.hero h1 .highlight {
    color: #7ee7c7;
}

.hero p {
    font-size: 1.05rem;
    margin-bottom: 3rem;
    opacity: 0.85;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #b0bac9;
}

.cta-button {
    display: inline-block;
    background-color: #7ee7c7;
    color: #1a2332;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(126, 231, 199, 0.3);
}

.cta-button:hover {
    background-color: #6dd4b4;
    transform: translateY(-2px);
    color: #1a2332;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(126, 231, 199, 0.4);
}

.cta-button-outline {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-left: 1rem;
}

.cta-button-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    text-decoration: none;
}

/* Features section */
.features {
    padding: 5rem 0;
    background-color: #1a2332;
}

.feature h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.feature .subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: #b0bac9;
    margin-bottom: 4rem;
}

.feature-card {
    background: #243447;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(126, 231, 199, 0.1);
    margin-bottom: 2rem;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(126, 231, 199, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2rem;
    color: #7ee7c7;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #b0bac9;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    margin: 0.25rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    font-weight: 600;
}

.btn-primary {
    background-color: #7ee7c7;
    color: #1a2332;
}

.btn-primary:hover {
    background-color: #6dd4b4;
    color: #1a2332;
    transform: translateY(-1px);
}

.btn-success {
    background-color: #7ee7c7;
    color: #1a2332;
}

.btn-success:hover {
    background-color: #6dd4b4;
    color: #1a2332;
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    background: transparent;
    padding: 0.625rem 1.5rem;
}

.btn-outline-light:hover {
    background-color: rgba(126, 231, 199, 0.1);
    border-color: #7ee7c7;
    color: #7ee7c7;
}

.btn-outline-primary {
    border: 2px solid #7ee7c7;
    color: #7ee7c7;
    background: transparent;
    padding: 0.625rem 1.5rem;
}

.btn-outline-primary:hover {
    background-color: #7ee7c7;
    color: #1a2332;
    border-color: #7ee7c7;
    text-decoration: none;
}

/* Screenshots section */
.screenshots-section {
    padding: 5rem 0;
    background-color: #1a2332;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 3600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.screenshot-item {
    background: #243447;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(126, 231, 199, 0.1);
    transition: all 0.3s;
}

.screenshot-item:hover {
    transform: translateY(-5px);
    border-color: rgba(126, 231, 199, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.screenshot-content {
    padding: 0.5rem 2rem 1.5rem 2rem;
}

.screenshot-title {
    color: #7ee7c7;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.screenshot-description {
    color: #b0bac9;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-item img.screenshot-phone-img {
    width: 25%;
    height: auto;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
}

/* Tutorials section */
.tutorials {
    padding: 5rem 0;
    background-color: #243447;
}

.tutorials h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.tutorials .subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: #b0bac9;
    margin-bottom: 4rem;
}

.tutorial-card {
    background: #1a2332;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(126, 231, 199, 0.1);
    margin-bottom: 2rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tutorial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(126, 231, 199, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.tutorial-icon {
    font-size: 2.5rem;
    color: #7ee7c7;
    margin-bottom: 1.5rem;
    display: block;
}

.tutorial-card h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tutorial-card p {
    color: #b0bac9;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-tutorial {
    background-color: transparent;
    color: #7ee7c7;
    border: 2px solid #7ee7c7;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-tutorial:hover {
    background-color: #7ee7c7;
    color: #1a2332;
    transform: translateY(-1px);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #e0e0e0;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(126, 231, 199, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: #1a2332;
    color: #e0e0e0;
}

.form-control:focus {
    outline: none;
    border-color: #7ee7c7;
    box-shadow: 0 0 0 3px rgba(126, 231, 199, 0.15);
    background-color: #243447;
}

.form-control::placeholder {
    color: #6b7885;
}

.form-control.error {
    border-color: #dc3545;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: #1a2332;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.contact-section .subtitle {
    font-size: 1.05rem;
    color: #b0bac9;
    margin-bottom: 3rem;
}

.contact-container {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 2rem auto 0;
}

@media (max-width: 968px) {
    .contact-container {
        padding: 0 1rem;
    }
}

.contact-info {
    background: #243447;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(126, 231, 199, 0.1);
    height: fit-content;
}

.contact-info h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(126, 231, 199, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-info-content h4 {
    color: white;
    font-size: 1.1rem;
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.contact-info-content p {
    color: #b0bac9;
    margin: 0;
    font-size: 0.95rem;
}

.contact-form {
    background: #243447;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(126, 231, 199, 0.1);
    max-width: 800px;
    width: 100%;
}

.contact-info-tile {
    background: #243447;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(126, 231, 199, 0.1);
    max-width: 450px;
    width: 100%;
    text-align: center;
}

.info-tile-content h3 {
    color: #7ee7c7;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-tile-content p {
    color: #b0bac9;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.email-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(126, 231, 199, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(126, 231, 199, 0.2);
    transition: all 0.3s;
}

.email-container:hover {
    background: rgba(126, 231, 199, 0.1);
    border-color: rgba(126, 231, 199, 0.4);
    transform: translateY(-2px);
}

.email-container svg {
    color: #7ee7c7;
    flex-shrink: 0;
}

.email-link {
    color: #7ee7c7;
    font-size: 1.25rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    user-select: none;
}

.email-link:hover {
    color: #6dd4b4;
}

@media (max-width: 768px) {
    .contact-info-tile {
        padding: 2rem;
    }
    
    .info-tile-content h3 {
        font-size: 1.5rem;
    }
    
    .email-container {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .email-link {
        font-size: 1rem;
        word-break: break-all;
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.btn-send {
    width: 100%;
    background-color: #7ee7c7;
    color: #1a2332;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-send:hover {
    background-color: #6dd4b4;
    transform: translateY(-1px);
}

.privacy-notice {
    text-align: center;
    color: #6b7885;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.text-danger {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Alerts */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: #7ee7c7;
    background-color: rgba(126, 231, 199, 0.15);
    border-color: rgba(126, 231, 199, 0.3);
}

.alert-danger {
    color: #ff6b6b;
    background-color: rgba(255, 107, 107, 0.15);
    border-color: rgba(255, 107, 107, 0.3);
}

/* Grid utilities */
.d-grid {
    display: grid;
}

.gap-2 {
    gap: 0.5rem;
}

/* Footer */
footer {
    background-color: #0f1823;
    color: white;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(126, 231, 199, 0.1);
}

footer h5 {
    color: white;
    margin-bottom: 1rem;
}

footer a {
    color: #b0bac9;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #7ee7c7;
}

.list-unstyled {
    list-style: none;
    padding: 0;
}

.list-unstyled li {
    margin-bottom: 0.5rem;
}

/* Cookie consent banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0f1823;
    color: white;
    padding: 1rem 0;
    z-index: 1001;
    border-top: 1px solid rgba(126, 231, 199, 0.2);
}

/* Utility classes */
.text-center { text-align: center; }
.text-end { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-5 { margin-top: 3rem; }
.py-4 { padding: 1.5rem 0; }
.me-2 { margin-right: 0.5rem; }
.me-3 { margin-right: 1rem; }
.ms-2 { margin-left: 0.5rem; }
.ms-auto { margin-left: auto; }
.my-3 { margin: 1rem 0; }

.bg-primary { background-color: #7ee7c7 !important; }
.bg-dark { background-color: #0f1823 !important; }
.text-white { color: white !important; }
.text-white-50 { color: #b0bac9 !important; }

.d-none { display: none; }
.d-block { display: block; }

/* Accessibility improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus indicators for keyboard navigation */
*:focus {
    outline: 2px solid #7ee7c7;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: #000;
        color: #fff;
    }
    
    .feature-card {
        border: 2px solid #7ee7c7;
    }
}

/* Responsive Typography */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero::after,
    .section-with-background-logo::after {
        width: var(--hero-logo-size-mobile);
        height: var(--hero-logo-size-mobile);
        top: 5%;
        right: 2%;
        opacity: var(--hero-logo-opacity-mobile);
    }
    
    .section-with-background-logo-center::after {
        width: var(--hero-logo-size-mobile);
        height: var(--hero-logo-size-mobile);
        opacity: var(--hero-logo-opacity-mobile);
    }
    
    .features h2,
    .tutorials h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .cta-button,
    .cta-button-outline {
        display: block;
        margin: 0.5rem auto;
        text-align: center;
    }
}

/* Premium homepage and modernized shared layout */
:root {
    --moonbim-bg: #0b1220;
    --moonbim-surface: #111b2f;
    --moonbim-surface-muted: #17233b;
    --moonbim-text: #f3f5f8;
    --moonbim-text-muted: #a6b2c8;
    --moonbim-accent: #5ce1b9;
    /* navbar-height = announcement bar (~44px) + main header (64px) = 108px.
       JS (updateBodyPadding) overrides this at runtime with the actual measured height,
       and recalculates when the announcement bar is dismissed. */
    --navbar-height: 108px;
    --navbar-height-mobile: 96px;
}

/* Hide announcement bar immediately when user has already dismissed it.
   The class is set before paint via an inline script in _Layout.cshtml <head>. */
.announcement-dismissed #announcementBar {
    display: none !important;
}

body {
    background: var(--moonbim-bg);
    color: var(--moonbim-text);
    padding-top: var(--navbar-height);
}

.content {
    background: var(--moonbim-bg);
}

.navbar {
    backdrop-filter: blur(6px);
    background: rgba(9, 16, 29, 0.94) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    padding: 1.1rem 0;
}

.site-nav-shell {
    gap: 1rem;
}

.moonbim-logo-img {
    width: 220px;
}

.site-nav-list {
    gap: 0.4rem;
}

.nav-link {
    border-radius: 999px;
    color: var(--moonbim-text-muted) !important;
    font-weight: 600;
    padding: 0.55rem 1rem;
}

.nav-link:hover {
    background: rgba(92, 225, 185, 0.12);
    color: var(--moonbim-text) !important;
}

.nav-cta {
    border-radius: 999px;
    margin-left: 0.35rem;
}

.homepage-hero {
    overflow: hidden;
    padding: 5.5rem 0 3.5rem;
    position: relative;
    /* Deep dark background with two radial glows for depth */
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(92, 225, 185, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 80%, rgba(92, 225, 185, 0.06) 0%, transparent 60%),
        var(--moonbim-bg);
}

/* Decorative grid-dot overlay for texture */
.homepage-hero-glow {
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    inset: 0;
    pointer-events: none;
    position: absolute;
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, black 30%, transparent 100%);
    mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, black 30%, transparent 100%);
}

.homepage-hero-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 1;
}

/* Eyebrow badge */
.homepage-hero-badge {
    align-items: center;
    background: rgba(92, 225, 185, 0.1);
    border: 1px solid rgba(92, 225, 185, 0.28);
    border-radius: 9999px;
    color: #7ee7c7;
    display: inline-flex;
    flex-wrap: wrap;
    font-size: 0.8rem;
    font-weight: 600;
    gap: 0.45rem;
    justify-content: center;
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
    max-width: 100%;
    padding: 0.35rem 1rem;
    text-align: center;
}

.homepage-hero-badge-dot {
    background-color: #5ce1b9;
    border-radius: 9999px;
    box-shadow: 0 0 6px rgba(92, 225, 185, 0.8);
    display: inline-block;
    flex-shrink: 0;
    height: 6px;
    width: 6px;
}

/* Headline */
.homepage-title {
    color: var(--moonbim-text);
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin: 0 auto;
    max-width: 18ch;
    overflow-wrap: break-word;
    word-break: break-word;
}

.homepage-title-accent {
    background: linear-gradient(135deg, #5ce1b9 0%, #3ab9a0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtitle */
.homepage-subtitle {
    color: var(--moonbim-text-muted);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.7;
    margin: 1.75rem auto 2.25rem;
    max-width: min(58ch, 100%);
    overflow-wrap: break-word;
    word-break: break-word;
}

/* CTA buttons */
.homepage-hero-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    justify-content: center;
}

.homepage-btn-primary {
    align-items: center;
    background-color: #5ce1b9;
    border-radius: 9999px;
    box-shadow: 0 4px 20px rgba(92, 225, 185, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
    color: #0b1220;
    display: inline-flex;
    font-size: 1rem;
    font-weight: 800;
    gap: 0.45rem;
    padding: 0.875rem 1.75rem;
    text-decoration: none;
    transition: background-color 0.2s, box-shadow 0.2s, transform 0.15s;
    white-space: nowrap;
}

.homepage-btn-primary:hover {
    background-color: #7ee7c7;
    box-shadow: 0 6px 28px rgba(92, 225, 185, 0.55), 0 1px 3px rgba(0, 0, 0, 0.3);
    color: #0b1220;
    text-decoration: none;
    transform: translateY(-1px);
}

.homepage-btn-primary:active {
    transform: scale(0.97);
}

.homepage-btn-secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 9999px;
    color: rgba(255, 255, 255, 0.75);
    display: inline-flex;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background-color 0.2s;
    white-space: nowrap;
}

.homepage-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.45);
    color: white;
    text-decoration: none;
}

/* Stats strip */
.homepage-hero-stats {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0;
    justify-content: center;
    list-style: none;
    margin: 2.75rem 0 3rem;
    padding: 0;
}

.homepage-hero-stat {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 0 2rem;
}

.homepage-hero-stat-value {
    color: var(--moonbim-text);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.homepage-hero-stat-label {
    color: var(--moonbim-text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    margin-top: 0.2rem;
    text-transform: uppercase;
}

.homepage-hero-stat-divider {
    background-color: rgba(255, 255, 255, 0.12);
    height: 2.5rem;
    list-style: none;
    width: 1px;
}

/* Dashboard screenshot */
.homepage-hero-screenshot-wrap {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;
    max-width: 1000px;
    overflow: hidden;
    padding: 0.625rem;
    width: 100%;
    /* Glow halo beneath the card */
    box-shadow:
        0 0 0 1px rgba(92, 225, 185, 0.06),
        0 40px 80px -20px rgba(0, 0, 0, 0.6),
        0 0 60px -10px rgba(92, 225, 185, 0.12);
}

.homepage-hero-screenshot-frame {
    align-items: center;
    display: flex;
    gap: 5px;
    padding: 0.45rem 0.75rem 0.5rem;
}

.homepage-hero-screenshot-dot {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    display: inline-block;
    height: 9px;
    width: 9px;
}

.homepage-hero-screenshot {
    border-radius: 12px;
    display: block;
    width: 100%;
}

.homepage-hero-carousel {
    overflow: hidden;
    position: relative;
}

.homepage-hero-carousel-track {
    display: flex;
    transition: transform 0.45s ease;
    width: 100%;
}

.homepage-hero-carousel-slide {
    flex: 0 0 100%;
    margin: 0;
}

.homepage-hero-carousel-slide img {
    aspect-ratio: 16 / 9;
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.homepage-hero-carousel-control {
    align-items: center;
    background: rgba(11, 18, 32, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 9999px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 1.1rem;
    height: 2.2rem;
    justify-content: center;
    line-height: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.2rem;
    z-index: 2;
}

.homepage-hero-carousel-control:hover {
    background: rgba(11, 18, 32, 0.85);
}

.homepage-hero-carousel-control--prev {
    left: 0.75rem;
}

.homepage-hero-carousel-control--next {
    right: 0.75rem;
}

.homepage-hero-carousel-dots {
    bottom: 0.85rem;
    display: flex;
    gap: 0.45rem;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    z-index: 2;
}

.homepage-hero-carousel-dot {
    background: rgba(255, 255, 255, 0.55);
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    height: 0.5rem;
    padding: 0;
    width: 0.5rem;
}

.homepage-hero-carousel-dot.is-active {
    background: #5ce1b9;
}

.homepage-features {
    padding: 6rem 0 5rem;
}

.homepage-section-sub {
    color: var(--moonbim-text-muted);
    font-size: 1.05rem;
    margin: 0.75rem auto 0;
    max-width: 58ch;
}

/* ---- Digs-style alternating feature rows ---- */

.hf-row {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: grid;
    gap: 3rem 4rem;
    grid-template-columns: 1fr 1fr;
    padding: 5rem 0;
}

/* Every other row flips text/image sides */
.hf-row--reverse .hf-text { order: 2; }
.hf-row--reverse .hf-media { order: 1; }

/* Icon badge */
.hf-icon-wrap {
    align-items: center;
    background: rgba(92, 225, 185, 0.12);
    border: 1px solid rgba(92, 225, 185, 0.22);
    border-radius: 14px;
    display: inline-flex;
    height: 52px;
    justify-content: center;
    margin-bottom: 1.25rem;
    width: 52px;
}

.hf-icon-svg {
    color: #5ce1b9;
    height: 26px;
    width: 26px;
}

/* Eyebrow label */
.hf-eyebrow {
    color: var(--moonbim-accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0 0 0.6rem;
    text-transform: uppercase;
}

/* Feature headline */
.hf-heading {
    color: var(--moonbim-text);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 1rem;
}

/* Feature description */
.hf-desc {
    color: var(--moonbim-text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    margin: 0 0 1.5rem;
    max-width: 52ch;
}

/* "Find out how" link */
.hf-link {
    align-items: center;
    color: #5ce1b9;
    display: inline-flex;
    font-size: 0.95rem;
    font-weight: 700;
    gap: 0.35rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: gap 0.2s, color 0.2s;
}

.hf-link:hover {
    color: #7ee7c7;
    gap: 0.6rem;
    text-decoration: none;
}

/* Screenshot media area */
.hf-media {
    align-items: center;
    display: flex;
    justify-content: center;
}

.hf-screenshot {
    background: var(--moonbim-surface);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    box-shadow:
        0 20px 60px -10px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.04);
    display: block;
    width: 100%;
}

/* Phone screenshot: narrower + centred */
.hf-media--phone {
    justify-content: center;
}

.hf-screenshot--phone {
    max-width: 260px;
    width: auto;
}

/* Shared section header (features, social proof) */
.homepage-section-header {
    margin: 0 auto 3rem;
    max-width: 900px;
    text-align: center;
}

.homepage-section-header h2 {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    letter-spacing: -0.02em;
    margin: 0;
}

.homepage-section-eyebrow {
    color: var(--moonbim-accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin: 0 0 0.65rem;
    text-transform: uppercase;
}

/* ================================================================
   Testimonials section
   ================================================================ */

.testimonials-section {
    background: var(--moonbim-surface-muted);
    padding: 6rem 0;
}

.testimonials-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
    background: var(--moonbim-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding: 1.75rem 1.5rem;
}

.testimonial-stars {
    color: #5ce1b9;
    display: flex;
    gap: 0.15rem;
}

.testimonial-stars svg {
    height: 1rem;
    width: 1rem;
}

.testimonial-quote {
    color: var(--moonbim-text);
    flex: 1;
    font-size: 1rem;
    font-style: normal;
    line-height: 1.7;
    margin: 0;
}

.testimonial-author {
    align-items: center;
    display: flex;
    gap: 0.85rem;
    margin: 0;
}

.testimonial-avatar {
    align-items: center;
    background: rgba(92, 225, 185, 0.14);
    border: 1px solid rgba(92, 225, 185, 0.25);
    border-radius: 50%;
    color: #5ce1b9;
    display: flex;
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 700;
    height: 40px;
    justify-content: center;
    letter-spacing: 0.04em;
    width: 40px;
}

.testimonial-name {
    color: var(--moonbim-text);
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
}

.testimonial-role {
    color: var(--moonbim-text-muted);
    font-size: 0.8rem;
    margin: 0;
}

/* ================================================================
   In the News / Recognition section
   ================================================================ */

.news-section {
    padding: 5rem 0;
}

.news-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.news-badge {
    align-items: center;
    background: var(--moonbim-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: var(--moonbim-text-muted);
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    font-weight: 600;
    gap: 0.65rem;
    min-width: 160px;
    padding: 1.75rem 1.5rem;
    text-align: center;
}

.news-badge-icon {
    color: rgba(92, 225, 185, 0.65);
    height: 2rem;
    width: 2rem;
}

/* ================================================================
   Final CTA
   ================================================================ */

.homepage-final-cta {
    padding: 5rem 0 6rem;
}

.homepage-final-cta h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
}

/* ================================================================
   Hero AI capabilities pill
   ================================================================ */

.homepage-hero-ai-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(138, 92, 246, 0.12);
    border: 1px solid rgba(138, 92, 246, 0.3);
    border-radius: 100px;
    padding: 0.35rem 1rem 0.35rem 0.5rem;
    font-size: 0.8rem;
    color: #c4b5fd;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 0.5rem;
}

.homepage-hero-ai-pill-badge {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 100px;
    padding: 0.1rem 0.55rem;
    white-space: nowrap;
}

.homepage-hero-ai-pill-link {
    color: #a78bfa;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    white-space: nowrap;
}

.homepage-hero-ai-pill-link:hover {
    color: #c4b5fd;
}

/* ================================================================
   What's New — flagship capabilities section
   ================================================================ */

.new-flagship-section {
    padding: 5rem 0 4.5rem;
    background: linear-gradient(
        180deg,
        var(--moonbim-bg) 0%,
        rgba(138, 92, 246, 0.04) 40%,
        var(--moonbim-bg) 100%
    );
    border-top: 1px solid rgba(138, 92, 246, 0.15);
    border-bottom: 1px solid rgba(138, 92, 246, 0.1);
}

.new-flagship-header {
    text-align: center;
    margin-bottom: 3rem;
}

.new-flagship-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a78bfa;
    margin: 0 0 0.75rem;
}

.new-flagship-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
}

/* Three-column grid */
.new-flagship-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

/* Card base */
.new-flagship-card {
    position: relative;
    background: var(--moonbim-surface);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 2rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
    overflow: hidden;
}

.new-flagship-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.new-flagship-card--ai::before {
    background: radial-gradient(ellipse at top left, rgba(138, 92, 246, 0.1) 0%, transparent 65%);
}

.new-flagship-card--energy::before {
    background: radial-gradient(ellipse at top left, rgba(92, 225, 185, 0.08) 0%, transparent 65%);
}

.new-flagship-card--modeler::before {
    background: radial-gradient(ellipse at top left, rgba(59, 130, 246, 0.1) 0%, transparent 65%);
}

.new-flagship-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.new-flagship-card:hover::before {
    opacity: 1;
}

/* Badge */
.new-flagship-card-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.15rem 0.55rem;
    border-radius: 100px;
    background: rgba(138, 92, 246, 0.18);
    color: #a78bfa;
    border: 1px solid rgba(138, 92, 246, 0.3);
    width: fit-content;
    margin-bottom: 0.25rem;
}

.new-flagship-card-badge--new {
    background: rgba(92, 225, 185, 0.12);
    color: var(--moonbim-accent);
    border-color: rgba(92, 225, 185, 0.3);
}

/* Icon */
.new-flagship-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.new-flagship-card--ai .new-flagship-card-icon {
    background: rgba(138, 92, 246, 0.12);
    border-color: rgba(138, 92, 246, 0.25);
}

.new-flagship-card--energy .new-flagship-card-icon {
    background: rgba(92, 225, 185, 0.1);
    border-color: rgba(92, 225, 185, 0.2);
}

.new-flagship-card--modeler .new-flagship-card-icon {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.new-flagship-icon-svg {
    width: 24px;
    height: 24px;
    color: var(--moonbim-text-muted);
}

.new-flagship-card--ai .new-flagship-icon-svg { color: #a78bfa; }
.new-flagship-card--energy .new-flagship-icon-svg { color: var(--moonbim-accent); }
.new-flagship-card--modeler .new-flagship-icon-svg { color: #60a5fa; }

/* Content */
.new-flagship-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--moonbim-text);
}

.new-flagship-card-desc {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--moonbim-text-muted);
    margin: 0;
}

.new-flagship-card-benefits {
    list-style: none;
    padding: 0;
    margin: 0.25rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
}

.new-flagship-card-benefits li {
    font-size: 0.82rem;
    color: var(--moonbim-text-muted);
    padding-left: 1.2rem;
    position: relative;
}

.new-flagship-card-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--moonbim-accent);
    font-weight: 700;
    font-size: 0.75rem;
}

.new-flagship-card--ai .new-flagship-card-benefits li::before { color: #a78bfa; }
.new-flagship-card--modeler .new-flagship-card-benefits li::before { color: #60a5fa; }

/* CTA link at bottom of card */
.new-flagship-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--moonbim-accent);
    text-decoration: none;
    margin-top: 0.5rem;
    transition: gap 0.2s, opacity 0.2s;
}

.new-flagship-card--ai .new-flagship-card-link { color: #a78bfa; }
.new-flagship-card--modeler .new-flagship-card-link { color: #60a5fa; }

.new-flagship-card-link:hover {
    gap: 0.65rem;
    opacity: 0.85;
}

/* Bottom CTA row */
.new-flagship-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Responsive: stack to 1 column on mobile */
@media (max-width: 767px) {
    .new-flagship-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .new-flagship-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* ================================================================
   Footer — newsletter band
   ================================================================ */

.site-footer {
    background: #08101d;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-newsletter-band {
    background: linear-gradient(135deg, rgba(92, 225, 185, 0.08) 0%, rgba(58, 185, 160, 0.05) 100%);
    border-bottom: 1px solid rgba(92, 225, 185, 0.12);
    padding: 4rem 0;
}

.footer-newsletter-inner {
    align-items: center;
    display: grid;
    gap: 2.5rem 4rem;
    grid-template-columns: 1fr 1fr;
}

.footer-newsletter-eyebrow {
    color: #5ce1b9;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0 0 0.5rem;
    text-transform: uppercase;
}

.footer-newsletter-heading {
    color: var(--moonbim-text);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin: 0 0 0.65rem;
}

.footer-newsletter-sub {
    color: var(--moonbim-text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nl-row {
    display: flex;
    gap: 0.5rem;
}

.footer-nl-input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--moonbim-text);
    flex: 1;
    font-size: 0.95rem;
    min-width: 0;
    padding: 0.7rem 1rem;
    transition: border-color 0.2s;
}

.footer-nl-input::placeholder {
    color: var(--moonbim-text-muted);
}

.footer-nl-input:focus {
    border-color: #5ce1b9;
    outline: none;
}

.footer-nl-btn {
    background: #5ce1b9;
    border: none;
    border-radius: 8px;
    color: #0b1220;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.7rem 1.25rem;
    transition: background-color 0.2s, transform 0.15s;
    white-space: nowrap;
}

.footer-nl-btn:hover {
    background: #7ee7c7;
    transform: translateY(-1px);
}

.footer-nl-status {
    color: var(--moonbim-text-muted);
    font-size: 0.82rem;
    margin: 0;
    min-height: 1.2em;
}

/* ================================================================
   Footer — main links area
   ================================================================ */

.footer-links-band {
    padding: 3.5rem 0 2.5rem;
}

.footer-links-grid {
    display: grid;
    gap: 2rem 3rem;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    margin-bottom: 3rem;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-brand-link {
    display: inline-block;
}

.footer-brand-logo {
    width: 180px;
}

.footer-brand-desc {
    color: var(--moonbim-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    max-width: 36ch;
}

.footer-contact-email {
    margin: 0;
}

.footer-contact-email a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-email a:hover {
    color: #5ce1b9;
    text-decoration: none;
}

.footer-col-heading {
    color: var(--moonbim-text);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin: 0 0 1rem;
    text-transform: uppercase;
}

.footer-link-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-link-list a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link-list a:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.footer-bottom-bar {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding-top: 1.5rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 1.25rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ================================================================
   Footer social icons
   ================================================================ */

.footer-social-links {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.25rem;
}

.footer-social-link {
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    height: 2.25rem;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.18s, border-color 0.18s, color 0.18s;
    width: 2.25rem;
}

.footer-social-link:hover {
    background: rgba(92, 225, 185, 0.12);
    border-color: rgba(92, 225, 185, 0.35);
    color: #5ce1b9;
    text-decoration: none;
}

/* ================================================================
   Cookie consent bar (slide-up)
   ================================================================ */

.cookie-bar {
    background: #111c2e;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    bottom: 0;
    left: 0;
    padding: 1rem 1.5rem;
    position: fixed;
    right: 0;
    z-index: 200;
}

.cookie-bar-inner {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 80rem;
}

.cookie-bar-text {
    color: var(--moonbim-text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-bar-link {
    color: #5ce1b9;
    text-decoration: none;
}

.cookie-bar-link:hover {
    text-decoration: underline;
}

.cookie-bar-actions {
    display: flex;
    flex-shrink: 0;
    gap: 0.5rem;
}

.cookie-accept-btn {
    background: #5ce1b9;
    border: none;
    border-radius: 6px;
    color: #0b1220;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    transition: background-color 0.2s;
}

.cookie-accept-btn:hover {
    background: #7ee7c7;
}

.cookie-decline-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    transition: border-color 0.2s, color 0.2s;
}

.cookie-decline-btn:hover {
    border-color: rgba(255, 255, 255, 0.45);
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {
    .homepage-hero-grid {
        grid-template-columns: 1fr;
    }

    /* Feature rows: stack text above image on tablet/phone */
    .hf-row {
        gap: 2rem;
        grid-template-columns: 1fr;
        padding: 3.5rem 0;
    }

    /* Restore natural DOM order so text is always on top */
    .hf-row--reverse .hf-text,
    .hf-row--reverse .hf-media {
        order: unset;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-newsletter-inner {
        grid-template-columns: 1fr;
    }

    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
    }

    .homepage-hero-stat {
        padding: 0 1.25rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: var(--navbar-height-mobile);
    }

    .navbar {
        padding: 0.9rem 0;
    }

    .moonbim-logo-img {
        width: 175px;
    }

    .navbar-nav {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .navbar-nav ul.site-nav-list {
        align-items: stretch;
        gap: 0.4rem;
    }

    .nav-item {
        margin: 0;
    }

    .nav-cta {
        margin: 0;
        width: 100%;
    }

    .homepage-hero {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    /* Hide decorative line-break tags so the headline reflows freely on phones */
    .homepage-title br {
        display: none;
    }

    /* On mobile, the `ch` unit for bold fonts can be ~20-22px, making 18ch > 360px.
       Override to 100% so the title never exceeds the container's content width. */
    .homepage-title {
        font-size: clamp(1.8rem, 7vw, 5rem);
        max-width: 100%;
    }

    /* Badge: ensure it wraps and never expands past the container edge */
    .homepage-hero-badge {
        max-width: calc(100% - 2rem);
        white-space: normal;
    }

    /* Subtitle: fall back to 100% width on narrow viewports */
    .homepage-subtitle {
        max-width: 100%;
    }

    /* Stats strip: constrain to full container width and wrap items */
    .homepage-hero-stats {
        width: 100%;
        max-width: 100%;
    }

    .homepage-hero-stat-divider {
        display: none;
    }

    .homepage-hero-stat {
        padding: 0 0.75rem;
    }

    .footer-newsletter-inner {
        grid-template-columns: 1fr;
    }

    .footer-nl-row {
        flex-direction: column;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-bar {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* ================================================================
   Digs-style header system — pure custom CSS (no Tailwind required)
   ================================================================ */

/* Header wrapper: fixed overlay, stacks announcement bar + main nav */
#headerWrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

/* ---- Announcement Bar ---- */
#announcementBar {
    background-color: #070f1c;
    border-bottom: 1px solid rgba(92, 225, 185, 0.2);
    font-size: 0.8rem;
    padding: 0.55rem 1rem;
    position: relative;
}

/* Suppress announcement bar immediately when user has dismissed it */
.announcement-dismissed #announcementBar {
    display: none !important;
}

.announcement-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding-right: 1.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.announcement-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0 0.45rem;
    margin: 0;
    line-height: 1.5;
    text-align: center;
}

.announcement-label {
    font-weight: 700;
    color: #5ce1b9;
}

.announcement-text {
    color: #cbd5e1;
}

.announcement-link {
    color: #5ce1b9;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s;
}

.announcement-link:hover {
    color: #7ee7c7;
    text-decoration: underline;
}

.announcement-dismiss {
    position: absolute;
    right: 0.6rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 0.35rem;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: color 0.15s, background-color 0.15s;
}

.announcement-dismiss:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.12);
}

/* ---- Main Navigation Header ---- */
#siteHeader {
    background-color: rgba(11, 18, 32, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.site-header-shell {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Logo */
.site-logo-link {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
}

.site-logo-img {
    height: 2rem;
    width: auto;
    max-width: 155px;
    display: block;
}

.site-logo-tagline {
    display: none;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #a6b2c8;
    margin-top: 0.15rem;
    line-height: 1;
    transition: color 0.15s;
}

.site-logo-link:hover .site-logo-tagline {
    color: #5ce1b9;
}

/* Desktop nav links (hidden below lg: 1024px) */
.site-desktop-nav {
    display: none;
    align-items: center;
    gap: 0.125rem;
    margin: 0 auto;
}

.site-nav-link {
    padding: 0.45rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #cbd5e1;
    text-decoration: none;
    border-radius: 0.5rem;
    white-space: nowrap;
    transition: color 0.15s, background-color 0.15s;
}

.site-nav-link:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.07);
    text-decoration: none;
}

.site-nav-link--active,
.site-nav-link[aria-current="page"] {
    color: #5ce1b9;
    background-color: rgba(92, 225, 185, 0.09);
}

.site-nav-link--active:hover,
.site-nav-link[aria-current="page"]:hover {
    color: #7ee7c7;
    background-color: rgba(92, 225, 185, 0.14);
}

/* Right-side actions */
.site-header-actions {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-shrink: 0;
}

/* "Book a Demo" CTA button (hidden below sm: 640px) */
.site-book-demo-btn {
    display: none;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1.15rem;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 9999px;
    background-color: #5ce1b9;
    color: #0b1220;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(92, 225, 185, 0.35);
    transition: background-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.site-book-demo-btn:hover {
    background-color: #7ee7c7;
    color: #0b1220;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(92, 225, 185, 0.5);
}

.site-book-demo-btn:active {
    transform: scale(0.96);
}

/* Mobile hamburger toggle */
.site-mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: none;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    transition: border-color 0.2s, background-color 0.2s;
}

.site-mobile-toggle:hover {
    border-color: rgba(92, 225, 185, 0.5);
    background-color: rgba(255, 255, 255, 0.05);
}

.toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #cbd5e1;
    border-radius: 9999px;
    transition: transform 0.22s, opacity 0.22s;
    transform-origin: center;
}

/* Mobile nav drawer (closed by default, opened via .open class) */
#mobileNav {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(11, 18, 32, 0.98);
}

#mobileNav.open {
    display: block;
}

.mobile-nav-list {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 0.6rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #cbd5e1;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: color 0.15s, background-color 0.15s;
}

.mobile-nav-link:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.06);
    text-decoration: none;
}

.mobile-nav-cta {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem 1rem;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 9999px;
    background-color: #5ce1b9;
    color: #0b1220;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(92, 225, 185, 0.3);
    transition: background-color 0.2s;
}

.mobile-cta-btn:hover {
    background-color: #7ee7c7;
    color: #0b1220;
    text-decoration: none;
}

/* ---- Responsive breakpoints ---- */
@media (min-width: 640px) {
    .site-header-shell { padding: 0 1.5rem; }
    .mobile-nav-list,
    .mobile-nav-cta { padding-left: 1.5rem; padding-right: 1.5rem; }
    .announcement-inner { padding-right: 2rem; }
    #announcementBar { font-size: 0.85rem; }
    .announcement-dismiss { right: 1rem; }
    .site-book-demo-btn { display: inline-flex; }
}

@media (min-width: 768px) {
    .site-logo-tagline { display: block; }
    .site-header-shell { padding: 0 2rem; }
}

@media (min-width: 1024px) {
    .site-desktop-nav { display: flex; }
    .site-mobile-toggle { display: none; }
    #mobileNav { display: none !important; }
    .site-header-shell { padding: 0 2.5rem; }
}

/* ================================================================
   Nav dropdown menus
   ================================================================ */

.site-nav-dropdown {
    position: relative;
}

.site-nav-dropdown-trigger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-family: inherit;
}

.site-nav-chevron {
    transition: transform 0.18s ease;
    flex-shrink: 0;
    opacity: 0.6;
}

.site-nav-dropdown.open .site-nav-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.site-nav-dropdown-panel {
    background: rgba(11, 18, 32, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(92, 225, 185, 0.06);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 50%;
    min-width: 260px;
    padding: 0.5rem;
    position: absolute;
    top: calc(100% + 0.75rem);
    transform: translateX(-50%);
    z-index: 9999;
}

.site-nav-dropdown.open .site-nav-dropdown-panel {
    display: flex;
}

/* Small triangle pointer */
.site-nav-dropdown-panel::before {
    content: '';
    border: 6px solid transparent;
    border-bottom-color: rgba(255, 255, 255, 0.1);
    height: 0;
    left: 50%;
    position: absolute;
    top: -13px;
    transform: translateX(-50%);
    width: 0;
}
.site-nav-dropdown-panel::after {
    content: '';
    border: 5px solid transparent;
    border-bottom-color: rgba(11, 18, 32, 0.97);
    height: 0;
    left: 50%;
    position: absolute;
    top: -10px;
    transform: translateX(-50%);
    width: 0;
}

.site-nav-dropdown-item {
    align-items: center;
    border-radius: 10px;
    color: var(--moonbim-text-muted);
    display: flex;
    gap: 0.85rem;
    padding: 0.65rem 0.85rem;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.site-nav-dropdown-item:hover {
    background: rgba(92, 225, 185, 0.1);
    color: var(--moonbim-text);
    text-decoration: none;
}

.site-nav-dropdown-item[aria-current="page"] {
    background: rgba(92, 225, 185, 0.1);
    color: var(--moonbim-text);
}

.site-nav-dropdown-item[aria-current="page"] strong {
    color: #5ce1b9;
}

.site-nav-dropdown-item svg {
    color: rgba(92, 225, 185, 0.65);
    flex-shrink: 0;
}

.site-nav-dropdown-item:hover svg {
    color: #5ce1b9;
}

.site-nav-dropdown-item span {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.site-nav-dropdown-item strong {
    color: var(--moonbim-text);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
}

.site-nav-dropdown-item em {
    color: var(--moonbim-text-muted);
    font-size: 0.75rem;
    font-style: normal;
    line-height: 1.2;
}

/* Inline nav badges (New / AI) */
.nav-item-badge {
    border-radius: 4px;
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    padding: 0.18em 0.42em;
    text-transform: uppercase;
    vertical-align: middle;
    position: relative;
    top: -0.5px;
}

.nav-item-badge--new {
    background: rgba(92, 225, 185, 0.15);
    border: 1px solid rgba(92, 225, 185, 0.35);
    color: #5ce1b9;
}

.nav-item-badge--ai {
    background: rgba(167, 139, 250, 0.15);
    border: 1px solid rgba(167, 139, 250, 0.35);
    color: #a78bfa;
}

/* Mobile nav section labels */
.mobile-nav-section-label {
    color: var(--moonbim-text-muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin: 0.75rem 0.75rem 0.2rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    text-transform: uppercase;
}

.mobile-nav-link--sub {
    padding-left: 1.5rem;
    font-size: 0.825rem;
}

/* ================================================================
   Shared inner-page styles (features, solutions, pricing, etc.)
   ================================================================ */

/* Page hero — used on all inner pages */
.page-hero {
    overflow: hidden;
    padding: 5rem 0 4rem;
    position: relative;
    background:
        radial-gradient(ellipse 70% 55% at 50% -5%, rgba(92, 225, 185, 0.16) 0%, transparent 65%),
        var(--moonbim-bg);
    text-align: center;
}

.page-hero-glow {
    background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 28px 28px;
    inset: 0;
    pointer-events: none;
    position: absolute;
    -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 20%, black 30%, transparent 100%);
    mask-image: radial-gradient(ellipse 85% 75% at 50% 20%, black 30%, transparent 100%);
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
}

.page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(92, 225, 185, 0.1);
    border: 1px solid rgba(92, 225, 185, 0.28);
    border-radius: 9999px;
    color: #7ee7c7;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    padding: 0.35rem 1rem;
}

.page-hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    background: #5ce1b9;
    border-radius: 9999px;
    box-shadow: 0 0 6px rgba(92, 225, 185, 0.8);
}

.page-hero-title {
    color: var(--moonbim-text);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.12;
    margin: 0 0 1.25rem;
}

.page-hero-title-accent {
    color: #5ce1b9;
}

.page-hero-subtitle {
    color: var(--moonbim-text-muted);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.7;
    margin: 0 0 2.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    justify-content: center;
    align-items: center;
}

/* Shared section separator */
.section-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin: 0;
}

/* Feature grid cards */
.feat-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.feat-card {
    background: var(--moonbim-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.75rem 1.5rem;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.feat-card:hover {
    border-color: rgba(92, 225, 185, 0.28);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    transform: translateY(-3px);
}

.feat-card-icon {
    align-items: center;
    background: rgba(92, 225, 185, 0.1);
    border-radius: 10px;
    color: #5ce1b9;
    display: flex;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.feat-card-title {
    color: var(--moonbim-text);
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.feat-card-desc {
    color: var(--moonbim-text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

/* Digs.com-style: screenshot preview at the top of each card */
.feat-card--visual {
    padding: 0;
    gap: 0;
    overflow: hidden;
}

.feat-card--visual .feat-card-icon,
.feat-card--visual .feat-card-title,
.feat-card--visual .feat-card-desc,
.feat-card--visual .feat-card-learn-more {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.feat-card--visual .feat-card-icon {
    margin-top: 1.5rem;
}

.feat-card--visual .feat-card-learn-more {
    margin-bottom: 1.5rem;
}

.feat-card-screenshot {
    background: var(--moonbim-surface-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px 16px 0 0;
    height: 190px;
    overflow: hidden;
    width: 100%;
}

.feat-card-screenshot img {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    transition: transform 0.3s ease;
    width: 100%;
}

.feat-card--visual:hover .feat-card-screenshot img {
    transform: scale(1.03);
}

/* Phone screenshot: centre the image so the phone UI reads correctly */
.feat-card-screenshot--phone img {
    object-position: top center;
}

.feat-card-screenshot--ai {
    align-items: stretch;
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0.5rem;
}

.feat-card-screenshot--ai img {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* "Learn more" link at card bottom */
.feat-card-learn-more {
    align-items: center;
    color: #5ce1b9;
    display: flex;
    font-size: 0.8rem;
    font-weight: 700;
    gap: 0.3rem;
    margin-top: auto;
}

/* Feature overview grid — larger image + text side by side */
.feat-overview-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
}

.feat-overview-card {
    background: var(--moonbim-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.feat-overview-card:hover {
    border-color: rgba(92, 225, 185, 0.28);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    transform: translateY(-3px);
}

.feat-overview-img {
    background: var(--moonbim-surface-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.feat-overview-img img {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    transition: transform 0.3s ease;
    width: 100%;
}

.feat-overview-card:hover .feat-overview-img img {
    transform: scale(1.03);
}

.feat-overview-img--ai {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: 1fr;
    padding: 0.75rem;
    aspect-ratio: 16 / 9;
}

.feat-overview-img--ai img {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.feat-overview-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    flex: 1;
}

@media (max-width: 768px) {
    .feat-overview-grid {
        grid-template-columns: 1fr;
    }
}

/* Comparison / benefit table */
.benefit-table {
    width: 100%;
    border-collapse: collapse;
}

.benefit-table th,
.benefit-table td {
    padding: 0.85rem 1.1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.9rem;
}

.benefit-table thead th {
    color: var(--moonbim-text-muted);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--moonbim-surface);
}

.benefit-table tbody tr:hover td {
    background: rgba(92, 225, 185, 0.04);
}

.benefit-check {
    color: #5ce1b9;
    font-size: 1.1rem;
    font-weight: 700;
}

/* CTA band (reusable) */
.cta-band {
    padding: 5rem 0 6rem;
    text-align: center;
    background:
        radial-gradient(ellipse 70% 60% at 50% 100%, rgba(92, 225, 185, 0.10) 0%, transparent 65%),
        var(--moonbim-bg);
}

.cta-band-eyebrow {
    color: #7ee7c7;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 1rem;
}

.cta-band-heading {
    color: var(--moonbim-text);
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 1rem;
}

.cta-band-sub {
    color: var(--moonbim-text-muted);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

/* Numbered step list */
.steps-list {
    counter-reset: step;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.steps-list li {
    counter-increment: step;
    display: flex;
    gap: 1.25rem;
}

.steps-list li::before {
    content: counter(step);
    align-items: center;
    background: rgba(92, 225, 185, 0.1);
    border: 1px solid rgba(92, 225, 185, 0.25);
    border-radius: 9999px;
    color: #5ce1b9;
    display: flex;
    flex-shrink: 0;
    font-size: 0.875rem;
    font-weight: 800;
    height: 2.25rem;
    justify-content: center;
    margin-top: 0.1rem;
    width: 2.25rem;
}

.steps-list li > div > strong {
    color: var(--moonbim-text);
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.steps-list li > div > p {
    color: var(--moonbim-text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

/* Two-column text + image layout for feature pages */
.feature-split {
    align-items: center;
    display: grid;
    gap: 4rem;
    grid-template-columns: 1fr 1fr;
}

.feature-split--reverse {
    direction: rtl;
}

.feature-split--reverse > * {
    direction: ltr;
}

.feature-split-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-split-media {
    position: relative;
}

.feature-split-img {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    display: block;
    width: 100%;
}

.feature-split-img--ai {
    width: 100%;
    object-fit: cover;
    object-position: top center;
}

.feature-split-eyebrow {
    color: #5ce1b9;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.feature-split-heading {
    color: var(--moonbim-text);
    font-size: clamp(1.55rem, 2.8vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
}

.feature-split-desc {
    color: var(--moonbim-text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin: 0;
}

/* Placeholder screenshot box (labelled, for swap later) */
.placeholder-img {
    align-items: center;
    background: var(--moonbim-surface);
    border: 2px dashed rgba(92, 225, 185, 0.2);
    border-radius: 16px;
    color: var(--moonbim-text-muted);
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    gap: 0.5rem;
    justify-content: center;
    min-height: 300px;
    padding: 2rem;
    text-align: center;
    width: 100%;
}

.placeholder-img svg {
    color: rgba(92, 225, 185, 0.4);
    height: 3rem;
    width: 3rem;
}

/* Pricing tiers */
.pricing-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    align-items: start;
}

.pricing-card {
    background: var(--moonbim-surface);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pricing-card--featured {
    border-color: rgba(92, 225, 185, 0.5);
    box-shadow: 0 0 0 1px rgba(92, 225, 185, 0.15), 0 24px 64px rgba(0, 0, 0, 0.4);
}

.pricing-card-featured-badge {
    background: #5ce1b9;
    color: #0b1220;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 0.35rem 1rem;
    text-align: center;
    text-transform: uppercase;
}

.pricing-card-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1.75rem 1.75rem 1.5rem;
}

.pricing-tier-name {
    color: var(--moonbim-text);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.4rem;
}

.pricing-tier-desc {
    color: var(--moonbim-text-muted);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.pricing-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-top: 1.25rem;
}

.pricing-price-amount {
    color: var(--moonbim-text);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.pricing-price-period {
    color: var(--moonbim-text-muted);
    font-size: 0.875rem;
}

.pricing-card-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
    padding: 1.5rem 1.75rem 2rem;
}

.pricing-feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-feature-list li {
    align-items: flex-start;
    color: var(--moonbim-text-muted);
    display: flex;
    font-size: 0.9rem;
    gap: 0.6rem;
    line-height: 1.5;
}

.pricing-feature-list li::before {
    content: '';
    background: #5ce1b9;
    border-radius: 9999px;
    flex-shrink: 0;
    height: 6px;
    margin-top: 0.45rem;
    width: 6px;
}

.pricing-cta-btn {
    align-items: center;
    background: var(--moonbim-surface-muted);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9999px;
    color: var(--moonbim-text);
    display: flex;
    font-size: 0.925rem;
    font-weight: 700;
    gap: 0.4rem;
    justify-content: center;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.pricing-cta-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--moonbim-text);
    text-decoration: none;
}

.pricing-cta-btn--primary {
    background: #5ce1b9;
    border-color: transparent;
    color: #0b1220;
    box-shadow: 0 4px 16px rgba(92, 225, 185, 0.4);
}

.pricing-cta-btn--primary:hover {
    background: #7ee7c7;
    color: #0b1220;
    box-shadow: 0 6px 22px rgba(92, 225, 185, 0.5);
}

/* FAQ accordion */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    align-items: center;
    background: none;
    border: none;
    color: var(--moonbim-text);
    cursor: pointer;
    display: flex;
    font-family: inherit;
    font-size: 0.975rem;
    font-weight: 600;
    gap: 1rem;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    text-align: left;
    transition: background 0.15s;
    width: 100%;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-chevron {
    color: rgba(92, 225, 185, 0.6);
    flex-shrink: 0;
    transition: transform 0.2s;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
    color: var(--moonbim-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    display: block;
}

/* Solutions hub cards */
.solutions-hub-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.solutions-hub-card {
    background: var(--moonbim-surface);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.solutions-hub-card:hover {
    border-color: rgba(92, 225, 185, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px);
    text-decoration: none;
}

.solutions-hub-card-img {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--moonbim-surface-muted);
}

.solutions-hub-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
    padding: 1.5rem;
}

.solutions-hub-card-eyebrow {
    color: #5ce1b9;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.solutions-hub-card-title {
    color: var(--moonbim-text);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.solutions-hub-card-desc {
    color: var(--moonbim-text-muted);
    font-size: 0.875rem;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.solutions-hub-card-link {
    align-items: center;
    color: #5ce1b9;
    display: flex;
    font-size: 0.85rem;
    font-weight: 700;
    gap: 0.35rem;
    margin-top: 0.5rem;
}

/* Resources / blog grid */
.resources-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.resource-card {
    background: var(--moonbim-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
}

.resource-card:hover {
    border-color: rgba(92, 225, 185, 0.3);
    transform: translateY(-3px);
    text-decoration: none;
}

.resource-card-img {
    background: var(--moonbim-surface-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.resource-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    padding: 1.25rem 1.25rem 1.5rem;
}

.resource-card-tag {
    color: #5ce1b9;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.resource-card-title {
    color: var(--moonbim-text);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
}

.resource-card-desc {
    color: var(--moonbim-text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.resource-card-meta {
    color: var(--moonbim-text-muted);
    font-size: 0.75rem;
    margin-top: 0.35rem;
}

/* Contact form — new style */
.contact-split {
    display: grid;
    gap: 4rem;
    grid-template-columns: 1fr 1.4fr;
    align-items: start;
}

.contact-info-eyebrow {
    color: #5ce1b9;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 0.75rem;
}

.contact-info-heading {
    color: var(--moonbim-text);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 1rem;
}

.contact-info-desc {
    color: var(--moonbim-text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin: 0 0 2rem;
}

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-detail-list li {
    align-items: flex-start;
    color: var(--moonbim-text-muted);
    display: flex;
    font-size: 0.9rem;
    gap: 0.75rem;
    line-height: 1.5;
}

.contact-detail-list li svg {
    color: #5ce1b9;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.contact-form-card {
    background: var(--moonbim-surface);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    padding: 2rem 2rem 2.25rem;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.1rem;
}

.contact-form-label {
    color: var(--moonbim-text);
    font-size: 0.875rem;
    font-weight: 600;
}

.contact-form-control {
    background: var(--moonbim-bg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: var(--moonbim-text);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    padding: 0.7rem 0.9rem;
    transition: border-color 0.15s;
    width: 100%;
}

.contact-form-control:focus {
    border-color: rgba(92, 225, 185, 0.5);
    box-shadow: 0 0 0 3px rgba(92, 225, 185, 0.1);
}

.contact-form-control::placeholder {
    color: rgba(166, 178, 200, 0.5);
}

textarea.contact-form-control {
    min-height: 140px;
    resize: vertical;
}

.contact-submit-btn {
    align-items: center;
    background: #5ce1b9;
    border: none;
    border-radius: 9999px;
    box-shadow: 0 4px 16px rgba(92, 225, 185, 0.4);
    color: #0b1220;
    cursor: pointer;
    display: flex;
    font-family: inherit;
    font-size: 0.925rem;
    font-weight: 700;
    gap: 0.4rem;
    justify-content: center;
    padding: 0.75rem 2rem;
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    width: 100%;
}

.contact-submit-btn:hover {
    background: #7ee7c7;
    box-shadow: 0 6px 22px rgba(92, 225, 185, 0.5);
}

.contact-submit-btn:active {
    transform: scale(0.97);
}

/* Alert messages (success/error) */
.alert-success-new {
    background: rgba(92, 225, 185, 0.1);
    border: 1px solid rgba(92, 225, 185, 0.35);
    border-radius: 10px;
    color: #7ee7c7;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    padding: 0.85rem 1rem;
}

.alert-danger-new {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.35);
    border-radius: 10px;
    color: #fca5a5;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    padding: 0.85rem 1rem;
}

/* About page */
.about-team-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.about-team-card {
    background: var(--moonbim-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 1.5rem;
    text-align: center;
}

.about-team-avatar {
    align-items: center;
    background: rgba(92, 225, 185, 0.12);
    border: 2px solid rgba(92, 225, 185, 0.3);
    border-radius: 9999px;
    color: #5ce1b9;
    display: flex;
    font-size: 1.2rem;
    font-weight: 800;
    height: 64px;
    justify-content: center;
    width: 64px;
}

.about-team-name {
    color: var(--moonbim-text);
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.about-team-role {
    color: var(--moonbim-text-muted);
    font-size: 0.825rem;
    margin: 0;
}

.about-value-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.about-value-card {
    background: var(--moonbim-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1.5rem;
}

.about-value-icon {
    color: #5ce1b9;
    height: 28px;
    width: 28px;
}

.about-value-title {
    color: var(--moonbim-text);
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.about-value-desc {
    color: var(--moonbim-text-muted);
    font-size: 0.875rem;
    line-height: 1.65;
    margin: 0;
}

/* 404 page */
.not-found-section {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - var(--navbar-height));
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 60% 45% at 50% 20%, rgba(92, 225, 185, 0.12) 0%, transparent 65%),
        var(--moonbim-bg);
}

.not-found-code {
    color: transparent;
    -webkit-text-stroke: 2px rgba(92, 225, 185, 0.2);
    font-size: clamp(7rem, 18vw, 14rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 0 0 1rem;
    position: relative;
    z-index: 1;
}

.not-found-title {
    color: var(--moonbim-text);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
    position: relative;
    z-index: 1;
}

.not-found-desc {
    color: var(--moonbim-text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 2.5rem;
    max-width: 480px;
    position: relative;
    z-index: 1;
}

/* Responsive overrides for inner pages */
@media (max-width: 900px) {
    .feature-split,
    .contact-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .feature-split--reverse {
        direction: ltr;
    }

}

@media (max-width: 640px) {
    .page-hero {
        padding: 3.5rem 0 3rem;
    }

    .feat-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .solutions-hub-grid {
        grid-template-columns: 1fr;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .about-team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-band {
        padding: 3.5rem 0 4rem;
    }

    .homepage-hero-carousel-control {
        height: 1.9rem;
        width: 1.9rem;
    }
}

/* Quick-links row on 404 page */
.not-found-quick-link {
    background: var(--moonbim-surface);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 9999px;
    color: var(--moonbim-text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1.1rem;
    text-decoration: none;
    transition: color 0.15s, border-color 0.15s;
}

.not-found-quick-link:hover {
    color: var(--moonbim-text);
    border-color: rgba(92, 225, 185, 0.3);
    text-decoration: none;
}

/* ── Pricing page: seat calculator slider ─────────────────────────── */
.calc-slider {
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    cursor: pointer;
    height: 6px;
    outline: none;
    width: 100%;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background: #5ce1b9;
    border: 2px solid #0b1220;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(92, 225, 185, 0.25);
    cursor: pointer;
    height: 20px;
    transition: box-shadow 0.15s;
    width: 20px;
}

.calc-slider::-webkit-slider-thumb:hover,
.calc-slider:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 5px rgba(92, 225, 185, 0.35);
}

.calc-slider::-moz-range-thumb {
    background: #5ce1b9;
    border: 2px solid #0b1220;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(92, 225, 185, 0.25);
    cursor: pointer;
    height: 20px;
    transition: box-shadow 0.15s;
    width: 20px;
}

.calc-slider::-moz-range-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    height: 6px;
}

/* Benefit table tfoot row */
.benefit-table tfoot td {
    color: var(--moonbim-text-muted);
    font-size: 0.9rem;
    padding: 1rem 1.1rem;
}
