/* ── Variables ────────────────────────────────────────────────────── */
:root {
    --forest:      #0B6E4F;
    --deep-forest: #022B1E;
    --gold:        #D4A843;
    --signal:      #34D399;
    --coral:       #E8593C;
    --ink:         #1A1A19;
    --ash:         #4A4A47;
    --stone:       #9C9A92;
    --sand:        #E8E6DD;
    --ivory:       #F5F4F0;
    --white:       #FFFFFF;
    --footer-bg:   #011710;

    --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;

    --r-sm:  6px;
    --r-md:  8px;
    --r-lg:  16px;
    --r-xl:  20px;
    --r-pill: 100px;

    --py: 80px;
    --px: clamp(16px, 5vw, 24px);
    --max-w: 1040px;
    --max-text: 720px;
}

/* ── Reset ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--deep-forest);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea { font: inherit; }
textarea { resize: vertical; }

/* ── Typography helpers ───────────────────────────────────────────── */
.gold       { color: var(--gold); }
.white      { color: var(--white); }
.ink        { color: var(--ink); }
.ash        { color: var(--ash); }
.stone      { color: var(--stone); }
.forest-text { color: var(--forest); }
.muted      { color: rgba(255,255,255,0.65); }
.muted-white { color: rgba(255,255,255,0.76); }

.label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

/* ── Navigation ───────────────────────────────────────────────────── */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.25s, border-color 0.25s, backdrop-filter 0.25s;
}

.nav-scrolled {
    background: rgba(2, 43, 30, 0.92);
    border-bottom-color: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
    max-width: calc(var(--max-w) + 48px);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-logo {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    transition: color 0.15s;
}
.nav-link:hover { color: var(--white); }

.logo-forest { color: var(--forest); }
.logo-white  { color: var(--white); }
.logo-ink    { color: var(--ink); }

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1;
    padding: 14px 28px;
    border-radius: var(--r-md);
    transition: opacity 0.15s, transform 0.1s;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
    border: none;
}
.btn:hover:not(.btn-disabled) { opacity: 0.87; }
.btn:active:not(.btn-disabled) { transform: scale(0.98); }

.btn-sm  { font-size: 0.875rem; padding: 10px 20px; }
.btn-lg  { font-size: 1rem; padding: 18px 28px; }
.btn-full { width: 100%; }

.btn-primary   { background: var(--forest);  color: var(--white); }
.btn-secondary { background: var(--gold);    color: var(--ink); }
.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover:not(.btn-disabled) { border-color: rgba(255,255,255,0.65); }

.btn-disabled { opacity: 0.42; pointer-events: none; cursor: default; }

.mt-auto { margin-top: auto; }

/* ── Section layout ───────────────────────────────────────────────── */
.section {
    background: var(--deep-forest);
    padding: var(--py) var(--px);
}
.section.bg-ivory { background: var(--ivory); }

.section-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ── Hero ─────────────────────────────────────────────────────────── */
.hero-inner { padding-top: 40px; }

.hiring-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: var(--r-pill);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.hiring-banner:hover,
.hiring-banner:focus-visible {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.28);
    transform: translateY(-1px);
    outline: none;
}

.hiring-banner span[aria-hidden="true"] {
    color: var(--gold);
    font-size: 1rem;
    line-height: 1;
}

.hiring-label {
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.hiring-copy {
    color: var(--stone);
}

.hero-h1 {
    font-size: clamp(2.25rem, 6vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-body {
    font-size: 1.125rem;
    color: var(--stone);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.65;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}

.trust-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.badge {
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 8px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r-pill);
    color: var(--stone);
    white-space: nowrap;
}

/* ── Problem ──────────────────────────────────────────────────────── */
.problem-inner { max-width: var(--max-text); }

.story-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    margin-top: 24px;
    width: 100%;
}

.story-p {
    font-size: 1.0625rem;
    line-height: 1.7;
    text-align: left;
}

.stat-block  { text-align: center; }

.stat-number {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label { font-size: 1.125rem; margin-bottom: 6px; }
.stat-sub   { font-size: 1rem; }

/* ── Cards row ────────────────────────────────────────────────────── */
.cards-row {
    display: flex;
    gap: 20px;
    width: 100%;
    margin-top: 40px;
    align-items: stretch;
}

.card { flex: 1; }

.dark-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--r-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.light-card {
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: var(--r-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25;
}

.card-body {
    font-size: 0.9375rem;
    line-height: 1.65;
}

/* ── Step cards ───────────────────────────────────────────────────── */
.step-card {
    border-radius: var(--r-xl);
    padding: 28px;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-mono);
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.step-num {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-family: var(--font-mono);
}

/* ── Trust pillars ────────────────────────────────────────────────── */
.verified-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--signal);
    text-transform: uppercase;
    margin-bottom: 4px;
}

/* ── Verticals grid ───────────────────────────────────────────────── */
.verticals-grid { gap: 16px; }

.vertical-signal {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--forest);
    text-transform: uppercase;
    margin-bottom: 4px;
}

