:root {
    --bg: #0f0f1a;
    --bg-2: #141423;
    --panel: #1a1a2c;
    --panel-2: #202036;
    --line: #2d2d46;
    --text: #ececff;
    --muted: #9b9bb7;
    --muted-2: #6f6f91;
    --accent: #7c3aed;
    --accent-2: #935af5;
    --accent-3: #5b8cff;
    --success: #4caf50;
    --danger: #ef5350;
    --radius-lg: 0px;
    --radius-md: 0px;
    --radius-sm: 0px;
    --shadow: 0 18px 40px rgba(0, 0, 0, 0.30);
    --container: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(124, 58, 237, 0.16), transparent 32%),
        linear-gradient(180deg, #10101a 0%, #0c0c14 100%);
}

img {
    max-width: 100%;
    display: block;
}

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

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-main {
    flex: 1;
    padding: 34px 0 46px;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.page-section + .page-section {
    margin-top: 24px;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid rgba(124, 58, 237, 0.14);
    background: rgba(8, 8, 16, 0.97);
    backdrop-filter: blur(16px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.32), 0 1px 0 rgba(124, 58, 237, 0.08);
}

.topbar::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(124, 58, 237, 0.5) 30%, rgba(91, 140, 255, 0.35) 70%, transparent 95%);
    z-index: 1;
}

.topbar-aurora {
    display: none;
}

.topbar-inner {
    position: relative;
    z-index: 2;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.brand-live-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border: 1px solid rgba(124, 58, 237, 0.24);
    background: rgba(124, 58, 237, 0.12);
    color: #e5dbff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 0 20px rgba(124, 58, 237, 0.14);
    animation: syphonLivePulse 3.8s ease-in-out infinite;
}

.brand-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 4px;
    position: relative;
    isolation: isolate;
    overflow: visible;
    display: grid;
    place-items: center;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.42), rgba(124, 58, 237, 0.06));
    box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.18), 0 0 30px rgba(124, 58, 237, 0.24);
    animation: syphonBadgeBreath 4.8s ease-in-out infinite;
}

.brand-badge::before,
.brand-badge::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.brand-badge::before {
    width: 54px;
    height: 54px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2), transparent 72%);
    animation: syphonBadgeGlow 4.8s ease-in-out infinite;
}

.brand-badge::after {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(124, 58, 237, 0.18);
    animation: syphonBadgeRing 5.6s ease-in-out infinite;
}

.brand-badge img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.28));
}

.topbar .brand-badge {
    width: 48px;
    height: 48px;
    padding: 5px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.62), rgba(124, 58, 237, 0.1));
    box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.22), 0 0 22px rgba(124, 58, 237, 0.24), inset 0 0 14px rgba(124, 58, 237, 0.12);
    animation: syphonHeaderBadgePulse 4.8s ease-in-out infinite;
}

.topbar .brand-badge::before {
    width: 72px;
    height: 72px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.32), transparent 70%);
    animation: syphonHeaderBadgeGlow 4.8s ease-in-out infinite;
}

.topbar .brand-badge::after {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(124, 58, 237, 0.24);
    box-shadow: 0 0 14px rgba(124, 58, 237, 0.14);
    animation: syphonHeaderBadgeRing 5.4s ease-in-out infinite;
}

.topbar .brand-badge img {
    filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.34));
}

.brand-title {
    display: block;
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-sub {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.78rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-shell {
    position: relative;
    padding: 9px;
    border: 1px solid rgba(124, 58, 237, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 12px 28px rgba(0, 0, 0, 0.16);
}

.nav-shell::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.82), rgba(91, 140, 255, 0.58));
    opacity: 0.7;
}

.nav-link {
    padding: 9px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    background: transparent;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 700;
    transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.nav-link:hover {
    color: #e4dbff;
    background: rgba(124, 58, 237, 0.06);
}

.nav-link.active {
    color: white;
    border-color: rgba(124, 58, 237, 0.18);
    background: rgba(124, 58, 237, 0.1);
    box-shadow: inset 0 -2px 0 rgba(124, 58, 237, 0.6);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.header-actions .user-chip,
.header-actions .btn-ghost,
.header-actions .btn-primary,
.header-actions .btn-secondary {
    padding: 10px 16px;
    font-size: 0.84rem;
    letter-spacing: 0.03em;
}

.header-actions .btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-3));
    box-shadow: 0 6px 18px rgba(124, 58, 237, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.4);
}

