/* =========================
   TOKENS / BASE
========================= */
:root {
    --bg-page: #f4f6f9;
    --bg-surface: #ffffff;
    --bg-surface-muted: #f9fafb;
    --bg-surface-soft: #f3f4f6;
    --bg-overlay: #eef1f5;
    --border: #d1d5db;
    --border-soft: #e5e7eb;
    --border-subtle: #f1f5f9;
    --text: #111827;
    --text-body: #374151;
    --text-muted: #6b7280;
    --text-soft: #9ca3af;
    --primary: #1f2937;
    --primary-hover: #111827;
    --primary-strong: #2563eb;
    --primary-strong-hover: #1d4ed8;
    --success-bg: #f0fdf4;
    --success-border: #bbf7d0;
    --success-text: #166534;
    --error-bg: #fef2f2;
    --error-border: #fca5a5;
    --error-text: #991b1b;
    --warning-bg: #fffbeb;
    --warning-border: #fde68a;
    --warning-text: #92400e;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-lg: 12px;
    --radius-xl: 14px;
    --container: 1100px;
    --card-narrow: 520px;
    --card-medium: 600px;
    --card-wide: 800px;
}

[data-theme="dark"] {
    --bg-page: #0f172a;
    --bg-surface: #020617;
    --bg-surface-muted: #020617;
    --bg-surface-soft: #0f172a;
    --bg-overlay: #020617;
    --border: #1e293b;
    --border-soft: #1e293b;
    --border-subtle: #1e293b;
    --text: #f9fafb;
    --text-body: #e5e7eb;
    --text-muted: #94a3b8;
    --text-soft: #64748b;
    --primary: #3b82f6;
    --primary-hover: #2563eb;
    --primary-strong: #3b82f6;
    --primary-strong-hover: #2563eb;
    --success-bg: rgba(22, 101, 52, 0.18);
    --success-border: rgba(134, 239, 172, 0.28);
    --success-text: #86efac;
    --error-bg: rgba(127, 29, 29, 0.2);
    --error-border: rgba(248, 113, 113, 0.3);
    --error-text: #fca5a5;
    --warning-bg: rgba(146, 64, 14, 0.18);
    --warning-border: rgba(253, 230, 138, 0.25);
    --warning-text: #fcd34d;
    --shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 25px 50px rgba(0, 0, 0, 0.6);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin: 0;
    margin-bottom: 60px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: var(--bg-page);
    color: var(--text-body);
}

body,
.navbar,
.card,
.input,
.btn-primary,
.btn-primary-clean {
    transition: all 0.25s ease;
}

h1 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--text);
}

h2,
h3,
h4,
h5,
h6 {
    color: var(--text);
}

p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4b5563;
    margin: 0 0 20px;
}

[data-theme="dark"] p {
    color: var(--text-muted);
}

.hidden {
    display: none !important;
}

/* =========================
   LAYOUT
========================= */
.app-main {
    min-height: auto;
    padding: 30px 20px;
}

.app-container,
.nav-inner {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
}

.app-container {
    padding: 20px;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
}

.auth-container {
    max-width: var(--card-narrow);
    margin: 100px auto;
    padding: 0 20px;
}

.auth-page .container {
    max-width: var(--card-narrow);
    margin: 100px auto;
}

.send-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px 60px;
    min-height: 100vh;
    background: var(--bg-surface-soft);
}

.dashboard-wrapper {
    width: 100%;
    max-width: 1200px;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    width: 100%;
    background: var(--bg-surface) !important;
    border-bottom: 1px solid var(--border-soft);
}

.nav-inner {
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--text) !important;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-link {
    color: var(--text-body) !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.2s ease;
}

    .nav-link:hover {
        color: var(--text) !important;
    }

.nav-user {
    font-size: 0.85rem;
    color: var(--text-soft);
}

.nav-form {
    margin: 0;
}

.btn-link,
.theme-toggle,
.icon-btn {
    background: transparent;
    border: none;
    cursor: pointer;
}

.theme-toggle {
    font-size: 1.2rem;
    margin-left: 10px;
}

