/* Alexiuz Auth Hub — v2.0 — Unified design language */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #0f0f17;
    --surface: #181825;
    --elevated: #1e1e30;
    --border: #2a2a40;
    --text: #e8e8e8;
    --muted: #888;
    --primary: #4f6ef7;
    --primary-hover: #6583ff;
    --success: #4ade80;
    --error: #ff6b6b;
    --danger: #dc2626;
    --accent: #6afcff;
    --accent-hover: #8ffdff;
    --radius: 2px;
    --glow: rgba(106, 252, 255, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--primary);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

#site-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}
#site-wrap:has(.landing-wrap) {
    justify-content: flex-start;
    padding-top: 60px;
}
#site-wrap:has(.oomph-wrap) {
    justify-content: flex-start;
    padding-top: 40px;
}

/* ========================================
   Auth forms (login, register, account)
   ======================================== */
.auth-wrap {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
}
.auth-logo-img {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
    opacity: 0.85;
    transition: transform 0.2s ease;
}
.auth-logo-img:hover {
    transform: translateY(-2px);
}

.auth-header h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.auth-header p {
    color: var(--muted);
    font-size: 14px;
}

.auth-banner {
    padding: 10px 14px;
    border-radius: var(--radius);
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
    background: var(--elevated);
    color: var(--muted);
    border: 1px solid var(--border);
}
.auth-banner.success {
    color: var(--success);
    border-color: rgba(74, 222, 128, 0.2);
    background: rgba(74, 222, 128, 0.06);
}
.auth-banner.error {
    color: var(--error);
    border-color: rgba(255, 107, 107, 0.2);
    background: rgba(255, 107, 107, 0.06);
}

.auth-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 6px;
}

.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"] {
    width: 100%;
    padding: 11px 14px;
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    outline: none;
    margin-bottom: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.auth-form input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(106, 252, 255, 0.1);
}
.auth-form input::placeholder {
    color: #555;
}

/* Custom checkboxes */
.auth-consent-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.auth-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
    cursor: pointer;
    position: relative;
}
.auth-consent input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.auth-checkmark {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, border-color 0.15s;
    margin-top: 1px;
}
.auth-checkmark::after {
    content: '';
    width: 10px;
    height: 6px;
    border-left: 2px solid var(--bg);
    border-bottom: 2px solid var(--bg);
    transform: rotate(-45deg) translateY(-1px);
    opacity: 0;
    transition: opacity 0.15s;
}
.auth-consent input[type="checkbox"]:checked + .auth-checkmark {
    background: var(--accent);
    border-color: var(--accent);
}
.auth-consent input[type="checkbox"]:checked + .auth-checkmark::after {
    opacity: 1;
}
.auth-consent:hover .auth-checkmark {
    border-color: var(--accent);
}
.auth-consent-label {
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.45;
    cursor: pointer;
}
.auth-consent-label a {
    color: var(--accent);
}
.auth-consent-optional {
    font-size: 11px;
    color: #666;
    margin-left: 2px;
}

/* Messages */
.auth-msg {
    text-align: center;
    font-size: 14px;
    min-height: 20px;
    margin: 4px 0 12px;
}
.auth-msg.error { color: var(--error); }
.auth-msg.success { color: var(--success); }

/* Primary button — cyan, sharp, bold */
.auth-submit {
    display: inline-block;
    width: 100%;
    padding: 13px;
    background: var(--accent);
    color: var(--bg);
    border: none;
    border-radius: 0;
    font-size: 15px;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.auth-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px var(--glow);
    text-decoration: none;
}
.auth-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.auth-submit.auth-danger {
    background: var(--danger);
    color: #fff;
    width: auto;
    padding: 10px 20px;
    font-size: 14px;
}
.auth-submit.auth-danger:hover {
    background: #ef4444;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.2);
}

.auth-alt {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--muted);
}
.auth-alt a {
    color: var(--accent);
}

.auth-link {
    color: var(--accent);
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}
.auth-link:hover {
    text-decoration: underline;
}

