:root {
    --bg: #071117;
    --bg-soft: #0d1c24;
    --panel: rgba(11, 25, 33, 0.88);
    --panel-strong: rgba(16, 34, 45, 0.96);
    --line: rgba(159, 232, 112, 0.16);
    --text: #edf6f3;
    --muted: #99b0ad;
    --accent: #9fe870;
    --accent-strong: #66d17a;
    --accent-alt: #53c7ef;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(83, 199, 239, 0.14), transparent 32%),
        radial-gradient(circle at top right, rgba(159, 232, 112, 0.12), transparent 28%),
        linear-gradient(180deg, #061015 0%, #08161d 45%, #091219 100%);
}

main {
    flex: 1;
    position: relative;
}

main::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(159, 232, 112, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(159, 232, 112, 0.045) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 92%);
}

a {
    color: inherit;
    text-decoration: none;
}

.app-navbar {
    background: rgba(5, 13, 18, 0.74);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(159, 232, 112, 0.1);
}

.navbar-brand,
.hero-title,
.section-heading h2,
.feature-card h3,
.detail-card strong,
.timeline-card h3,
.revenue-card h3,
.formula-card h3,
.market-card strong,
.stat-card strong,
.footer-brand {
    font-family: 'Space Grotesk', sans-serif;
}

.navbar-brand {
    font-size: 1.15rem;
    letter-spacing: 0.04em;
}

.nav-link {
    color: rgba(237, 246, 243, 0.78) !important;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--accent) !important;
}

.nav-link.active {
    color: var(--accent) !important;
}

.hero-section {
    padding: 5.5rem 0 2.5rem;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    border: 1px solid rgba(159, 232, 112, 0.18);
    border-radius: 999px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    background: rgba(159, 232, 112, 0.08);
}

.hero-title {
    margin: 1.2rem 0 1rem;
    font-size: clamp(2.6rem, 5vw, 4.85rem);
    line-height: 0.95;
    max-width: 12ch;
}

.hero-copy,
.feature-card p,
.detail-card p,
.revenue-card p,
.timeline-card p,
.formula-card p,
.notice-card,
.footer-copy,
.market-card small,
.stat-card span {
    color: var(--muted);
}

