/*
 * Recruiter CSS Bundle: portal.bundle.css
 * Auto-generated by scripts/bundle_recruiter_css.py
 * DO NOT EDIT - Edit source files instead
 *
 * Sources: portal/_base.css, portal/portal-desktop.css, portal/portal-mobile-portrait.css, portal/portal-mobile-landscape.css
 */

/* === portal/_base.css === */

/**
 * Recruiter Portal Landing — Base Styles
 * Standalone CSS. rl- prefix. No collision with rs- (station), school-, or s- (public).
 * Base styles ONLY. Layout and viewtype overrides live in portal-desktop.css and the mobile files.
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
    --rl-primary: #0264c0;
    --rl-primary-dark: #014d94;
    --rl-primary-light: #3b8ed6;
    --rl-primary-bg: #e8f2fc;
    --rl-accent: #ca9a04;
    --rl-accent-bg: #fef6dc;
    --rl-surface: #ffffff;
    --rl-bg: #f8fafc;
    --rl-bg-alt: #f1f5f9;
    --rl-border: #e2e8f0;
    --rl-border-strong: #cbd5e1;
    --rl-text: #0f172a;
    --rl-text-secondary: #475569;
    --rl-text-muted: #94a3b8;
    --rl-success: #10b981;
    --rl-success-bg: #d1fae5;
    --rl-danger: #ef4444;
    --rl-warning: #f59e0b;
    --rl-shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --rl-shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --rl-shadow-lg: 0 12px 32px rgba(0,0,0,0.10);
    --rl-radius: 12px;
    --rl-radius-sm: 8px;
    --rl-radius-lg: 18px;
    --rl-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --rl-font-heading: 'Space Grotesk', sans-serif;
    --rl-container: 1100px;
    --rl-container-narrow: 880px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

.rl-page {
    font-family: var(--rl-font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--rl-text);
    background: var(--rl-bg);
    min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ──────────────────────────────────────────────────────────────────────────
   Container
   ────────────────────────────────────────────────────────────────────────── */

.rl-container {
    max-width: var(--rl-container);
    margin: 0 auto;
    padding: 0 20px;
}

.rl-container-narrow {
    max-width: var(--rl-container-narrow);
    margin: 0 auto;
    padding: 0 20px;
}

/* ──────────────────────────────────────────────────────────────────────────
   Header
   ────────────────────────────────────────────────────────────────────────── */

.rl-header {
    background: var(--rl-surface);
    border-bottom: 1px solid var(--rl-border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.rl-header-inner {
    max-width: var(--rl-container);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.rl-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.rl-logo-img { width: 42px; height: 42px; object-fit: contain; }
.rl-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    line-height: 1;
}
.rl-logo-name {
    font-family: var(--rl-font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--rl-primary);
    line-height: 1;
}
.rl-logo-pill {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rl-primary-dark);
    background: var(--rl-primary-bg);
    padding: 3px 8px;
    border-radius: 999px;
    line-height: 1;
}

/* Center nav — anchor links to page sections */
.rl-header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}
.rl-header-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--rl-text-secondary);
    padding: 8px 14px;
    border-radius: var(--rl-radius-sm);
    transition: color 0.15s, background 0.15s;
}
.rl-header-nav a:hover {
    color: var(--rl-primary);
    background: var(--rl-primary-bg);
}

.rl-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.rl-header-link {
    font-size: 0.9rem;
    color: var(--rl-text-secondary);
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--rl-radius-sm);
}
.rl-header-link:hover { color: var(--rl-primary); background: var(--rl-primary-bg); }

/* Small button variant — used in the header right-side CTA */
.rl-btn-sm {
    font-size: 0.88rem;
    padding: 9px 18px;
    border-radius: var(--rl-radius-sm);
}

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

.rl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--rl-radius-sm);
    font-family: var(--rl-font-body);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.05s ease, box-shadow 0.15s ease, background 0.15s ease;
    white-space: nowrap;
}
.rl-btn:active { transform: translateY(1px); }