.header-actions .btn-ghost {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.header-actions .btn-secondary {
    border-color: rgba(124, 58, 237, 0.22);
    background: rgba(124, 58, 237, 0.08);
}

.header-action-shell {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 9px;
    border: 1px solid rgba(124, 58, 237, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 12px 28px rgba(0, 0, 0, 0.16);
}

.header-utility-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 14px;
    border: 1px solid rgba(124, 58, 237, 0.16);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(91, 140, 255, 0.04));
    color: #e2d8ff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.header-utility-pill::before {
    content: "";
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-3));
    box-shadow: 0 0 12px rgba(124, 58, 237, 0.45);
    animation: syphonHeaderDotPulse 2.8s ease-in-out infinite;
}

.user-chip,
.btn,
.btn-ghost,
.btn-primary,
.btn-secondary,
.btn-danger,
.meta-pill,
.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.user-chip,
.meta-pill,
.status-pill {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.btn,
.btn-ghost,
.btn-primary,
.btn-secondary,
.btn-danger {
    border: 1px solid transparent;
    cursor: pointer;
    font: inherit;
}

.btn-ghost {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--accent), var(--accent-3));
    box-shadow: 0 14px 32px rgba(124, 58, 237, 0.24);
}

.btn-secondary {
    color: #e4d9ff;
    border-color: rgba(124, 58, 237, 0.28);
    background: rgba(124, 58, 237, 0.09);
}

.btn-danger {
    color: #ffd8d7;
    border-color: rgba(239, 83, 80, 0.22);
    background: rgba(239, 83, 80, 0.1);
}

.btn:hover,
.btn-ghost:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-danger:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
}

.flash {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    font-weight: 600;
}

.flash.success {
    background: rgba(76, 175, 80, 0.10);
    border-color: rgba(76, 175, 80, 0.22);
    color: #d1f1d3;
}

.flash.error {
    background: rgba(239, 83, 80, 0.11);
    border-color: rgba(239, 83, 80, 0.22);
    color: #ffd4d3;
}

.panel,
.card,
.footer-card,
.hero-panel,
.preview-panel,
.form-card,
.tool-card,
.account-card,
.access-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(25, 25, 42, 0.98), rgba(17, 17, 29, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.panel::before,
.card::before,
.footer-card::before,
.hero-panel::before,
.preview-panel::before,
.form-card::before,
.tool-card::before,
.account-card::before,
.access-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-3));
    opacity: 0.85;
}

.hero-grid,
.page-grid,
.auth-grid,
.access-grid,
.account-grid,
.simple-grid,
.footer-grid {
    display: grid;
    gap: 22px;
}

.hero-grid,
.page-grid,
.account-grid {
    grid-template-columns: 1.05fr 0.95fr;
}

.auth-grid,
.access-grid,
.simple-grid,
.footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-panel,
.preview-panel,
.form-card,
.tool-card,
.account-card,
.access-card,
.card,
.footer-card {
    padding: 28px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(124, 58, 237, 0.26);
    background: rgba(124, 58, 237, 0.10);
    color: #ddcfff;
    font-size: 0.86rem;
    font-weight: 700;
}

h1,
.page-title,
.section-title,
.card-title {
    margin: 0;
}

h1 {
    margin-top: 14px;
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.page-title {
    font-size: 2rem;
    line-height: 1.1;
}

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

.card-title {
    font-size: 1.12rem;
}

.lead,
.copy,
.small-copy,
.muted {
    color: var(--muted);
    line-height: 1.7;
}

.lead {
    margin-top: 14px;
    font-size: 1.02rem;
    max-width: 640px;
}

.copy {
    margin-top: 10px;
}

.small-copy {
    font-size: 0.92rem;
}

.button-row,
.meta-row,
.footer-links,
.info-list,
.inline-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.button-row {
    margin-top: 24px;
}

.meta-row {
    margin-top: 18px;
}

.meta-pill {
    color: var(--muted);
    font-size: 0.88rem;
    padding: 9px 12px;
}

.status-pill {
    color: #d7ccff;
    border-color: rgba(124, 58, 237, 0.22);
    background: rgba(124, 58, 237, 0.1);
    padding: 9px 12px;
    font-size: 0.84rem;
}

.preview-box {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.preview-logo {
    width: 88px;
    height: 88px;
    padding: 10px;
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.24), rgba(124, 58, 237, 0.04));
    border: 1px solid rgba(124, 58, 237, 0.18);
}