/* =========================
   CARD / PANELS
========================= */
.card,
.auth-card,
.register-card,
.created-card,
.receive-card,
.access-box,
.verified-sender-card,
.shipment-card,
.value-item,
.hero.minimal .hero-inner {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.card,
.auth-card,
.register-card,
.created-card,
.receive-card,
.shipment-card,
.hero.minimal .hero-inner {
    box-shadow: var(--shadow-sm);
}

.card {
    padding: 32px;
}

.auth-card {
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    height: auto !important;
    min-height: unset !important;
}

    .auth-card:hover,
    .shipment-card:hover {
        box-shadow: var(--shadow-md);
    }

.send-card {
    width: 100%;
    max-width: var(--card-medium);
    display: flex;
    flex-direction: column;
    padding: 30px;
    margin: 0 auto 20px;
    min-height: calc(100vh - 200px);
}

.register-card,
.created-card,
.receive-card {
    max-width: var(--card-medium);
    width: 100%;
    padding: 30px 28px;
}

.dashboard-card,
.activity-card,
.main-card {
    max-width: 100%;
    padding: 0;
    overflow: hidden;
}

.access-box {
    padding: 20px;
}

.verified-sender-card {
    padding: 16px 18px;
}

@media (max-width: 640px) {
    .verified-sender-card {
        padding: 14px;
    }
}

/* =========================
   TYPO / LABELS / TEXT
========================= */
.auth-title,
.success-title,
.shipment-title,
.verified-sender-company,
.action-title,
.state-title,
.access-title,
.value-title,
.activity-title,
.group-email,
.document-name,
.file-name,
.message-label,
.section-title {
    color: var(--text);
}

.auth-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.auth-subtext,
.access-subtext,
.dashboard-subtext,
.hero-text,
.hero-subtitle,
.value-text,
.beta-text,
.message-text,
.action-text,
.state-text,
.document-meta,
.file-meta,
.file-size,
.group-meta,
.activity-meta,
.muted,
.trust-box,
.sender-box,
.success-text,
.beta-subtext {
    color: var(--text-muted);
}

.auth-subtext,
.access-subtext,
.hero-subtitle,
.message-text,
.action-text,
.state-text {
    line-height: 1.5;
}

.step,
.label,
.message-label,
.message-label,
.section-title,
.status-label,
.file-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.label {
    display: block;
    margin-bottom: 6px;
}

.section {
    margin-bottom: 20px;
}

.state-minimal,
.table-empty {
    font-size: 0.9rem;
    color: var(--text-soft);
}

/* =========================
   FORM INPUTS
========================= */
.input,
.textarea,
.link-box input,
.code-box,
.form-control,
.form-check-input {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    background: var(--bg-surface);
    color: var(--text);
    font-size: 0.9rem;
}

.input,
.link-box input {
    padding: 11px 12px;
}

.textarea {
    min-height: 100px;
    resize: vertical;
    padding: 0.75rem;
}

.input::placeholder {
    color: var(--text-soft);
}

.input:focus,
.textarea:focus,
.code-box:focus,
.form-control:focus,
.form-check-input:focus,
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus {
    outline: none;
    border-color: var(--primary-strong);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

[data-theme="dark"] .input:focus,
[data-theme="dark"] .textarea:focus,
[data-theme="dark"] .code-box:focus,
[data-theme="dark"] .form-control:focus,
[data-theme="dark"] .form-check-input:focus,
[data-theme="dark"] .btn:focus,
[data-theme="dark"] .btn:active:focus,
[data-theme="dark"] .btn-link.nav-link:focus {
    border-color: var(--primary-strong);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.register-card .input {
    margin-top: 6px;
}

.register-card .label {
    margin-top: 14px;
    margin-bottom: 0;
}

.code-inputs {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 15px;
}

.code-box {
    width: 50px;
    height: 55px;
    text-align: center;
    font-size: 1.4rem;
}

/* =========================
   BUTTONS
========================= */
.btn,
.btn-primary-clean,
.btn-primary,
.register-primary-btn,
.file-download,
.download-btn {
    display: inline-block;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn {
    border: none;
    padding: 10px 14px;
}

.btn-primary,
.btn-primary-clean,
.register-primary-btn,
.lock-btn,
.hero-btn,
.file-download {
    background: var(--primary);
    color: #fff;
    border: none;
}

    .btn-primary:hover,
    .btn-primary-clean:hover,
    .register-primary-btn:hover,
    .lock-btn:hover,
    .hero-btn:hover,
    .file-download:hover {
        background: var(--primary-hover);
        color: #fff;
    }

.btn-primary-clean {
    width: 100%;
    padding: 0.8rem;
    margin-top: 20px;
    font-weight: 500;
}

    .btn-primary-clean:disabled {
        background: #93c5fd;
        cursor: not-allowed;
    }

.btn-primary {
    margin-top: 10px;
}

.full-btn,
.large-btn {
    width: 100%;
    font-size: 15px;
    font-weight: 600;
}

.large-btn {
    max-width: 280px;
    margin: 20px auto 0;
    padding: 14px 18px;
    text-align: center;
}

.actions,
.bottom-actions,
.confirm-actions,
.hero-actions,
.dashboard-tabs,
.status-row,
.open-status,
.expiry {
    display: flex;
    gap: 10px;
}

.bottom-actions {
    margin-top: 20px;
    flex-direction: column;
}

.delete-btn {
    background: #b42318;
    color: #fff;
    border: none;
}

    .delete-btn:hover {
        background: #7f1d1d;
    }

.cancel-btn {
    background: #e5e7eb;
    color: var(--text-body);
}

    .cancel-btn:hover {
        background: #d1d5db;
    }

.file-remove-btn {
    font-size: 0.85rem;
    color: var(--text-muted);
    background: none;
    border: 1px solid var(--border-soft);
    border-radius: 6px;
    padding: 4px 8px;
}

    .file-remove-btn:hover {
        color: var(--text);
        border-color: var(--text-soft);
    }

.resend-container {
    margin-top: 15px;
    text-align: center;
}

.resend-btn {
    background: transparent;
    border: none;
    color: var(--primary-strong);
    font-size: 0.9rem;
    cursor: pointer;
}

    .resend-btn:hover:not(:disabled) {
        text-decoration: underline;
    }

    .resend-btn:disabled {
        color: var(--text-soft);
        cursor: not-allowed;
    }

/* =========================
   STATUS / ALERTS / STATES
========================= */
.state-box,
.success-box,
.loading-box,
.action-box,
.message-box,
.sender-box,
.delete-confirm {
    border-radius: var(--radius-md);
    padding: 14px 16px;
    border: 1px solid var(--border);
}

.state-box {
    margin-bottom: 15px;
}

.success-box,
.loading-box,
.sender-box,
.message-box {
    background: var(--bg-surface-muted);
}

.loading-box {
    text-align: center;
}

.loading-text {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 10px;
}

.state-error {
    background: var(--error-bg);
    border-color: var(--error-border);
    color: var(--error-text);
}

.state-warning {
    background: var(--warning-bg);
    border-color: var(--warning-border);
    color: var(--warning-text);
}

.state-success {
    background: var(--success-bg);
    border-color: var(--success-border);
    color: var(--success-text);
}

    .state-success .state-title,
    .state-success .state-text {
        color: var(--success-text);
    }

.delete-confirm {
    margin-top: 15px;
    background: #fff7ed;
    border-color: #fed7aa;
}

.confirm-text {
    font-size: 14px;
    margin-bottom: 10px;
    color: #7c2d12;
}

/* =========================
   PROGRESS
========================= */
.progress-container,
.progress-bar {
    width: 100%;
}

.progress-bar {
    height: 6px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
    margin-top: 10px;
}

.progress-fill,
#progressBar {
    height: 100%;
    width: 0;
    background: var(--primary);
    transition: width 0.2s ease;
}

@keyframes progressAnim {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* =========================
   UPLOAD / DOCUMENTS / FILES
========================= */
.upload-box,
.dropzone {
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    border-radius: var(--radius-md);
}

.upload-box {
    border: 1px dashed #cbd5e1;
    padding: 20px;
    background: var(--bg-surface-muted);
}

    .upload-box:hover,
    .dropzone:hover {
        background: var(--bg-surface-soft);
    }

.dropzone {
    border: 2px dashed var(--border-soft);
    padding: 30px;
    margin-top: 15px;
    background: #fafafa;
}

    .dropzone:hover {
        border-color: var(--primary-strong);
        background: #f0f7ff;
    }

.dropzone-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.size-info,
.muted,
.file-size,
.document-meta,
.shipment-meta,
.activity-meta,
.group-meta,
.meta-label {
    font-size: 0.8rem;
}

.document-list,
.file-list,
.file-stack,
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.document-list,
.file-list {
    margin-top: 10px;
}

.document-item,
.file-item,
.file-row,
.shipment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    border-radius: var(--radius-sm);
    transition: 0.2s ease;
}

.document-item,
.file-item {
    padding: 12px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
}

.file-row {
    padding: 14px;
    background: var(--bg-surface-muted);
    border: 1px solid var(--border-soft);
}

    .file-row:hover,
    .shipment-row:hover,
    .document-item:hover,
    .file-item:hover {
        background: var(--bg-surface-soft);
    }

.file-info,
.document-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.file-name,
.document-name {
    font-weight: 500;
    word-break: break-word;
}

.document-download,
.download-btn {
    font-size: 0.85rem;
    color: var(--text-body);
    border-bottom: 1px solid var(--text-soft);
}

    .document-download:hover,
    .download-btn:hover {
        color: var(--text);
    }

/* =========================
   RECEIVE / MESSAGE / META
========================= */
.receive-meta {
    margin-top: 10px;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.meta-label {
    color: var(--text-muted);
    min-width: 40px;
}

.meta-value {
    font-weight: 500;
    color: var(--text);
    word-break: break-word;
}

.message-panel {
    margin-bottom: 20px;
    padding: 14px;
    background: var(--bg-surface-muted);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
}

.message-text {
    white-space: pre-wrap;
    word-break: break-word;
}

/* =========================
   STATUS PILLS
========================= */
.status-pill,
.verified-sender-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
}

    .status-pill.pending {
        background: #e5e7eb;
        color: #374151;
    }

    .status-pill.locked {
        background: #fef3c7;
        color: #92400e;
    }

    .status-pill.opened,
    .verified-sender-badge {
        background: #dcfce7;
        color: #166534;
    }

    .status-pill.active {
        background: #eef2ff;
        color: #3730a3;
    }

/* =========================
   DASHBOARD / GROUPS / PAGING
========================= */
.dashboard-grid,
.shipment-grid,
.value-inner,
.hero-cards {
    display: grid;
    gap: 20px;
}

.dashboard-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 1100px;
}

.shipment-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.value-inner {
    max-width: 900px;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.hero-cards {
    max-width: 520px;
    margin: 0 auto 30px;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

    .hero-cards .hero-card:nth-child(5) {
        grid-column: span 2;
    }

.dashboard-header {
    padding: 22px 26px;
    border-bottom: 1px solid var(--border-soft);
}

    .dashboard-header h2 {
        font-size: 1.2rem;
        font-weight: 600;
    }

.dashboard-table,
.table-head,
.table-row {
    display: flex;
    flex-direction: column;
}

.table-head,
.table-row {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 1fr;
    padding: 12px 26px;
}

.table-head {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.table-row {
    padding: 18px 26px;
    cursor: pointer;
    border-top: 1px solid var(--border-subtle);
}

    .table-row:hover,
    .activity-item:hover,
    .group-header:hover {
        background: var(--bg-surface-soft);
    }

.group {
    margin-top: 10px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.group-header {
    font-weight: 600;
    cursor: pointer;
    padding: 14px;
    background: var(--bg-surface-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.group-body {
    display: none;
}

.group.open .group-body {
    display: block;
}

.shipment-status {
    display: flex;
    gap: 8px;
}

.paging {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

    .paging a {
        text-decoration: none;
        color: var(--text-body);
        font-weight: 500;
    }

        .paging a:hover {
            color: var(--text);
        }

    .paging span {
        color: #555;
    }

/* =========================
   ACTIVITY
========================= */
.activity-list {
    margin-top: 10px;
}

.activity-item {
    display: flex;
    gap: 15px;
    padding: 16px 26px;
    border-top: 1px solid var(--border-subtle);
    cursor: pointer;
}

.activity-icon {
    font-size: 20px;
}

.activity-content {
    display: flex;
    flex-direction: column;
}

.activity-section {
    margin-top: 20px;
}

.toggle-btn {
    width: 100%;
    padding: 10px;
    border: none;
    background: #f1f5f9;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 500;
}

    .toggle-btn:hover {
        background: #e2e8f0;
    }

.activity-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 10px;
}

    .activity-panel.open {
        max-height: 800px;
    }

/* =========================
   HERO / LANDING
========================= */
.hero,
.beta-section,
.walkthrough,
.how-section,
.receive-flow,
.final-cta,
.value-strip {
    padding: 40px 20px;
}

    .hero.minimal {
        padding: 80px 20px;
        text-align: center;
        background: #f7f8fa;
        color: var(--text-body);
    }

        .hero.minimal .hero-inner {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            padding: 50px 40px;
        }

        .hero.minimal .brand {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 30px;
        }

        .hero.minimal .brand-logo {
            width: 42px;
            height: 42px;
            background: var(--primary);
            color: #fff;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

        .hero.minimal .brand-name,
        .hero-brand,
        .trust {
            color: var(--text-muted);
        }

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hero.minimal .hero-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.hero.minimal .hero-subtitle {
    max-width: 640px;
    margin: 0 auto 50px;
    font-size: 1rem;
}

.hero-logo-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: var(--border-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.hero.minimal .feature,
.value-item,
.hero-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
}

.hero.minimal .features {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero.minimal .feature {
    max-width: 220px;
    padding: 10px 14px;
}

.hero.minimal .feature-title,
.walk-text h3,
.value-title,
.beta-title {
    font-weight: 600;
}

.hero.minimal .divider {
    width: 100%;
    height: 1px;
    background: var(--border-soft);
    margin: 40px 0;
}

.hero.minimal .cta a {
    font-size: 0.95rem;
    color: var(--text-body);
    text-decoration: none;
    border-bottom: 1px solid var(--text-soft);
    padding-bottom: 2px;
}

    .hero.minimal .cta a:hover {
        color: var(--text);
        border-color: var(--text-muted);
    }

.hero-brand,
.hero-badge {
    font-size: 0.8rem;
    color: var(--primary-strong);
}

.hero-inner,
.value-inner,
.walkthrough-title,
.walk-row,
.how-step,
.receive-step {
    max-width: 900px;
    margin: 0 auto;
}

.walkthrough-title {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 50px;
}

.walk-row,
.how-step,
.receive-step {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

    .how-step.reverse,
    .receive-step.reverse {
        flex-direction: row-reverse;
    }

.walk-image,
.walk-text,
.how-image,
.receive-image {
    flex: 1;
}

    .walk-image img,
    .how-image img,
    .receive-image img {
        width: 100%;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-soft);
    }

    .walk-text p,
    .hero-text,
    .beta-subtext,
    .value-text {
        color: var(--text-muted);
    }

.hero.minimal .brand-logo-img {
    height: 250px;
    width: auto;
}

/* =========================
   VERIFIED SENDER
========================= */
.verified-sender-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.verified-sender-contact,
.verified-sender-meta,
.verified-sender-address,
.verified-sender-foot {
    color: #4b5563;
}

.verified-sender-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 0.88rem;
    margin-bottom: 6px;
}

    .verified-sender-meta .dot {
        color: var(--text-soft);
    }

.verified-sender-address,
.verified-sender-foot {
    font-size: 0.88rem;
    line-height: 1.45;
}

.verified-sender-foot {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .dashboard-grid,
    .value-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    .walk-row,
    .how-step,
    .receive-step {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .hero-cards {
        grid-template-columns: 1fr;
    }

        .hero-cards .hero-card:nth-child(5) {
            grid-column: span 1;
        }
}

@media (max-width: 500px) {
    .auth-card {
        margin: 20px;
        padding: 2rem;
    }
}