/* ── Evidence section ─────────────────────────────────────────────── */
.evidence-inner { max-width: 900px; }

.section-subhead {
    font-size: 1.0625rem;
    max-width: 600px;
    margin-bottom: 32px;
    line-height: 1.65;
}

.evidence-card {
    background: var(--white);
    border: 1px solid rgba(156,154,146,0.3);
    border-radius: var(--r-lg);
    padding: 32px;
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.evidence-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.evidence-card-title-group { flex: 1; }

.evidence-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.evidence-meta {
    font-size: 0.8125rem;
    margin-top: 4px;
    font-family: var(--font-mono);
}

.quality-badge {
    background: rgba(52,211,153,0.12);
    border-radius: 10px;
    padding: 10px 14px;
    text-align: center;
    flex-shrink: 0;
}

.quality-score {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--signal);
    font-family: var(--font-mono);
    line-height: 1.2;
}

.quality-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(52,211,153,0.7);
    letter-spacing: 0.04em;
    white-space: nowrap;
    margin-top: 2px;
}

.gps-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gps-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: var(--signal);
    flex-shrink: 0;
}

.gps-text {
    font-size: 0.8125rem;
    color: var(--forest);
    font-family: var(--font-mono);
}

.block-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 8px;
}

.photo-tile {
    height: 64px;
    background: rgba(2,43,30,0.06);
    border: 1px solid rgba(156,154,146,0.2);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5625rem;
    font-weight: 600;
    color: var(--stone);
    letter-spacing: 0.04em;
    font-family: var(--font-mono);
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checklist-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9375rem;
}

.notes-block {
    background: var(--ivory);
    border-radius: 10px;
    padding: 16px;
}

.notes-text {
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ── Pricing ──────────────────────────────────────────────────────── */
.pricing-grid { gap: 16px; align-items: stretch; }

.pricing-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.featured-card {
    background: var(--forest);
    border: 1.5px solid var(--gold);
    border-radius: var(--r-md);
    padding: 24px;
}

.pricing-plan-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

/* ── Waitlist ─────────────────────────────────────────────────────── */
.waitlist-inner {
    max-width: 720px;
    align-items: stretch;
    text-align: left;
}

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

.waitlist-subhead {
    font-size: 1.0625rem;
    line-height: 1.65;
    margin-top: 12px;
}

.role-selector { margin-bottom: 24px; }

.role-cards {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.role-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: var(--r-md);
    border: 1.5px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.03);
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
    color: var(--stone);
    user-select: none;
}

.role-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid currentColor;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.15s;
}

.role-selected {
    border-color: var(--gold);
    background: rgba(212,168,67,0.08);
    color: var(--white);
}

.role-selected .radio-dot { border-color: var(--gold); }

.role-selected .radio-dot::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--gold);
}

.role-text {
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.4;
}

#waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.field-label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.optional {
    font-weight: 400;
    opacity: 0.75;
}

.form-input {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--r-sm);
    color: var(--white);
    padding: 14px;
    font-size: 0.9375rem;
    line-height: 1.5;
    width: 100%;
    transition: border-color 0.15s, background 0.15s;
    -webkit-appearance: none;
    appearance: none;
}

.form-input::placeholder { color: rgba(156,154,146,0.55); }

.form-input:focus {
    outline: none;
    border-color: rgba(212,168,67,0.55);
    background: rgba(255,255,255,0.09);
}

.form-textarea { min-height: 96px; }

.form-error {
    font-size: 0.875rem;
    color: var(--coral);
}

.form-hint {
    font-size: 0.8125rem;
    text-align: center;
    margin-top: 4px;
}

/* Success state */
#waitlist-success {
    text-align: center;
    padding: 48px 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--signal);
    background: rgba(52,211,153,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--signal);
    line-height: 1;
}

.success-message {
    font-size: 1.0625rem;
    max-width: 460px;
    line-height: 1.65;
}

/* ── Footer ───────────────────────────────────────────────────────── */
.footer {
    background: var(--footer-bg);
    padding: 64px var(--px);
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.footer-brand { display: flex; flex-direction: column; gap: 6px; }

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.footer-tagline { font-size: 1rem; font-weight: 500; }
.footer-sub     { font-size: 0.875rem; }

.footer-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-divider {
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.08);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 0.8125rem;
    color: rgba(156,154,146,0.5);
}

.legal-links { display: flex; gap: 24px; }

.legal-link {
    font-size: 0.8125rem;
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.15s;
}
.legal-link:hover { opacity: 0.75; }

/* ── Admin ────────────────────────────────────────────────────────── */
#admin { background: var(--ivory); min-height: 100vh; }

.admin-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px var(--px) 64px;
}

.admin-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--sand);
}

