:root {
    --eh-bg: var(--background_color, #08080f);
    --eh-bg-soft: #0f1020;
    --eh-panel: rgba(255, 255, 255, 0.035);
    --eh-panel-strong: rgba(255, 255, 255, 0.065);
    --eh-border: rgba(255, 255, 255, 0.1);
    --eh-border-soft: rgba(255, 255, 255, 0.065);
    --eh-text: var(--text_color, #f5f7ff);
    --eh-muted: var(--secondary_text_color, #9b9ac4);
    --eh-blue: var(--primary_color, #06b6d4);
    --eh-cyan: var(--primary_color, #06b6d4);
    --eh-mint: #2de2a1;
    --eh-rose: #ff5fa2;
    --eh-violet: var(--secondary_color, #8b5cf6);
    --eh-indigo: #6366f1;
    --eh-amber: #ffcc66;
    --eh-gradient-text: linear-gradient(135deg, var(--primary_color, #06b6d4) 0%, var(--secondary_color, #8b5cf6) 100%);
    --eh-gradient-action: linear-gradient(135deg, #6366f1 0%, var(--secondary_color, #8b5cf6) 100%);
    --eh-glow-purple: 0 0 20px rgba(139, 92, 246, 0.15);
    --eh-glow-purple-strong: 0 18px 56px rgba(99, 102, 241, 0.18), 0 0 28px rgba(139, 92, 246, 0.14);
    --eh-font-head: "Syne", sans-serif;
    --eh-font-body: "DM Sans", sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 50% 4%, rgba(139, 92, 246, 0.24), transparent 30rem),
        radial-gradient(circle at 82% 26%, rgba(6, 182, 212, 0.14), transparent 24rem),
        radial-gradient(circle at 16% 42%, rgba(99, 102, 241, 0.11), transparent 25rem),
        linear-gradient(180deg, rgba(14, 10, 37, 0.65) 0%, rgba(8, 8, 15, 0.05) 36%, rgba(8, 8, 15, 0) 100%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 86px),
        var(--eh-bg);
    color: var(--eh-text);
    font-family: var(--eh-font-body);
    letter-spacing: 0;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 0 38%, rgba(6, 182, 212, 0.045) 38% 39%, transparent 39% 100%),
        linear-gradient(245deg, transparent 0 56%, rgba(139, 92, 246, 0.05) 56% 57%, transparent 57% 100%);
}

a {
    color: inherit;
}

.container {
    max-width: 1180px;
}

.preloader {
    background: var(--eh-bg);
}

.neon-hero {
    position: relative;
    min-height: 920px;
    padding: 0 0 88px;
    isolation: isolate;
    overflow: hidden;
}

.neon-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 50% 18%, rgba(129, 108, 255, 0.34), transparent 24rem),
        radial-gradient(circle at 74% 18%, rgba(49, 199, 255, 0.18), transparent 21rem),
        radial-gradient(circle at 30% 30%, rgba(255, 95, 162, 0.1), transparent 23rem),
        linear-gradient(180deg, rgba(10, 10, 22, 0.18), var(--eh-bg) 84%),
        conic-gradient(from 210deg at 50% 16%, rgba(49, 199, 255, 0.24), rgba(141, 122, 255, 0.28), rgba(255, 95, 162, 0.14), rgba(45, 226, 161, 0.07), rgba(49, 199, 255, 0.24));
    opacity: 0.9;
}

.neon-hero::before,
.neon-hero::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.neon-hero::before {
    top: -160px;
    left: 50%;
    width: 860px;
    height: 560px;
    transform: translateX(-50%);
    background:
        radial-gradient(circle at 50% 40%, rgba(118, 99, 255, 0.26), transparent 52%),
        radial-gradient(circle at 76% 50%, rgba(49, 199, 255, 0.16), transparent 46%),
        radial-gradient(circle at 24% 54%, rgba(255, 95, 162, 0.11), transparent 42%);
    opacity: 0.85;
}

.neon-hero::after {
    inset: 0;
    background:
        linear-gradient(118deg, transparent 0 37%, rgba(49, 199, 255, 0.055) 37% 38.2%, transparent 38.2% 100%),
        linear-gradient(248deg, transparent 0 58%, rgba(139, 92, 246, 0.06) 58% 59.2%, transparent 59.2% 100%);
    opacity: 0.82;
}

.neon-hero > *:not(.neon-backdrop) {
    position: relative;
    z-index: 1;
}

.header,
.neon-hero .nav {
    background: transparent !important;
}

.nav {
    position: relative;
    z-index: 20;
    padding: 18px 0;
}

.nav-inner {
    min-height: 54px;
    padding: 0 6px;
}

.logo img {
    max-height: 42px;
    width: auto;
}

.logo .dark-logo {
    display: none !important;
}

.logo .white-logo {
    display: block !important;
}

.nav-menu {
    color: var(--eh-text);
}

.nav-actions,
.nav-links {
    gap: 12px;
}

.nav-link,
.nav-drop-btn {
    color: var(--eh-muted) !important;
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 0.92rem;
    font-weight: 700;
    transition: background 160ms ease, color 160ms ease;
}

.nav-link:hover,
.nav-drop-btn:hover {
    color: var(--eh-text) !important;
    background: rgba(255, 255, 255, 0.065);
}

.nav-drop-menu,
.language-menu {
    background: rgba(8, 11, 27, 0.98) !important;
    border: 1px solid var(--eh-border) !important;
    border-radius: 8px !important;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.language-button,
.nav-menu-button,
.nav-menu-close {
    color: var(--eh-text);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--eh-border);
    border-radius: 8px;
}

.btn,
.card,
.modal-content,
.form-control,
.form-select,
.select2-container--default .select2-selection--single {
    border-radius: 8px !important;
}

.btn-primary,
.btn-secondary {
    border: 0;
    background: var(--eh-gradient-action) !important;
    color: #fff !important;
    box-shadow: 0 14px 34px rgba(99, 102, 241, 0.26);
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.btn-primary:hover,
.btn-secondary:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 18px 42px rgba(139, 92, 246, 0.34);
}

.btn-light,
.btn-outline-light {
    background: rgba(255, 255, 255, 0.055) !important;
    border: 1px solid var(--eh-border) !important;
    color: var(--eh-text) !important;
}

.btn-danger {
    background: rgba(255, 95, 162, 0.14) !important;
    border: 1px solid rgba(255, 95, 162, 0.35) !important;
    color: #ff9bc5 !important;
}

.neon-hero-content {
    max-width: 980px;
    margin: 0 auto;
    padding: 86px 18px 0;
    text-align: center;
}

.neon-hero-content *,
.cookies {
    box-sizing: border-box;
}

.neon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 8px 14px;
    color: #c9d1ff;
    background: linear-gradient(180deg, rgba(39, 30, 86, 0.42), rgba(20, 20, 46, 0.4));
    border: 1px solid rgba(139, 92, 246, 0.24);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 0 1px rgba(139, 92, 246, 0.06), 0 14px 34px rgba(17, 12, 40, 0.32);
}

.neon-badge span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--eh-mint);
    box-shadow: 0 0 0 6px rgba(45, 226, 161, 0.12);
}

.neon-title {
    max-width: 860px;
    margin: 0 auto;
    color: #f5f4ff;
    font-family: var(--eh-font-head);
    font-size: 4.95rem;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.035em;
    text-wrap: balance;
    text-shadow: 0 0 28px rgba(139, 92, 246, 0.05);
}

.neon-title strong {
    display: block;
    font-weight: 800;
    background: var(--eh-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 24px rgba(99, 102, 241, 0.22));
}

.neon-title strong span {
    display: block;
}

.neon-subtitle {
    max-width: 560px;
    margin: 24px auto 0;
    color: #a7abd1;
    font-size: 1.06rem;
    line-height: 1.78;
}

.neon-trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 26px 0 34px;
}

.neon-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cbd4ee;
    font-size: 0.86rem;
}

.neon-trust-row i {
    color: var(--eh-blue);
}

.neon-mail-panel,
.mailbox,
.feat,
.card,
.question,
.neon-mini-grid article,
.neon-terminal,
.neon-table-wrap,
.neon-copy article {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022));
    border: 1px solid rgba(139, 92, 246, 0.18);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34), var(--eh-glow-purple), inset 0 1px 0 rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.neon-mail-panel {
    width: min(100%, 680px);
    margin: 0 auto;
    padding: 24px;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(19, 21, 48, 0.88), rgba(11, 12, 29, 0.9)),
        linear-gradient(135deg, rgba(49, 199, 255, 0.05), rgba(139, 92, 246, 0.08));
    box-shadow: var(--eh-glow-purple-strong), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.neon-mail-label {
    margin-bottom: 12px;
    color: var(--eh-muted);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.neon-mail-selection {
    display: block;
}

.neon-mail-input {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 0;
    background: transparent;
    border: 0;
}

.neon-mail-input input {
    min-height: 56px;
    padding: 0 18px;
    color: var(--eh-text);
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid var(--eh-border);
    border-radius: 8px;
    font-size: 1.04rem;
    font-weight: 800;
    text-overflow: ellipsis;
}

.neon-mail-input .mail-input-copy {
    min-width: 56px;
    min-height: 56px;
    padding: 0;
    border-radius: 8px !important;
}

.neon-mail-actions {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.neon-mail-actions .mail-action {
    min-height: 44px;
    padding: 10px 8px;
    font-size: 0.82rem;
}

.neon-mail-actions .mail-action i {
    margin-right: 6px;
}

.neon-stats {
    display: flex;
    justify-content: center;
    gap: 54px;
    margin-top: 42px;
    flex-wrap: wrap;
}

.neon-stats div {
    min-width: 120px;
}

.neon-stats strong {
    display: block;
    font-family: var(--eh-font-head);
    font-size: 2rem;
    line-height: 1;
    background: var(--eh-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.neon-stats span {
    display: block;
    margin-top: 8px;
    color: var(--eh-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.section,
.neon-section {
    position: relative;
    padding: 92px 0;
    background: transparent;
}

.neon-inbox-section {
    padding-top: 24px;
}

.section-inner,
.section-header {
    text-align: center;
}

.section .section-header .section-title-sm,
.section-title-sm {
    position: relative;
    padding: 0 !important;
    background: transparent !important;
    margin-bottom: 14px !important;
    z-index: 1;
}

.section .section-header .section-title-sm::before,
.section-title-sm::before {
    display: none !important;
}

.section .section-header .section-title-sm span,
.section-title-sm span {
    display: inline-block;
    color: transparent !important;
    background: var(--eh-gradient-text) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.section .section-header .section-title,
.section-title {
    color: var(--eh-text, #f5f7ff) !important;
    font-family: var(--eh-font-head);
    font-size: clamp(1.8rem, 3.5vw, 3rem) !important;
    line-height: 1.15 !important;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    margin-bottom: 14px !important;
}

.section-text,
.lead,
.feat-text,
.card-text,
.accordion-body,
.text-muted {
    color: var(--eh-muted) !important;
}

.mailbox-container {
    align-items: stretch;
}

.mail-content {
    width: 100%;
}

.mailbox {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(20, 22, 48, 0.88), rgba(8, 9, 20, 0.96)),
        linear-gradient(135deg, rgba(49, 199, 255, 0.06), rgba(139, 92, 246, 0.08));
}

.mailbox::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(49, 199, 255, 0), rgba(49, 199, 255, 0.54), rgba(139, 92, 246, 0.62), rgba(139, 92, 246, 0));
    opacity: 0.9;
}

.mailbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mailbox > .mailbox-header:first-child {
    background:
        radial-gradient(circle at 12% 0%, rgba(49, 199, 255, 0.16), transparent 36%),
        linear-gradient(135deg, rgba(20, 26, 57, 0.98), rgba(14, 16, 39, 0.98));
}

.mailbox-header-columns {
    display: grid;
    grid-template-columns: 1fr 1.5fr 0.7fr;
    padding: 12px 22px;
    color: var(--eh-muted);
    background:
        linear-gradient(90deg, rgba(49, 199, 255, 0.08), rgba(99, 102, 241, 0.13) 45%, rgba(139, 92, 246, 0.18) 100%),
        rgba(14, 16, 34, 0.96);
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mailbox-header-item p {
    margin: 0;
    color: rgba(225, 229, 255, 0.76);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.neon-inbox-title,
.neon-inbox-refresh {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--eh-text);
    font-weight: 800;
}

.neon-inbox-title {
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.neon-inbox-title i {
    color: var(--eh-violet);
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.44));
}

.neon-inbox-refresh {
    color: #adb3dd;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.neon-inbox-refresh i {
    color: var(--eh-mint);
    font-size: 0.5rem;
    text-shadow: 0 0 10px rgba(45, 226, 161, 0.6);
}

.mailbox .mailbox-body,
.mailbox-body {
    min-height: 320px;
    padding: 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.08), transparent 38%),
        linear-gradient(180deg, rgba(9, 10, 22, 0.94), rgba(6, 8, 18, 0.98));
}

.mailbox.empty .mailbox-body {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    text-align: center;
}

.mailbox.empty .mailbox-body .mailbox-item {
    display: none;
}

.mailbox .mailbox-body .empty,
.mailbox.empty .mailbox-body .empty,
.mailbox-body > .empty {
    display: none;
    width: 100%;
    min-height: 430px;
    padding: 64px 24px;
}

.mailbox.empty .mailbox-body .neon-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background:
        radial-gradient(circle at 50% 28%, rgba(99, 102, 241, 0.12), transparent 18rem),
        linear-gradient(180deg, rgba(10, 11, 24, 0.92), rgba(6, 8, 18, 0.98));
}

.mailbox.empty .mailbox-body .neon-empty-state .empty-icon {
    display: grid;
    place-items: center;
    width: 136px;
    height: 136px;
    border-radius: 999px;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(139, 92, 246, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 28px rgba(139, 92, 246, 0.1);
}

.mailbox.empty .mailbox-body .neon-empty-state svg {
    width: 96px;
    height: auto;
}

.mailbox.empty .mailbox-body .neon-empty-state .empty-icon path:not(.emptyInboxRotation) {
    fill: rgba(223, 229, 255, 0.88);
}

.mailbox.empty .mailbox-body .neon-empty-state .empty-icon .emptyInboxRotation {
    stroke: rgba(191, 198, 255, 0.8);
    fill: rgba(191, 198, 255, 0.8);
}

.neon-empty-copy {
    max-width: 320px;
}

.mailbox-body h2,
.neon-empty-copy h2 {
    color: var(--eh-text);
    font-family: var(--eh-font-head);
    font-size: 1.45rem;
    letter-spacing: -0.02em;
}

.neon-empty-copy p {
    color: #9ea5cd !important;
    font-size: 0.96rem;
}

#mailbox {
    display: grid;
    background: transparent;
}

.mailbox .mailbox-body .mailbox-item,
.mailbox-item {
    display: grid;
    grid-template-columns: 1fr 1.5fr 0.75fr;
    gap: 16px;
    align-items: center;
    padding: 16px 22px;
    color: var(--eh-text);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    transition: background 160ms ease, border-color 160ms ease;
}

.mailbox .mailbox-body .mailbox-item:nth-child(even),
.mailbox-item:nth-child(even) {
    background: rgba(255, 255, 255, 0.038);
}

.mailbox .mailbox-body .mailbox-item:hover,
.mailbox-item:hover {
    background: linear-gradient(90deg, rgba(49, 199, 255, 0.08), rgba(139, 92, 246, 0.08));
    border-color: rgba(139, 92, 246, 0.18);
}

.mailbox-item a {
    color: inherit;
    text-decoration: none;
}

.mailbox .mailbox-body .mailbox-item .mailbox-item-col,
.mailbox-item .mailbox-item-col {
    padding: 0;
}

.mailbox-item p,
.mailbox .mailbox-body .mailbox-item .mailbox-item-col p {
    margin: 0;
    color: #e7ebff;
}

.mailbox-item .mailbox-item-col:first-child p {
    font-weight: 700;
}

.mailbox-item .mailbox-item-col:nth-child(2) p {
    color: #b9c0e8;
}

.is_seen_message {
    justify-self: end;
    grid-column: 1 / -1;
    color: var(--eh-mint);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.neon-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 42px;
}

.neon-mini-grid article,
.feat {
    min-height: 210px;
    padding: 26px;
    border-radius: 8px;
    text-align: left;
    transition: border-color 180ms ease, transform 180ms ease;
}

.neon-mini-grid article:hover,
.feat:hover,
.card:hover {
    border-color: rgba(139, 92, 246, 0.42);
    transform: translateY(-2px);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.36), 0 0 28px rgba(139, 92, 246, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.neon-mini-grid i,
.feat-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #f7f5ff;
    background: var(--eh-gradient-action);
    border: 1px solid rgba(139, 92, 246, 0.34);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.16);
    border-radius: 8px;
}

.neon-mini-grid h3,
.feat-title,
.card-title {
    color: var(--eh-text);
    font-family: var(--eh-font-head);
    font-size: 1.05rem;
    line-height: 1.25;
}

.neon-mini-grid p,
.feat-text {
    color: var(--eh-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.neon-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    gap: 56px;
    align-items: center;
    text-align: left;
}

.neon-steps {
    display: grid;
    gap: 18px;
    margin-top: 32px;
}

.neon-steps div {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.neon-steps strong {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    color: #02111c;
    background: var(--eh-gradient-action);
    border-radius: 8px;
    font-family: var(--eh-font-head);
}

.neon-steps span {
    color: #c8d1ea;
    line-height: 1.6;
}

.neon-terminal {
    padding: 22px;
    border-radius: 8px;
}

.neon-terminal-bar {
    display: flex;
    gap: 7px;
    margin-bottom: 18px;
}

.neon-terminal-bar span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--eh-rose);
}

.neon-terminal-bar span:nth-child(2) {
    background: var(--eh-amber);
}

.neon-terminal-bar span:nth-child(3) {
    background: var(--eh-mint);
}

.neon-terminal-row {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
    padding: 12px;
    color: var(--eh-muted);
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--eh-border-soft);
    border-radius: 8px;
}