.hero-copy {
    max-width: 58ch;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary {
    color: #082012;
    background: linear-gradient(135deg, var(--accent) 0%, #d8ff9a 100%);
    border-color: transparent;
    box-shadow: 0 18px 36px rgba(159, 232, 112, 0.18);
}

.btn-primary:hover,
.btn-primary:focus {
    color: #082012;
    background: linear-gradient(135deg, #baf98c 0%, #ebffb6 100%);
}

.btn-success {
    color: #041118;
    background: linear-gradient(135deg, var(--accent-alt) 0%, #98efff 100%);
    border-color: transparent;
}

.btn-success:hover,
.btn-success:focus {
    color: #041118;
    background: linear-gradient(135deg, #7fddf6 0%, #b9f4ff 100%);
}

.btn-outline-light {
    border-color: rgba(237, 246, 243, 0.3);
    color: var(--text);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: rgba(237, 246, 243, 0.08);
    border-color: rgba(237, 246, 243, 0.55);
    color: var(--text);
}

.market-panel,
.feature-card,
.detail-card,
.revenue-card,
.timeline-card,
.formula-card,
.stat-card,
.notice-card {
    height: 100%;
    border-radius: 1.5rem;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(14, 31, 41, 0.9) 0%, rgba(8, 19, 26, 0.95) 100%);
    box-shadow: var(--shadow);
}

.market-panel {
    padding: 1.4rem;
}

.market-chip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem 0.95rem;
    border-radius: 1rem;
    background: rgba(83, 199, 239, 0.1);
    color: var(--text);
}

.market-chip span {
    color: var(--muted);
    font-size: 0.92rem;
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.market-card,
.feature-card,
.detail-card,
.revenue-card,
.timeline-card,
.formula-card,
.stat-card {
    padding: 1.35rem;
}

.market-card {
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.market-card span,
.detail-card span,
.timeline-card span,
.formula-label {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--accent-alt);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 700;
}

.market-card strong,
.detail-card strong,
.timeline-card h3,
.formula-card h3,
.stat-card strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.stats-row {
    margin-top: 2rem;
}

.stat-card {
    min-height: 100%;
}

.content-section {
    padding: 2.5rem 0;
}

.section-alt {
    position: relative;
}

.section-alt::before {
    content: "";
    position: absolute;
    inset: 1rem 0;
    background: linear-gradient(180deg, rgba(83, 199, 239, 0.06), rgba(159, 232, 112, 0.03));
    z-index: -1;
}

.section-heading {
    margin-bottom: 2rem;
    max-width: 58rem;
}

.section-heading h2 {
    margin: 0.9rem 0 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
}

.feature-card,
.detail-card,
.revenue-card,
.timeline-card {
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.feature-card:hover,
.detail-card:hover,
.revenue-card:hover,
.timeline-card:hover,
.market-card:hover,
.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(159, 232, 112, 0.34);
}

.feature-card i {
    font-size: 1.3rem;
    width: 3rem;
    height: 3rem;
    display: inline-grid;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 1rem;
    color: var(--bg);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
}

.feature-card h3,
.revenue-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.formula-card {
    margin-top: 1rem;
}

.notice-card {
    padding: 1rem 1.25rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    border-color: rgba(83, 199, 239, 0.2);
}

.notice-card strong {
    color: var(--accent);
}

.app-footer {
    border-top: 1px solid rgba(159, 232, 112, 0.08);
    background: rgba(4, 11, 15, 0.8);
}

.footer-brand {
    font-size: 1.2rem;
    margin: 0;
}

.page-shell {
    padding: 3.2rem 0 4rem;
}

.page-hero {
    margin-bottom: 2rem;
}

.page-title {
    margin: 0.9rem 0 0.8rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1;
}

.page-copy {
    max-width: 64ch;
    color: var(--muted);
}

.page-shell-ops {
    padding-top: 2.6rem;
}

.module-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.78fr);
    gap: 1.35rem;
    margin-bottom: 2.2rem;
}

.module-hero-main,
.module-hero-side {
    position: relative;
    overflow: hidden;
    border-radius: 1.55rem;
    border: 1px solid rgba(159, 232, 112, 0.11);
    background:
        radial-gradient(circle at top right, rgba(83, 199, 239, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(12, 27, 36, 0.95) 0%, rgba(6, 15, 21, 0.98) 100%);
    box-shadow: 0 26px 74px rgba(0, 0, 0, 0.3);
}

.module-hero-main::before,
.module-hero-side::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(83, 199, 239, 0), rgba(83, 199, 239, 0.4), rgba(159, 232, 112, 0));
}

.module-hero-main {
    padding: 1.6rem 1.7rem;
}

.module-hero-side {
    padding: 1.35rem;
}

.module-hero .page-title {
    max-width: 12ch;
}

.module-hero .page-copy {
    margin-bottom: 0;
    max-width: 60ch;
    line-height: 1.7;
}

.status-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.15rem;
}

.module-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.35rem;
}

.module-actions .btn {
    min-width: 10.5rem;
}

.module-subcopy {
    margin: 1rem 0 0;
    color: rgba(237, 246, 243, 0.78);
    font-size: 0.96rem;
}

.hero-kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1rem;
}

.hero-kpi {
    padding: 0.95rem 1rem;
    border-radius: 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.018) 100%);
}

.hero-kpi-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-alt);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
    font-weight: 700;
}

.hero-kpi-value {
    display: block;
    margin-bottom: 0.35rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.18rem;
    line-height: 1.05;
}

.hero-kpi-copy {
    display: block;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.55;
}

.module-side-list {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.module-side-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.78rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.module-side-list li:first-child {
    padding-top: 0;
    border-top: 0;
}

.module-side-list span {
    color: var(--muted);
    font-size: 0.92rem;
}

.module-side-list strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.98rem;
    text-align: right;
}