.preview-list,
.feature-list {
    display: grid;
    gap: 14px;
}

.preview-item,
.feature-item {
    position: relative;
    padding: 18px 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.preview-item::before,
.feature-item::before,
.stat-box::before,
.account-item::before,
.download-info-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.9), rgba(91, 140, 255, 0.55));
    opacity: 0.55;
}

.preview-item:hover,
.feature-item:hover,
.stat-box:hover,
.account-item:hover,
.download-info-item:hover {
    transform: translateY(-3px);
    border-color: rgba(124, 58, 237, 0.24);
    background: rgba(124, 58, 237, 0.07);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.preview-item strong,
.feature-item strong,
.stat-box strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.98rem;
}

.feature-item p,
.preview-item p,
.stat-box p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.hero-command-panel {
    background:
        linear-gradient(180deg, rgba(25, 25, 42, 0.98), rgba(14, 14, 25, 0.98)),
        radial-gradient(circle at top left, rgba(124, 58, 237, 0.18), transparent 34%);
}

.hero-copy-stack {
    position: relative;
    z-index: 2;
}

.hero-info-board {
    display: grid;
    gap: 14px;
    margin-top: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    overflow: visible;
}

.hero-info-board::before {
    display: none;
}

.hero-info-head {
    display: grid;
    gap: 6px;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-signal-ribbon {
    display: none;
}

.hero-ribbon-track {
    display: flex;
    align-items: center;
    gap: 14px;
    width: max-content;
    padding: 12px 0;
    animation: syphonRibbonScroll 24s linear infinite;
}

.hero-ribbon-track span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid rgba(124, 58, 237, 0.16);
    background: rgba(8, 8, 16, 0.34);
    color: #e4dbff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-overview-strip {
    display: none;
}

.hero-overview-card {
    position: relative;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.hero-overview-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.9), rgba(91, 140, 255, 0.55));
    opacity: 0.55;
}

.hero-overview-card:hover {
    transform: translateY(-3px);
    border-color: rgba(124, 58, 237, 0.24);
    background: rgba(124, 58, 237, 0.07);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.hero-overview-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 1rem;
}

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

.hero-overview-kicker,
.hero-info-state {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 9px;
    border: 1px solid rgba(124, 58, 237, 0.18);
    background: rgba(124, 58, 237, 0.1);
    color: #ddd3ff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hero-info-card {
    min-height: 0;
}

.hero-info-card-wide {
    grid-column: span 2;
}

.hero-info-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.hero-info-kicker {
    display: inline-flex;
    align-items: center;
    padding: 6px 8px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.22);
    color: #d9caff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.hero-info-state {
    opacity: 0.88;
}

.hero-info-points {
    display: grid;
    gap: 9px;
    margin-top: 14px;
}

.hero-info-points span {
    position: relative;
    display: block;
    padding-left: 16px;
    color: #d8cff7;
    font-size: 0.86rem;
    line-height: 1.5;
}

.hero-info-points span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--accent), var(--accent-3));
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.35);
}

.hero-info-lines {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.hero-info-lines span {
    display: block;
    height: 8px;
    width: var(--track-width, 80%);
    background: linear-gradient(90deg, rgba(124, 58, 237, 1), rgba(91, 140, 255, 0.92));
    box-shadow: 0 0 18px rgba(124, 58, 237, 0.34);
    transform-origin: left center;
    animation: syphonSignalPulse 2.8s ease-in-out infinite;
    animation-delay: var(--bar-delay, 0s);
}

.hero-bars {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.hero-bar,
.hero-node-signal,
.hero-track {
    position: relative;
    overflow: hidden;
    height: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-bar span,
.hero-node-signal span,
.hero-track-fill {
    display: block;
    height: 100%;
    width: var(--bar-width, var(--signal-width, var(--track-width, 80%)));
    background: linear-gradient(90deg, rgba(124, 58, 237, 1), rgba(91, 140, 255, 0.92));
    box-shadow: 0 0 18px rgba(124, 58, 237, 0.34);
    transform-origin: left center;
    animation: syphonSignalPulse 2.8s ease-in-out infinite;
    animation-delay: var(--bar-delay, 0s);
}

.hero-tech-panel {
    background:
        linear-gradient(180deg, rgba(18, 18, 31, 0.98), rgba(11, 11, 20, 0.98)),
        radial-gradient(circle at center, rgba(124, 58, 237, 0.14), transparent 38%);
}

.hero-stage {
    position: relative;
    display: grid;
    gap: 16px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(10, 10, 19, 0.65), rgba(10, 10, 19, 0.9)),
        linear-gradient(90deg, rgba(124, 58, 237, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(124, 58, 237, 0.05) 1px, transparent 1px);
    background-size: auto, 44px 44px, 44px 44px;
    border: 1px solid rgba(124, 58, 237, 0.16);
    padding: 20px;
}

.hero-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(124, 58, 237, 0.15), transparent 34%),
        radial-gradient(circle at center, rgba(91, 140, 255, 0.08), transparent 52%);
    animation: syphonGridPulse 5.5s ease-in-out infinite;
    pointer-events: none;
}

.hero-stage-glow {
    position: absolute;
    inset: 16% 18%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.16), transparent 68%);
    filter: blur(16px);
    animation: syphonGlowDrift 7s ease-in-out infinite;
    pointer-events: none;
}