.neon-terminal-row i {
    color: var(--eh-violet);
}

.neon-terminal-row b {
    color: var(--eh-mint);
    font-size: 0.75rem;
}

.neon-terminal-row.is-active {
    color: var(--eh-text);
    border-color: rgba(45, 226, 161, 0.3);
}

.accordion-item,
.accordion-button {
    background: transparent !important;
    color: var(--eh-text) !important;
    border-color: rgba(139, 92, 246, 0.16) !important;
}

.accordion-item {
    border-radius: 0 !important;
    border-left: 3px solid transparent !important;
    transition: border-color 160ms ease, background 160ms ease;
}

.accordion-item:has(.accordion-collapse.show) {
    border-left-color: var(--eh-violet) !important;
    background: rgba(139, 92, 246, 0.055) !important;
}

.accordion-button {
    padding: 20px 0;
    box-shadow: none !important;
}

.accordion-button-icon {
    color: var(--eh-violet);
}

.card {
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    border-radius: 8px;
}

.card img {
    height: 210px;
    object-fit: cover;
}

.card-body {
    padding: 22px;
}

.question {
    padding: 44px;
    border-radius: 8px;
}

.question h2 {
    color: var(--eh-text);
    font-family: var(--eh-font-head);
}

.neon-table-wrap {
    margin-top: 42px;
    overflow-x: auto;
    border-radius: 8px;
}

.neon-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
}

.neon-table th,
.neon-table td {
    padding: 16px 18px;
    color: var(--eh-muted);
    border-bottom: 1px solid var(--eh-border-soft);
}

.neon-table th {
    color: var(--eh-text);
    font-family: var(--eh-font-head);
}

.neon-table tr:last-child td {
    border-bottom: 0;
}

.neon-table .yes {
    color: var(--eh-cyan);
    font-weight: 900;
}

.neon-table .partial {
    color: var(--eh-amber);
    font-weight: 800;
}

.neon-table .no {
    color: #687088;
}

.neon-copy article {
    max-width: 880px;
    margin: 0 auto;
    padding: 44px;
    border-radius: 8px;
}

.neon-copy h2 {
    margin-top: 30px;
    color: var(--eh-text);
    font-family: var(--eh-font-head);
}

.neon-copy h2:first-child {
    margin-top: 0;
}

.neon-copy p {
    color: var(--eh-muted);
    line-height: 1.85;
}

.footer {
    color: var(--eh-muted);
    background: rgba(2, 4, 12, 0.68);
    border-top: 1px solid var(--eh-border-soft);
}

.footer-upper,
.footer-lower {
    border: 0;
}

.footer .logo img {
    max-height: 38px;
}

.footer-links {
    gap: 18px;
}

.footer-links a {
    color: var(--eh-muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--eh-text);
}

.cookies {
    width: min(calc(100vw - 32px), 380px);
    background: rgba(8, 11, 27, 0.96);
    border: 1px solid var(--eh-border);
    color: var(--eh-text);
}

.go-up {
    background: linear-gradient(135deg, var(--eh-violet), var(--eh-blue));
}

.modal-content {
    color: var(--eh-text);
    background:
        linear-gradient(180deg, rgba(19, 24, 50, 0.98), rgba(7, 10, 25, 0.98));
    border: 1px solid var(--eh-border);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.55);
}

.modal-header,
.modal-body {
    border-color: var(--eh-border-soft);
}

.btn-close {
    filter: invert(1) grayscale(1);
    opacity: 0.75;
}

.form-control,
.form-select,
.select2-container--default .select2-selection--single {
    min-height: 48px;
    color: var(--eh-text) !important;
    background: rgba(255, 255, 255, 0.055) !important;
    border: 1px solid var(--eh-border) !important;
}

.select2-dropdown {
    color: var(--eh-text);
    background: #080b1b;
    border: 1px solid var(--eh-border);
}

#qrcode {
    display: inline-flex;
    padding: 14px;
    background: #fff;
    border-radius: 8px;
}

@media (max-width: 991px) {
    .neon-hero {
        min-height: auto;
    }

    .neon-title {
        font-size: 3.6rem;
    }

    .section-title {
        font-size: 2.55rem;
    }

    .nav-menu {
        background: rgba(5, 7, 19, 0.76);
    }

    .nav-menu-body {
        background: #080b1b;
        border-left: 1px solid var(--eh-border);
    }

    .neon-mail-actions {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .neon-split {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .mailbox-header-columns,
    .mailbox-item {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .neon-hero::before {
        top: -70px;
        width: 520px;
        height: 360px;
    }

    .neon-hero-content {
        width: 100%;
        max-width: 100vw;
        padding-top: 36px;
        padding-right: 18px;
        padding-left: 18px;
    }

    .neon-title {
        max-width: 250px;
        font-size: 1.8rem;
        line-height: 1.02;
        overflow-wrap: break-word;
        letter-spacing: -0.03em;
    }

    .section-title {
        font-size: 2rem;
    }

    .neon-subtitle {
        max-width: 250px;
        font-size: 0.98rem;
        overflow-wrap: break-word;
        text-wrap: balance;
    }

    .neon-trust-row {
        max-width: 320px;
        margin-inline: auto;
    }

    .neon-mail-panel {
        width: 100%;
        max-width: calc(100vw - 36px);
        padding: 16px;
    }

    .neon-mail-input {
        grid-template-columns: 1fr;
    }

    .neon-mail-input .mail-input-copy {
        width: 100%;
    }

    .neon-mail-actions,
    .neon-mini-grid {
        grid-template-columns: 1fr;
    }

    .neon-stats {
        gap: 22px;
        justify-content: space-between;
        max-width: 320px;
        margin-inline: auto;
    }

    .neon-stats div {
        min-width: 0;
        width: calc(50% - 11px);
    }

    .neon-stats div:last-child {
        width: 100%;
    }

    .section,
    .neon-section {
        padding: 64px 0;
    }

    .mailbox-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .mailbox-header-columns {
        display: none !important;
    }

    .mailbox.empty .mailbox-body .neon-empty-state {
        min-height: 320px;
        padding: 48px 18px;
    }

    .question,
    .neon-copy article {
        padding: 26px;
    }

    .cookies,
    .cookies.show {
        left: 16px !important;
        right: 16px;
        bottom: 16px;
        width: calc(100vw - 32px);
        max-width: none;
        padding: 24px;
        border-radius: 12px;
    }
}

/* OG rebuild overrides */
body {
    background: var(--eh-bg-base) !important;
    color: var(--eh-color-text-main);
    font-family: var(--eh-font-body);
}

body::before {
    background:
        linear-gradient(118deg, transparent 0 41%, rgba(49, 195, 231, 0.032) 41% 42%, transparent 42% 100%),
        linear-gradient(244deg, transparent 0 56%, rgba(122, 92, 255, 0.038) 56% 57%, transparent 57% 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
}

.container {
    max-width: min(var(--eh-max-width-wide), calc(100% - 48px));
}

.neon-hero {
    min-height: auto;
    padding: 0 0 var(--eh-space-5xl);
}

.neon-backdrop {
    background:
        var(--eh-bg-hero),
        linear-gradient(180deg, rgba(6, 7, 19, 0.24), rgba(6, 8, 18, 0.94) 82%);
    opacity: 1;
}

.nav {
    padding: 18px 0;
    transition: background var(--eh-ease-soft), border-color var(--eh-ease-soft), box-shadow var(--eh-ease-soft), padding var(--eh-ease-soft);
}

.nav.nav-sticky {
    background: rgba(7, 9, 20, 0.76) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--eh-border-subtle);
    box-shadow: var(--eh-shadow-nav);
    padding: 14px 0;
}

.nav-inner {
    min-height: 64px;
    gap: 18px;
}

.logo img {
    max-height: 44px;
}

.nav-actions {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link,
.nav-drop-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    color: var(--eh-color-text-dim) !important;
    font-size: 0.98rem;
    font-weight: 500;
    background: transparent !important;
    border: 0;
}

.nav-link:hover,
.nav-drop-btn:hover {
    color: var(--eh-color-text-main) !important;
}

.nav-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--eh-color-text-muted);
}

.nav-cta-group {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
}

.language-button,
.nav-cta-primary,
.nav-cta-ghost {
    min-height: 46px;
    padding: 11px 18px !important;
    border-radius: 14px !important;
    font-weight: 700;
}

.language-button {
    gap: 8px;
    color: var(--eh-color-text-main);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--eh-border-soft);
}