.action-card {
    border-color: rgba(83, 199, 239, 0.14);
}

.action-card-primary {
    background:
        radial-gradient(circle at top right, rgba(159, 232, 112, 0.12), transparent 36%),
        linear-gradient(180deg, rgba(13, 30, 38, 0.96) 0%, rgba(7, 16, 22, 0.99) 100%);
}

.action-card-alt {
    background:
        radial-gradient(circle at top right, rgba(83, 199, 239, 0.14), transparent 36%),
        linear-gradient(180deg, rgba(12, 26, 36, 0.96) 0%, rgba(7, 16, 22, 0.99) 100%);
}

.action-card-muted {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 34%),
        linear-gradient(180deg, rgba(12, 24, 33, 0.94) 0%, rgba(7, 16, 22, 0.99) 100%);
}

.section-block-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-block-head h2 {
    margin: 0.45rem 0 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    line-height: 1.05;
}

.section-block-head p {
    margin: 0;
    max-width: 62ch;
    color: var(--muted);
}

.ops-note {
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(83, 199, 239, 0.12);
    background: rgba(255, 255, 255, 0.025);
    color: var(--muted);
}

.surface-card,
.metric-card,
.table-shell,
.gateway-card,
.flow-card,
.insight-card,
.empty-state {
    border-radius: 1.4rem;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(14, 31, 41, 0.88) 0%, rgba(8, 19, 26, 0.96) 100%);
    box-shadow: var(--shadow);
}

.surface-card,
.metric-card,
.gateway-card,
.flow-card,
.insight-card,
.empty-state {
    padding: 1.35rem;
}

.metric-card {
    min-height: 100%;
}

.metric-label,
.section-label,
.gateway-type {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: var(--accent-alt);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 700;
}

.metric-value {
    display: block;
    margin-bottom: 0.45rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.65rem;
    line-height: 1;
}

.metric-copy,
.muted-copy,
.table-shell p,
.gateway-card p,
.flow-card p,
.insight-card p,
.empty-state p {
    color: var(--muted);
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.detail-item {
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.detail-item strong {
    display: block;
    margin-bottom: 0.35rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
}

.table-shell {
    overflow: hidden;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.25rem 0;
}

.table-header h3 {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
}

.data-table {
    margin: 0;
    color: var(--text);
}

.data-table thead th {
    border-color: rgba(159, 232, 112, 0.08);
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.data-table tbody td {
    border-color: rgba(159, 232, 112, 0.08);
    vertical-align: middle;
}

.data-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.015);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-success {
    color: #c7ffd6;
    background: rgba(57, 201, 112, 0.16);
}

.badge-warning {
    color: #ffe8ab;
    background: rgba(255, 196, 0, 0.15);
}

.badge-danger {
    color: #ffc0c0;
    background: rgba(220, 83, 83, 0.16);
}

.badge-info {
    color: #bfeeff;
    background: rgba(83, 199, 239, 0.14);
}

.badge-muted {
    color: #d2dbda;
    background: rgba(153, 176, 173, 0.16);
}

.mono {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}

.check-list,
.stack-list,
.policy-list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--muted);
}

.check-list li,
.stack-list li,
.policy-list li {
    margin-bottom: 0.65rem;
}

.gateway-card,
.flow-card,
.insight-card {
    height: 100%;
}

.gateway-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.gateway-head h3,
.flow-card h3,
.insight-card h3 {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
}

.gateway-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1rem 0;
}

.info-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text);
    font-size: 0.85rem;
}

.split-stat {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(159, 232, 112, 0.08);
}

.split-stat:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.split-stat span {
    color: var(--muted);
}

.surface-card h3,
.surface-card h4 {
    font-family: 'Space Grotesk', sans-serif;
}

.empty-state {
    text-align: center;
}

.empty-state strong {
    display: block;
    margin-bottom: 0.45rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
}

