/* CSS document */

/*
    Last Modified: '2026-04-30 09:46';
*/

@font-face {
    font-family: "Gotham";
    src: url("https://lib.thehotline.us/font/gotham/gotham-400.woff2");
    font-weight: 400;
}

@font-face {
    font-family: "Gotham";
    src: url("https://lib.thehotline.us/font/gotham/gotham-800.woff2");
    font-weight: 800;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --navy: #1b3a5c;
    --navy-dark: #0f2236;
    --purple: #5a2d82;
    --teal: #2e86ab;
    --teal-dark: #1d6a8a;
    --teal-light: #ebf5fb;
    --amber: #c55a11;
    --amber-light: #fef0e6;
    --green: #2a6e48;
    --green-light: #e8f5ee;
    --red: #b91c1c;
    --red-light: #fee2e2;
    --gray-light: #f5f7fa;
    --gray: #6b7280;
    --gray-dark: #374151;
    --text: #1f2937;
    --white: #eee;
    --radius: 8px;
    --shadow: 0 2px 14px rgba(0, 0, 0, 0.09);
}
body {
    font-family: "Gotham", Roboto, Helvetica, sans-serif;
    color: var(--text);
    background: var(--gray-light);
    min-height: 100vh;
    padding-bottom: 80px;
}

/* ── QUICK EXIT ── */
#qe-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 400;
}
#qe-bar .qe-hint {
    opacity: 0.85;
    font-size: 12px;
}
#qe-bar .qe-hint kbd {
    background: rgba(255, 255, 255, 0.2);
    color: #c30;
    border-radius: 3px;
    padding: 3px 5px;
    font-family: monospace;
}
#qe-btn {
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 5px 16px;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 0.3px;
    white-space: nowrap;
}
#qe-btn:hover {
    background: #ffe4e4;
}

/* ── HEADER ── */
#site-header {
    background: var(--navy);
    color: white;
    padding: 52px 20px 28px;
    text-align: center;
    margin-top: 36px;
}
.hdr-eyebrow {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 8px;
}
#site-header h1 {
    font-size: clamp(20px, 4vw, 30px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 8px;
}
.hdr-sub {
    font-size: 14px;
    opacity: 0.75;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ── PROGRESS ── */
#prog-wrap {
    background: var(--navy-dark);
    padding: 14px 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#prog-track {
    width: 100%;
    max-width: 680px;
    height: 6px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 3px;
    overflow: hidden;
}
#prog-bar {
    height: 100%;
    background: var(--teal);
    border-radius: 3px;
    transition: width 0.35s ease;
    width: 0%;
}
#prog-labels {
    width: 100%;
    max-width: 680px;
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

/* ── MAIN ── */
#app {
    max-width: 680px;
    margin: 28px auto 0;
    padding: 0 14px;
}

.site-btn {
    background: var(--teal);
    display: inline-block;
    padding: 10px 30px;
    border-radius: 100px;
    margin: 10px 0 0 0;
    color: #fafafa;
    text-decoration: none;
    box-shadow: 0 0 8px rgba(0, 0, 0, .2);
}

/* ── CARD ── */
.card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px 28px 24px;
    margin-bottom: 14px;
    animation: fadeUp 0.22s ease both;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.step-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 6px;
}
.step-title {
    font-size: 21px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 12px;
}
.step-intro {
    color: var(--gray);
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: 22px;
}
.mil-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--navy);
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 3px;
    margin-bottom: 8px;
}