.language-button:hover,
.language-button:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--eh-border-medium);
}

.nav-cta-primary.btn-secondary {
    background: linear-gradient(135deg, var(--eh-color-accent-violet) 0%, rgba(124, 92, 252, 0.92) 55%, rgba(157, 140, 255, 0.9) 100%) !important;
    box-shadow: 0 10px 28px rgba(122, 92, 255, 0.24);
}

.nav-cta-ghost.btn-outline-light {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--eh-border-soft) !important;
}

.nav-menu {
    background: transparent;
}

.nav-menu-body {
    display: flex;
    align-items: center;
    width: 100%;
}

.nav-drop-menu,
.language-menu {
    padding: 10px;
    border-radius: 18px !important;
    border: 1px solid var(--eh-border-soft) !important;
    background: rgba(11, 13, 28, 0.96) !important;
    box-shadow: var(--eh-shadow-modal);
}

.language-menu a,
.nav-drop-menu .nav-link {
    border-radius: 12px;
    padding: 10px 12px !important;
}

.language-menu a:hover,
.nav-drop-menu .nav-link:hover {
    background: rgba(255, 255, 255, 0.045);
}

.neon-hero-content {
    position: relative;
    max-width: 980px;
    padding: calc(var(--eh-space-5xl) + 30px) 0 0;
}

.neon-hero-ambient {
    position: absolute;
    inset: -140px -160px auto;
    height: 640px;
    z-index: 0;
    pointer-events: none;
}

.ambient-orb,
.ambient-beam {
    position: absolute;
    pointer-events: none;
}

.ambient-orb {
    border-radius: 50%;
    filter: blur(var(--eh-blur-lightfield));
    opacity: 0.75;
}

.ambient-orb-one {
    top: 0;
    left: 18%;
    width: 420px;
    height: 420px;
    background: rgba(122, 92, 255, 0.32);
}

.ambient-orb-two {
    top: 36px;
    right: 10%;
    width: 360px;
    height: 360px;
    background: rgba(49, 195, 231, 0.18);
}

.ambient-beam {
    top: -20px;
    bottom: -260px;
    width: 66px;
    border-radius: 999px;
    transform: rotate(24deg);
    background: linear-gradient(180deg, rgba(49, 195, 231, 0.06), rgba(49, 195, 231, 0.01));
    filter: blur(2px);
    opacity: 0.55;
}

.ambient-beam-one {
    left: 23%;
}

.ambient-beam-two {
    right: 24%;
    transform: rotate(-25deg);
    background: linear-gradient(180deg, rgba(122, 92, 255, 0.07), rgba(122, 92, 255, 0.01));
}

.neon-hero-content > *:not(.neon-hero-ambient) {
    position: relative;
    z-index: 1;
}