.rl-btn-primary {
    background: var(--rl-primary);
    color: #fff;
    box-shadow: var(--rl-shadow-sm);
}
.rl-btn-primary:hover { background: var(--rl-primary-dark); box-shadow: var(--rl-shadow-md); }

.rl-btn-secondary {
    background: var(--rl-surface);
    color: var(--rl-primary);
    border-color: var(--rl-border-strong);
}
.rl-btn-secondary:hover { background: var(--rl-primary-bg); border-color: var(--rl-primary); }

.rl-btn-ghost {
    background: transparent;
    color: var(--rl-text-secondary);
}
.rl-btn-ghost:hover { color: var(--rl-primary); background: var(--rl-primary-bg); }

.rl-btn-lg {
    font-size: 1.05rem;
    padding: 16px 32px;
    border-radius: var(--rl-radius);
}

.rl-btn-block { width: 100%; }

/* ──────────────────────────────────────────────────────────────────────────
   State Banner
   ────────────────────────────────────────────────────────────────────────── */

.rl-state-banner {
    background: var(--rl-primary-bg);
    border: 1px solid var(--rl-primary-light);
    color: var(--rl-primary-dark);
    border-radius: var(--rl-radius);
    padding: 12px 18px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rl-state-banner svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--rl-primary);
}

/* ──────────────────────────────────────────────────────────────────────────
   Section Wrappers
   ────────────────────────────────────────────────────────────────────────── */

.rl-section { padding: 80px 0; }
.rl-section-alt { background: var(--rl-bg-alt); }
.rl-section-light { background: var(--rl-surface); }

.rl-section-header {
    text-align: center;
    margin-bottom: 48px;
}
.rl-section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rl-primary);
    background: var(--rl-primary-bg);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.rl-section-title {
    font-family: var(--rl-font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--rl-text);
    line-height: 1.2;
    margin-bottom: 12px;
}
.rl-section-sub {
    font-size: 1.1rem;
    color: var(--rl-text-secondary);
    max-width: 640px;
    margin: 0 auto;
}

/* ──────────────────────────────────────────────────────────────────────────
   Section 1 — Hero
   ────────────────────────────────────────────────────────────────────────── */

.rl-hero {
    background: linear-gradient(180deg, #ffffff 0%, var(--rl-primary-bg) 100%);
    padding: 64px 0 80px;
    border-bottom: 1px solid var(--rl-border);
}
.rl-hero-inner { text-align: center; }
.rl-hero-title {
    font-family: var(--rl-font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--rl-text);
    max-width: 760px;
    margin: 0 auto 18px;
}
.rl-hero-sub {
    font-size: 1.2rem;
    color: var(--rl-text-secondary);
    max-width: 680px;
    margin: 0 auto 32px;
    line-height: 1.55;
}
.rl-hero-cta {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.rl-trust-strip {
    display: inline-block;
    color: var(--rl-text-muted);
    font-size: 0.88rem;
    padding: 8px 16px;
    border-top: 1px solid var(--rl-border);
    margin-top: 8px;
}
.rl-trust-strip strong { color: var(--rl-text-secondary); }

/* ──────────────────────────────────────────────────────────────────────────
   Section 2 — How It Works
   ────────────────────────────────────────────────────────────────────────── */

.rl-how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.rl-how-step {
    background: var(--rl-surface);
    border: 1px solid var(--rl-border);
    border-radius: var(--rl-radius);
    padding: 28px 22px;
    position: relative;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.rl-how-step:hover {
    transform: translateY(-2px);
    box-shadow: var(--rl-shadow-md);
}
.rl-how-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--rl-primary);
    color: #fff;
    font-family: var(--rl-font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 16px;
}
.rl-how-step h3 {
    font-family: var(--rl-font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--rl-text);
    margin-bottom: 8px;
    line-height: 1.3;
}
.rl-how-step p {
    font-size: 0.92rem;
    color: var(--rl-text-secondary);
    line-height: 1.55;
}

/* ──────────────────────────────────────────────────────────────────────────
   Section 3 — Home Runs (4 cards)
   ────────────────────────────────────────────────────────────────────────── */

.rl-runs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.rl-run-card {
    background: var(--rl-surface);
    border: 1px solid var(--rl-border);
    border-radius: var(--rl-radius);
    padding: 32px 28px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.rl-run-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--rl-shadow-md);
    border-color: var(--rl-primary-light);
}
.rl-run-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--rl-radius-sm);
    background: var(--rl-primary-bg);
    color: var(--rl-primary);
    margin-bottom: 18px;
}
.rl-run-icon svg { width: 26px; height: 26px; }
.rl-run-card h3 {
    font-family: var(--rl-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--rl-text);
    margin-bottom: 10px;
    line-height: 1.3;
}
.rl-run-card p {
    font-size: 0.97rem;
    color: var(--rl-text-secondary);
    line-height: 1.6;
}