/* ── FORMS ── */
.form-group {
    margin-bottom: 18px;
}
.form-label {
    display: block;
    font-weight: 600;
    font-size: 13.5px;
    color: var(--gray-dark);
    margin-bottom: 5px;
    line-height: 1.4;
}
.form-hint {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 5px;
    line-height: 1.4;
}
.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 9px 13px;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius);
    font-size: 14.5px;
    font-family: inherit;
    color: var(--text);
    background: white;
    transition: border-color 0.15s;
    outline: none;
    -webkit-appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(46, 134, 171, 0.13);
}
.form-textarea {
    resize: vertical;
    min-height: 76px;
}
.input-row {
    display: grid;
    gap: 8px;
}
.input-row.col2 {
    grid-template-columns: 1fr 1fr;
}
.input-row.col3 {
    grid-template-columns: 2fr 1.2fr 1fr;
}
@media (max-width: 480px) {
    .input-row.col2,
    .input-row.col3 {
        grid-template-columns: 1fr;
    }
}

/* ── OPTIONS ── */
.options-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.opt {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 14px;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius);
    cursor: pointer;
    transition:
        border-color 0.15s,
        background 0.15s;
    -webkit-user-select: none;
    user-select: none;
}
.opt:hover {
    border-color: var(--teal);
    background: var(--teal-light);
}
.opt.sel {
    border-color: var(--teal);
    background: var(--teal-light);
}
.opt input[type="radio"],
.opt input[type="checkbox"] {
    margin-top: 1px;
    accent-color: var(--teal);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    cursor: pointer;
}
.opt-label {
    font-size: 14.5px;
    line-height: 1.4;
    flex: 1;
}
.opt-sub {
    font-size: 12px;
    color: var(--gray);
    margin-top: 2px;
}

/* ── CALLOUTS ── */
.callout {
    border-radius: var(--radius);
    padding: 14px 18px;
    margin: 14px 0;
    font-size: 13.5px;
    line-height: 1.6;
}
.callout b {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.callout-amber {
    background: var(--amber-light);
    border-left: 4px solid var(--amber);
    color: #6b2d00;
}
.callout-blue {
    background: var(--teal-light);
    border-left: 4px solid var(--teal);
    color: #1a3a5c;
}
.callout-green {
    background: var(--green-light);
    border-left: 4px solid var(--green);
    color: #1a3a2a;
}
.callout-red {
    background: var(--red-light);
    border-left: 4px solid var(--red);
    color: #7f1d1d;
}
.callout-navy {
    background: #eef2f7;
    border-left: 4px solid var(--navy);
    color: var(--navy-dark);
}
.callout a {
    color: inherit;
    font-weight: 700;
}

/* ── CHECKLIST ── */
.checklist {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.chk-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 11px;
    background: var(--gray-light);
    border-radius: 6px;
    cursor: pointer;
}
.chk-item input {
    accent-color: var(--green);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    cursor: pointer;
}
.chk-item label {
    font-size: 13.5px;
    cursor: pointer;
    flex: 1;
    line-height: 1.35;
}
.chk-item.mil {
    border-left: 3px solid var(--navy);
}
.chk-item:hover {
    background: #eaecf0;
}
.chk-section {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray);
    margin: 14px 0 6px;
}

/* ── URGENCY BANNER ── */
.urgent {
    background: var(--red);
    color: white;
    text-align: center;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    margin-bottom: 16px;
}
.urgent a {
    color: white;
    font-weight: 800;
}

/* ── COMPARE TABLE ── */
.cmp-tbl {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin: 12px 0;
    border-radius: var(--radius);
    overflow: hidden;
}
.cmp-tbl th {
    background: var(--navy);
    color: white;
    padding: 9px 12px;
    text-align: left;
    font-weight: 600;
}
.cmp-tbl td {
    padding: 9px 12px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
    line-height: 1.5;
}
.cmp-tbl tr:last-child td {
    border-bottom: none;
}
.cmp-tbl tr:nth-child(even) td {
    background: var(--gray-light);
}
.cmp-tbl td:first-child {
    background: var(--teal-light);
    font-weight: 600;
    color: var(--navy);
    width: 35%;
}
.cmp-tbl tr:nth-child(even) td:first-child {
    background: #d6eaf4;
}