.hero-scanline {
    position: absolute;
    left: 0;
    right: 0;
    top: -22%;
    height: 18%;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0), rgba(124, 58, 237, 0.18), rgba(91, 140, 255, 0));
    mix-blend-mode: screen;
    animation: syphonScanline 5.4s linear infinite;
    pointer-events: none;
}

.hero-stage-header {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
    gap: 14px;
    text-align: center;
    padding-top: 4px;
}

.hero-stage-intro {
    display: grid;
    gap: 8px;
    max-width: 420px;
}

.hero-stage-headline {
    display: block;
    color: var(--text);
    font-size: 1.32rem;
    font-weight: 800;
}

.hero-stage-copy {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.hero-stage-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.hero-node {
    position: relative;
    width: auto;
    z-index: 2;
}

.hero-node-label {
    display: inline-flex;
    align-items: center;
    padding: 6px 8px;
    margin-bottom: 10px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: #d9caff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.hero-node-value {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
}

.hero-node-copy {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

.hero-logo-cluster {
    position: relative;
    width: 240px;
    height: 240px;
    margin: 0 auto;
    z-index: 3;
}

.hero-logo-shell,
.hero-logo-glow,
.hero-logo-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.hero-logo-shell {
    width: 160px;
    height: 160px;
    display: grid;
    place-items: center;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.22), rgba(124, 58, 237, 0.04));
    border: 1px solid rgba(124, 58, 237, 0.24);
    box-shadow: 0 0 36px rgba(124, 58, 237, 0.24);
    animation: syphonLogoBreath 4.8s ease-in-out infinite;
}

.hero-logo-shell img {
    max-width: 110px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(124, 58, 237, 0.35));
}

.hero-logo-glow {
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.34), transparent 70%);
    pointer-events: none;
}

.hero-logo-glow-1 {
    width: 200px;
    height: 200px;
    animation: syphonLogoGlow 4.8s ease-in-out infinite;
}

.hero-logo-glow-2 {
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.18), transparent 72%);
    animation: syphonLogoGlowOuter 6.2s ease-in-out infinite;
}

.hero-logo-ring {
    border-radius: 50%;
    border: 1px solid rgba(124, 58, 237, 0.32);
    pointer-events: none;
}

.hero-logo-ring-1 {
    width: 184px;
    height: 184px;
    animation: syphonRingPulseInner 4.8s ease-in-out infinite;
}

.hero-logo-ring-2 {
    width: 224px;
    height: 224px;
    border-color: rgba(124, 58, 237, 0.16);
    animation: syphonRingPulseOuter 5.8s ease-in-out infinite;
}

.hero-stage-footer {
    position: relative;
    padding: 18px 18px 14px;
    background: linear-gradient(180deg, rgba(14, 14, 24, 0.92), rgba(10, 10, 18, 0.94));
    border: 1px solid rgba(124, 58, 237, 0.16);
    z-index: 2;
}

.hero-stage-title {
    margin-bottom: 14px;
    color: #e6dcff;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-stage-rows {
    display: grid;
    gap: 10px;
}

.hero-stage-row {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
}

.hero-stage-value {
    color: #dacbff;
    text-align: right;
}

.hero-stage-row-green {
    grid-template-columns: 28px 90px 1fr 52px;
    gap: 10px;
}

.hero-stage-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6ef58a;
}

.hero-stage-label {
    color: var(--text);
    font-size: 0.84rem;
    font-weight: 700;
    white-space: nowrap;
}

.hero-track-green {
    background: rgba(76, 175, 80, 0.12);
    border-color: rgba(76, 175, 80, 0.15);
}