.admin-logo {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.admin-route-badge {
    font-size: 0.8125rem;
    font-family: var(--font-mono);
    color: var(--stone);
    background: var(--sand);
    padding: 4px 10px;
    border-radius: var(--r-pill);
}

.admin-h1 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.admin-sub  { font-size: 1rem; margin-bottom: 24px; }
.admin-count { font-size: 0.875rem; margin-top: 4px; }

.admin-dash-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
}

.admin-sign-out { color: var(--ash); border-color: var(--sand); }

.admin-table-wrap {
    overflow-x: auto;
    border-radius: var(--r-md);
    border: 1px solid var(--sand);
    background: var(--white);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    min-width: 640px;
}

.admin-table th {
    background: var(--ivory);
    padding: 11px 16px;
    text-align: left;
    font-weight: 600;
    color: var(--ash);
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--sand);
    white-space: nowrap;
}

.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--sand);
    color: var(--ink);
    vertical-align: top;
    line-height: 1.5;
}

.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(11,110,79,0.03); }

.table-link {
    color: var(--forest);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.message-cell { max-width: 220px; color: var(--ash); }
.date-cell    { white-space: nowrap; font-family: var(--font-mono); font-size: 0.8125rem; color: var(--stone); }

.role-chip {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--r-pill);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.chip-client { background: rgba(11,110,79,0.10); color: var(--forest); }
.chip-agent  { background: rgba(212,168,67,0.15); color: #8a6a18; }

.admin-empty {
    text-align: center;
    padding: 48px;
    color: var(--stone);
    font-size: 1rem;
}

/* ── Legal pages ──────────────────────────────────────────────────── */
.legal-nav {
    background: var(--deep-forest);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.legal-nav-logo {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.legal-back {
    font-size: 0.875rem;
    color: var(--stone);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.15s;
}
.legal-back:hover { color: var(--white); }

.legal-page {
    background: var(--ivory);
    min-height: 100vh;
    padding: 56px var(--px) 80px;
}

.legal-inner {
    max-width: 760px;
    margin: 0 auto;
}

.legal-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.2;
}

.legal-meta {
    font-size: 0.875rem;
    color: var(--stone);
    margin-bottom: 8px;
    font-family: var(--font-mono);
}

.legal-compliance {
    font-size: 0.8125rem;
    color: var(--ash);
    margin-bottom: 40px;
    padding: 12px 16px;
    background: rgba(11,110,79,0.06);
    border-left: 3px solid var(--forest);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    line-height: 1.6;
}

.legal-section {
    margin-bottom: 36px;
}

.legal-section h2 {
    font-size: 1.1875rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--sand);
}

.legal-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ash);
    margin: 16px 0 8px;
}

.legal-section p {
    font-size: 0.9375rem;
    color: var(--ash);
    line-height: 1.75;
    margin-bottom: 12px;
}

.legal-section ul,
.legal-section ol {
    padding-left: 20px;
    margin-bottom: 12px;
}

.legal-section li {
    font-size: 0.9375rem;
    color: var(--ash);
    line-height: 1.75;
    margin-bottom: 4px;
}

.legal-section strong { color: var(--ink); font-weight: 600; }

.legal-divider {
    border: none;
    height: 1px;
    background: var(--sand);
    margin: 48px 0;
}

.legal-footer {
    background: var(--footer-bg);
    padding: 32px var(--px);
    text-align: center;
}

.legal-footer p {
    font-size: 0.8125rem;
    color: rgba(156,154,146,0.5);
    margin-bottom: 8px;
}

.legal-footer a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .pricing-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .pricing-grid .card { flex: unset; }
}

@media (max-width: 768px) {
    :root { --py: 56px; }

    .hiring-banner {
        width: 100%;
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
        gap: 8px;
        font-size: 0.8rem;
    }

    .hero-h1   { font-size: 2.25rem; }
    .hero-body { font-size: 1rem; }

    .nav-link { display: none; }

    .cards-row:not(.verticals-grid):not(.pricing-grid) { flex-direction: column; }

    .verticals-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .verticals-grid .card { flex: unset; }

    .light-card.verticals-grid { padding: 14px; }

    .step-card { border-radius: var(--r-lg); padding: 20px; }
    .step-icon { width: 36px; height: 36px; font-size: 0.6875rem; }

    .photo-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }

    .evidence-card { padding: 20px; }
    .evidence-card-header { flex-direction: column; gap: 12px; }

    .form-row { flex-direction: column; }

    .role-cards { flex-direction: column; }

    .footer-top   { flex-direction: column; align-items: flex-start; }
    .footer-ctas  { flex-direction: column; }
    .footer-ctas .btn { width: 100%; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }

    .admin-dash-header { flex-direction: column; }
}

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

    .hiring-banner {
        padding-inline: 12px;
    }

    .hero-ctas { flex-direction: column; width: 100%; }
    .hero-ctas .btn { width: 100%; }

    .trust-badges { gap: 8px; }
    .badge { font-size: 0.75rem; padding: 6px 12px; }

    .section-h2 { font-size: 1.75rem; }
}