/* ──────────────────────────────────────────────────────────────────────────
   Section 4 — Platform Walkthrough (alternating screenshots)
   ────────────────────────────────────────────────────────────────────────── */

.rl-walk-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 48px 0;
    border-bottom: 1px dashed var(--rl-border);
}
.rl-walk-block:last-child { border-bottom: none; }
.rl-walk-block.rl-walk-reverse .rl-walk-text { order: 2; }
.rl-walk-block.rl-walk-reverse .rl-walk-img { order: 1; }

.rl-walk-text h3 {
    font-family: var(--rl-font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--rl-text);
    margin-bottom: 14px;
    line-height: 1.2;
}
.rl-walk-text p {
    font-size: 1.02rem;
    color: var(--rl-text-secondary);
    line-height: 1.65;
    margin-bottom: 14px;
}
.rl-walk-text ul { padding-left: 4px; }
.rl-walk-text li {
    font-size: 0.95rem;
    color: var(--rl-text-secondary);
    margin-bottom: 8px;
    padding-left: 22px;
    position: relative;
}
.rl-walk-text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 14px;
    height: 14px;
    background: var(--rl-primary-bg);
    border: 2px solid var(--rl-primary);
    border-radius: 50%;
}

.rl-walk-img {
    border-radius: var(--rl-radius);
    overflow: hidden;
    box-shadow: var(--rl-shadow-lg);
    border: 1px solid var(--rl-border);
}
.rl-walk-img img {
    display: block;
    width: 100%;
    height: auto;
}

/* ──────────────────────────────────────────────────────────────────────────
   Section 5 — Free vs Paid
   ────────────────────────────────────────────────────────────────────────── */

.rl-fp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 32px;
}
.rl-fp-col {
    background: var(--rl-surface);
    border: 2px solid var(--rl-border);
    border-radius: var(--rl-radius);
    padding: 36px 32px;
    position: relative;
}
.rl-fp-col.rl-fp-paid {
    border-color: var(--rl-primary);
    background: linear-gradient(180deg, #ffffff 0%, var(--rl-primary-bg) 100%);
}
.rl-fp-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.rl-fp-free .rl-fp-tag { background: var(--rl-success-bg); color: #047857; }
.rl-fp-paid .rl-fp-tag { background: var(--rl-primary); color: #fff; }
.rl-fp-col h3 {
    font-family: var(--rl-font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--rl-text);
    margin-bottom: 6px;
}
.rl-fp-col .rl-fp-price {
    font-size: 0.95rem;
    color: var(--rl-text-secondary);
    margin-bottom: 18px;
}
.rl-fp-list { padding: 0; margin-top: 6px; }
.rl-fp-list li {
    font-size: 0.95rem;
    color: var(--rl-text);
    padding: 10px 0 10px 30px;
    border-bottom: 1px solid var(--rl-border);
    position: relative;
    line-height: 1.5;
}
.rl-fp-list li:last-child { border-bottom: none; }
.rl-fp-list li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 14px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--rl-success);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'><path d='M6.5 11.5L3 8l1.4-1.4 2.1 2.1L11.6 4l1.4 1.4-6.5 6.1z'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
}
.rl-fp-paid .rl-fp-list li::before { background-color: var(--rl-primary); }

.rl-fp-callout {
    text-align: center;
    background: var(--rl-accent-bg);
    border: 1px solid #f5d57a;
    color: #7a5b00;
    padding: 16px 24px;
    border-radius: var(--rl-radius);
    font-size: 1rem;
    font-weight: 500;
}

/* ──────────────────────────────────────────────────────────────────────────
   Section 6 — Pricing Calculator
   ────────────────────────────────────────────────────────────────────────── */

.rl-calc {
    background: var(--rl-surface);
    border: 1px solid var(--rl-border);
    border-radius: var(--rl-radius-lg);
    padding: 40px;
    box-shadow: var(--rl-shadow-md);
    max-width: 720px;
    margin: 0 auto;
}
.rl-calc-tabs {
    display: flex;
    gap: 8px;
    background: var(--rl-bg-alt);
    padding: 6px;
    border-radius: var(--rl-radius-sm);
    margin-bottom: 32px;
}
.rl-calc-tab {
    flex: 1;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--rl-text-secondary);
    background: transparent;
    transition: background 0.15s, color 0.15s;
}
.rl-calc-tab.rl-calc-tab-active {
    background: var(--rl-surface);
    color: var(--rl-primary);
    box-shadow: var(--rl-shadow-sm);
}