.auth-service-note {
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    color: var(--muted);
    font-style: italic;
}

/* Services showcase (login/register footer) */
.auth-services {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    max-width: 400px;
    width: 100%;
}
.auth-services p {
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.service-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.service-logos span {
    font-size: 12px;
    color: var(--muted);
    padding: 4px 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s, color 0.2s;
}
.service-logos span:hover {
    border-color: rgba(106, 252, 255, 0.3);
    color: var(--text);
}

/* ========================================
   Account page
   ======================================== */
.account-wrap {
    max-width: 500px;
}
.account-info {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 32px;
}
.account-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}
.account-field + .account-field {
    border-top: 1px solid var(--border);
}
.account-label {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}
.account-value {
    font-size: 14px;
    color: var(--text);
}
.account-section {
    margin-bottom: 32px;
}
.account-section h2 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}
.account-muted {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 16px;
}
.account-actions {
    text-align: center;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* Service list (account page) */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.service-item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 3px 12px var(--glow);
    text-decoration: none;
}
.service-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}
.service-desc {
    font-size: 13px;
    color: var(--muted);
}

/* ========================================
   Landing page
   ======================================== */
.landing-wrap {
    text-align: center;
    width: 100%;
    max-width: 700px;
}
.landing-logo-img {
    height: 64px;
    width: auto;
    margin-bottom: 28px;
    opacity: 0.9;
}
.landing-logo-lockup {
    margin-bottom: 0;
}
.landing-logo-icon {
    height: 82px;
    margin-bottom: 28px;
    transition: transform 0.2s ease;
}
.landing-logo-icon:hover {
    transform: translateY(-2px);
}
.landing-logo-text {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.5px;
}
.landing-hero h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}
.landing-hero p {
    font-size: 16px;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.landing-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}
.landing-cta .auth-submit {
    width: auto;
    padding: 14px 36px;
}
.landing-cta .auth-link {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* Oomph explainer */
.landing-oomph-section {
    margin-top: 64px;
    padding: 40px 0;
    border-top: 1px solid var(--border);
}
.landing-oomph-section h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}
.landing-oomph-intro {
    font-size: 14px;
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto 28px;
    line-height: 1.6;
}
.landing-oomph-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}
.landing-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.landing-stat-number {
    font-size: 30px;
    font-weight: 700;
    color: var(--accent);
}
.landing-stat-label {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.landing-oomph-cta {
    margin-top: 8px;
}
.landing-oomph-btn {
    display: inline-block;
    padding: 12px 32px;
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.landing-oomph-btn:hover {
    background: var(--accent);
    color: var(--bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px var(--glow);
    text-decoration: none;
}

/* Services grid */
.landing-services {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.landing-services h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text);
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    text-align: left;
}
.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(106, 252, 255, 0.08);
    text-decoration: none;
}
.service-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0;
}
.service-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    flex: 1;
}
.service-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.service-card-costs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}
.service-card-costs span {
    font-size: 11px;
    color: var(--accent);
    padding: 2px 7px;
    background: rgba(106, 252, 255, 0.06);
    border-radius: var(--radius);
    font-weight: 500;
}

/* Service icons — actual app logos */
.svc-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    object-fit: contain;
    flex-shrink: 0;
}
.svc-icon-sm {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

/* Oomph icon — inline lightning bolt */
.oomph-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url('/img/oomph.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: -0.1em;
}
.oomph-icon-sm {
    width: 0.85em;
    height: 0.85em;
}
.oomph-icon-lg {
    width: 1.3em;
    height: 1.3em;
    vertical-align: -0.15em;
}

/* How it works */
.landing-how-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.landing-how-section h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text);
}
.landing-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 440px;
    margin: 0 auto;
    text-align: left;
}
.landing-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s, transform 0.2s;
}
.landing-step:hover {
    border-color: rgba(106, 252, 255, 0.3);
    transform: translateX(4px);
}
.landing-step-num {
    width: 28px;
    height: 28px;
    border-radius: 0;
    background: var(--accent);
    color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}
