/* ── Blazor framework ─────────────────────────────────────────────────────── */

h1:focus { outline: none; }

.valid.modified:not([type=checkbox]) { outline: 1px solid #26b050; }
.invalid                             { outline: 1px solid #e50000; }
.validation-message                  { color: #e50000; font-size: 13px; margin-top: 2px; }

.blazor-error-boundary { background: #b32121; padding: 1rem; color: white; }
.blazor-error-boundary::after { content: "An error has occurred." }

/* ── Reset ────────────────────────────────────────────────────────────────── */

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

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 15px;
    color: #222;
    background: #fff;
}

a { color: #1e3a8a; }

/* ════════════════════════════════════════════════════════════════════════════
   WEBSITE LAYOUT
   ════════════════════════════════════════════════════════════════════════════ */

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

/* ── Website header ───────────────────────────────────────────────────────── */

.web-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.web-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.web-logo {
    font-size: 18px;
    font-weight: 700;
    color: #1e3a8a;
    text-decoration: none;
    letter-spacing: -.01em;
}

.web-nav {
    display: flex;
    gap: 4px;
}

.web-nav a {
    padding: 8px 14px;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
}

.web-nav a:hover { background: #f3f4f6; color: #111; }

/* ── Website footer ───────────────────────────────────────────────────────── */

.web-footer {
    margin-top: auto;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 24px;
    font-size: 13px;
    color: #6b7280;
}

.web-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

/* ── Website main ─────────────────────────────────────────────────────────── */

.web-main { flex: 1; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */

.hero {
    background: linear-gradient(135deg, #162d6a 0%, #1e3a8a 60%, #2654a3 100%);
    color: #fff;
    padding: 80px 24px;
}

.hero-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 800;
    margin: 0 0 20px;
    line-height: 1.15;
    letter-spacing: -.02em;
}

.hero-sub {
    font-size: 18px;
    opacity: .88;
    margin: 0 0 36px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-block;
    padding: 13px 28px;
    background: #fff;
    color: #162d6a;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
}

.btn-hero-primary:hover { background: #eef2ff; color: #162d6a; }

.btn-hero-secondary {
    display: inline-block;
    padding: 13px 28px;
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
}

.btn-hero-secondary:hover { background: rgba(255,255,255,.25); color: #fff; }

/* ── Features grid ────────────────────────────────────────────────────────── */

.features { padding: 72px 24px; background: #f9fafb; }

.features-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 28px 24px;
}

.feature-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: border-color .15s, box-shadow .15s;
}

.feature-card-link:hover {
    border-color: #1e3a8a;
    box-shadow: 0 4px 16px rgba(30,58,138,.1);
    color: inherit;
}

.feature-icon { font-size: 28px; margin-bottom: 12px; }

.feature-card h3 { margin: 0 0 8px; font-size: 16px; }

.feature-card p { margin: 0 0 16px; font-size: 14px; color: #555; line-height: 1.6; }

.feature-learn-more {
    margin-top: auto;
    font-size: 13px;
    font-weight: 600;
    color: #1e3a8a;
}

/* ── Feature detail pages ─────────────────────────────────────────────────── */

.feat-hero {
    background: linear-gradient(135deg, #162d6a 0%, #1e3a8a 60%, #2654a3 100%);
    color: #fff;
    padding: 60px 24px;
}

.feat-hero-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.feat-hero-icon { font-size: 40px; margin-bottom: 16px; }

.feat-hero h1 {
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1.15;
    letter-spacing: -.02em;
}

.feat-hero p {
    font-size: 17px;
    opacity: .88;
    margin: 0;
    line-height: 1.6;
}

.feat-body {
    max-width: 820px;
    margin: 0 auto;
    padding: 52px 24px 72px;
}

.feat-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #f0f0f0;
}

.feat-section:last-of-type {
    border-bottom: none;
}

.feat-section h2 {
    font-size: 21px;
    font-weight: 700;
    margin: 0 0 14px;
    color: #111;
}

.feat-section p {
    font-size: 15px;
    line-height: 1.75;
    color: #333;
    margin: 0 0 12px;
}

.feat-section p:last-child { margin-bottom: 0; }

.feat-section code {
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
}

.feat-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin: 20px 0 12px;
}

.feat-detail-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 18px 20px;
}

.feat-detail-label {
    font-size: 13px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.feat-detail-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #444;
}

.feat-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 8px;
}

.btn-feat-secondary {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid #1e3a8a;
    color: #1e3a8a;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.btn-feat-secondary:hover { background: #eef2ff; color: #1e3a8a; }

/* ── Portal demo callout ──────────────────────────────────────────────────── */

.portal-demo { padding: 72px 24px; text-align: center; }

.portal-demo-inner { max-width: 600px; margin: 0 auto; }

.portal-demo h2 { font-size: 28px; margin: 0 0 16px; }

.portal-demo p { color: #555; font-size: 16px; line-height: 1.6; margin: 0 0 28px; }

/* ── Generic page content ─────────────────────────────────────────────────── */

.page-content {
    max-width: 760px;
    margin: 48px auto;
    padding: 0 24px;
}

.page-content h1 { font-size: 28px; margin: 0 0 8px; }

.page-intro { font-size: 16px; color: #555; margin: 0 0 32px; }

/* ── Download page ────────────────────────────────────────────────────────── */

.download-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.download-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 28px 24px;
}

.download-card-coming { opacity: .6; }

.download-platform {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.download-card p { font-size: 14px; color: #555; margin: 0 0 16px; }

.download-actions { margin-bottom: 12px; }

.btn-download-primary {
    display: inline-block;
    padding: 10px 22px;
    background: #1e3a8a;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.btn-download-primary:hover { background: #172e70; color: #fff; }

.download-note { font-size: 12px; color: #9ca3af; margin: 0; }

.coming-soon-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.download-gate-form {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.download-gate-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    min-width: 0;
}

.download-gate-input:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 2px rgba(30,58,138,.15);
}

.btn-download-secondary {
    padding: 8px 16px;
    background: #fff;
    color: #1e3a8a;
    border: 1px solid #1e3a8a;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.btn-download-secondary:hover:not(:disabled) { background: #eef2ff; }
.btn-download-secondary:disabled { opacity: .5; cursor: default; }

.download-gate-sent { font-size: 14px; color: #374151; margin: 0 0 12px; }
.download-gate-error { font-size: 13px; color: #dc2626; margin: 0 0 8px; }

.download-gate-resend { font-size: 12px; color: #9ca3af; margin: 8px 0 0; }

.link-button {
    background: none;
    border: none;
    padding: 0;
    color: #1e3a8a;
    font-size: inherit;
    cursor: pointer;
    text-decoration: underline;
}

.download-prereqs { border-top: 1px solid #e5e7eb; padding-top: 28px; }
.download-prereqs h2 { font-size: 20px; margin: 0 0 16px; }
.download-prereqs ol { padding-left: 20px; }
.download-prereqs li { margin-bottom: 12px; font-size: 15px; line-height: 1.6; }
.download-prereqs code {
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
}

/* ── About page ──────────────────────────────────────────────────────────── */

.about-page { max-width: 720px; }

.about-section { margin-bottom: 40px; }
.about-section h2 { font-size: 20px; margin: 0 0 12px; border-bottom: 1px solid #e5e7eb; padding-bottom: 8px; }
.about-section p  { font-size: 15px; line-height: 1.7; color: #333; margin: 0 0 12px; }

.about-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border: 1px solid #0077b5;
    border-radius: 5px;
    color: #0077b5;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}
.about-linkedin:hover { background: #f0f7ff; color: #0077b5; }

/* ── Contact page ─────────────────────────────────────────────────────────── */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

@media (max-width: 700px) {
    .contact-grid { grid-template-columns: 1fr; }
}

.contact-form-wrap h2 { font-size: 20px; margin: 0 0 20px; }

.contact-form .field { margin-bottom: 16px; }
.contact-form label  { font-size: 13px; font-weight: 600; color: #444; display: block; margin-bottom: 4px; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30,58,138,.12);
}
.contact-form textarea { resize: vertical; }
.contact-form button {
    padding: 10px 24px;
    background: #1e3a8a;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}
.contact-form button:hover { background: #172e70; }

.contact-form-note { font-size: 13px; color: #6b7280; margin-top: 12px; }

.contact-aside { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px 20px;
}
.contact-card-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #9ca3af;
    margin-bottom: 6px;
}
.contact-card a { font-size: 14px; }

/* ── Terms page ───────────────────────────────────────────────────────────── */

.terms-page { max-width: 720px; }

.terms-section { margin-bottom: 32px; }
.terms-section h2 { font-size: 17px; margin: 0 0 10px; }
.terms-section p  { font-size: 15px; line-height: 1.7; color: #333; margin: 0; }

.terms-date { font-size: 13px; color: #9ca3af; margin-top: 40px; border-top: 1px solid #e5e7eb; padding-top: 16px; }

/* ── Help / docs ──────────────────────────────────────────────────────────── */

.help-shell {
    display: flex;
    min-height: calc(100vh - 60px);
}

.help-sidebar {
    width: 240px;
    flex-shrink: 0;
    background: #f9fafb;
    border-right: 1px solid #e5e7eb;
    padding: 24px 16px;
}

.help-sidebar-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #9ca3af;
    padding: 0 8px;
    margin-bottom: 8px;
}

.help-sidebar nav a {
    display: block;
    padding: 7px 10px;
    border-radius: 5px;
    font-size: 14px;
    color: #444;
    text-decoration: none;
}

.help-sidebar nav a:hover { background: #f3f4f6; color: #111; }
.help-sidebar nav a.active { background: #eef2ff; color: #1e3a8a; font-weight: 600; }

.help-nav-section {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #9ca3af;
    padding: 14px 10px 4px;
}

.help-content {
    flex: 1;
    max-width: 720px;
    padding: 40px 48px;
}

.help-content h1 { font-size: 26px; margin: 0 0 16px; }
.help-content h2 { font-size: 20px; margin: 32px 0 12px; }
.help-content h3 { font-size: 16px; margin: 24px 0 8px; }
.help-content p  { font-size: 15px; line-height: 1.7; color: #333; }
.help-content code {
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
}
.help-content pre {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 16px;
    overflow-x: auto;
    font-size: 13px;
}

/* ── Config file generator widget ──────────────────────────────────────────── */

.cfg-gen {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    margin: 24px 0 32px;
}

.cfg-gen-fields {
    padding: 24px;
    background: #f9fafb;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cfg-gen fieldset {
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #fff;
    padding: 16px 20px 12px;
    margin: 0;
}

.cfg-gen legend {
    font-size: 13px;
    font-weight: 700;
    color: #1e3a8a;
    padding: 0 6px;
}

.cfg-gen label {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    color: #555;
    gap: 4px;
    margin-bottom: 10px;
}

.cfg-gen label:last-child { margin-bottom: 0; }

.cfg-gen input[type="text"] {
    border: 1px solid #d1d5db;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 14px;
    font-family: inherit;
    color: #111;
    background: #fff;
    outline: none;
    transition: border-color .15s;
}

.cfg-gen input[type="text"]:focus { border-color: #1e3a8a; }

.cfg-gen-note {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 12px;
    line-height: 1.5;
}

.cfg-gen-output {
    border-top: 1px solid #e5e7eb;
}

.cfg-gen-output-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1e3a8a;
    padding: 8px 16px;
    font-size: 12px;
    font-family: monospace;
    color: rgba(255,255,255,.8);
}

.cfg-gen-output-header button {
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    padding: 3px 12px;
    cursor: pointer;
    transition: background .15s;
}

.cfg-gen-output-header button:hover { background: rgba(255,255,255,.25); }

#cfg-out {
    background: #1a2744;
    margin: 0;
    padding: 16px 20px;
    border-radius: 0;
    border: none;
}

#cfg-out code {
    background: transparent;
    color: #c9d7f7;
    font-size: 13px;
    padding: 0;
}

/* ════════════════════════════════════════════════════════════════════════════
   PORTAL (isolated — no website chrome visible)
   ════════════════════════════════════════════════════════════════════════════ */

.portal-shell { min-height: 100vh; display: flex; flex-direction: column; background: #f5f6f8; }

.portal-header {
    background: #1e3a8a;
    color: #fff;
    padding: 0 24px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.portal-header-org    { font-weight: 700; font-size: 16px; }
.portal-header-member { font-size: 13px; opacity: .9; }
.portal-header a      { color: #fff; }

.portal-nav {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 0 24px;
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}
.portal-nav a {
    display: block;
    padding: 12px 14px;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}
.portal-nav a:hover  { color: #1e3a8a; }
.portal-nav a.active { color: #1e3a8a; border-bottom-color: #1e3a8a; }

.portal-content {
    max-width: 800px;
    margin: 32px auto;
    padding: 0 24px;
    width: 100%;
}

/* ── Login box ────────────────────────────────────────────────────────────── */

.login-box {
    max-width: 440px;
    margin: 80px auto;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,.1);
}
.login-box h1  { margin: 0 0 8px; font-size: 22px; }
.login-box p   { color: #555; margin: 0 0 20px; }

.field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 4px; }
.field label { font-size: 13px; font-weight: 600; color: #444; }
.field input {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
    width: 100%;
}
.field input:focus { outline: none; border-color: #1e3a8a; box-shadow: 0 0 0 3px rgba(30,58,138,.15); }
.field input:disabled { background: #f5f6f8; }

button[type=submit] {
    width: 100%;
    padding: 10px;
    background: #1e3a8a;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
}
button[type=submit]:hover:not(:disabled) { background: #172e70; }
button[type=submit]:disabled { opacity: 0.6; cursor: default; }

/* ── Alerts ───────────────────────────────────────────────────────────────── */

.alert-info {
    background: #eef2ff;
    border: 1px solid #bfc9ee;
    border-radius: 5px;
    padding: 12px 16px;
    margin-bottom: 16px;
    color: #1e3a8a;
    font-size: 14px;
    line-height: 1.5;
}

.alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 5px;
    padding: 10px 14px;
    margin-bottom: 12px;
    color: #991b1b;
    font-size: 14px;
}

/* ── Detail card ──────────────────────────────────────────────────────────── */

.detail-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    margin-bottom: 24px;
    overflow: hidden;
}
.detail-card-header {
    padding: 14px 20px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #6b7280;
}
.detail-grid {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 0;
}
.detail-label, .detail-value {
    padding: 10px 20px;
    font-size: 14px;
    border-bottom: 1px solid #f3f4f6;
}
.detail-label { color: #6b7280; font-weight: 500; display: flex; flex-direction: column; gap: 2px; }
.detail-value { color: #111; }
.detail-grid > *:nth-last-child(-n+2) { border-bottom: none; }
.detail-hint { margin: 0; padding: 8px 20px 12px; font-size: 13px; color: #6b7280; background: #fff; }
.detail-field-note { font-size: 12px; font-weight: 400; color: #9ca3af; line-height: 1.4; }

.member-number { font-size: 12px; color: #9ca3af; margin-bottom: 20px; }

/* ── Edit request ─────────────────────────────────────────────────────────── */

.edit-grid {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 0;
}
.edit-grid label, .edit-grid input {
    padding: 10px 20px;
    font-size: 14px;
    border-bottom: 1px solid #f3f4f6;
}
.edit-grid label { color: #6b7280; font-weight: 500; display: flex; align-items: center; }
.edit-grid input {
    border: 1px solid #d1d5db;
    border-radius: 4px;
    margin: 6px 20px;
    padding: 6px 10px;
    font-size: 14px;
    width: calc(100% - 40px);
}
.edit-grid input:focus { outline: none; border-color: #1e3a8a; box-shadow: 0 0 0 3px rgba(30,58,138,.12); }
.edit-grid > *:nth-last-child(-n+2) { border-bottom: none; }

/* ── Documents list ───────────────────────────────────────────────────────── */

.doc-list {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}
.doc-row {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #f3f4f6;
    gap: 16px;
}
.doc-row:last-child { border-bottom: none; }
.doc-info { flex: 1; }
.doc-label { font-size: 14px; font-weight: 500; color: #111; margin-bottom: 2px; }
.doc-meta  { font-size: 12px; color: #9ca3af; }
.doc-action { display: flex; align-items: center; gap: 10px; }
.btn-download {
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #1e3a8a;
    border-radius: 6px;
    background: transparent;
    color: #1e3a8a;
    text-decoration: none;
    white-space: nowrap;
}
.btn-download:hover { background: #eef2ff; color: #1e3a8a; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */

.btn-primary {
    display: inline-block;
    padding: 8px 18px;
    background: #1e3a8a;
    color: #fff;
    border: 1px solid #1e3a8a;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}
.btn-primary:hover:not(:disabled) { background: #172e70; color: #fff; }
.btn-primary:disabled { opacity: 0.6; cursor: default; }

.btn-secondary {
    display: inline-block;
    padding: 8px 18px;
    background: #fff;
    color: #1e3a8a;
    border: 1px solid #1e3a8a;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}
.btn-secondary:hover { background: #eef2ff; color: #1e3a8a; }