.rl-calc-slider-row {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}
.rl-calc-slider-label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.95rem;
    color: var(--rl-text-secondary);
    font-weight: 500;
}
.rl-calc-seat-count {
    font-family: var(--rl-font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--rl-primary);
}
.rl-calc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--rl-bg-alt);
    outline: none;
}
.rl-calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--rl-primary);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(2, 100, 192, 0.3);
}
.rl-calc-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--rl-primary);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(2, 100, 192, 0.3);
}

.rl-calc-total-row {
    text-align: center;
    padding: 24px;
    background: var(--rl-primary-bg);
    border-radius: var(--rl-radius);
    margin-bottom: 24px;
}
.rl-calc-total-label {
    font-size: 0.85rem;
    color: var(--rl-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    margin-bottom: 6px;
}
.rl-calc-total {
    font-family: var(--rl-font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--rl-primary-dark);
    line-height: 1;
}
.rl-calc-total-period {
    font-size: 1rem;
    color: var(--rl-text-secondary);
    font-weight: 500;
    margin-left: 4px;
}

/* Bulk hint — only visible when slider is at max (20 seats) */
.rl-calc-bulk-hint {
    background: var(--rl-accent-bg);
    border: 1px solid #f5d57a;
    border-radius: var(--rl-radius);
    padding: 14px 18px;
    margin-bottom: 22px;
    font-size: 0.93rem;
    color: #6a4e00;
    line-height: 1.5;
    display: none;            /* hidden by default; JS toggles .rl-calc-bulk-hint-show */
}
.rl-calc-bulk-hint-show { display: block; }
.rl-calc-bulk-hint strong { color: #4a3700; display: block; margin-bottom: 4px; }
.rl-calc-bulk-hint a {
    color: var(--rl-primary-dark);
    text-decoration: underline;
    font-weight: 600;
}
.rl-calc-bulk-hint a:hover { color: var(--rl-primary); }

.rl-calc-includes {
    background: var(--rl-bg);
    border: 1px solid var(--rl-border);
    border-radius: var(--rl-radius);
    padding: 20px 22px;
    margin-bottom: 24px;
}
.rl-calc-includes h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--rl-text-secondary);
    margin-bottom: 12px;
    font-weight: 700;
}
.rl-calc-includes ul { display: grid; gap: 8px; }
.rl-calc-includes li {
    font-size: 0.9rem;
    color: var(--rl-text);
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}
.rl-calc-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--rl-success);
    font-weight: 700;
}

/* ──────────────────────────────────────────────────────────────────────────
   Section 7 — Bulk CTA
   ────────────────────────────────────────────────────────────────────────── */