.hero-fill-green {
    background: linear-gradient(90deg, #4caf50, #6ef58a) !important;
    box-shadow: 0 0 18px rgba(76, 175, 80, 0.4) !important;
}

.hero-stage-delta {
    color: #6ef58a;
    font-size: 0.88rem;
    font-weight: 800;
    text-align: right;
    letter-spacing: 0.02em;
}

.hero-stage-detail {
    grid-column: 2 / -1;
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.4;
    margin-top: -4px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-stage-row-green:last-child .hero-stage-detail {
    border-bottom: 0;
    padding-bottom: 0;
}

.hero-track-fill {
    width: var(--track-width, 80%);
}

@keyframes syphonSignalPulse {
    0%, 100% {
        transform: scaleX(0.94);
        opacity: 0.82;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes syphonRibbonScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes syphonLogoBreath {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.98);
        box-shadow: 0 0 28px rgba(124, 58, 237, 0.18);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.04);
        box-shadow: 0 0 48px rgba(124, 58, 237, 0.32);
    }
}

@keyframes syphonBadgeBreath {
    0%, 100% {
        box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.18), 0 0 22px rgba(124, 58, 237, 0.18);
    }
    50% {
        box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.28), 0 0 36px rgba(124, 58, 237, 0.28);
    }
}

@keyframes syphonBadgeGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.92);
        opacity: 0.4;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 0.78;
    }
}

@keyframes syphonBadgeRing {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0.24;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 0.56;
    }
}

@keyframes syphonHeaderBadgePulse {
    0%, 100% {
        transform: scale(0.98);
        box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.26), 0 0 28px rgba(124, 58, 237, 0.26), inset 0 0 18px rgba(124, 58, 237, 0.16);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.4), 0 0 52px rgba(124, 58, 237, 0.46), inset 0 0 26px rgba(124, 58, 237, 0.26);
    }
}

@keyframes syphonHeaderBadgeGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.44;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.16);
        opacity: 0.95;
    }
}

@keyframes syphonHeaderBadgeRing {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.94);
        opacity: 0.28;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.12);
        opacity: 0.82;
    }
}

@keyframes syphonLivePulse {
    0%, 100% {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 0 18px rgba(124, 58, 237, 0.12);
    }
    50% {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 0 30px rgba(124, 58, 237, 0.22);
    }
}

@keyframes syphonHeaderDotPulse {
    0%, 100% {
        transform: scale(0.9);
        opacity: 0.85;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes syphonHeaderAurora {
    0%, 100% {
        transform: translateX(-2%) translateY(0);
        opacity: 0.72;
    }
    50% {
        transform: translateX(2%) translateY(10px);
        opacity: 1;
    }
}

@keyframes syphonFooterAurora {
    0%, 100% {
        transform: translateX(-2%) translateY(0);
        opacity: 0.72;
    }
    50% {
        transform: translateX(2%) translateY(-10px);
        opacity: 1;
    }
}

@keyframes syphonLogoGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.4;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 0.78;
    }
}

@keyframes syphonLogoGlowOuter {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.96);
        opacity: 0.24;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.52;
    }
}

@keyframes syphonRingPulseInner {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.98);
        opacity: 0.38;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.85;
    }
}

@keyframes syphonRingPulseOuter {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0.18;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 0.42;
    }
}

@keyframes syphonScanline {
    0% {
        transform: translateY(-140%);
        opacity: 0;
    }
    15% {
        opacity: 0.85;
    }
    85% {
        opacity: 0.55;
    }
    100% {
        transform: translateY(640%);
        opacity: 0;
    }
}

@keyframes syphonGridPulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