.neon-badge {
    margin-bottom: 30px;
    padding: 12px 18px;
    color: var(--eh-color-text-main);
    background: rgba(17, 21, 40, 0.62);
    border: 1px solid rgba(122, 92, 255, 0.16);
    border-radius: var(--eh-radius-pill);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.neon-badge span {
    box-shadow: 0 0 0 7px rgba(51, 213, 161, 0.09);
}

.neon-title {
    max-width: 1160px;
    color: var(--eh-color-text-strong);
    font-family: var(--eh-font-display);
    font-size: clamp(4.15rem, 8vw, 6.55rem);
    line-height: 0.93;
    letter-spacing: var(--eh-tracking-tight);
    text-shadow: none;
}

.neon-title strong {
    background: linear-gradient(135deg, var(--eh-color-accent-violet) 0%, var(--eh-color-accent-blue) 48%, var(--eh-color-accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: none;
}

.neon-title > span,
.neon-title strong span {
    display: block;
}

.neon-subtitle {
    max-width: 760px;
    margin-top: 30px;
    color: var(--eh-color-text-soft);
    font-size: 1.08rem;
    line-height: var(--eh-leading-copy);
}

.neon-trust-row {
    gap: 24px;
    margin: 28px 0 42px;
}

.neon-trust-row span {
    color: var(--eh-color-text-main);
}

.neon-trust-row i {
    color: var(--eh-color-accent-cyan);
}

.neon-mail-stage {
    max-width: 820px;
    margin: 0 auto;
}

.neon-mail-panel {
    width: 100%;
    padding: 28px;
    border-radius: var(--eh-radius-xl);
    background:
        linear-gradient(180deg, rgba(20, 23, 43, 0.9), rgba(12, 14, 28, 0.94)),
        rgba(18, 21, 38, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: var(--eh-shadow-panel), 0 0 50px rgba(122, 92, 255, 0.12);
    backdrop-filter: blur(var(--eh-blur-md));
    -webkit-backdrop-filter: blur(var(--eh-blur-md));
}

.neon-mail-label {
    margin-bottom: 14px;
    color: var(--eh-color-text-dim);
    font-size: 0.8rem;
    letter-spacing: var(--eh-tracking-label);
}

.neon-mail-selection {
    display: grid;
    gap: 16px;
}

.neon-mail-input {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    padding: 0;
}

.neon-mail-input input {
    min-height: 74px;
    padding: 0 20px;
    color: var(--eh-color-text-strong);
    font-size: 2rem;
    font-weight: 700;
    background: rgba(39, 41, 66, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--eh-radius-lg) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.neon-mail-input input::placeholder {
    color: var(--eh-color-text-dim);
}

.neon-mail-input .mail-input-copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 152px;
    padding-inline: 22px;
    border-radius: var(--eh-radius-lg) !important;
}

.neon-mail-input .mail-input-copy span {
    display: inline;
}

.neon-mail-actions {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.mail-action {
    min-height: 58px;
    justify-content: center;
    padding: 0 16px !important;
    color: var(--eh-color-text-main) !important;
    background: rgba(255, 255, 255, 0.025) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    box-shadow: none !important;
}

.mail-action:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

.mail-action-text {
    font-weight: 700;
}

.neon-stats {
    gap: 72px;
    margin-top: 44px;
}

.neon-stats div {
    min-width: 140px;
}

.neon-stats strong {
    font-family: var(--eh-font-display);
    font-size: 2.25rem;
    letter-spacing: var(--eh-tracking-display);
    background: linear-gradient(135deg, var(--eh-color-accent-violet) 0%, var(--eh-color-accent-blue) 44%, var(--eh-color-accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.neon-stats span {
    color: var(--eh-color-text-dim);
    text-transform: none;
}

.neon-inbox-section {
    padding-top: var(--eh-space-4xl);
}

.neon-inbox-wrap {
    position: relative;
}

.neon-inbox-header {
    max-width: 760px;
    margin: 0 auto 34px;
}

.mailbox-container {
    align-items: stretch;
    justify-content: center;
}

.mail-content {
    width: 100%;
    max-width: 1000px;
}

.mailbox {
    border-radius: var(--eh-radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        linear-gradient(180deg, rgba(18, 20, 36, 0.94), rgba(10, 11, 22, 0.97)),
        rgba(10, 12, 24, 0.94);
    box-shadow: var(--eh-shadow-panel);
}

.mailbox::before {
    display: none;
}

.mailbox > .mailbox-header:first-child {
    background: transparent;
}

.mailbox-header {
    padding: 20px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.neon-inbox-title,
.neon-inbox-refresh {
    color: var(--eh-color-text-main);
    letter-spacing: var(--eh-tracking-label);
}

.neon-inbox-title i {
    color: var(--eh-color-accent-violet-soft);
    filter: none;
}

.neon-inbox-refresh {
    color: var(--eh-color-text-soft);
}

.neon-inbox-refresh i {
    color: var(--eh-color-accent-mint);
    animation: eh-pulse-dot 2.2s infinite;
}

.mailbox .mailbox-header.mailbox-header-columns,
.mailbox-header-columns {
    padding: 18px 26px;
    background:
        linear-gradient(90deg, rgba(49, 195, 231, 0.04), rgba(122, 92, 255, 0.05)),
        rgba(255, 255, 255, 0.012) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.mailbox-header-item p {
    color: var(--eh-color-text-dim);
    font-size: 0.75rem;
    letter-spacing: var(--eh-tracking-label);
    text-transform: uppercase;
}

.mailbox .mailbox-body,
.mailbox-body {
    min-height: 490px;
    background:
        radial-gradient(circle at 50% 12%, rgba(122, 92, 255, 0.07), transparent 0 16rem),
        rgba(10, 12, 23, 0.98);
}

.mailbox.empty .mailbox-body .neon-empty-state {
    min-height: 490px;
    gap: 20px;
    background: transparent;
}

.mailbox.empty .mailbox-body .neon-empty-state .empty-icon {
    width: 84px;
    height: 84px;
    background: rgba(122, 92, 255, 0.08);
    border: 1px solid rgba(122, 92, 255, 0.14);
    border-radius: 18px;
    box-shadow: none;
}

.mailbox.empty .mailbox-body .neon-empty-state svg {
    width: 46px;
}

.mailbox.empty .mailbox-body .neon-empty-state .empty-icon path:not(.emptyInboxRotation) {
    fill: rgba(180, 168, 255, 0.88);
}

.mailbox.empty .mailbox-body .neon-empty-state .empty-icon .emptyInboxRotation {
    stroke: rgba(180, 168, 255, 0.78);
    fill: rgba(180, 168, 255, 0.78);
}

.neon-empty-copy h2 {
    font-family: var(--eh-font-display);
    color: var(--eh-color-text-strong);
}

.neon-empty-copy p {
    color: var(--eh-color-text-soft) !important;
}

.mailbox .mailbox-body .mailbox-item,
.mailbox-item {
    padding: 20px 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
}

.mailbox .mailbox-body .mailbox-item:nth-child(even),
.mailbox-item:nth-child(even) {
    background: rgba(255, 255, 255, 0.018);
}

.mailbox .mailbox-body .mailbox-item:hover,
.mailbox-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.mailbox-item .mailbox-item-col:first-child p:first-child {
    font-weight: 700;
    color: var(--eh-color-text-main);
}

.mailbox-item .mailbox-item-col p.small,
.mailbox-item .mailbox-item-col time,
.mailbox-item .mailbox-item-col:nth-child(2) p,
.mailbox-item .mailbox-item-col:nth-child(2) a {
    color: var(--eh-color-text-soft) !important;
}

.mailbox-custom-link .link-primary {
    color: var(--eh-color-text-main) !important;
}

.is_seen_message {
    color: var(--eh-color-accent-mint);
}

.section,
.neon-section {
    position: relative;
    padding: var(--eh-space-5xl) 0;
}

.section::before,
.neon-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: transparent;
    pointer-events: none;
}

.section > .container,
.neon-section > .container {
    position: relative;
    z-index: 1;
}

.section-header {
    max-width: 860px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-title-sm {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

/* Removed conflicting .section-title-sm span overrides to restore OG gradient text */

.section-title {
    color: transparent;
    font-family: var(--eh-font-display);
    font-size: clamp(2.7rem, 6vw, 4.2rem);
    line-height: 0.97;
    letter-spacing: var(--eh-tracking-display);
    text-wrap: balance;
    background: linear-gradient(180deg, rgba(245, 243, 255, 0.99) 0%, rgba(232, 226, 255, 0.96) 58%, rgba(175, 167, 224, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 18px 48px rgba(122, 92, 255, 0.07);
}

.section-text {
    max-width: 760px;
    margin-inline: auto;
    color: var(--eh-color-text-soft);
    line-height: var(--eh-leading-copy);
}

.neon-section::before {
    background:
        radial-gradient(circle at 50% 0%, rgba(122, 92, 255, 0.08), transparent 0 22rem),
        radial-gradient(circle at 78% 18%, rgba(49, 195, 231, 0.06), transparent 0 20rem);
}

/* Removed section-specific title color drift to maintain consistent white/lavender treatment */

.neon-mini-grid {
    gap: 22px;
}

.neon-mini-grid article,
.feat,
.card,
.question,
.neon-terminal,
.neon-table-wrap,
.neon-copy article,
.accordion-item {
    position: relative;
    overflow: hidden;
    background: var(--eh-card-surface);
    border: 1px solid rgba(255, 255, 255, 0.065);
    border-radius: var(--eh-radius-xl);
    box-shadow: var(--eh-shadow-card);
    backdrop-filter: blur(var(--eh-blur-sm));
    -webkit-backdrop-filter: blur(var(--eh-blur-sm));
}

.neon-mini-grid article::before,
.feat::before,
.card::before,
.question::before,
.neon-terminal::before,
.neon-table-wrap::before,
.neon-copy article::before,
.accordion-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 10%, rgba(122, 92, 255, 0.11), transparent 0 11rem),
        radial-gradient(circle at 88% 24%, rgba(49, 195, 231, 0.08), transparent 0 12rem);
    opacity: 0.62;
    pointer-events: none;
    transition: opacity var(--eh-ease-soft);
}

.neon-mini-grid article,
.feat {
    min-height: 0;
    padding: 28px;
    transition: transform var(--eh-ease-float), border-color var(--eh-ease-soft), box-shadow var(--eh-ease-soft), background var(--eh-ease-soft);
}

.neon-mini-grid article:hover,
.feat:hover {
    transform: translateY(-5px);
    border-color: rgba(122, 92, 255, 0.18);
    box-shadow: var(--eh-shadow-card-hover), 0 0 42px rgba(122, 92, 255, 0.08);
}

.neon-mini-grid article:hover::before,
.feat:hover::before,
.card:hover::before,
.question:hover::before,
.neon-terminal:hover::before,
.neon-table-wrap:hover::before {
    opacity: 0.94;
}

.neon-mini-grid article i,
.feat .feat-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    color: var(--eh-color-text-strong);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
        linear-gradient(135deg, rgba(122, 92, 255, 0.18), rgba(49, 195, 231, 0.12));
    border: 1px solid rgba(122, 92, 255, 0.16);
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 24px rgba(122, 92, 255, 0.07);
}

.neon-mini-grid article h3,
.feat-title,
.card-title {
    position: relative;
    z-index: 1;
    color: var(--eh-color-text-strong);
    font-family: var(--eh-font-display);
    font-size: 1.35rem;
    letter-spacing: -0.03em;
}

.neon-mini-grid article p,
.feat-text,
.card-text,
.accordion-body,
.neon-copy p {
    position: relative;
    z-index: 1;
    color: var(--eh-color-text-soft);
}

.neon-process .neon-split {
    align-items: center;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 34px;
}

.neon-process .section-title-sm {
    justify-content: flex-start;
    margin-bottom: 18px;
}

.neon-process .section-title {
    max-width: 430px;
    text-align: left;
    font-size: clamp(3.05rem, 5.3vw, 4.65rem);
    line-height: 0.9;
}

.neon-process .section-title span {
    display: block;
}

.neon-process .section-text {
    margin-inline: 0;
    text-align: left;
    max-width: 540px;
    font-size: 1.02rem;
}

.neon-steps {
    display: grid;
    gap: 26px;
    margin-top: 34px;
}

.neon-step-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: start;
}

.neon-step-item strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--eh-color-text-strong);
    background: linear-gradient(135deg, rgba(124, 92, 252, 0.96) 0%, rgba(34, 211, 238, 0.92) 100%);
    border-radius: 12px;
    font-size: 0.92rem;
    box-shadow: 0 12px 28px rgba(34, 211, 238, 0.12);
}

.neon-step-item h3 {
    margin: 0 0 8px;
    color: #f3f1ff;
    font-family: var(--eh-font-display);
    font-size: 1.08rem;
    letter-spacing: -0.025em;
}

.neon-step-item p {
    margin: 0;
    color: var(--eh-color-text-soft);
    line-height: 1.72;
}

.neon-process-demo {
    max-width: 720px;
    margin-left: -6px;
    padding: 26px 26px 24px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 76% 14%, rgba(124, 92, 252, 0.08), transparent 0 10rem),
        linear-gradient(180deg, rgba(24, 27, 48, 0.98), rgba(13, 15, 29, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.075);
    box-shadow:
        0 28px 72px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.neon-terminal-bar {
    margin-bottom: 20px;
}

.neon-terminal-address {
    padding: 15px 18px;
    margin-bottom: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.022);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.neon-terminal-address label {
    display: block;
    margin-bottom: 8px;
    color: #9f98ca;
    font-size: 0.86rem;
}

.neon-terminal-address-value {
    color: #34d4ff;
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.neon-terminal-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.055);
    background: rgba(255, 255, 255, 0.022);
    transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.neon-terminal-row + .neon-terminal-row {
    margin-top: 10px;
}

.neon-terminal-row:hover,
.neon-terminal-row.is-featured {
    transform: translateY(-2px);
    border-color: rgba(124, 92, 252, 0.22);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.neon-terminal-row.is-featured {
    background:
        linear-gradient(135deg, rgba(124, 92, 252, 0.12), rgba(34, 211, 238, 0.06)),
        rgba(255, 255, 255, 0.025);
}

.neon-terminal-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c5cfc 0%, #22d3ee 100%);
    box-shadow: 0 10px 24px rgba(124, 92, 252, 0.18);
}

.avatar-github {
    background: linear-gradient(135deg, #6a7dff 0%, #39d0ff 100%);
}

.avatar-figma {
    background: linear-gradient(135deg, #ff74cb 0%, #8d67ff 100%);
}

.avatar-notion {
    background: linear-gradient(135deg, #3fd6ff 0%, #33d5a1 100%);
}

.neon-terminal-copy strong {
    display: block;
    color: #f4f1ff;
    font-size: 1.02rem;
    font-weight: 700;
}

.neon-terminal-copy p {
    margin: 3px 0 0;
    color: #9f98ca;
    font-size: 0.98rem;
}

.neon-terminal-meta {
    text-align: right;
}

.neon-terminal-meta small {
    display: block;
    color: #b6afd7;
    font-size: 0.9rem;
}

.neon-terminal-meta b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 28px;
    margin-top: 7px;
    padding: 0 10px;
    color: #f4f1ff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(124, 92, 252, 0.96) 0%, rgba(34, 211, 238, 0.92) 100%);
    box-shadow: 0 10px 22px rgba(124, 92, 252, 0.16);
}

.neon-faq-section .section-body {
    max-width: 960px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: var(--eh-radius-lg) !important;
    background: var(--eh-card-surface) !important;
}

.accordion-button {
    padding: 24px 28px;
    color: var(--eh-color-text-strong);
    background: transparent !important;
    box-shadow: none !important;
}

.accordion-button span {
    font-family: var(--eh-font-display);
    font-size: 1.15rem;
    letter-spacing: -0.025em;
}

.accordion-button-icon {
    color: var(--eh-color-text-soft);
}

.accordion-collapse.show {
    background: rgba(255, 255, 255, 0.01);
}

.accordion-body {
    padding: 0 28px 24px;
    line-height: 1.75;
}

.accordion-item:has(.accordion-collapse.show) {
    border-left: 1px solid rgba(122, 92, 255, 0.42) !important;
    box-shadow: 0 0 34px rgba(122, 92, 255, 0.06);
}

.neon-posts-section .card {
    overflow: hidden;
    transition: transform var(--eh-ease-float), border-color var(--eh-ease-soft), box-shadow var(--eh-ease-soft);
}

.neon-posts-section .card:hover {
    transform: translateY(-6px);
    border-color: rgba(49, 195, 231, 0.14);
    box-shadow: var(--eh-shadow-card-hover), 0 0 44px rgba(49, 195, 231, 0.06);
}

.neon-posts-section .card img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.neon-posts-section .card-body {
    padding: 24px;
}

.neon-table-wrap {
    padding: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
        rgba(13, 16, 29, 0.88);
}

.neon-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--eh-color-text-main);
}

.neon-table thead th {
    padding: 18px 20px;
    color: var(--eh-color-text-dim);
    font-size: 0.78rem;
    letter-spacing: var(--eh-tracking-label);
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.neon-table thead th:nth-child(2),
.neon-table tbody td:nth-child(2) {
    background:
        linear-gradient(180deg, rgba(122, 92, 255, 0.08), rgba(49, 195, 231, 0.03));
}

.neon-table thead th:nth-child(2) {
    color: var(--eh-color-text-strong);
}

.neon-table tbody td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.neon-table tbody tr {
    transition: background var(--eh-ease-soft);
}

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

.neon-table tbody tr:last-child td {
    border-bottom: 0;
}

.neon-table .yes {
    color: var(--eh-color-accent-mint);
    text-shadow: 0 0 18px rgba(51, 213, 161, 0.12);
}

.neon-table .partial {
    color: var(--eh-color-accent-amber);
    text-shadow: 0 0 18px rgba(214, 165, 70, 0.1);
}

.neon-table .no {
    color: var(--eh-color-text-dim);
}

.neon-copy article {
    max-width: 980px;
    padding: 40px 42px;
    margin: 0 auto;
    background:
        var(--eh-bg-cta),
        rgba(14, 16, 31, 0.88);
}

.neon-copy h2 {
    margin-top: 0;
    margin-bottom: 14px;
    color: transparent;
    font-family: var(--eh-font-display);
    font-size: 1.65rem;
    background: linear-gradient(135deg, var(--eh-color-accent-violet-soft) 0%, var(--eh-color-accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.neon-copy p + h2 {
    margin-top: 30px;
}

.neon-copy p {
    max-width: 860px;
}

.neon-cta-section::before,
.neon-copy::before {
    background:
        radial-gradient(circle at 20% 18%, rgba(122, 92, 255, 0.12), transparent 0 20rem),
        radial-gradient(circle at 82% 38%, rgba(49, 195, 231, 0.09), transparent 0 20rem);
}

.neon-cta-section .question {
    max-width: 980px;
    margin: 0 auto;
    padding: 42px 44px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(124, 92, 252, 0.18) 0%, rgba(34, 211, 238, 0.09) 50%, rgba(244, 114, 182, 0.08) 100%),
        rgba(16, 18, 34, 0.94);
    border: 1px solid rgba(124, 92, 252, 0.22);
    box-shadow: var(--eh-shadow-panel), 0 0 58px rgba(122, 92, 255, 0.1);
}

.neon-cta-section .question > * {
    position: relative;
    z-index: 1;
}

.neon-cta-section .section-header {
    margin-bottom: 18px;
}

.neon-cta-section .section-title {
    margin-bottom: 12px;
}

.neon-cta-section .lead {
    max-width: 680px;
    margin: 0 auto;
    color: var(--eh-color-text-soft);
}

.neon-cta-section .btn-secondary.btn-lg {
    min-width: 184px;
    margin-top: 12px;
    color: var(--eh-color-text-strong);
    background: linear-gradient(135deg, var(--eh-color-accent-violet) 0%, var(--eh-color-accent-cyan) 100%);
    border: 0;
    box-shadow: 0 16px 40px rgba(49, 195, 231, 0.16), 0 10px 34px rgba(122, 92, 255, 0.18);
}

.neon-cta-section .btn-secondary.btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 48px rgba(49, 195, 231, 0.18), 0 14px 38px rgba(122, 92, 255, 0.2);
}

.neon-footer {
    position: relative;
    padding-top: 30px;
    background: transparent;
}

.footer-upper,
.footer-lower {
    border-color: rgba(255, 255, 255, 0.05);
}

.footer-links a,
.footer-lower p,
.cookies-text {
    color: var(--eh-color-text-soft);
}

.go-up {
    background: linear-gradient(135deg, var(--eh-color-accent-violet), var(--eh-color-accent-cyan));
    box-shadow: 0 12px 28px rgba(49, 195, 231, 0.2);
}

.cookies,
.cookies.show {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 14, 28, 0.94);
    box-shadow: var(--eh-shadow-modal);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.cookies h5 {
    color: var(--eh-color-text-strong);
    font-family: var(--eh-font-display);
}

.neon-reveal,
.feat,
.card,
.accordion-item,
.neon-terminal,
.mailbox,
.neon-mini-grid article {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1), transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.neon-reveal.is-visible,
.feat.is-visible,
.card.is-visible,
.accordion-item.is-visible,
.neon-terminal.is-visible,
.mailbox.is-visible,
.neon-mini-grid article.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .nav-actions {
        gap: 16px;
    }

    .nav-menu {
        background: rgba(6, 8, 18, 0.34);
    }

    .nav-menu-body {
        display: block;
        width: auto;
    }

    .nav-actions {
        width: auto;
    }

    .nav-cta-group {
        display: grid;
        justify-items: stretch;
        gap: 12px;
    }

    .nav-link,
    .nav-drop-btn {
        padding: 12px 0;
    }

    .neon-hero-content {
        padding-top: calc(var(--eh-space-5xl) + 10px);
    }

    .neon-title {
        font-size: clamp(3.5rem, 10vw, 5.1rem);
    }

    .neon-mail-actions {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .neon-process .neon-split {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .neon-process .section-title-sm {
        justify-content: center;
    }

    .neon-process .section-title,
    .neon-process .section-text {
        text-align: center;
        margin-inline: auto;
    }

    .neon-process-demo {
        margin-left: 0;
        max-width: 620px;
        margin-inline: auto;
    }
}

@media (max-width: 640px) {
    .container {
        max-width: calc(100% - 28px);
    }

    .neon-hero-content {
        padding-top: 118px;
    }

    .neon-hero-ambient {
        inset: -80px -60px auto;
        height: 460px;
    }

    .ambient-orb-one {
        left: 10%;
        width: 250px;
        height: 250px;
    }

    .ambient-orb-two {
        right: 0;
        width: 210px;
        height: 210px;
    }

    .ambient-beam {
        width: 42px;
    }

    .neon-title {
        max-width: 320px;
        font-size: 2.2rem;
        line-height: 0.95;
    }

    .neon-subtitle {
        max-width: 320px;
        font-size: 1rem;
    }

    .neon-mail-panel {
        padding: 18px;
        border-radius: 20px;
        box-sizing: border-box;
        max-width: 100%;
    }

    .neon-mail-stage {
        width: calc(100vw - 32px);
        max-width: calc(100vw - 32px);
    }

    .neon-mail-input {
        position: relative;
        display: block;
    }

    .neon-mail-input input {
        min-height: 64px;
        font-size: 1.25rem;
        width: 100%;
        padding-right: 78px;
    }

    .neon-mail-input .mail-input-copy span {
        display: none;
    }

    .neon-mail-input .mail-input-copy {
        position: absolute;
        top: 8px;
        right: 14px;
        min-width: 52px;
        width: 52px;
        min-height: 48px;
        height: calc(100% - 16px);
        padding-inline: 0;
    }

    .neon-mail-actions {
        grid-template-columns: 1fr;
    }

    .neon-stats {
        justify-content: center;
    }

    .mailbox {
        border-radius: 20px;
    }

    .mailbox .mailbox-body,
    .mailbox-body,
    .mailbox.empty .mailbox-body .neon-empty-state {
        min-height: 360px;
    }

    .section-title {
        font-size: 2.4rem;
    }
}

/* Final OG alignment pass: keep sections consistent instead of section-specific color drift. */
.section-header {
    margin-bottom: 56px;
}

.section-title-sm {
    margin-bottom: 18px;
}

/* Removed cyan pill block overrides */

.neon-badge {
    min-height: 30px;
    padding: 8px 18px;
    color: #b39de6;
    -webkit-text-fill-color: currentColor;
    background: rgba(28, 24, 58, 0.58);
    border: 1px solid rgba(124, 92, 252, 0.3);
    border-radius: 999px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 10px 28px rgba(0, 0, 0, 0.14);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
}

/* Removed solid white section title overrides to restore white/lavender gradient */

.section-text {
    max-width: 580px;
    color: #9d98c5;
    font-size: 1rem;
    line-height: 1.65;
}

.neon-inbox-section {
    padding-top: 88px;
}

.neon-inbox-header {
    max-width: 900px;
    margin-bottom: 42px;
}

.mail-content {
    max-width: 960px;
}

.mailbox {
    overflow: hidden;
    border-color: rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 12%, rgba(124, 92, 252, 0.06), transparent 0 240px),
        linear-gradient(180deg, rgba(22, 24, 42, 0.9), rgba(10, 12, 24, 0.98));
    box-shadow:
        0 26px 70px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.mailbox-header {
    min-height: 62px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.012);
    border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}

.neon-inbox-title {
    color: #f2efff;
    font-family: var(--eh-font-display);
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0;
}

.neon-inbox-title i {
    color: #a98cff;
}

.neon-inbox-refresh {
    color: #aaa6cf;
    font-size: 0.86rem;
    letter-spacing: 0;
    text-transform: none;
}

.mailbox .mailbox-header.mailbox-header-columns,
.mailbox-header-columns {
    min-height: 70px;
    padding: 0 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.008)) !important;
    box-shadow: none;
}

.mailbox-header-item p {
    color: #7f7ba6;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.mailbox .mailbox-body,
.mailbox-body {
    min-height: 430px;
    background:
        radial-gradient(circle at 50% 30%, rgba(124, 92, 252, 0.045), transparent 0 250px),
        rgba(8, 10, 20, 0.86);
}

.mailbox.empty .mailbox-body .neon-empty-state {
    min-height: 430px;
    gap: 16px;
}

.mailbox.empty .mailbox-body .neon-empty-state .empty-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(124, 92, 252, 0.14), rgba(124, 92, 252, 0.08)),
        rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(124, 92, 252, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 28px rgba(124, 92, 252, 0.1);
    animation: eh-empty-float 4.5s ease-in-out infinite;
}

.mailbox.empty .mailbox-body .neon-empty-state svg {
    width: 38px;
    opacity: 0.72;
}

.mailbox.empty .mailbox-body .neon-empty-state .emptyInboxRotation {
    display: none;
}

.mailbox.empty .mailbox-body .neon-empty-state .empty-icon path {
    fill: #b8a8ff;
}

.neon-empty-copy h2 {
    color: #f2efff;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0;
}

.neon-empty-copy p {
    color: #9d98c5 !important;
    font-size: 0.94rem;
}

.neon-mini-grid,
.neon-features-grid .row,
.neon-posts-section .row {
    row-gap: 24px;
}

.neon-mini-grid article,
.feat,
.card {
    border-color: rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    background:
        radial-gradient(circle at 24% 8%, rgba(124, 92, 252, 0.06), transparent 0 170px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018)),
        rgba(17, 20, 34, 0.86);
    box-shadow:
        0 16px 44px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transform: translateY(0);
    transition:
        transform 260ms ease,
        border-color 260ms ease,
        box-shadow 260ms ease,
        background 260ms ease;
}

.neon-mini-grid article::before,
.feat::before,
.card::before {
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(135deg, #7c5cfc 0%, #22d3ee 100%);
    opacity: 0;
}

.neon-mini-grid article:hover,
.feat:hover,
.card:hover,
.feat.is-featured {
    transform: translateY(-3px);
    border-color: rgba(124, 92, 252, 0.34);
    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.34),
        0 0 36px rgba(124, 92, 252, 0.08);
}

.neon-mini-grid article:hover::before,
.feat:hover::before,
.card:hover::before,
.feat.is-featured::before {
    opacity: 1;
}

.feat.is-featured {
    background:
        radial-gradient(circle at 24% 8%, rgba(34, 211, 238, 0.08), transparent 0 180px),
        linear-gradient(135deg, rgba(124, 92, 252, 0.12), rgba(34, 211, 238, 0.055)),
        rgba(17, 20, 34, 0.88);
}

.neon-mini-grid article i,
.feat .feat-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 22px;
    border-radius: 12px;
    color: #f2efff;
    background: rgba(124, 92, 252, 0.14);
    border-color: rgba(124, 92, 252, 0.28);
    box-shadow: none;
}

.neon-mini-grid article:nth-child(2n) i,
.neon-features-grid .col:nth-child(2n) .feat-icon,
.feat.is-featured .feat-icon {
    color: #22d3ee;
    background: rgba(34, 211, 238, 0.1);
    border-color: rgba(34, 211, 238, 0.24);
}

.neon-mini-grid article:nth-child(3n) i,
.neon-features-grid .col:nth-child(3n) .feat-icon {
    color: #f472b6;
    background: rgba(244, 114, 182, 0.1);
    border-color: rgba(244, 114, 182, 0.22);
}

.neon-mini-grid article h3,
.feat-title,
.card-title {
    color: #f2efff;
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: 0;
}

.neon-mini-grid article p,
.feat-text,
.card-text {
    color: #9d98c5;
    font-size: 0.92rem;
    line-height: 1.62;
}

.accordion-button span {
    letter-spacing: 0;
}

.neon-table-wrap {
    border-radius: 18px;
}

@keyframes eh-empty-float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@media (max-width: 991px) {
    .section-title,
    .neon-use-cases .section-title,
    .neon-comparison .section-title,
    .neon-process .section-title,
    .neon-cta-section .section-title,
    .neon-faq-section .section-title,
    .neon-posts-section .section-title,
    .neon-features-grid .section-title,
    .neon-inbox-section .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 640px) {
    .section-title,
    .neon-use-cases .section-title,
    .neon-comparison .section-title,
    .neon-process .section-title,
    .neon-cta-section .section-title,
    .neon-faq-section .section-title,
    .neon-posts-section .section-title,
    .neon-features-grid .section-title,
    .neon-inbox-section .section-title {
        font-size: 2.2rem;
        line-height: 1.08;
    }

    .section-title-sm span,
    .neon-badge {
        min-height: 30px;
        padding: 6px 12px;
    }

    .section-title-sm span {
        min-height: 38px;
        padding: 5px 18px;
        font-size: 0.66rem;
    }

    .neon-badge {
        font-size: 0.74rem;
    }

    .mailbox .mailbox-body,
    .mailbox-body,
    .mailbox.empty .mailbox-body .neon-empty-state {
        min-height: 340px;
    }
}

/* Global background and section spacing cleanup */
body {
    background:
        radial-gradient(circle at 50% 6%, rgba(92, 76, 196, 0.12), transparent 26rem),
        radial-gradient(circle at 82% 24%, rgba(34, 211, 238, 0.08), transparent 22rem),
        linear-gradient(180deg, #060611 0%, #080914 42%, #060611 100%) !important;
}

body::before {
    content: none;
    background: none !important;
}

.neon-hero::after {
    content: none;
    background: none !important;
}

.section,
.neon-section {
    padding: var(--eh-space-4xl) 0;
}

.neon-hero {
    padding-bottom: var(--eh-space-4xl);
}

.neon-inbox-section {
    padding-top: var(--eh-space-3xl);
}

.section-header {
    margin: 0 auto 32px;
}

@media (max-width: 991px) {
    .section,
    .neon-section {
        padding: 4.5rem 0;
    }

    .neon-hero {
        padding-bottom: 4.5rem;
    }

    .neon-inbox-section {
        padding-top: 3rem;
    }

    .section-header {
        margin-bottom: 28px;
    }
}

@media (max-width: 640px) {
    .section,
    .neon-section {
        padding: 3.5rem 0;
    }

    .neon-hero {
        padding-bottom: 3.5rem;
    }

    .neon-inbox-section {
        padding-top: 2.5rem;
    }

    .section-header {
        margin-bottom: 24px;
    }
}

/* Features section card polish */
.neon-features-grid .row {
    row-gap: 28px;
}

.neon-features-grid .feat.feature-card {
    padding: 30px 32px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.03), transparent 0 110px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.014)),
        rgba(16, 18, 32, 0.9);
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
    transition:
        transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 280ms ease,
        box-shadow 280ms ease,
        background 280ms ease;
}

.neon-features-grid .feat.feature-card::before {
    inset: 0 auto auto 0;
    width: 100%;
    height: 2px;
    opacity: 0;
    background: linear-gradient(135deg, rgba(124, 92, 252, 0.95) 0%, rgba(34, 211, 238, 0.95) 100%);
    transition: opacity 280ms ease;
}

.neon-features-grid .feat.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    opacity: 0;
    background:
        radial-gradient(circle at 84% 18%, rgba(34, 211, 238, 0.1), transparent 0 9rem),
        radial-gradient(circle at 14% 12%, rgba(124, 92, 252, 0.12), transparent 0 10rem);
    transition: opacity 280ms ease;
}

.neon-features-grid .feat.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 92, 252, 0.22);
    box-shadow:
        0 26px 58px rgba(0, 0, 0, 0.36),
        0 0 36px rgba(124, 92, 252, 0.08);
}

.neon-features-grid .feat.feature-card:hover::before,
.neon-features-grid .feat.feature-card:hover::after {
    opacity: 1;
}

.neon-features-grid .feat.feature-card.is-featured {
    transform: translateY(-2px);
    border-color: rgba(76, 112, 255, 0.44);
    background:
        radial-gradient(circle at 84% 18%, rgba(34, 211, 238, 0.12), transparent 0 10rem),
        radial-gradient(circle at 14% 10%, rgba(124, 92, 252, 0.14), transparent 0 10rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018)),
        linear-gradient(135deg, rgba(22, 27, 52, 0.96), rgba(11, 24, 38, 0.94));
    box-shadow:
        0 24px 66px rgba(0, 0, 0, 0.36),
        0 0 42px rgba(34, 211, 238, 0.12);
}

.neon-features-grid .feat.feature-card.is-featured::before,
.neon-features-grid .feat.feature-card.is-featured::after {
    opacity: 1;
}

.neon-features-grid .feat.feature-card.is-featured:hover {
    transform: translateY(-8px);
    border-color: rgba(34, 211, 238, 0.38);
    box-shadow:
        0 30px 72px rgba(0, 0, 0, 0.4),
        0 0 52px rgba(34, 211, 238, 0.16);
}

.neon-features-grid .feat.feature-card .feat-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    border-radius: 15px;
    color: #f3f1ff;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
        rgba(122, 92, 255, 0.16);
    border: 1px solid rgba(122, 92, 255, 0.26);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 12px 30px rgba(122, 92, 255, 0.08);
    transition:
        transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 320ms ease,
        border-color 320ms ease,
        background 320ms ease,
        color 320ms ease;
    animation: eh-feature-icon-float 6.4s ease-in-out infinite;
}