.landing-step-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.landing-step-text strong {
    font-size: 14px;
    color: var(--text);
}
.landing-step-text span {
    font-size: 13px;
    color: var(--muted);
}

/* Bottom CTA */
.landing-bottom-cta {
    margin-top: 48px;
    padding: 32px 0;
    border-top: 1px solid var(--border);
}
.landing-bottom-cta .auth-submit {
    width: auto;
    padding: 16px 44px;
}
.landing-bottom-note {
    margin-top: 12px;
    font-size: 13px;
    color: var(--muted);
}

/* Company footer */
.landing-company {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: #777;
}
.landing-company p {
    margin: 0 0 4px;
}
.landing-company a {
    color: #777;
}
.landing-company a:hover {
    color: var(--text);
}

/* ========================================
   Page content (terms, privacy)
   ======================================== */
.page-wrap {
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}
.page-wrap h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}
.page-updated {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 32px;
}
.page-wrap h2 {
    font-size: 16px;
    font-weight: 600;
    margin: 28px 0 10px;
    color: var(--text);
}
.page-wrap p, .page-wrap li {
    font-size: 14px;
    color: #bbb;
    line-height: 1.7;
}
.page-wrap ul {
    padding-left: 20px;
    margin: 8px 0;
}
.page-wrap li {
    margin-bottom: 6px;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    padding: 24px 20px;
    border-top: 1px solid var(--border);
    text-align: center;
}
.footer-inner {
    max-width: 640px;
    margin: 0 auto;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
}
.footer-links a {
    font-size: 13px;
    color: var(--muted);
}
.footer-links a:hover {
    color: var(--text);
}
.footer-company {
    font-size: 12px;
    color: #777;
}
.footer-company a {
    color: #777;
}
.footer-company a:hover {
    color: var(--text);
}

/* ========================================
   Oomph page
   ======================================== */
.oomph-wrap {
    max-width: 520px;
}
.oomph-balance-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    margin-bottom: 32px;
}
.oomph-total {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}
.oomph-label {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 16px;
}
.oomph-breakdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 13px;
    color: var(--muted);
}
.oomph-refresh-note {
    font-size: 12px;
    color: #888;
    margin-top: 12px;
}
.oomph-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
}
.oomph-packages {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}
.oomph-package {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    font-family: inherit;
    color: var(--text);
}
.oomph-package:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 3px 12px var(--glow);
}
.oomph-pkg-amount {
    font-weight: 600;
    font-size: 15px;
}
.oomph-pkg-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
}
.oomph-pkg-rate {
    font-size: 12px;
    color: var(--muted);
}
.oomph-costs-table {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 32px;
}
.oomph-cost-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
    font-size: 14px;
}
.oomph-cost-row + .oomph-cost-row {
    border-top: 1px solid var(--border);
}
.oomph-cost-row span:first-child {
    color: var(--text);
}
.oomph-cost-row span:last-child {
    color: var(--accent);
    font-weight: 600;
}
.oomph-transactions {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 32px;
}
.oomph-tx-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(42, 42, 64, 0.5);
}
.oomph-tx-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.oomph-tx-desc {
    font-size: 14px;
    color: var(--text);
}
.oomph-tx-meta {
    font-size: 12px;
    color: #888;
}
.oomph-tx-amount {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 16px;
}
.oomph-tx-amount.positive { color: var(--success); }
.oomph-tx-amount.negative { color: var(--error); }