.rl-bulk {
    text-align: center;
    background: linear-gradient(135deg, var(--rl-primary-dark) 0%, var(--rl-primary) 100%);
    color: #fff;
    border-radius: var(--rl-radius-lg);
    padding: 48px 32px;
    max-width: 880px;
    margin: 0 auto;
}
.rl-bulk h3 {
    font-family: var(--rl-font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.rl-bulk p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 22px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.rl-bulk .rl-btn {
    background: #fff;
    color: var(--rl-primary-dark);
    border: none;
    padding: 14px 28px;
    font-weight: 700;
    white-space: normal;       /* allow wrap — overrides .rl-btn nowrap default */
    max-width: 100%;
    line-height: 1.35;
    text-align: center;
    height: auto;
}
.rl-bulk .rl-btn:hover { background: var(--rl-bg-alt); }

/* ──────────────────────────────────────────────────────────────────────────
   Section 8 — FAQ
   ────────────────────────────────────────────────────────────────────────── */

.rl-faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.rl-faq-item {
    background: var(--rl-surface);
    border: 1px solid var(--rl-border);
    border-radius: var(--rl-radius);
    overflow: hidden;
    transition: border-color 0.15s ease;
}
.rl-faq-item[open] { border-color: var(--rl-primary-light); }
.rl-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    font-family: var(--rl-font-heading);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--rl-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.rl-faq-item summary::-webkit-details-marker { display: none; }
.rl-faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--rl-primary);
    flex-shrink: 0;
    line-height: 1;
    transition: transform 0.2s ease;
}
.rl-faq-item[open] summary::after { content: '−'; }
.rl-faq-item-body {
    padding: 0 22px 20px;
    color: var(--rl-text-secondary);
    font-size: 0.97rem;
    line-height: 1.65;
}

/* ──────────────────────────────────────────────────────────────────────────
   Section 9 — Final CTA
   ────────────────────────────────────────────────────────────────────────── */

.rl-final {
    background: linear-gradient(135deg, var(--rl-primary-dark) 0%, var(--rl-primary) 100%);
    color: #fff;
    text-align: center;
    padding: 80px 24px;
}
.rl-final h2 {
    font-family: var(--rl-font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 14px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.rl-final p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 580px;
    margin: 0 auto 28px;
}
.rl-final .rl-btn-primary {
    background: #fff;
    color: var(--rl-primary-dark);
    padding: 18px 40px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: var(--rl-radius);
}
.rl-final .rl-btn-primary:hover { background: var(--rl-bg-alt); }

/* ──────────────────────────────────────────────────────────────────────────
   Footer
   ────────────────────────────────────────────────────────────────────────── */

.rl-footer {
    background: var(--rl-text);
    color: rgba(255, 255, 255, 0.65);
    padding: 32px 0;
    text-align: center;
    font-size: 0.88rem;
}
.rl-footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
}
.rl-footer a:hover { color: #fff; }
.rl-footer-links { display: flex; justify-content: center; gap: 22px; margin-top: 10px; flex-wrap: wrap; }


/* === portal/portal-desktop.css === */

/**
 * Recruiter Portal Landing — Desktop layout overrides
 * @media (min-width: 769px)
 *
 * Layout-only. Base styles in _base.css.
 */

@media (min-width: 769px) {

    /* Hero spacing on wide screens */
    .rl-hero {
        padding: 88px 0 100px;
    }
    .rl-hero-title {
        font-size: 3.4rem;
    }

    /* How It Works — keep 4 columns wide on desktop */
    .rl-how-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }

    /* Home runs — 2 cols at desktop with extra padding */
    .rl-runs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .rl-run-card { padding: 36px 32px; }

    /* Walkthrough — 2 col grid with consistent gap */
    .rl-walk-block {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        padding: 56px 0;
    }

    /* Free vs Paid — 2 col */
    .rl-fp-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    /* Calculator — wider on desktop */
    .rl-calc { padding: 48px; }

    /* Section header sizes */
    .rl-section-title {
        font-size: 2.5rem;
    }

    /* Final CTA larger */
    .rl-final h2 { font-size: 2.8rem; }
}


