/*
  Site styles for the invite-only job-fair sites.
  Brand colors come from CSS custom properties injected by _Layout.cshtml from SiteBranding;
  the values below are fallbacks so the page still renders if no brand config is present.
*/
:root {
  --brand: #0044B3;
  --brand-dark: #003399;
  --brand-darker: #002277;
  --brand-tint: #E6F1FB;
  --brand-tint-2: #f3f8fd;
  --brand-rgb: 0,68,179;
  --ink: #0f1419;
  --ink-2: #1a1a1a;
  --muted: #4b5563;
  --muted-2: #6b7280;
  --line: #e5e7eb;
  --line-soft: #f0eeea;
  --bg-page: #f3f5f7;
  --gold: #FFB800;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fff; color: var(--ink-2);
  -webkit-font-smoothing: antialiased; line-height: 1.55;
}
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

.site-header { border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 50; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; text-decoration: none; }
.logo-mark { width: 32px; height: 32px; border-radius: 8px; background: var(--brand); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 900; font-size: 18px; letter-spacing: -0.02em; }
.logo-x { color: var(--brand); }

.nav-divider { width: 1px; height: 20px; background: var(--line); margin: 0 4px; }
.nav-employer {
  border: 1px solid var(--brand) !important;
  color: var(--brand-dark) !important;
  padding: 8px 18px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  transition: background 0.15s, color 0.15s !important;
}
.nav-employer:hover {
  background: var(--brand) !important;
  color: #fff !important;
}