.app-flash {
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.app-flash-success {
    color: #d9ffe4;
    background: rgba(57, 201, 112, 0.14);
}

.app-flash-error {
    color: #ffd5d5;
    background: rgba(220, 83, 83, 0.14);
}

.app-flash-warning {
    color: #ffe8ab;
    background: rgba(255, 196, 0, 0.14);
}

.app-flash-info {
    color: #d7f7ff;
    background: rgba(83, 199, 239, 0.14);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 4rem;
    }

    .hero-title {
        max-width: none;
    }

    .market-grid {
        grid-template-columns: 1fr;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .hero-actions {
        flex-direction: column;
    }

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

    .section-heading h2 {
        line-height: 1.05;
    }

    .notice-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Launch polish overrides */

body {
    position: relative;
    background:
        radial-gradient(circle at 12% 18%, rgba(83, 199, 239, 0.18), transparent 24%),
        radial-gradient(circle at 88% 14%, rgba(159, 232, 112, 0.16), transparent 28%),
        radial-gradient(circle at 52% 100%, rgba(83, 199, 239, 0.07), transparent 34%),
        linear-gradient(180deg, #051016 0%, #08151c 42%, #08131a 100%);
}

body::after {
    content: "";
    position: fixed;
    inset: auto -18rem -14rem auto;
    width: 38rem;
    height: 38rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(159, 232, 112, 0.12) 0%, rgba(159, 232, 112, 0) 68%);
    pointer-events: none;
    filter: blur(18px);
    z-index: 0;
}

main,
.app-footer,
.product-rail {
    position: relative;
    z-index: 1;
}

.app-navbar {
    position: sticky;
    top: 0.55rem;
    width: min(1320px, calc(100% - 1.25rem));
    margin: 0.55rem auto 0;
    border: 1px solid rgba(159, 232, 112, 0.14);
    border-radius: 1.45rem;
    background: linear-gradient(180deg, rgba(7, 18, 25, 0.94) 0%, rgba(6, 14, 20, 0.88) 100%);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    z-index: 1100;
}

.app-navbar.is-scrolled {
    transform: translateY(-2px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
    border-color: rgba(83, 199, 239, 0.18);
}

.nav-shell {
    padding: 0.72rem 0.95rem;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.brand-mark {
    width: 2.85rem;
    height: 2.85rem;
    display: inline-grid;
    place-items: center;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(159, 232, 112, 0.24) 0%, rgba(83, 199, 239, 0.2) 100%);
    border: 1px solid rgba(159, 232, 112, 0.14);
    color: var(--accent);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-copy strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.02rem;
    letter-spacing: 0.04em;
}

.brand-copy small {
    margin-top: 0.28rem;
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.12);
    border-radius: 0.95rem;
    padding: 0.55rem 0.75rem;
}

.navbar-collapse {
    margin-top: 0.75rem;
}

.nav-primary {
    gap: 0.35rem;
}

.nav-link {
    padding: 0.46rem 0.78rem !important;
    border-radius: 999px;
    font-size: 0.88rem;
    letter-spacing: 0.01em;
    color: rgba(237, 246, 243, 0.72) !important;
    transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--text) !important;
    background: rgba(255, 255, 255, 0.04);
}

.nav-link.active {
    color: #082012 !important;
    background: linear-gradient(135deg, var(--accent) 0%, #d8ff9a 100%);
    box-shadow: 0 10px 22px rgba(159, 232, 112, 0.18);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.nav-user {
    color: var(--text);
    font-size: 0.88rem;
    padding: 0.42rem 0.2rem 0.42rem 0.45rem;
    white-space: nowrap;
}

.nav-auth-btn {
    white-space: nowrap;
}

.nav-utility {
    text-decoration: none;
}

.nav-utility.is-active {
    color: #082012;
    background: linear-gradient(135deg, var(--accent) 0%, #d8ff9a 100%);
    border-color: transparent;
}

.app-dropdown {
    position: absolute;
    z-index: 1110;
    margin-top: 0.65rem;
    min-width: 14rem;
    border-radius: 1rem;
    border: 1px solid rgba(83, 199, 239, 0.14);
    background: rgba(7, 18, 25, 0.96);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
}

.app-dropdown .dropdown-item {
    padding: 0.72rem 0.95rem;
    color: rgba(237, 246, 243, 0.78);
    font-size: 0.9rem;
}

.app-dropdown .dropdown-item:hover,
.app-dropdown .dropdown-item:focus {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.app-dropdown .dropdown-item.active {
    color: #082012;
    background: linear-gradient(135deg, var(--accent) 0%, #d8ff9a 100%);
}

.app-dropdown .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.08);
}

.product-rail {
    padding: 0.38rem 0 0.15rem;
}

.product-rail-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.68rem 1rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(83, 199, 239, 0.12);
    background: rgba(9, 21, 29, 0.72);
    backdrop-filter: blur(12px);
}

.product-rail-copy {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.rail-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: rgba(83, 199, 239, 0.14);
    border: 1px solid rgba(83, 199, 239, 0.2);
    color: #bfeeff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.rail-text {
    color: var(--muted);
    font-size: 0.84rem;
}

.rail-meta {
    margin: 0;
    justify-content: flex-end;
}

.info-chip {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.07);
}

.info-chip-warning {
    color: #ffe8ab;
    background: rgba(255, 196, 0, 0.12);
    border-color: rgba(255, 196, 0, 0.18);
}

.hero-section {
    padding: 4.95rem 0 3rem;
}

.hero-title {
    max-width: 11ch;
    letter-spacing: -0.04em;
}

.hero-copy {
    font-size: 1.04rem;
    line-height: 1.7;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.4rem;
}

.hero-note {
    margin: 1.15rem 0 0;
    color: rgba(237, 246, 243, 0.76);
    font-size: 0.98rem;
}

.market-panel,
.feature-card,
.detail-card,
.revenue-card,
.timeline-card,
.formula-card,
.stat-card,
.notice-card,
.surface-card,
.metric-card,
.table-shell,
.gateway-card,
.flow-card,
.insight-card,
.empty-state {
    position: relative;
    overflow: hidden;
}

.market-panel::before,
.feature-card::before,
.detail-card::before,
.revenue-card::before,
.timeline-card::before,
.formula-card::before,
.stat-card::before,
.notice-card::before,
.surface-card::before,
.metric-card::before,
.table-shell::before,
.gateway-card::before,
.flow-card::before,
.insight-card::before,
.empty-state::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(83, 199, 239, 0), rgba(83, 199, 239, 0.42), rgba(159, 232, 112, 0));
    opacity: 0.9;
    pointer-events: none;
}