/* === portal/portal-mobile-portrait.css === */

/**
 * Recruiter Portal Landing — Mobile Portrait layout overrides
 * @media (max-width: 768px)
 *
 * Layout-only. Base styles in _base.css.
 */

@media (max-width: 768px) {

    /* ── Header ── */
    .rl-header { padding: 10px 0; }
    .rl-header-inner { padding: 0 14px; gap: 8px; }
    .rl-logo-img { width: 30px; height: 30px; }
    .rl-logo-name { font-size: 1rem; }
    .rl-logo-pill { font-size: 0.62rem; padding: 3px 7px; }
    .rl-header-link { font-size: 0.85rem; padding: 6px 10px; }
    .rl-header-actions { gap: 6px; }
    /* Hide the center anchor nav on small screens — actions stay */
    .rl-header-nav { display: none; }
    /* Compress the right-side primary CTA */
    .rl-header-actions .rl-btn-sm { padding: 8px 14px; font-size: 0.82rem; }

    /* ── State Banner — tighter on small screens ── */
    .rl-state-banner {
        padding: 10px 14px;
        font-size: 0.88rem;
        gap: 8px;
        margin-bottom: 18px;
        align-items: flex-start;
    }
    .rl-state-banner svg { width: 18px; height: 18px; margin-top: 2px; }

    /* ── Section spacing ── */
    .rl-section { padding: 56px 0; }
    .rl-section-header { margin-bottom: 36px; }
    .rl-section-title { font-size: 1.7rem; }
    .rl-section-sub { font-size: 1rem; }
    .rl-container, .rl-container-narrow { padding: 0 16px; }

    /* ── Hero ── */
    .rl-hero { padding: 48px 0 60px; }
    .rl-hero-title { font-size: 2rem; }
    .rl-hero-sub { font-size: 1.02rem; padding: 0 4px; }
    .rl-hero-cta { flex-direction: column; align-items: stretch; gap: 10px; }
    .rl-hero-cta .rl-btn { width: 100%; }
    .rl-trust-strip { font-size: 0.78rem; padding: 8px 12px; }

    /* ── How It Works — single column, vertical flow ── */
    .rl-how-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .rl-how-step { padding: 22px 20px; }

    /* ── Home Runs — single column ── */
    .rl-runs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .rl-run-card { padding: 26px 22px; }
    .rl-run-card h3 { font-size: 1.15rem; }

    /* ── Walkthrough — stack image above text ── */
    .rl-walk-block {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 36px 0;
    }
    .rl-walk-block .rl-walk-text { order: 2; }
    .rl-walk-block .rl-walk-img { order: 1; }
    .rl-walk-block.rl-walk-reverse .rl-walk-text { order: 2; }
    .rl-walk-block.rl-walk-reverse .rl-walk-img { order: 1; }
    .rl-walk-text h3 { font-size: 1.35rem; }
    .rl-walk-text p { font-size: 0.97rem; }

    /* ── Free vs Paid — stacked ── */
    .rl-fp-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .rl-fp-col { padding: 28px 22px; }
    .rl-fp-col h3 { font-size: 1.25rem; }
    .rl-fp-list li {
        font-size: 0.9rem;
        padding: 9px 0 9px 28px;
        line-height: 1.45;
    }
    .rl-fp-list li::before {
        top: 12px;
        width: 14px;
        height: 14px;
        background-size: 14px;
    }
    .rl-fp-callout { font-size: 0.92rem; padding: 14px 18px; }

    /* ── Calculator ── */
    .rl-calc { padding: 26px 22px; border-radius: var(--rl-radius); }
    .rl-calc-tabs { margin-bottom: 24px; }
    .rl-calc-tab { padding: 10px 12px; font-size: 0.88rem; }
    .rl-calc-slider-label { font-size: 0.88rem; }
    .rl-calc-seat-count { font-size: 1.2rem; }
    .rl-calc-total { font-size: 2.4rem; }
    .rl-calc-total-row { padding: 18px; }
    .rl-calc-includes { padding: 16px 18px; }
    .rl-calc-includes h4 { font-size: 0.78rem; margin-bottom: 10px; }
    .rl-calc-includes li { font-size: 0.86rem; }

    /* ── Bulk CTA ── */
    .rl-bulk { padding: 36px 22px; }
    .rl-bulk h3 { font-size: 1.35rem; }
    .rl-bulk p { font-size: 0.95rem; }
    .rl-bulk .rl-btn { padding: 14px 22px; font-size: 0.92rem; line-height: 1.4; }

    /* ── FAQ ── */
    .rl-faq-item summary { padding: 16px 18px; font-size: 0.97rem; }
    .rl-faq-item-body { padding: 0 18px 16px; font-size: 0.93rem; }

    /* ── Final CTA ── */
    .rl-final { padding: 56px 20px; }
    .rl-final h2 { font-size: 1.8rem; }
    .rl-final p { font-size: 1rem; }
    .rl-final .rl-btn-primary { padding: 16px 32px; font-size: 1rem; width: 100%; max-width: 360px; }

    /* ── Footer ── */
    .rl-footer { padding: 24px 0; font-size: 0.82rem; }
    .rl-footer-links { gap: 14px; margin-top: 8px; }
}