@keyframes syphonGlowDrift {
    0%, 100% {
        transform: translateY(0px) scale(0.98);
    }
    50% {
        transform: translateY(-8px) scale(1.04);
    }
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.stat-box {
    position: relative;
    padding: 18px 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.section-head {
    margin-bottom: 14px;
}

.section-head .copy {
    margin-top: 8px;
    max-width: 760px;
}

.form-card {
    max-width: 560px;
}

.form-grid {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.field {
    display: grid;
    gap: 8px;
}

.field label {
    color: #cfc7ee;
    font-size: 0.92rem;
    font-weight: 700;
}

.field input {
    width: 100%;
    padding: 15px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font: inherit;
    outline: none;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.field input:focus {
    border-color: rgba(124, 58, 237, 0.55);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
    background: rgba(124, 58, 237, 0.06);
}

.form-actions {
    margin-top: 4px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tool-card .button-row,
.account-card .button-row,
.access-card .button-row {
    margin-top: 18px;
}

.account-list,
.download-info {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.account-item,
.download-info-item {
    position: relative;
    padding: 18px 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.account-label {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.86rem;
}

.dl-explain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.dl-explain-card {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.025);
    display: grid;
    gap: 10px;
}

.dl-explain-card strong {
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--text);
}

.dl-explain-tag {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    padding: 5px 10px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.24);
    color: #d9caff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.dl-secrets-grid {
    display: grid;
    gap: 14px;
    margin-top: 6px;
}

.dl-secret-card {
    padding: 16px 18px;
    border-left: 3px solid rgba(124, 58, 237, 0.5);
    background: rgba(124, 58, 237, 0.04);
}

.dl-secret-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 0.96rem;
    color: #e4dbff;
}

.dl-secret-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.dl-hero-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(124, 58, 237, 0.3);
    background:
        linear-gradient(180deg, rgba(25, 25, 42, 0.98), rgba(14, 14, 25, 0.98)),
        radial-gradient(circle at 30% 20%, rgba(124, 58, 237, 0.18), transparent 40%);
    animation: dlCardBorderPulse 4s ease-in-out infinite;
}

.dl-hero-card::before {
    background: linear-gradient(90deg, rgba(76, 175, 80, 0.8), rgba(124, 58, 237, 0.9), rgba(91, 140, 255, 0.8));
    height: 2px;
    animation: dlTopBarShimmer 3s ease-in-out infinite;
}

.dl-hero-glow {
    position: absolute;
    top: -40%;
    right: -10%;
    width: 50%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.14), transparent 65%);
    filter: blur(20px);
    animation: dlGlowDrift 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.dl-hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.dl-hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.6);
    box-shadow: 0 0 8px rgba(124, 58, 237, 0.4);
    animation: dlParticleFloat 8s ease-in-out infinite;
}

.dl-hero-particles span:nth-child(1) { left: 10%; top: 80%; animation-delay: 0s; animation-duration: 7s; }
.dl-hero-particles span:nth-child(2) { left: 25%; top: 90%; animation-delay: 1s; animation-duration: 9s; background: rgba(91, 140, 255, 0.5); }
.dl-hero-particles span:nth-child(3) { left: 45%; top: 85%; animation-delay: 2s; animation-duration: 6s; }
.dl-hero-particles span:nth-child(4) { left: 65%; top: 95%; animation-delay: 0.5s; animation-duration: 8s; background: rgba(76, 175, 80, 0.5); }
.dl-hero-particles span:nth-child(5) { left: 80%; top: 88%; animation-delay: 3s; animation-duration: 10s; }
.dl-hero-particles span:nth-child(6) { left: 35%; top: 75%; animation-delay: 1.5s; animation-duration: 7.5s; width: 3px; height: 3px; background: rgba(236, 72, 153, 0.4); }
.dl-hero-particles span:nth-child(7) { left: 55%; top: 92%; animation-delay: 2.5s; animation-duration: 6.5s; background: rgba(91, 140, 255, 0.4); }
.dl-hero-particles span:nth-child(8) { left: 90%; top: 82%; animation-delay: 0.8s; animation-duration: 9.5s; width: 3px; height: 3px; }

.dl-hero-badge {
    border-color: rgba(76, 175, 80, 0.3);
    background: rgba(76, 175, 80, 0.12);
    color: #6ef58a;
    animation: dlBadgePulse 3s ease-in-out infinite;
}

.dl-hero-btn {
    position: relative;
    font-size: 1rem;
    padding: 16px 28px;
    background: linear-gradient(135deg, #4caf50, #6ef58a);
    color: #0a0a14;
    font-weight: 800;
    box-shadow: 0 8px 28px rgba(76, 175, 80, 0.35), 0 0 0 1px rgba(76, 175, 80, 0.2);
    animation: dlBtnGlow 2.5s ease-in-out infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dl-hero-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(76, 175, 80, 0.5), 0 0 0 1px rgba(76, 175, 80, 0.4);
    filter: brightness(1.08);
}

@keyframes dlCardBorderPulse {
    0%, 100% { border-color: rgba(124, 58, 237, 0.22); }
    50% { border-color: rgba(124, 58, 237, 0.45); }
}

@keyframes dlTopBarShimmer {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes dlGlowDrift {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(1.1); opacity: 1; }
}

@keyframes dlParticleFloat {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 0.8; }
    50% { transform: translateY(-120px) translateX(20px) scale(0.6); opacity: 0.4; }
    100% { transform: translateY(-220px) translateX(-10px) scale(0.2); opacity: 0; }
}