.neon-features-grid .feat.feature-card:hover .feat-icon {
    transform: translateY(-3px) scale(1.03);
}

.neon-features-grid .feat.feature-card.is-featured .feat-icon {
    color: #3fd6ff;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        rgba(34, 211, 238, 0.14);
    border-color: rgba(34, 211, 238, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 14px 32px rgba(34, 211, 238, 0.14);
    animation: eh-feature-icon-featured 4.2s ease-in-out infinite;
}

.neon-features-grid .feat.feature-card.feature-accent-violet .feat-icon {
    color: #d9ccff;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
        rgba(122, 92, 252, 0.15);
    border-color: rgba(122, 92, 252, 0.26);
}

.neon-features-grid .feat.feature-card.feature-accent-cyan .feat-icon {
    color: #3fd6ff;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
        rgba(34, 211, 238, 0.12);
    border-color: rgba(34, 211, 238, 0.25);
}

.neon-features-grid .feat.feature-card.feature-accent-rose .feat-icon {
    color: #ff7db8;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
        rgba(244, 114, 182, 0.13);
    border-color: rgba(244, 114, 182, 0.24);
}

.neon-features-grid .feat.feature-card.feature-accent-mint .feat-icon {
    color: #4ae4b2;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
        rgba(45, 226, 161, 0.12);
    border-color: rgba(45, 226, 161, 0.22);
}

.neon-features-grid .feat.feature-card.feature-accent-amber .feat-icon {
    color: #ffcf73;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
        rgba(214, 165, 70, 0.14);
    border-color: rgba(214, 165, 70, 0.26);
}

.neon-features-grid .feat.feature-card .feat-title {
    margin-bottom: 12px;
    color: #f5f1ff;
    font-size: 1.18rem;
    line-height: 1.18;
}

.neon-features-grid .feat.feature-card .feat-text {
    color: #a8a1ce;
    font-size: 0.98rem;
    line-height: 1.72;
}

@keyframes eh-feature-icon-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes eh-feature-icon-featured {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.05),
            0 14px 32px rgba(34, 211, 238, 0.14);
    }
    50% {
        transform: translateY(-3px) scale(1.04);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.05),
            0 18px 36px rgba(34, 211, 238, 0.2);
    }
}