/* === portal/portal-mobile-landscape.css === */

/**
 * Recruiter Portal Landing — Mobile Landscape layout overrides
 * @media (max-width: 926px) and (orientation: landscape)
 *
 * Layout-only. Base styles in _base.css.
 */

@media (max-width: 926px) and (orientation: landscape) {

    /* Compress vertical padding in landscape */
    .rl-section { padding: 48px 0; }
    .rl-section-header { margin-bottom: 32px; }
    .rl-section-title { font-size: 1.9rem; }
    .rl-hero { padding: 40px 0 56px; }
    .rl-hero-title { font-size: 2.2rem; }
    .rl-hero-sub { font-size: 1rem; }

    /* Header — keep the center nav visible but compress everything */
    .rl-header-inner { gap: 12px; }
    .rl-logo-name { font-size: 1rem; }
    .rl-logo-pill { font-size: 0.65rem; padding: 3px 7px; }
    .rl-header-nav { gap: 0; }
    .rl-header-nav a { font-size: 0.82rem; padding: 6px 10px; }
    .rl-header-link { font-size: 0.85rem; padding: 6px 10px; }
    .rl-header-actions .rl-btn-sm { padding: 7px 12px; font-size: 0.82rem; }

    /* State banner — wrap-friendly */
    .rl-state-banner { font-size: 0.9rem; padding: 10px 14px; }

    /* How It Works — 2 cols in landscape (better than 4 cramped) */
    .rl-how-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Home Runs — 2 cols in landscape */
    .rl-runs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Walkthrough — 2 col in landscape (works at 926px wide) */
    .rl-walk-block {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        padding: 28px 0;
    }
    .rl-walk-block .rl-walk-text { order: unset; }
    .rl-walk-block .rl-walk-img { order: unset; }

    /* Free vs Paid — 2 col in landscape */
    .rl-fp-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
    .rl-fp-col { padding: 28px 24px; }

    /* Calculator — slightly compressed in landscape */
    .rl-calc { padding: 32px 28px; }
    .rl-calc-tabs { margin-bottom: 24px; }
    .rl-calc-total { font-size: 2.6rem; }
    .rl-calc-includes { padding: 16px 18px; }

    /* Bulk CTA — long button text wraps in landscape */
    .rl-bulk { padding: 36px 28px; }
    .rl-bulk h3 { font-size: 1.5rem; }
    .rl-bulk .rl-btn { padding: 14px 24px; font-size: 0.92rem; line-height: 1.4; }

    /* Final CTA */
    .rl-final { padding: 48px 24px; }
    .rl-final h2 { font-size: 2rem; }
}