/* Oomph context card (from=service) */
.oomph-context-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 24px;
}
.oomph-context-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.oomph-context-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}
.oomph-context-tagline {
    font-size: 13px;
    color: var(--muted);
}
.oomph-context-desc {
    font-size: 14px;
    color: #bbb;
    line-height: 1.5;
    margin-bottom: 12px;
}
.oomph-context-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}
.oomph-context-highlights li {
    font-size: 13px;
    color: var(--text);
    padding: 3px 0;
}
.oomph-context-highlights li::before {
    content: '\2713';
    color: var(--accent);
    margin-right: 8px;
    font-weight: 600;
}
.oomph-context-costs {
    background: var(--elevated);
    border-radius: var(--radius);
    overflow: hidden;
}
.oomph-context-costs .oomph-cost-row {
    padding: 8px 14px;
    font-size: 13px;
}
.oomph-context-costs .oomph-cost-row + .oomph-cost-row {
    border-top: 1px solid var(--border);
}
.oomph-cost-service {
    font-size: 11px;
    color: #888;
    margin-left: 4px;
}

/* Signed out balance card */
.oomph-signed-out {
    border-color: rgba(106, 252, 255, 0.2);
}
.oomph-signin-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 32px;
    background: var(--accent);
    color: var(--bg);
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.oomph-signin-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px var(--glow);
    text-decoration: none;
}

/* Service discovery grid */
.oomph-services-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}
.oomph-service-card {
    display: block;
    padding: 14px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.oomph-service-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 3px 12px var(--glow);
    text-decoration: none;
}
.oomph-svc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}
.oomph-svc-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}
.oomph-svc-tagline {
    font-size: 12px;
    color: var(--muted);
}
.oomph-svc-costs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.oomph-svc-cost {
    font-size: 12px;
    color: var(--accent);
    padding: 2px 8px;
    background: rgba(106, 252, 255, 0.06);
    border-radius: var(--radius);
    font-weight: 500;
}
.oomph-back {
    text-align: center;
    margin-top: 16px;
}
.oomph-account-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 32px;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.oomph-account-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 3px 12px var(--glow);
    text-decoration: none;
}
.oomph-account-balance {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}
.oomph-account-label {
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
}

/* ========================================
   Dashboard
   ======================================== */
#site-wrap:has(.dash-wrap) {
    justify-content: flex-start;
    padding-top: 40px;
}
.dash-wrap {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 24px;
}
.dash-header h1 {
    font-size: 22px;
    font-weight: 700;
}
.dash-email {
    font-size: 13px;
    color: var(--muted);
}
.dash-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}
.dash-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.dash-card-wide {
    margin-bottom: 32px;
}
.dash-card-num {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}
.dash-card-label {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.dash-section {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin: 28px 0 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.dash-table {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.dash-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
}
.dash-row-label {
    width: 70px;
    font-size: 13px;
    color: var(--muted);
    flex-shrink: 0;
}
.dash-bar-wrap {
    flex: 1;
    height: 18px;
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
}
.dash-bar {
    height: 100%;
    background: var(--accent);
    border-radius: var(--radius);
    min-width: 2px;
    opacity: 0.7;
}
.dash-bar-blue { background: #6c8cff; }
.dash-bar-green { background: var(--success); opacity: 0.6; }
.dash-row-val {
    width: 48px;
    text-align: right;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    flex-shrink: 0;
}
.dash-recent {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.dash-user-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(42, 42, 64, 0.4);
}
.dash-user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.dash-user-email {
    font-size: 14px;
    color: var(--text);
}
.dash-user-meta {
    font-size: 12px;
    color: #888;
}
.dash-user-badge {
    font-size: 11px;
    color: var(--muted);
    padding: 2px 8px;
    background: var(--elevated);
    border-radius: var(--radius);
}
.dash-empty {
    font-size: 14px;
    color: var(--muted);
    padding: 16px 0;
    text-align: center;
}
.dash-back {
    text-align: center;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 480px) {
    .landing-hero h1 {
        font-size: 28px;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
    .landing-cta {
        flex-direction: column;
    }
    .landing-cta .auth-submit {
        width: 100%;
    }
    .landing-oomph-stats {
        gap: 16px;
    }
    .landing-stat-number {
        font-size: 24px;
    }
    .landing-steps {
        max-width: 100%;
    }
    .landing-bottom-cta .auth-submit {
        width: 100%;
    }
    .dash-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .dash-row-label {
        width: 56px;
        font-size: 12px;
    }
}