@media (max-width: 640px) {
    .neon-features-grid .feat.feature-card {
        padding: 24px 22px;
    }

    .neon-features-grid .feat.feature-card .feat-title {
        font-size: 1.08rem;
    }

    .neon-features-grid .feat.feature-card .feat-text {
        font-size: 0.92rem;
        line-height: 1.66;
    }
}

/* Hero-only OG alignment */
.neon-hero {
    position: relative;
    overflow: visible;
    overflow-x: clip;
}

.neon-hero::before {
    content: "";
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle at 28% 22%, rgba(122, 92, 255, 0.24) 0, rgba(122, 92, 255, 0.1) 18%, transparent 42%),
        radial-gradient(circle at 78% 24%, rgba(34, 211, 238, 0.18) 0, rgba(34, 211, 238, 0.08) 16%, transparent 38%),
        linear-gradient(180deg, rgba(6, 6, 17, 0.98), rgba(6, 6, 17, 0.95));
}

.neon-hero-content {
    isolation: isolate;
    max-width: 1060px;
    padding-top: 42px;
}

.neon-hero-content::before {
    content: "";
    position: absolute;
    inset: 18px -120px auto;
    height: 520px;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle at 28% 22%, rgba(122, 92, 255, 0.24) 0, transparent 38%),
        radial-gradient(circle at 79% 24%, rgba(34, 211, 238, 0.18) 0, transparent 34%),
        linear-gradient(180deg, rgba(6, 6, 17, 0.56), rgba(6, 6, 17, 0));
}

.neon-hero-ambient {
    inset: 18px -120px auto;
    height: 520px;
}

.ambient-beam,
.ambient-beam-one,
.ambient-beam-two {
    display: none;
}

.ambient-orb {
    filter: blur(110px);
    opacity: 0.9;
}

.ambient-orb-one {
    top: 8px;
    left: 12%;
    width: 360px;
    height: 360px;
    background: rgba(122, 92, 255, 0.22);
}

.ambient-orb-two {
    top: 18px;
    right: 7%;
    width: 320px;
    height: 320px;
    background: rgba(34, 211, 238, 0.16);
}

.neon-badge {
    margin-bottom: 24px;
}

.neon-title {
    max-width: 1020px;
    font-size: clamp(3.45rem, 6.7vw, 5.35rem);
}

@media (max-width: 991px) {
    .neon-hero::before {
        top: 72px;
    }

    .neon-hero-content {
        padding-top: 34px;
    }

    .neon-hero-content::before,
    .neon-hero-ambient {
        inset: 12px -68px auto;
        height: 450px;
    }

    .neon-title {
        font-size: clamp(2.95rem, 8.3vw, 4.45rem);
    }
}

@media (max-width: 640px) {
    .neon-hero::before {
        top: 66px;
    }

    .neon-hero-content {
        padding-top: 24px;
    }

    .neon-hero-content::before,
    .neon-hero-ambient {
        inset: 8px -30px auto;
        height: 360px;
    }

    .ambient-orb-one {
        left: 4%;
        width: 220px;
        height: 220px;
    }

    .ambient-orb-two {
        right: 0;
        width: 200px;
        height: 200px;
    }

    .neon-title {
        max-width: 300px;
        font-size: 1.95rem;
        line-height: 0.97;
    }
}

/* Header atmosphere and hero status badge refinement */
.neon-hero {
    background:
        radial-gradient(ellipse at 30% 8%, rgba(122, 92, 255, 0.2), transparent 34rem),
        radial-gradient(ellipse at 78% 13%, rgba(49, 195, 231, 0.12), transparent 31rem),
        linear-gradient(180deg, #05050d 0%, #070713 52%, #060611 100%);
}

.neon-backdrop {
    inset: 0;
    background:
        radial-gradient(ellipse at 31% 10%, rgba(122, 92, 255, 0.2), rgba(122, 92, 255, 0.08) 22%, transparent 48%),
        radial-gradient(ellipse at 78% 16%, rgba(49, 195, 231, 0.13), rgba(49, 195, 231, 0.05) 20%, transparent 46%),
        linear-gradient(180deg, rgba(5, 5, 13, 0.66) 0%, rgba(6, 6, 17, 0.22) 46%, rgba(6, 6, 17, 0.94) 100%);
    opacity: 1;
}

.neon-hero::before {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: min(680px, 100%);
    transform: none;
    background:
        radial-gradient(circle at 34% 12%, rgba(122, 92, 255, 0.18), transparent 32rem),
        radial-gradient(circle at 76% 14%, rgba(34, 211, 238, 0.12), transparent 30rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 42%);
    opacity: 1;
}

.neon-hero-content::before {
    content: none;
    display: none;
}

.neon-hero .nav,
.nav:not(.nav-sticky) {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.035);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.neon-hero-content {
    padding-top: 38px;
}

.neon-badge {
    gap: 10px;
    min-height: 38px;
    margin-bottom: 24px;
    padding: 9px 18px 9px 14px;
    color: #c9bfff;
    -webkit-text-fill-color: currentColor;
    background:
        linear-gradient(180deg, rgba(32, 27, 65, 0.62), rgba(13, 15, 32, 0.48));
    border: 1px solid rgba(122, 92, 255, 0.34);
    border-radius: 999px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.055),
        0 14px 38px rgba(122, 92, 255, 0.12),
        0 0 42px rgba(49, 195, 231, 0.055);
    font-family: var(--eh-font-body);
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.neon-badge span {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-radius: 999px;
    background: #22d3ee;
    box-shadow:
        0 0 0 4px rgba(34, 211, 238, 0.1),
        0 0 18px rgba(34, 211, 238, 0.42);
    animation: eh-status-dot-pulse 2.8s ease-in-out infinite;
}

@keyframes eh-status-dot-pulse {
    0%,
    100% {
        opacity: 0.78;
        transform: scale(0.92);
        box-shadow:
            0 0 0 4px rgba(34, 211, 238, 0.09),
            0 0 15px rgba(34, 211, 238, 0.36);
    }

    50% {
        opacity: 1;
        transform: scale(1);
        box-shadow:
            0 0 0 7px rgba(34, 211, 238, 0.11),
            0 0 24px rgba(34, 211, 238, 0.5);
    }
}

@media (max-width: 991px) {
    .neon-hero::before {
        top: 0;
        height: 600px;
    }

    .neon-hero-content {
        padding-top: 32px;
    }
}

@media (max-width: 640px) {
    .neon-hero::before {
        top: 0;
        height: 500px;
    }

    .neon-hero-content {
        padding-top: 24px;
    }

    .neon-badge {
        min-height: 34px;
        padding: 8px 14px 8px 12px;
        font-size: 0.84rem;
    }
}

/* Generator box OG glass refinement */
.neon-mail-stage {
    position: relative;
    max-width: 920px;
}

.neon-mail-stage::before {
    content: "";
    position: absolute;
    inset: -54px -72px -46px;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 78% 50%, rgba(49, 195, 231, 0.14), transparent 21rem),
        radial-gradient(circle at 18% 36%, rgba(122, 92, 255, 0.12), transparent 19rem);
    filter: blur(18px);
    opacity: 0.78;
}

.neon-mail-panel {
    padding: 30px 36px 32px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 88% 48%, rgba(49, 195, 231, 0.095), transparent 21rem),
        radial-gradient(circle at 16% 18%, rgba(122, 92, 255, 0.08), transparent 18rem),
        linear-gradient(180deg, rgba(22, 25, 45, 0.68), rgba(8, 10, 22, 0.72));
    border: 1px solid rgba(165, 156, 255, 0.14);
    box-shadow:
        0 26px 70px rgba(0, 0, 0, 0.34),
        0 0 58px rgba(49, 195, 231, 0.055),
        inset 0 1px 0 rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.neon-mail-label {
    margin-bottom: 22px;
    color: #a19ac8;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-align: center;
}

.neon-mail-selection {
    gap: 18px;
}

.neon-mail-input {
    grid-template-columns: minmax(0, 1fr) 148px;
    gap: 14px;
    align-items: stretch;
}