@keyframes dlBadgePulse {
    0%, 100% { box-shadow: 0 0 12px rgba(76, 175, 80, 0.15); }
    50% { box-shadow: 0 0 24px rgba(76, 175, 80, 0.35); }
}

@keyframes dlBtnGlow {
    0%, 100% { box-shadow: 0 8px 28px rgba(76, 175, 80, 0.3), 0 0 0 1px rgba(76, 175, 80, 0.2); }
    50% { box-shadow: 0 12px 36px rgba(76, 175, 80, 0.5), 0 0 0 1px rgba(76, 175, 80, 0.35); }
}

.hw-tab {
    padding: 9px 16px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    font-family: inherit;
}

.hw-tab:hover {
    color: var(--text);
    background: rgba(124, 58, 237, 0.06);
}

.hw-tab.active {
    color: white;
    background: linear-gradient(135deg, var(--accent), var(--accent-3));
    border-color: rgba(124, 58, 237, 0.3);
}

@media (max-width: 980px) {
    .hw-period > div:last-child {
        grid-template-columns: 1fr;
    }
}

.footer {
    position: relative;
    overflow: hidden;
    padding: 10px 0 18px;
}

.footer-aurora {
    display: none;
}

.footer-card {
    position: relative;
    z-index: 1;
    padding: 18px 20px;
    background: rgba(11, 11, 20, 0.88);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
}

.footer-brand-panel {
    display: grid;
    gap: 8px;
}

.footer-brand {
    width: fit-content;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.footer .brand-badge {
    width: 38px;
    height: 38px;
    padding: 4px;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.14), 0 0 16px rgba(124, 58, 237, 0.14);
}

.footer .brand-badge::before {
    width: 48px;
    height: 48px;
}

.footer .brand-badge::after {
    width: 42px;
    height: 42px;
}

.footer .brand-badge img {
    filter: drop-shadow(0 0 7px rgba(124, 58, 237, 0.24));
}

.footer-chip-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 12px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(91, 140, 255, 0.04));
    color: #ddd3ff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.footer-links-panel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px 14px;
    flex-wrap: wrap;
}

.footer-links-panel a {
    color: var(--muted);
    font-size: 0.88rem;
    transition: color 0.22s ease, transform 0.22s ease;
}

.footer-links-panel a:hover {
    color: white;
    transform: translateY(-1px);
}

.footer-column,
.footer-cta {
    position: relative;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.footer-heading {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    color: #e4dbff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-list {
    display: grid;
    gap: 10px;
}

.footer-list a,
.footer-list span {
    color: var(--muted);
    line-height: 1.55;
}

.footer-list a {
    transition: color 0.22s ease, transform 0.22s ease;
}

.footer-list a:hover {
    color: white;
    transform: translateX(2px);
}

.footer-cta {
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.10), rgba(255, 255, 255, 0.03));
}

.footer-cta-title {
    display: block;
    margin-bottom: 10px;
    font-size: 1.15rem;
    line-height: 1.3;
    color: var(--text);
}

.footer-bottom {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted-2);
    font-size: 0.86rem;
}

.footer-meta {
    color: var(--muted-2);
}

.footer-bottom-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.interactive-card {
    transform-style: preserve-3d;
    will-change: transform, opacity;
}

.reveal-card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

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

.interactive-card:hover {
    border-color: rgba(124, 58, 237, 0.24);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.34);
}

.hide-mobile {
    display: inline-flex;
}

.show-mobile,
.burger-btn {
    display: none;
}

.burger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(12, 12, 21, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(124, 58, 237, 0.2);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    z-index: 100;
    padding: 20px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.open {
    right: 0;
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
}

.mobile-overlay.open {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
}

.mobile-nav .nav-link {
    padding: 12px 14px;
    font-size: 0.94rem;
    border: 1px solid transparent;
}

.mobile-nav .nav-link.active {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.18);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-actions .user-chip,
.mobile-actions .btn-ghost,
.mobile-actions .btn-primary,
.mobile-actions .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
}