.nav { display: flex; gap: 14px; align-items: center; }
.nav a { color: var(--ink-2); text-decoration: none; font-size: 14px; font-weight: 600; }
.nav a:hover { color: var(--brand); }
.nav a.active { color: var(--brand-dark); }
.nav-cta { background: var(--ink); color: #fff !important; padding: 9px 18px; border-radius: 8px; font-size: 14px; font-weight: 700; }
.nav-cta:hover { background: var(--brand); }

.hero { position: relative; overflow: hidden; padding: 96px 0 80px; background: linear-gradient(180deg, var(--brand-tint-2) 0%, #fff 100%); }
.hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 15% 30%, rgba(var(--brand-rgb),0.12) 0%, transparent 50%), radial-gradient(circle at 85% 65%, rgba(var(--brand-rgb),0.08) 0%, transparent 50%); pointer-events: none; }
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 880px; margin: 0 auto; }
.hero-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--brand-tint); color: var(--brand-darker); padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 28px; border: 1px solid rgba(var(--brand-rgb),0.18); }
.hero-pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); display: inline-block; box-shadow: 0 0 0 4px rgba(var(--brand-rgb),0.18); }
.hero h1 { font-size: 72px; font-weight: 800; line-height: 1.04; letter-spacing: -0.035em; color: var(--ink); margin-bottom: 26px; }
.hero h1 em { font-style: normal; color: var(--brand); }
.hero-sub { font-size: 21px; line-height: 1.5; color: var(--muted); max-width: 720px; margin: 0 auto 44px; }
.hero-cta-row { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; }
.btn-primary { background: var(--brand); color: #fff; padding: 17px 36px; border-radius: 10px; font-size: 16px; font-weight: 700; border: none; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: background 0.15s, transform 0.15s; box-shadow: 0 6px 20px rgba(var(--brand-rgb),0.25); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-secondary { background: #fff; color: var(--ink); padding: 17px 30px; border-radius: 10px; font-size: 16px; font-weight: 700; border: 1px solid var(--line); cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: border-color 0.15s, background 0.15s; }
.btn-secondary:hover { border-color: var(--brand); background: var(--brand-tint-2); }

.social-proof { padding: 56px 0 64px; border-top: 1px solid var(--line); background: #fff; }
.social-proof-eyebrow { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 28px; }
.logos-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; align-items: center; border: 1px solid var(--line); border-radius: 14px; background: #fff; overflow: hidden; }
.logo-tile { padding: 26px 16px; display: flex; align-items: center; justify-content: center; min-height: 96px; border-right: 1px solid var(--line-soft); }
.logo-tile:last-child { border-right: none; }
.logo-tile .lname { font-weight: 800; font-size: 14px; letter-spacing: -0.01em; text-align: center; line-height: 1.15; }
.lname.cvs { color: #cc0000; }
.lname.amazon { color: #232f3e; font-size: 14px; font-style: italic; }
.lname.target { color: #cc0000; }
.lname.walmart { color: #0071ce; font-size: 12px; }
.lname.starbucks { color: #006241; font-size: 12px; }
.lname.fedex { color: #4d148c; }
.lname.ups { color: #5a3921; }

.lname.kaiser { color: #006e9d; font-size: 12px; }
.lname.uhc { color: #002677; font-size: 12px; }
.lname.hca { color: #00a4e1; font-size: 13px; }
.lname.ascension { color: #009dc4; }
.lname.elevance { color: #0033a0; font-size: 12px; }

.events-section { padding: 88px 0 96px; background: #fafafa; border-top: 1px solid var(--line); }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 36px; flex-wrap: wrap; }
.section-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-dark); margin-bottom: 10px; }
.section-title { font-size: 40px; font-weight: 800; letter-spacing: -0.025em; color: var(--ink); line-height: 1.15; }
.section-sub { font-size: 17px; color: var(--muted); margin-top: 12px; max-width: 540px; }
.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.event-card { background: #fff; border-radius: 14px; border: 1px solid var(--line); padding: 32px 32px 28px; display: flex; flex-direction: column; gap: 18px; transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s; }
.event-card:hover { border-color: var(--brand); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(var(--brand-rgb),0.08); }
.event-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.event-card-loc { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-dark); background: var(--brand-tint); padding: 6px 11px; border-radius: 6px; display: inline-block; }
.event-card-date { font-size: 14px; font-weight: 700; color: var(--muted); white-space: nowrap; }
.event-card-city { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); line-height: 1.1; }
.event-card-type { font-size: 15px; color: var(--muted); margin-top: 4px; }
.event-card-divider { border-top: 1px solid var(--line-soft); margin: 4px 0; }
.event-card-cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ec-btn { padding: 13px 18px; border-radius: 8px; font-size: 14px; font-weight: 700; text-decoration: none; text-align: center; cursor: pointer; border: none; transition: background 0.15s, border-color 0.15s, color 0.15s; }
.ec-btn-primary { background: var(--brand); color: #fff; }
.ec-btn-primary:hover { background: var(--brand-dark); }
.ec-btn-secondary { background: #fff; color: var(--ink-2); border: 1px solid var(--line); }
.ec-btn-secondary:hover { border-color: var(--ink); }

.load-more-wrap { text-align: center; margin-top: 48px; }
.load-more { display: inline-block; background: #fff; color: var(--ink-2); padding: 15px 36px; border-radius: 10px; font-size: 15px; font-weight: 700; font-family: inherit; border: 1px solid var(--line); cursor: pointer; text-decoration: none; transition: border-color 0.15s, background 0.15s; }
.load-more:disabled { opacity: 0.6; cursor: default; }
.load-more:hover { border-color: var(--brand); background: var(--brand-tint-2); color: var(--brand-dark); }

/* UPCOMING EVENTS PAGE — searchable table */
.events-page { background: var(--bg-page); padding: 60px 0 96px; }
.events-page .page-head { margin-bottom: 32px; }
.events-page .page-title { font-size: 44px; font-weight: 800; letter-spacing: -0.025em; color: var(--ink); line-height: 1.1; }
.filter-bar { margin-bottom: 36px; }
.search-wrap { position: relative; }
.search-wrap input { width: 100%; height: 64px; padding: 0 22px 0 58px; border-radius: 14px; border: 1px solid var(--line); background: #fff; font-size: 16px; font-weight: 500; color: var(--ink-2); font-family: inherit; transition: border-color 0.15s, box-shadow 0.15s; }
.search-wrap input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(var(--brand-rgb),0.12); }
.search-wrap input::placeholder { color: var(--muted-2); }
.search-icon { position: absolute; left: 22px; top: 50%; transform: translateY(-50%); color: var(--muted-2); pointer-events: none; }
.table-head { display: grid; grid-template-columns: 180px 1fr 200px 180px; gap: 24px; padding: 0 32px; margin-bottom: 14px; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); }
.events-list { display: flex; flex-direction: column; gap: 14px; }
.event-row { display: grid; grid-template-columns: 180px 1fr 200px 180px; gap: 24px; align-items: center; background: #fff; border-radius: 16px; padding: 26px 32px; transition: transform 0.15s, box-shadow 0.15s; }
.event-row:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(var(--brand-rgb),0.08); }
.event-row .event-date { font-size: 15px; font-weight: 600; color: var(--muted); }
.event-row .event-title { font-size: 17px; font-weight: 800; color: var(--ink-2); letter-spacing: -0.01em; line-height: 1.4; }
.event-type-pill { display: inline-flex; align-items: center; justify-content: center; background: var(--brand-tint); color: var(--brand-dark); padding: 8px 18px; border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: 0.02em; border: 1px solid rgba(var(--brand-rgb),0.25); width: fit-content; }
.request-btn { background: var(--brand); color: #fff; padding: 13px 24px; border-radius: 10px; font-size: 14px; font-weight: 700; text-decoration: none; text-align: center; border: none; cursor: pointer; transition: background 0.15s; font-family: inherit; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.request-btn:hover { background: var(--brand-dark); }
.empty-state { background: #fff; border-radius: 16px; padding: 60px 32px; text-align: center; color: var(--muted); font-size: 16px; }
@media (max-width: 880px) {
  .events-page .page-title { font-size: 30px; }
  .table-head { display: none; }
  .event-row { grid-template-columns: 1fr; gap: 14px; padding: 22px; }
  .event-row .event-date { font-size: 13px; color: var(--brand-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
  .event-row .event-title { font-size: 16px; }
  .request-btn { width: 100%; padding: 15px; font-size: 15px; }
}

.site-footer { padding: 36px 0; border-top: 1px solid var(--line); background: #fff; font-size: 13px; color: var(--muted-2); text-align: center; }
.site-footer a { color: var(--muted-2); text-decoration: none; }
.site-footer a:hover { color: var(--brand); }


.why-section { padding: 96px 0 96px; background: #fff; border-top: 1px solid var(--line); }
.why-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.why-head .section-eyebrow { color: var(--brand-dark); }
.why-head h2 { font-size: 44px; font-weight: 800; letter-spacing: -0.025em; color: var(--ink); line-height: 1.12; margin-top: 6px; }
.why-head p { font-size: 17px; color: var(--muted); margin-top: 14px; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.why-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 32px 30px; display: flex; gap: 20px; align-items: flex-start; transition: border-color 0.15s, box-shadow 0.15s; }
.why-card:hover { border-color: var(--brand); box-shadow: 0 8px 24px rgba(var(--brand-rgb),0.06); }
.why-icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background: var(--brand-tint); color: var(--brand-dark); display: flex; align-items: center; justify-content: center; }
.why-card h3 { font-size: 19px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 8px; line-height: 1.25; }
.why-card p { font-size: 15px; color: var(--muted); line-height: 1.6; }

.how-section { padding: 96px 0 104px; background: var(--brand-tint-2); border-top: 1px solid var(--line); }
.how-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.how-head .section-eyebrow { color: var(--brand-dark); }
.how-head h2 { font-size: 44px; font-weight: 800; letter-spacing: -0.025em; color: var(--ink); line-height: 1.12; margin-top: 6px; }
.how-head p { font-size: 17px; color: var(--muted); margin-top: 14px; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
.how-step { background: #fff; border-radius: 14px; padding: 38px 30px 32px; position: relative; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.how-step-num { position: absolute; top: -16px; left: 30px; width: 36px; height: 36px; border-radius: 50%; background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; box-shadow: 0 4px 12px rgba(var(--brand-rgb),0.25); }
.how-step h3 { font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 10px; line-height: 1.25; margin-top: 8px; }
.how-step p { font-size: 15px; color: var(--muted); line-height: 1.65; }
.how-cta { text-align: center; margin-top: 56px; }


.cities-section { padding: 96px 0 104px; background: #fff; border-top: 1px solid var(--line); }
.cities-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.cities-head .section-eyebrow { color: var(--brand-dark); }
.cities-head h2 { font-size: 44px; font-weight: 800; letter-spacing: -0.025em; color: var(--ink); line-height: 1.12; margin-top: 6px; }
.cities-head p { font-size: 17px; color: var(--muted); margin-top: 14px; }
.cities-grid { column-count: 3; column-gap: 44px; }
.cities-state { break-inside: avoid; margin-bottom: 32px; display: block; }
.cities-state h3 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand-dark); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.cities-state-list { display: flex; flex-direction: column; gap: 4px; }
.cities-state-list a { color: var(--ink-2); text-decoration: none; font-size: 14px; line-height: 1.5; transition: color 0.12s; padding: 2px 0; }
.cities-state-list a:hover { color: var(--brand); }


.gallery-section { padding: 96px 0 96px; background: #fff; border-top: 1px solid var(--line); }
.gallery-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.gallery-head .section-eyebrow { color: var(--brand-dark); }
.gallery-head h2 { font-size: 44px; font-weight: 800; letter-spacing: -0.025em; color: var(--ink); line-height: 1.12; margin-top: 6px; }
.gallery-head p { font-size: 17px; color: var(--muted); margin-top: 14px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { aspect-ratio: 3 / 2; border-radius: 12px; overflow: hidden; display: block; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s; background: var(--brand-tint-2); }
.gallery-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(var(--brand-rgb),0.12); }
.gallery-item img { display: block; width: 100%; height: 100%; object-fit: cover; }


/* EMPLOYER MODAL */
.emp-modal-backdrop { position: fixed; inset: 0; background: rgba(15, 20, 25, 0.55); backdrop-filter: blur(4px); z-index: 200; display: none; align-items: flex-start; justify-content: center; padding: 60px 24px; overflow-y: auto; }
.emp-modal-backdrop.open { display: flex; }
.emp-modal { position: relative; width: 100%; max-width: 720px; background: #fff; border-radius: 18px; box-shadow: 0 24px 64px rgba(15,20,25,0.25); overflow: hidden; animation: empModalIn 0.22s ease-out; }
@keyframes empModalIn { from { opacity: 0; transform: translateY(-12px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.emp-modal-head { padding: 36px 40px 24px; border-bottom: 1px solid var(--line-soft); }
.emp-modal-eyebrow { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-dark); background: var(--brand-tint); padding: 5px 12px; border-radius: 6px; margin-bottom: 14px; }
.emp-modal-head h2 { font-size: 26px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 10px; }
.emp-modal-head p { font-size: 15px; color: var(--muted); line-height: 1.6; }
.emp-modal-close { position: absolute; top: 20px; right: 20px; width: 36px; height: 36px; border-radius: 10px; border: none; background: transparent; color: var(--muted); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.15s, color 0.15s; }
.emp-modal-close:hover { background: #f3f4f6; color: var(--ink); }
.emp-modal-body { padding: 28px 40px 36px; }
.emp-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.emp-form-field { display: flex; flex-direction: column; gap: 6px; }
.emp-form-field.full { grid-column: 1 / -1; }
.emp-form-field label { font-size: 13px; font-weight: 700; color: var(--ink-2); }
.emp-form-field label .req { color: #d14a4a; margin-left: 2px; }
.emp-form-field input, .emp-form-field select, .emp-form-field textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--line);
  background: #fff; font-size: 14px; color: var(--ink-2); font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.emp-form-field input:focus, .emp-form-field select:focus, .emp-form-field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(var(--brand-rgb),0.12);
}
.emp-form-field textarea { resize: vertical; min-height: 110px; line-height: 1.55; }
.emp-form-field select { cursor: pointer; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.emp-modal-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 40px; border-top: 1px solid var(--line-soft); background: #fafafa; flex-wrap: wrap; }
.emp-foot-note { font-size: 12px; color: var(--muted); }
.emp-submit { background: var(--brand); color: #fff; border: none; padding: 13px 30px; border-radius: 10px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; transition: background 0.15s; }
.emp-submit:hover { background: var(--brand-dark); }
.emp-submit:disabled { opacity: 0.6; cursor: default; }
.emp-form-error { font-size: 13px; color: #d14a4a; font-weight: 600; }
.emp-modal-success { padding: 56px 40px; text-align: center; display: none; }
.emp-modal-success.show { display: block; }
.emp-modal-success .check-circle { width: 64px; height: 64px; border-radius: 50%; background: var(--brand-tint); color: var(--brand); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; }
.emp-modal-success h3 { font-size: 24px; font-weight: 800; color: var(--ink); margin-bottom: 12px; letter-spacing: -0.01em; }
.emp-modal-success p { font-size: 15px; color: var(--muted); line-height: 1.6; max-width: 440px; margin: 0 auto 26px; }
body.emp-modal-open { overflow: hidden; }
@media (max-width: 640px) {
  .emp-modal-head { padding: 28px 24px 20px; }
  .emp-modal-head h2 { font-size: 22px; }
  .emp-modal-body { padding: 22px 24px 28px; }
  .emp-modal-foot { padding: 18px 24px; }
  .emp-form-grid { grid-template-columns: 1fr; }
  .emp-modal-backdrop { padding: 24px 12px; }
}


/* CANDIDATE MODAL — shares emp- pattern, scoped cand- */
.cand-modal-backdrop { position: fixed; inset: 0; background: rgba(15, 20, 25, 0.55); backdrop-filter: blur(4px); z-index: 200; display: none; align-items: flex-start; justify-content: center; padding: 60px 24px; overflow-y: auto; }
.cand-modal-backdrop.open { display: flex; }
.cand-modal { position: relative; width: 100%; max-width: 720px; background: #fff; border-radius: 18px; box-shadow: 0 24px 64px rgba(15,20,25,0.25); overflow: hidden; animation: empModalIn 0.22s ease-out; }
.cand-modal-head { padding: 36px 40px 24px; border-bottom: 1px solid var(--line-soft); }
.cand-modal-eyebrow { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-dark); background: var(--brand-tint); padding: 5px 12px; border-radius: 6px; margin-bottom: 14px; }
.cand-modal-head h2 { font-size: 26px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 10px; }
.cand-modal-head p { font-size: 15px; color: var(--muted); line-height: 1.6; }
.cand-modal-close { position: absolute; top: 20px; right: 20px; width: 36px; height: 36px; border-radius: 10px; border: none; background: transparent; color: var(--muted); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.15s, color 0.15s; }
.cand-modal-close:hover { background: #f3f4f6; color: var(--ink); }
.cand-modal-body { padding: 28px 40px 36px; }
.cand-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cand-form-field { display: flex; flex-direction: column; gap: 6px; }
.cand-form-field.full { grid-column: 1 / -1; }
.cand-form-field label { font-size: 13px; font-weight: 700; color: var(--ink-2); }
.cand-form-field label .req { color: #d14a4a; margin-left: 2px; }
.cand-form-field input[type="text"], .cand-form-field input[type="email"], .cand-form-field input[type="tel"], .cand-form-field select, .cand-form-field textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--line);
  background: #fff; font-size: 14px; color: var(--ink-2); font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.cand-form-field input:focus, .cand-form-field select:focus, .cand-form-field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(var(--brand-rgb),0.12);
}
.cand-form-field select { cursor: pointer; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
/* Resume upload field */
.cand-resume-wrap {
  display: flex; align-items: center; gap: 14px;
  border: 2px dashed var(--line); border-radius: 12px; padding: 22px 20px;
  background: #fafafa; transition: border-color 0.15s, background 0.15s;
  cursor: pointer;
}
.cand-resume-wrap:hover { border-color: var(--brand); background: var(--brand-tint-2); }
.cand-resume-icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--brand-tint); color: var(--brand-dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cand-resume-text { flex: 1; }
.cand-resume-text strong { display: block; font-size: 14px; color: var(--ink-2); margin-bottom: 2px; }
.cand-resume-text span { font-size: 12px; color: var(--muted-2); }
.cand-resume-input { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }
.cand-resume-filename { font-size: 12px; color: var(--brand-dark); font-weight: 700; margin-top: 6px; display: none; }
.cand-resume-filename.show { display: block; }

.cand-modal-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 40px; border-top: 1px solid var(--line-soft); background: #fafafa; flex-wrap: wrap; }
.cand-foot-note { font-size: 12px; color: var(--muted); }
.cand-submit { background: var(--brand); color: #fff; border: none; padding: 13px 30px; border-radius: 10px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; transition: background 0.15s; }
.cand-submit:hover { background: var(--brand-dark); }
.cand-submit:disabled { opacity: 0.6; cursor: default; }
.cand-form-error { font-size: 13px; color: #d14a4a; font-weight: 600; }
.cand-modal-success { padding: 56px 40px; text-align: center; display: none; }
.cand-modal-success.show { display: block; }
.cand-modal-success .check-circle { width: 64px; height: 64px; border-radius: 50%; background: var(--brand-tint); color: var(--brand); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; }
.cand-modal-success h3 { font-size: 24px; font-weight: 800; color: var(--ink); margin-bottom: 12px; letter-spacing: -0.01em; }
.cand-modal-success p { font-size: 15px; color: var(--muted); line-height: 1.6; max-width: 440px; margin: 0 auto 26px; }
body.cand-modal-open { overflow: hidden; }
@media (max-width: 640px) {
  .cand-modal-head { padding: 28px 24px 20px; }
  .cand-modal-head h2 { font-size: 22px; }
  .cand-modal-body { padding: 22px 24px 28px; }
  .cand-modal-foot { padding: 18px 24px; }
  .cand-form-grid { grid-template-columns: 1fr; }
  .cand-modal-backdrop { padding: 24px 12px; }
}

@media (max-width: 880px) {
  .hero { padding: 64px 0 56px; }
  .hero h1 { font-size: 44px; letter-spacing: -0.025em; }
  .hero-sub { font-size: 17px; }
  .section-title { font-size: 30px; }
  .events-grid { grid-template-columns: 1fr; }
  .logos-row { grid-template-columns: repeat(3, 1fr); }
  .logo-tile:nth-child(3) { border-right: none; }
  .logo-tile:nth-child(n+4) { border-top: 1px solid var(--line-soft); }
  .why-head h2, .how-head h2 { font-size: 32px; }
  .why-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 28px; }
  .why-card { padding: 26px 22px; gap: 16px; }
  .cities-head h2 { font-size: 32px; }
  .cities-grid { column-count: 1; }
  .gallery-head h2 { font-size: 32px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .nav a:not(.nav-cta) { display: none; }
}