.market-panel,
.feature-card,
.detail-card,
.revenue-card,
.timeline-card,
.formula-card,
.stat-card,
.notice-card,
.surface-card,
.metric-card,
.table-shell,
.gateway-card,
.flow-card,
.insight-card,
.empty-state {
    border-color: rgba(159, 232, 112, 0.1);
    background: linear-gradient(180deg, rgba(13, 28, 38, 0.92) 0%, rgba(7, 17, 23, 0.98) 100%);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.market-card,
.detail-item {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.018) 100%);
    border-color: rgba(255, 255, 255, 0.06);
}

.metric-card:hover,
.surface-card:hover,
.gateway-card:hover,
.flow-card:hover,
.insight-card:hover,
.table-shell:hover,
.market-panel:hover {
    border-color: rgba(83, 199, 239, 0.2);
}

.launch-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
    margin-top: 1.85rem;
}

.signal-card {
    padding: 1.3rem 1.35rem;
    border-radius: 1.35rem;
    border: 1px solid rgba(83, 199, 239, 0.12);
    background:
        radial-gradient(circle at top right, rgba(83, 199, 239, 0.1), transparent 36%),
        linear-gradient(180deg, rgba(10, 24, 33, 0.95) 0%, rgba(7, 16, 22, 0.99) 100%);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
    min-height: 100%;
}

.signal-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.9rem;
}

.signal-icon {
    width: 2.65rem;
    height: 2.65rem;
    display: inline-grid;
    place-items: center;
    border-radius: 0.95rem;
    background: linear-gradient(135deg, rgba(159, 232, 112, 0.22) 0%, rgba(83, 199, 239, 0.2) 100%);
    border: 1px solid rgba(159, 232, 112, 0.14);
    color: var(--accent);
    font-size: 1rem;
}