/* ── NAV BUTTONS ── */
.nav-btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    gap: 10px;
}
.btn {
    padding: 11px 26px;
    border: none;
    border-radius: var(--radius);
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
}
.btn-primary {
    background: var(--teal);
    color: white;
    min-width: 130px;
}
.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(46, 134, 171, 0.3);
}
.btn-secondary {
    background: transparent;
    color: var(--gray);
    border: 2px solid #e5e7eb;
}
.btn-secondary:hover {
    border-color: var(--gray);
    color: var(--text);
}
.btn-navy {
    background: var(--navy);
    color: white;
}
.btn-navy:hover {
    background: var(--navy-dark);
}
.btn-red {
    background: var(--red);
    color: white;
}
.btn-print {
    background: var(--navy);
    color: white;
    padding: 11px 22px;
}
.btn-print:hover {
    background: var(--navy-dark);
}

/* ── HR ── */
hr.divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 18px 0;
}

/* ── PLAN OUTPUT ── */
#plan-output {
    font-size: 14px;
}
.plan-sec {
    margin-bottom: 24px;
}
.plan-sec-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    border-bottom: 2px solid var(--teal);
    padding-bottom: 5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.plan-row {
    display: flex;
    gap: 8px;
    margin-bottom: 7px;
    line-height: 1.5;
}
.plan-lbl {
    font-weight: 600;
    color: var(--gray-dark);
    min-width: 170px;
    flex-shrink: 0;
    font-size: 13px;
}
.plan-val {
    flex: 1;
    color: var(--text);
    font-size: 13px;
    border-bottom: 1px solid #d1d5db;
    min-height: 18px;
    padding-bottom: 1px;
}
.plan-val.blank {
    color: var(--gray);
    font-style: italic;
    font-size: 12px;
}
.plan-checked {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 4px;
    padding-left: 4px;
}
.plan-checked::before {
    content: "✓ ";
    color: var(--green);
    font-weight: 700;
}
.plan-hotline {
    background: var(--navy);
    color: white;
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    line-height: 1.9;
}
.plan-hotline strong {
    font-size: 15px;
    display: block;
    margin-bottom: 4px;
}
.res-item {
    display: flex;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 13.5px;
}
.res-item:last-child {
    border-bottom: none;
}
.res-name {
    font-weight: 600;
    color: var(--navy);
    min-width: 160px;
    flex-shrink: 0;
}

/* ── CELEBRATION ── */
.celebrate {
    text-align: center;
    padding: 20px 0 8px;
}
.celebrate .big {
    font-size: 40px;
    margin-bottom: 8px;
}
.celebrate h3 {
    font-size: 18px;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 6px;
}
.celebrate p {
    font-size: 14px;
    color: var(--gray);
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── PRINT ── */
@media print {
    #qe-bar,
    #site-header,
    #prog-wrap,
    #app,
    #print-actions {
        display: none !important;
    }
    #print-wrapper {
        display: block !important;
    }
    body {
        background: white;
        padding: 0;
        font-size: 12px;
    }
    .prt-header {
        text-align: center;
        padding: 14px 0 10px;
        border-bottom: 3px solid #1b3a5c;
        margin-bottom: 16px;
    }
    .prt-header h2 {
        font-size: 18px;
        color: #1b3a5c;
        font-weight: 700;
    }
    .prt-header p {
        font-size: 11px;
        color: #666;
        margin-top: 3px;
    }
    .plan-sec-title {
        font-size: 13px;
        border-bottom: 1.5px solid #2e86ab;
        padding-bottom: 4px;
        margin-bottom: 8px;
    }
    .plan-row {
        margin-bottom: 5px;
    }
    .plan-val {
        border-bottom: 1px solid #ccc;
    }
    .plan-hotline {
        background: #1b3a5c !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}
#print-wrapper {
    display: none;
    padding: 20px;
}

@media (prefers-color-scheme: dark) {
    #qe-bar {
        background: #222;
        color: #ddd;
    }
    #qe-bar .qe-hint kbd {
        background: rgba(255, 255, 255, 0.1);
        color: #c30;
    }
}