.neon-mail-input input {
    min-height: 68px;
    padding: 0 24px;
    color: #f4f2ff;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018)),
        rgba(21, 23, 40, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 16px 34px rgba(0, 0, 0, 0.14);
    font-size: clamp(1.35rem, 2.35vw, 1.72rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.neon-mail-input .mail-input-copy {
    min-width: 0;
    min-height: 68px;
    padding: 0 22px !important;
    border-radius: 18px !important;
    color: #f5f3ff !important;
    background:
        linear-gradient(135deg, rgba(122, 92, 255, 0.95), rgba(139, 92, 246, 0.88)) !important;
    border: 1px solid rgba(185, 174, 255, 0.22) !important;
    box-shadow:
        0 18px 38px rgba(122, 92, 255, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
    font-size: 1rem;
    font-weight: 700;
}

.neon-mail-input .mail-input-copy:hover {
    transform: translateY(-1px);
    box-shadow:
        0 22px 44px rgba(122, 92, 255, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
}

.neon-mail-input .mail-input-copy:active {
    transform: translateY(0) scale(0.985);
    box-shadow:
        0 10px 24px rgba(122, 92, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.neon-mail-input .mail-input-copy.is-copying {
    filter: brightness(1.03);
}

.neon-mail-input .mail-input-copy.is-copied {
    background:
        linear-gradient(135deg, rgba(108, 89, 255, 0.98), rgba(88, 210, 240, 0.9)) !important;
    box-shadow:
        0 18px 38px rgba(49, 195, 231, 0.16),
        0 0 24px rgba(122, 92, 255, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
}

.neon-mail-input .mail-input-copy i,
.neon-mail-input .mail-input-copy span {
    transition: transform 180ms ease, opacity 180ms ease, color 180ms ease;
}

.neon-mail-input .mail-input-copy.is-copied i {
    transform: scale(1.04);
}

.neon-mail-panel {
    position: relative;
}

.neon-copy-toast {
    position: absolute;
    top: 22px;
    right: 34px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 0 14px;
    color: #eef9ff;
    background:
        linear-gradient(180deg, rgba(18, 23, 40, 0.92), rgba(11, 14, 28, 0.88));
    border: 1px solid rgba(49, 195, 231, 0.16);
    border-radius: 999px;
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.24),
        0 0 24px rgba(49, 195, 231, 0.06);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    pointer-events: none;
    transition: opacity 180ms ease, transform 220ms ease;
}

.neon-copy-toast::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22d3ee;
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.1);
}

.neon-copy-toast.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.neon-mail-actions {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.neon-mail-actions .mail-action {
    min-height: 50px;
    padding: 0 14px !important;
    color: #b9b2da !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.014)),
        rgba(15, 17, 31, 0.56) !important;
    border: 1px solid rgba(255, 255, 255, 0.075) !important;
    border-radius: 13px !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025) !important;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.mail-action i {
    color: #aaa2d2;
    transition: color 180ms ease, transform 180ms ease;
}

.mail-action:hover {
    color: #efeaff !important;
    background:
        linear-gradient(180deg, rgba(122, 92, 255, 0.08), rgba(49, 195, 231, 0.035)),
        rgba(18, 21, 38, 0.72) !important;
    border-color: rgba(165, 156, 255, 0.2) !important;
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.18),
        0 0 28px rgba(49, 195, 231, 0.055),
        inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
    transform: translateY(-1px);
}

.neon-mail-input .mail-input-copy:disabled,
.neon-mail-actions .mail-action:disabled {
    opacity: 0.78;
}

.mail-action:hover i {
    color: #31c3e7;
    transform: translateY(-1px);
}

@media (max-width: 991px) {
    .neon-mail-stage {
        max-width: min(100%, 780px);
    }

    .neon-mail-panel {
        padding: 24px;
    }

    .neon-copy-toast {
        top: 20px;
        right: 24px;
    }

    .neon-mail-input {
        grid-template-columns: minmax(0, 1fr) 132px;
    }

    .neon-mail-input input,
    .neon-mail-input .mail-input-copy {
        min-height: 62px;
    }

    .neon-mail-actions {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .neon-mail-stage {
        width: calc(100vw - 32px);
        max-width: calc(100vw - 32px);
    }

    .neon-mail-stage::before {
        inset: -34px -22px -30px;
    }

    .neon-mail-panel {
        padding: 18px;
        border-radius: 20px;
    }

    .neon-copy-toast {
        top: 16px;
        right: 18px;
        min-height: 32px;
        padding: 0 12px;
        font-size: 0.74rem;
    }

    .neon-mail-label {
        margin-bottom: 14px;
        font-size: 0.68rem;
    }

    .neon-mail-input {
        position: relative;
        display: block;
    }

    .neon-mail-input input {
        width: 100%;
        min-height: 62px;
        padding-right: 78px;
        font-size: 1.2rem;
    }

    .neon-mail-input .mail-input-copy {
        position: absolute;
        top: 8px;
        right: 12px;
        width: 52px;
        min-width: 52px;
        height: calc(100% - 16px);
        min-height: 0;
        padding-inline: 0 !important;
    }

    .neon-mail-input .mail-input-copy span {
        display: none;
    }

    .neon-mail-actions {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Navbar atmospheric polish */
.neon-hero .nav {
    height: auto;
    min-height: 104px;
    margin-top: 0;
    padding: 0;
    align-items: center;
}

.neon-hero .nav .container {
    width: 100%;
}

.neon-hero .nav-inner {
    min-height: 104px;
    align-items: center;
}

.neon-hero .nav:not(.nav-sticky) {
    background:
        linear-gradient(180deg, rgba(5, 5, 13, 0.64) 0%, rgba(5, 5, 13, 0.3) 62%, rgba(5, 5, 13, 0) 100%) !important;
    border-bottom: 0;
    box-shadow:
        inset 0 -1px 0 rgba(255, 255, 255, 0.018),
        0 18px 42px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px) saturate(112%);
    -webkit-backdrop-filter: blur(10px) saturate(112%);
}

.neon-hero .nav:not(.nav-sticky)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent 0%, rgba(180, 170, 255, 0.04) 22%, rgba(49, 195, 231, 0.035) 78%, transparent 100%);
}

.nav.nav-sticky {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    width: 100%;
    min-height: 78px;
    margin-top: 0;
    padding: 0;
    background:
        linear-gradient(180deg, rgba(7, 8, 18, 0.88), rgba(8, 10, 22, 0.74)) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    box-shadow:
        0 14px 36px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(18px) saturate(118%);
    -webkit-backdrop-filter: blur(18px) saturate(118%);
}

.nav.nav-sticky .nav-inner {
    min-height: 78px;
}

.nav.nav-sticky .nav-link,
.nav.nav-sticky .nav-drop-btn,
.nav.nav-sticky .language .language-button,
.nav.nav-sticky .nav-inner .nav-menu .nav-links a,
.nav.nav-sticky .nav-inner .nav-menu .nav-drop .nav-drop-btn,
.nav.nav-sticky .nav-inner .nav-menu .nav-actions .btn-outline-light {
    color: var(--eh-color-text-main) !important;
}

.nav.nav-sticky .dark-logo {
    display: none !important;
}

.nav.nav-sticky .white-logo {
    display: block !important;
}

@media (max-width: 1199.98px) {
    .neon-hero .nav,
    .neon-hero .nav-inner {
        min-height: 86px;
    }

    .nav.nav-sticky,
    .nav.nav-sticky .nav-inner {
        min-height: 74px;
    }
}

@media (max-width: 640px) {
    .neon-hero .nav,
    .neon-hero .nav-inner {
        min-height: 76px;
    }

    .nav.nav-sticky,
    .nav.nav-sticky .nav-inner {
        min-height: 68px;
    }
}

/* Navbar opacity and scroll isolation fix */
.neon-hero .nav {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.nav.nav-sticky {
    position: fixed !important;
    isolation: isolate;
    overflow: hidden;
}

.neon-hero .nav:not(.nav-sticky) {
    background:
        linear-gradient(180deg, rgba(8, 9, 20, 0.9) 0%, rgba(8, 10, 22, 0.82) 100%) !important;
    box-shadow:
        inset 0 -1px 0 rgba(255, 255, 255, 0.022),
        0 16px 34px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(14px) saturate(116%);
    -webkit-backdrop-filter: blur(14px) saturate(116%);
}

.neon-hero .nav:not(.nav-sticky)::before,
.nav.nav-sticky::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.neon-hero .nav:not(.nav-sticky)::before {
    background:
        radial-gradient(circle at 28% 100%, rgba(122, 92, 255, 0.09), transparent 18rem),
        radial-gradient(circle at 78% 0%, rgba(49, 195, 231, 0.07), transparent 18rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.neon-hero .nav:not(.nav-sticky)::after,
.nav.nav-sticky::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent 0%, rgba(180, 170, 255, 0.045) 24%, rgba(49, 195, 231, 0.04) 76%, transparent 100%);
}

.nav.nav-sticky {
    background:
        linear-gradient(180deg, rgba(7, 9, 20, 0.96) 0%, rgba(8, 10, 22, 0.92) 100%) !important;
    border-bottom: 0;
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(122%);
    -webkit-backdrop-filter: blur(20px) saturate(122%);
}

.nav-anchor {
    width: 100%;
    height: 0;
    pointer-events: none;
}

.nav.nav-sticky::before {
    background:
        radial-gradient(circle at 24% 100%, rgba(122, 92, 255, 0.08), transparent 16rem),
        radial-gradient(circle at 82% 0%, rgba(49, 195, 231, 0.06), transparent 16rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0));
}

/* Homepage corrective pass: dropdown, process, features, comparison */
.neon-hero .nav,
.nav.nav-sticky,
.neon-hero .nav .container,
.neon-hero .nav-inner,
.neon-hero .nav-menu,
.neon-hero .nav-menu-scroller,
.neon-hero .nav-menu-body,
.neon-hero .nav-actions,
.neon-hero .nav-cta-group {
    overflow: visible !important;
}

.neon-hero .nav,
.nav.nav-sticky {
    z-index: 1080;
}

.language,
.nav-drop {
    position: relative;
    z-index: 1100;
}

.language.active,
.nav-drop.active {
    z-index: 1120;
}

.language-menu,
.nav-drop-menu {
    z-index: 1140;
    min-width: 180px;
    max-height: min(420px, calc(100vh - 120px));
    overflow: auto;
}

.nav-cta-group .language-menu {
    top: calc(100% + 10px);
    right: 0;
    left: auto;
}

.neon-process .neon-split {
    grid-template-columns: minmax(0, 0.95fr) minmax(440px, 0.9fr);
    gap: clamp(40px, 6vw, 78px);
    align-items: center;
}

.neon-process .section-title {
    max-width: 560px;
    font-size: clamp(3.2rem, 5.1vw, 4.7rem);
    line-height: 0.9;
    letter-spacing: -0.07em;
}

.neon-process .section-text {
    max-width: 560px;
    margin-top: 22px;
}

.neon-steps {
    gap: 28px;
    margin-top: 36px;
}

.neon-steps .neon-step-item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.neon-steps .neon-step-item > div {
    display: block;
    min-width: 0;
}

.neon-step-item strong {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: #fff;
    font-family: var(--eh-font-display);
    box-shadow:
        0 16px 36px rgba(34, 211, 238, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.neon-step-item h3 {
    display: block;
    margin: 0 0 8px;
    color: #f5f2ff;
    font-size: 1.1rem;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.neon-step-item p {
    display: block;
    max-width: 520px;
    margin: 0;
    color: #a9a3cf;
    font-size: 1rem;
    line-height: 1.65;
}

.neon-process-demo {
    width: 100%;
    max-width: 520px;
    margin-left: 0;
    justify-self: end;
}

.neon-terminal-address-value {
    font-size: clamp(1.2rem, 2vw, 1.45rem);
}

.neon-terminal-row {
    min-width: 0;
}

.neon-terminal-copy {
    min-width: 0;
}

.neon-terminal-copy p {
    overflow-wrap: anywhere;
}

.neon-features-grid .feat.feature-card {
    min-height: 190px;
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.035), transparent 0 8rem),
        radial-gradient(circle at 92% 18%, rgba(34, 211, 238, 0.045), transparent 0 10rem),
        linear-gradient(180deg, rgba(26, 29, 47, 0.94), rgba(14, 16, 30, 0.94));
    border-color: rgba(180, 170, 255, 0.12);
}

.neon-features-grid .feat.feature-card:hover {
    border-color: rgba(34, 211, 238, 0.28);
    box-shadow:
        0 26px 58px rgba(0, 0, 0, 0.38),
        0 0 42px rgba(34, 211, 238, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.neon-features-grid .feat.feature-card .feat-icon {
    color: #f8f7ff;
    background:
        linear-gradient(135deg, rgba(124, 92, 252, 0.96), rgba(34, 211, 238, 0.9));
    border-color: rgba(110, 231, 255, 0.24);
    box-shadow:
        0 14px 32px rgba(34, 211, 238, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.neon-features-grid .feat.feature-card .feat-icon i,
.neon-features-grid .feat.feature-card .feat-icon svg,
.neon-features-grid .feat.feature-card .feat-icon path {
    color: currentColor !important;
    fill: currentColor !important;
}

.neon-features-grid .feat.feature-card.feature-accent-violet .feat-icon {
    background: linear-gradient(135deg, rgba(124, 92, 252, 0.95), rgba(100, 126, 255, 0.92));
    box-shadow: 0 14px 32px rgba(124, 92, 252, 0.18);
}

.neon-features-grid .feat.feature-card.feature-accent-cyan .feat-icon,
.neon-features-grid .feat.feature-card.is-featured .feat-icon {
    background: linear-gradient(135deg, rgba(47, 131, 255, 0.95), rgba(34, 211, 238, 0.94));
    box-shadow: 0 16px 36px rgba(34, 211, 238, 0.22);
}

.neon-features-grid .feat.feature-card.feature-accent-rose .feat-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.92), rgba(255, 95, 162, 0.88));
    box-shadow: 0 14px 32px rgba(255, 95, 162, 0.14);
}

.neon-features-grid .feat.feature-card.feature-accent-mint .feat-icon {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.92), rgba(45, 226, 161, 0.86));
    box-shadow: 0 14px 32px rgba(45, 226, 161, 0.13);
}

.neon-features-grid .feat.feature-card.feature-accent-amber .feat-icon {
    background: linear-gradient(135deg, rgba(255, 185, 71, 0.9), rgba(255, 95, 162, 0.78));
    box-shadow: 0 14px 32px rgba(255, 185, 71, 0.13);
}

.neon-features-grid .feat.feature-card.is-featured {
    border-color: rgba(56, 189, 248, 0.44);
    background:
        radial-gradient(circle at 82% 16%, rgba(34, 211, 238, 0.14), transparent 0 10rem),
        radial-gradient(circle at 16% 12%, rgba(124, 92, 252, 0.16), transparent 0 10rem),
        linear-gradient(135deg, rgba(25, 31, 58, 0.98), rgba(10, 28, 42, 0.94));
}

.neon-comparison .section-title .brand-name {
    color: #37cfff;
    text-shadow: 0 0 22px rgba(34, 211, 238, 0.22);
}

.neon-comparison .neon-table-wrap {
    overflow-x: auto;
    padding: 14px;
    border: 1px solid rgba(180, 170, 255, 0.11);
    border-radius: 24px;
    background:
        radial-gradient(circle at 28% 0%, rgba(124, 92, 252, 0.09), transparent 0 18rem),
        radial-gradient(circle at 80% 18%, rgba(34, 211, 238, 0.055), transparent 0 18rem),
        linear-gradient(180deg, rgba(24, 27, 44, 0.92), rgba(10, 12, 24, 0.94));
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.neon-comparison .neon-table {
    min-width: 900px;
    overflow: hidden;
    border-radius: 16px;
}

.neon-comparison .neon-table thead th {
    padding: 18px 20px;
    color: #aaa4d0;
    background: rgba(13, 14, 28, 0.42);
    border-bottom-color: rgba(180, 170, 255, 0.13);
}

.neon-comparison .neon-table thead th.brand-col,
.neon-comparison .neon-table tbody td.brand-value {
    background:
        linear-gradient(180deg, rgba(124, 92, 252, 0.12), rgba(34, 211, 238, 0.045));
}

.neon-comparison .neon-table thead th.brand-col {
    color: #37cfff;
    text-shadow: 0 0 18px rgba(34, 211, 238, 0.16);
}

.neon-comparison .neon-table tbody td {
    padding: 16px 20px;
    border-bottom-color: rgba(180, 170, 255, 0.075);
}

.neon-comparison .neon-table tbody tr:hover {
    background: rgba(124, 92, 252, 0.035);
}

.comparison-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 800;
}

.comparison-status::before {
    font-weight: 900;
}

.comparison-status.status-yes {
    color: #34e8a7;
    text-shadow: 0 0 20px rgba(52, 232, 167, 0.15);
}

.comparison-status.status-yes::before {
    content: "\2713";
}

.comparison-status.status-no {
    color: #ff6f91;
    opacity: 0.9;
}

.comparison-status.status-no::before {
    content: "\00D7";
}

.comparison-status.status-partial {
    color: #f7c76b;
    text-shadow: 0 0 18px rgba(247, 199, 107, 0.12);
}

.comparison-status.status-partial::before {
    content: "\2022";
}

@media (max-width: 1199.98px) {
    .neon-process .neon-split {
        grid-template-columns: minmax(0, 1fr);
    }

    .neon-process-demo {
        justify-self: center;
    }
}

@media (max-width: 991px) {
    .neon-process .section-title {
        max-width: 640px;
        text-align: center;
    }

    .neon-process .section-text {
        text-align: center;
        margin-inline: auto;
    }
}

@media (max-width: 640px) {
    .neon-steps .neon-step-item {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 14px;
    }

    .neon-step-item strong {
        width: 38px;
        height: 38px;
    }

    .neon-process .section-title {
        font-size: 2.15rem;
        line-height: 0.95;
    }

    .neon-process-demo {
        padding: 18px;
    }
}

/* Non-home surface unification pass: blog, message view, inbox rows, admin preview support */
.neon-page-header {
    position: relative;
    min-height: 280px;
    overflow: visible;
    isolation: isolate;
    background:
        radial-gradient(circle at 30% 58%, rgba(124, 92, 252, 0.22), transparent 0 28rem),
        radial-gradient(circle at 74% 54%, rgba(34, 211, 238, 0.16), transparent 0 26rem),
        linear-gradient(180deg, rgba(8, 9, 20, 0.98), rgba(8, 8, 15, 0.88) 48%, rgba(8, 8, 15, 0.98)) !important;
    border-bottom: 1px solid rgba(180, 170, 255, 0.08);
}

.neon-page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 42%),
        radial-gradient(circle at 50% 110%, rgba(124, 92, 252, 0.11), transparent 0 22rem);
}

.neon-page-header .star-bg,
.neon-page-header .particle1,
.neon-page-header .custom-shape-divider-bottom-1696181426 {
    display: none !important;
}

.neon-page-header .nav {
    position: relative;
    z-index: 10;
    background:
        linear-gradient(180deg, rgba(7, 8, 18, 0.88), rgba(7, 8, 18, 0.58)) !important;
    border-bottom: 1px solid rgba(180, 170, 255, 0.07);
}

.neon-page-header .header-wrapper {
    position: relative;
    margin: 0;
    padding: clamp(46px, 6vw, 76px) 0 clamp(52px, 7vw, 86px);
    color: var(--eh-text);
}

.neon-page-header .header-title,
.neon-page-header .header-wrapper .header-title {
    max-width: 1120px;
    margin: 0 auto;
    color: #f7f5ff;
    font-family: var(--eh-font-head);
    font-size: clamp(2.15rem, 4.35vw, 3.85rem);
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: -0.055em;
    text-align: center;
    text-wrap: balance;
    text-shadow: 0 0 34px rgba(124, 92, 252, 0.12);
}

.neon-blog-section {
    padding: clamp(44px, 6vw, 72px) 0 clamp(74px, 8vw, 112px);
}

.neon-blog-section .section-inner {
    text-align: left;
}

.neon-blog-card,
.neon-sidebar-card,
.neon-comments-card {
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
    color: var(--eh-text) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(180, 170, 255, 0.12) !important;
    background:
        radial-gradient(circle at 18% 0%, rgba(124, 92, 252, 0.09), transparent 0 12rem),
        radial-gradient(circle at 94% 12%, rgba(34, 211, 238, 0.055), transparent 0 13rem),
        linear-gradient(180deg, rgba(25, 28, 45, 0.92), rgba(11, 13, 25, 0.96)) !important;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.neon-blog-card::before,
.neon-sidebar-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.5), rgba(124, 92, 252, 0.55), transparent);
    opacity: 0;
    transition: opacity 180ms ease;
}

.neon-blog-card:hover,
.neon-sidebar-card:hover {
    transform: translateY(-3px);
    border-color: rgba(34, 211, 238, 0.26) !important;
    box-shadow:
        0 30px 78px rgba(0, 0, 0, 0.42),
        0 0 42px rgba(34, 211, 238, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.055) !important;
}

.neon-blog-card:hover::before,
.neon-sidebar-card:hover::before {
    opacity: 1;
}

.neon-blog-card > img,
.neon-article-card > img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    opacity: 0.92;
    border-bottom: 1px solid rgba(180, 170, 255, 0.09);
}