.signal-label {
    display: block;
    margin-bottom: 0;
    color: var(--accent-alt);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.74rem;
    font-weight: 700;
}

.signal-metric {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
}

.signal-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.cta-band {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.8rem;
    border-radius: 1.6rem;
    border: 1px solid rgba(83, 199, 239, 0.16);
    background:
        radial-gradient(circle at right center, rgba(159, 232, 112, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(11, 27, 36, 0.96) 0%, rgba(7, 16, 22, 0.98) 100%);
    box-shadow: 0 26px 72px rgba(0, 0, 0, 0.26);
}

.cta-band h2 {
    margin: 0.9rem 0 0.85rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.95rem, 4vw, 3rem);
    line-height: 1;
}

.btn {
    border-radius: 1rem;
    padding: 0.82rem 1.15rem;
    font-weight: 600;
}

.btn-lg {
    padding: 0.95rem 1.3rem;
}

.form-control,
.form-select {
    border-radius: 1rem;
    padding: 0.82rem 0.95rem;
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(5, 14, 20, 0.72);
    color: var(--text);
    box-shadow: none;
}

.form-control:focus,
.form-select:focus {
    color: var(--text);
    border-color: rgba(83, 199, 239, 0.34);
    background: rgba(7, 17, 24, 0.92);
    box-shadow: 0 0 0 0.25rem rgba(83, 199, 239, 0.12);
}

.form-control::placeholder {
    color: rgba(153, 176, 173, 0.7);
}

.table-header {
    padding: 1.2rem 1.35rem 0;
}

.data-table thead th,
.data-table tbody td {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}

.page-hero {
    padding: 1.35rem 0 0.15rem;
}

.page-title {
    letter-spacing: -0.03em;
}

.app-footer {
    margin-top: 2rem;
    border-top: 1px solid rgba(159, 232, 112, 0.08);
    background:
        linear-gradient(180deg, rgba(5, 13, 18, 0.82) 0%, rgba(3, 9, 13, 0.96) 100%);
}

.footer-shell {
    padding-top: 0.4rem;
}

.footer-nav {
    margin: 0.85rem 0 0;
    padding: 0;
    list-style: none;
}

.footer-nav li + li {
    margin-top: 0.55rem;
}

.footer-nav a {
    color: var(--muted);
    transition: color 160ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus {
    color: var(--text);
}

@media (min-width: 1200px) {
    .navbar-collapse {
        margin-top: 0;
    }
}

@media (max-width: 1199.98px) {
    .product-rail-inner,
    .cta-band {
        grid-template-columns: 1fr;
    }

    .module-hero {
        grid-template-columns: 1fr;
    }

    .product-rail-inner {
        display: grid;
    }

    .rail-meta {
        justify-content: flex-start;
    }
}

@media (max-width: 991.98px) {
    .app-navbar {
        width: calc(100% - 0.8rem);
        top: 0.35rem;
        margin-top: 0.35rem;
    }

    .nav-shell {
        padding: 0.75rem 0.85rem;
    }

    .nav-actions {
        margin-top: 0.85rem;
    }

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

    .hero-proof {
        gap: 0.55rem;
    }
}

@media (max-width: 767.98px) {
    .product-rail-copy {
        flex-direction: column;
        align-items: flex-start;
    }

    .module-hero-main,
    .module-hero-side {
        padding: 1.2rem;
    }

    .hero-kpi-grid {
        grid-template-columns: 1fr;
    }

    .module-actions .btn {
        width: 100%;
        min-width: 0;
    }

    .nav-actions {
        align-items: stretch;
    }

    .nav-auth-btn,
    .nav-utility {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .rail-text {
        font-size: 0.88rem;
    }

    .launch-grid {
        grid-template-columns: 1fr;
    }

    .cta-band {
        padding: 1.35rem;
    }

    .brand-copy small {
        display: none;
    }
}