@media (max-width: 980px) {
    .hero-grid,
    .page-grid,
    .auth-grid,
    .access-grid,
    .account-grid,
    .simple-grid,
    .footer-grid,
    .stat-row {
        grid-template-columns: 1fr;
    }

    .topbar-inner {
        flex-wrap: wrap;
        padding: 10px 0;
    }

    .site-nav {
        width: 100%;
        order: 3;
        overflow-x: auto;
        padding-top: 8px;
    }

    .header-actions {
        gap: 8px;
    }

    .topbar .brand-badge {
        width: 44px;
        height: 44px;
    }

    .footer-main,
    .footer-columns {
        grid-template-columns: 1fr;
    }

    .footer-links-panel {
        justify-content: flex-start;
    }

    .footer-bottom,
    .footer-bottom-meta {
        justify-content: flex-start;
    }

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

    .hero-info-grid,
    .hero-stage-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-logo-cluster {
        width: 210px;
        height: 210px;
    }

    .hero-logo-shell {
        width: 140px;
        height: 140px;
    }

    .hero-logo-shell img {
        max-width: 96px;
        max-height: 106px;
    }

    .hw-tabs {
        flex-wrap: wrap;
    }

    .hw-period > div:last-child {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 720px) {
    .hide-mobile {
        display: none !important;
    }

    .show-mobile,
    .burger-btn {
        display: flex !important;
        width: 44px;
        height: 44px;
        padding: 10px;
        border: 1px solid rgba(124, 58, 237, 0.2);
        background: rgba(255, 255, 255, 0.03);
        cursor: pointer;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        align-items: center;
    }

    .topbar-inner {
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
    }

    .page-main {
        padding-top: 16px;
    }

    .brand-sub {
        display: none;
    }

    .topbar .brand-badge {
        width: 38px;
        height: 38px;
        padding: 3px;
    }

    .brand-title {
        font-size: 0.88rem;
    }

    .hero-panel,
    .preview-panel,
    .form-card,
    .tool-card,
    .account-card,
    .access-card,
    .card,
    .footer-card {
        padding: 16px;
    }

    .page-title {
        font-size: 1.5rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    .lead {
        font-size: 0.92rem;
    }

    .button-row,
    .form-actions,
    .footer-links,
    .footer-links-panel {
        flex-direction: column;
        align-items: stretch;
    }

    .meta-row {
        flex-wrap: wrap;
        gap: 8px;
    }

    .meta-pill {
        font-size: 0.78rem;
        padding: 7px 10px;
    }

    .hero-info-grid,
    .hero-stage-grid {
        grid-template-columns: 1fr;
    }

    .hero-info-board {
        padding: 0;
    }

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

    .hero-info-top {
        align-items: flex-start;
    }

    .hero-stage {
        gap: 14px;
        padding: 14px;
    }

    .footer-card {
        padding: 16px;
    }

    .footer-chip-row,
    .footer-bottom,
    .footer-bottom-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-main {
        gap: 14px;
    }

    .hero-info-card-wide {
        grid-column: auto;
    }

    .hero-logo-cluster {
        width: 160px;
        height: 160px;
        margin: 8px auto;
    }

    .hero-logo-shell {
        width: 110px;
        height: 110px;
    }

    .hero-logo-shell img {
        max-width: 76px;
        max-height: 84px;
    }

    .hero-stage-header {
        text-align: left;
        justify-items: start;
    }

    .hero-stage-intro {
        max-width: none;
    }

    .hero-stage-headline {
        font-size: 1.1rem;
    }

    .hero-stage-row {
        grid-template-columns: 38px 1fr 40px;
        gap: 8px;
    }

    .hero-stage-row-green {
        grid-template-columns: 22px 64px 1fr 42px;
        gap: 6px;
    }

    .hero-stage-label {
        font-size: 0.74rem;
    }

    .hero-stage-delta {
        font-size: 0.76rem;
    }

    .hero-stage-detail {
        font-size: 0.7rem;
    }

    .hero-stage-title {
        font-size: 0.82rem;
    }

    .hw-tabs {
        width: 100%;
        justify-content: stretch;
    }

    .hw-tab {
        flex: 1;
        text-align: center;
        padding: 8px 8px;
        font-size: 0.78rem;
    }

    .dl-hero-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .eyebrow {
        font-size: 0.78rem;
        padding: 6px 10px;
    }

    .hero-ribbon-track {
        gap: 10px;
    }

    .hero-ribbon-track span {
        font-size: 0.7rem;
        padding: 7px 10px;
    }

    table {
        font-size: 0.76rem;
    }

    .stat-row {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