.neon-blog-card .card-body,
.neon-sidebar-card .card-body {
    padding: 24px !important;
}

.neon-blog-card .card-title {
    color: #f7f5ff !important;
    font-family: var(--eh-font-head);
    font-size: clamp(1.05rem, 1.4vw, 1.35rem);
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.neon-blog-card .card-text,
.neon-blog-card .lead {
    color: #aaa4d0 !important;
    font-size: 0.96rem;
    line-height: 1.65;
}

.neon-blog-date {
    color: #837da9 !important;
    font-weight: 700;
}

.neon-article-card .card-title {
    font-size: clamp(1.8rem, 3vw, 2.75rem);
}

.neon-article-card .post-meta {
    gap: 14px;
    margin-bottom: 24px;
    color: #aaa4d0;
}

.neon-article-card .post-meta a,
.neon-sidebar-card .link-primary {
    color: #38d8f8 !important;
    text-decoration: none;
}

.neon-article-card .card-text {
    color: #c6c1e7 !important;
}

.neon-article-card .card-text :where(p, li) {
    color: #c6c1e7 !important;
    line-height: 1.8;
}

.neon-article-card .card-text :where(h1, h2, h3, h4, h5, h6) {
    color: #f7f5ff !important;
    font-family: var(--eh-font-head);
    letter-spacing: -0.035em;
}

.neon-blog-sidebar {
    position: sticky;
    top: 108px;
}

.neon-sidebar-card h5 {
    color: #f7f5ff;
    font-family: var(--eh-font-head);
    letter-spacing: -0.035em;
}

.neon-sidebar-card .posts .post > a {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    width: 100%;
    color: inherit !important;
}

.neon-sidebar-card .posts .post .post-img {
    width: 76px;
    height: 64px;
    margin-right: 0;
    border-radius: 14px;
}

.neon-sidebar-card .posts .post .post-title {
    color: #f7f5ff;
    font-size: 0.94rem;
    line-height: 1.25;
    -webkit-line-clamp: 2;
}

.neon-sidebar-card .post-meta {
    color: #8f89b5;
}

.neon-sidebar-card .tag-cloud {
    gap: 8px;
}

.neon-sidebar-card .tag-cloud a {
    margin: 0;
    padding: 8px 12px;
    color: #cfcaff;
    text-decoration: none;
    border: 1px solid rgba(180, 170, 255, 0.15);
    border-radius: 999px;
    background: rgba(124, 92, 252, 0.1);
}

.neon-blog-section .pagination {
    gap: 8px;
}

.neon-blog-section .page-link {
    color: #cfcaff;
    border-color: rgba(180, 170, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.neon-blog-section .page-item.active .page-link,
.neon-blog-section .page-link:hover {
    color: #fff;
    border-color: rgba(34, 211, 238, 0.32);
    background: linear-gradient(135deg, rgba(124, 92, 252, 0.92), rgba(34, 211, 238, 0.84));
}

.neon-message-section {
    padding: clamp(44px, 6vw, 76px) 0 clamp(70px, 8vw, 110px);
}

.neon-viewbox-container .box-content {
    max-width: 1040px;
}

.neon-message-viewbox {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(180, 170, 255, 0.14);
    background:
        radial-gradient(circle at 15% 0%, rgba(124, 92, 252, 0.11), transparent 0 18rem),
        radial-gradient(circle at 92% 0%, rgba(34, 211, 238, 0.08), transparent 0 18rem),
        linear-gradient(180deg, rgba(24, 27, 44, 0.94), rgba(9, 11, 22, 0.98));
    box-shadow:
        0 28px 78px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.neon-message-viewbox .viewbox-header {
    padding: 18px 24px;
    color: #f7f5ff;
    background:
        linear-gradient(90deg, rgba(124, 92, 252, 0.18), rgba(34, 211, 238, 0.12)),
        rgba(14, 16, 32, 0.96) !important;
    border-bottom: 1px solid rgba(180, 170, 255, 0.11);
}

.neon-message-viewbox .viewbox-header .row {
    row-gap: 12px;
}

.neon-message-viewbox .btn-icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #f7f5ff;
    text-decoration: none;
    border: 1px solid rgba(180, 170, 255, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.045);
    transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.neon-message-viewbox .btn-icon:hover {
    transform: translateY(-1px);
    border-color: rgba(34, 211, 238, 0.3);
    background: rgba(34, 211, 238, 0.08);
}

.neon-message-viewbox .btn-icon i {
    margin: 0;
    font-size: 1rem;
}

.neon-message-sender {
    display: block;
    color: #f7f5ff;
    font-family: var(--eh-font-head);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.neon-message-viewbox .viewbox-body {
    min-height: 520px;
    padding: clamp(18px, 3vw, 28px);
    background:
        radial-gradient(circle at 50% 0%, rgba(124, 92, 252, 0.08), transparent 0 20rem),
        rgba(7, 9, 18, 0.98) !important;
}

.neon-message-viewbox iframe {
    display: block;
    min-height: 460px;
    border: 1px solid rgba(180, 170, 255, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
}

.neon-message-viewbox .viewbox-attachments {
    margin-bottom: 18px;
    padding: 18px;
    border: 1px solid rgba(180, 170, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
}

.mailbox.neon-mailbox-shell .mailbox-item {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr) minmax(118px, 0.65fr);
}

.mailbox.neon-mailbox-shell .mailbox-item .mailbox-item-col,
.mailbox.neon-mailbox-shell .mailbox-item .mailbox-item-col a {
    min-width: 0;
}

.mailbox.neon-mailbox-shell .mailbox-item p,
.mailbox.neon-mailbox-shell .mailbox-item a,
.mailbox.neon-mailbox-shell .mailbox-item time {
    overflow: hidden;
    text-overflow: ellipsis;
}

.mailbox.neon-mailbox-shell .mailbox-item .mailbox-item-col:first-child p:first-child,
.mailbox.neon-mailbox-shell .mailbox-item .mailbox-item-col:nth-child(2) a {
    white-space: nowrap;
}

.mailbox.neon-mailbox-shell .mailbox-item .mailbox-item-col:first-child p:first-child {
    font-family: var(--eh-font-head);
    letter-spacing: -0.02em;
}

.mailbox.neon-mailbox-shell .mailbox-item .mailbox-item-col.small {
    justify-self: end;
    text-align: right;
    color: #aaa4d0;
}

@media (max-width: 1199.98px) {
    .neon-blog-sidebar {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .neon-page-header {
        min-height: 240px;
    }

    .neon-page-header .header-wrapper {
        padding: 42px 0 58px;
    }

    .neon-page-header .header-title {
        font-size: clamp(2rem, 12vw, 3.3rem);
    }

    .mailbox.neon-mailbox-shell .mailbox-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .mailbox.neon-mailbox-shell .mailbox-item .mailbox-item-col.small {
        justify-self: start;
        text-align: left;
    }

    .neon-message-viewbox .viewbox-header .col-auto.text-muted {
        width: 100%;
        padding-left: 58px;
    }
}

/* CMS/static pages: remove old turquoise/white viewbox treatment */
.neon-static-page-section {
    padding: clamp(44px, 6vw, 72px) 0 clamp(74px, 8vw, 110px);
}

.neon-static-page-section .section-inner {
    text-align: left;
}

.neon-static-viewbox-container .box-content {
    max-width: 920px;
}

.neon-static-viewbox {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(180, 170, 255, 0.14);
    background:
        radial-gradient(circle at 16% 0%, rgba(124, 92, 252, 0.11), transparent 0 18rem),
        radial-gradient(circle at 92% 0%, rgba(34, 211, 238, 0.08), transparent 0 18rem),
        linear-gradient(180deg, rgba(24, 27, 44, 0.94), rgba(9, 11, 22, 0.98));
    box-shadow:
        0 28px 78px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.neon-static-viewbox .viewbox-header {
    color: #f7f5ff;
    background:
        linear-gradient(90deg, rgba(124, 92, 252, 0.18), rgba(34, 211, 238, 0.12)),
        rgba(14, 16, 32, 0.96) !important;
    border-bottom: 1px solid rgba(180, 170, 255, 0.11);
}

.neon-static-viewbox .viewbox-header h5 {
    color: #f7f5ff;
    font-family: var(--eh-font-head);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.neon-static-viewbox .viewbox-body,
.neon-static-content {
    min-height: auto !important;
    color: #c6c1e7;
    background:
        radial-gradient(circle at 50% 0%, rgba(124, 92, 252, 0.08), transparent 0 20rem),
        rgba(7, 9, 18, 0.98) !important;
}

.neon-static-content :where(h1, h2, h3, h4, h5, h6) {
    color: #f7f5ff;
    font-family: var(--eh-font-head);
    letter-spacing: -0.04em;
}

.neon-static-content :where(p, li, span) {
    color: #c6c1e7;
    line-height: 1.78;
}

.neon-static-content a {
    color: #38d8f8;
    text-decoration: none;
}

.neon-static-content a:hover {
    color: #7ddcff;
}

.neon-contact-section .form-label {
    color: #dcd8ff;
    font-weight: 700;
}

.neon-contact-section .form-control,
.neon-contact-section textarea {
    color: #f7f5ff !important;
    border: 1px solid rgba(180, 170, 255, 0.16) !important;
    background: rgba(255, 255, 255, 0.045) !important;
}

.neon-contact-section .form-control:focus,
.neon-contact-section textarea:focus {
    border-color: rgba(34, 211, 238, 0.34) !important;
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.08) !important;
}
