/* ============================================================
   TranscriptionWork — trust-forward professional theme (v4)
   White background, deep blue, teal accent, lots of whitespace
   ============================================================ */

:root {
  /* Colors */
  --bg-0:        #ffffff;   /* Page bg — pure white */
  --bg-1:        #ffffff;   /* Card */
  --bg-2:        #f4f7fb;   /* Section fill / subtle surface */
  --bg-3:        #e2e8f0;   /* Borders, dividers */

  --text-0:      #0b2447;   /* Deep navy — primary text */
  --text-1:      #1f3a68;   /* Body text */
  --text-2:      #475569;   /* Muted */
  --text-3:      #94a3b8;   /* Disabled */

  --primary:     #1f4f8b;   /* Deep professional blue */
  --primary-2:   #143764;   /* Hover, deeper */
  --primary-soft: rgba(31, 79, 139, 0.08);
  --primary-tint: #e7f0fb;

  --accent:      #0f9d8c;   /* Teal — secondary action, success-y */
  --accent-2:    #0a7c6f;
  --accent-soft: rgba(15, 157, 140, 0.10);
  --accent-tint: #e0f5f2;

  --success:     #15803d;
  --warning:     #b45309;
  --danger:      #b91c1c;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Radii — modest, professional */
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;

  /* Shadows — sparse, only where needed */
  --shadow-sm: 0 1px 2px rgba(11, 36, 71, 0.05);
  --shadow-md: 0 4px 14px rgba(11, 36, 71, 0.08);
  --shadow-lg: 0 10px 28px rgba(11, 36, 71, 0.10);

  --container: 1180px;
  --container-narrow: 760px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--text-1);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--primary); text-decoration: none; transition: color 0.15s; font-weight: 500; }
a:hover { color: var(--primary-2); text-decoration: underline; }

img { max-width: 100%; display: block; }

::selection { background: var(--primary-soft); color: var(--text-0); }

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}
.container--narrow { max-width: var(--container-narrow); }

main { flex: 1; }
section { padding: 4.5rem 0; }
@media (max-width: 720px) { section { padding: 3rem 0; } }

.section-alt { background: var(--bg-2); }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-0);
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.1rem, 3vw + 1rem, 3.25rem); }
h2 { font-size: clamp(1.6rem, 1.5vw + 1rem, 2.25rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.4rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }

.lead {
  font-size: 1.15rem;
  color: var(--text-2);
  max-width: 62ch;
  line-height: 1.6;
}
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-2);
  margin-bottom: 1rem;
}

.muted { color: var(--text-2); }
.small { font-size: 0.85rem; color: var(--text-3); }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--bg-3);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  min-height: 56px;
}
.nav-brand {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-0);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  letter-spacing: -0.015em;
  text-decoration: none;
}
.nav-brand:hover { color: var(--text-0); text-decoration: none; }

.nav-links {
  display: flex;
  gap: 2.75rem;
  align-items: center;
  list-style: none;
}
.nav-links a {
  color: var(--text-1);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}
.nav-links a:hover { color: var(--primary); text-decoration: none; }
.nav-links a.active { color: var(--primary); font-weight: 600; }
.nav-cta { margin-left: 0.5rem; }
.nav-cta-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-0);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-cta-text:hover {
  color: var(--text-0);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-0);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid var(--bg-3);
    gap: 0;
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a {
    display: block;
    padding: 0.85rem 1.5rem;
    width: 100%;
  }
  .nav-cta { margin: 0.5rem 1.5rem; }
}

/* Large hero version of the brand mark */
.hero-logo {
  display: inline-flex;
  width: 96px;
  height: 96px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}
.hero-logo svg { width: 100%; height: 100%; display: block; }
@media (max-width: 720px) {
  .hero-logo { width: 78px; height: 78px; border-radius: 18px; }
}

/* ============================================================
   Logo — SVG graphic mark + wordmark
   ============================================================ */
.brand-mark {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}
.brand-mark svg { width: 100%; height: 100%; display: block; }
.brand-wordmark {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.015em;
  color: var(--text-0);
  white-space: nowrap;
}
.nav-brand:hover .brand-mark {
  transform: translateY(-1px) rotate(-2deg);
  box-shadow: var(--shadow-md);
}

/* Legacy classes — no longer used in the nav, kept harmless */
.brand-pill, .nav-brand-mark { display: none; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.72rem 1.4rem;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-2);
  border-color: var(--primary-2);
  color: #fff;
}
.btn-secondary {
  background: #fff;
  color: var(--primary);
  border-color: var(--bg-3);
}
.btn-secondary:hover {
  background: var(--bg-2);
  border-color: var(--primary);
  color: var(--primary);
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--text-2);
}
.btn-ghost:hover { color: var(--text-0); }
.btn-lg { padding: 0.95rem 1.85rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: #fff;
  border: 1px solid var(--bg-3);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card-hover:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   Hero with search bar
   ============================================================ */
.hero {
  padding: 5rem 0 4rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-2) 0%, transparent 100%);
  border-bottom: 1px solid var(--bg-3);
}
.hero h1 { margin-bottom: 1rem; }
.hero .lead { margin: 0 auto 2.25rem; }
.hero-actions {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero search bar */
.hero-search {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--bg-3);
  border-radius: var(--r-lg);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-md);
}
.hero-search input[type="text"] {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.85rem 1rem;
  font-size: 1.02rem;
  font-family: inherit;
  background: transparent;
  color: var(--text-0);
}
.hero-search input[type="text"]::placeholder { color: var(--text-3); }
.hero-search .btn { padding: 0.85rem 1.5rem; }

/* Trust strip */
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.trust-stat { text-align: center; }
.trust-stat-value {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.trust-stat-label {
  font-size: 0.78rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
  font-weight: 600;
}

/* Trust band */
.trust-band {
  padding: 2rem 0;
  border-top: 1px solid var(--bg-3);
  border-bottom: 1px solid var(--bg-3);
  background: var(--bg-2);
  text-align: center;
}
.trust-band-label {
  color: var(--text-2);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 1rem;
}
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  color: var(--text-3);
  font-weight: 600;
  font-size: 0.95rem;
}
.trust-badges .badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Testimonial card */
.testimonial {
  background: #fff;
  border: 1px solid var(--bg-3);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.testimonial-quote {
  color: var(--text-1);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; color: var(--text-0); font-size: 0.95rem; }
.testimonial-role { color: var(--text-2); font-size: 0.85rem; }

/* ============================================================
   Feature grid
   ============================================================ */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

.feature {
  background: #fff;
  border: 1px solid var(--bg-3);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}
.feature:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--primary-tint);
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
}
.feature:nth-child(2) .feature-icon { background: var(--accent-tint); color: var(--accent-2); }
.feature h3 { margin-bottom: 0.4rem; }

/* ============================================================
   Steps
   ============================================================ */
.steps {
  counter-reset: step;
  display: grid;
  gap: 1.25rem;
}
.step-item {
  background: #fff;
  border: 1px solid var(--bg-3);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.5rem 1.5rem 4.5rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.step-item::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1.25rem;
  top: 1.5rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.step-item h3 { margin-bottom: 0.4rem; }
.step-item p { color: var(--text-2); margin: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item {
  border-bottom: 1px solid var(--bg-3);
  padding: 1.15rem 0;
}
.faq-item summary {
  font-weight: 600;
  color: var(--text-0);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 300;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 0.75rem; color: var(--text-2); }

/* ============================================================
   Forms
   ============================================================ */
.form-group { margin-bottom: 1.15rem; }
.form-label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-1);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.form-input, .form-textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--bg-3);
  border-radius: var(--r-md);
  padding: 0.72rem 0.95rem;
  font-size: 1rem;
  color: var(--text-0);
  outline: none;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}
.form-textarea { min-height: 140px; resize: vertical; }

.alert {
  padding: 0.85rem 1.1rem;
  border-radius: var(--r-md);
  border-left: 3px solid;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}
.alert-error { background: #fef2f2; color: #7f1d1d; border-color: var(--danger); }
.alert-info  { background: var(--primary-tint); color: var(--primary-2); border-color: var(--primary); }
.alert-warn  { background: #fef3c7; color: #78350f; border-color: var(--warning); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--text-0);
  color: #cbd5e1;
  padding: 3.5rem 0 2rem;
  margin-top: auto;
}
.site-footer .nav-brand { color: #fff; }
.site-footer .brand-pill { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.footer-brand { color: #94a3b8; max-width: 320px; }
.footer-col h4 {
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: #94a3b8; font-size: 0.92rem; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: #64748b;
  font-size: 0.85rem;
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.fade-in { animation: fadeInUp 0.5s ease both; }
.fade-in-2 { animation: fadeInUp 0.5s 0.08s ease both; }
.fade-in-3 { animation: fadeInUp 0.5s 0.16s ease both; }

/* ============================================================
   Utilities
   ============================================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }

/* ============================================================
   Job board specific
   ============================================================ */
.job-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.job-card {
  background: #fff;
  border: 1px solid var(--bg-3);
  border-radius: var(--r-lg);
  padding: 1.35rem 1.5rem;
  transition: border-color 0.15s, box-shadow 0.15s;
  display: block;
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}
.job-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  color: inherit;
  text-decoration: none;
}
.job-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}
.job-card-company {
  color: var(--text-1);
  font-size: 0.93rem;
  font-weight: 500;
}
.job-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
}
.tag {
  background: var(--bg-2);
  color: var(--text-1);
  padding: 0.28rem 0.7rem;
  border-radius: var(--r-sm);
  font-weight: 500;
  border: 1px solid var(--bg-3);
}
.tag-accent { background: var(--primary-tint); color: var(--primary); border-color: rgba(31, 79, 139, 0.18); }
.tag-success { background: var(--accent-tint); color: var(--accent-2); border-color: rgba(15, 157, 140, 0.18); }

.filters {
  background: #fff;
  border: 1px solid var(--bg-3);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
  box-shadow: var(--shadow-sm);
}
.filters > div { min-width: 0; }
.filters label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 0.3rem;
}
.filters input:not([type="checkbox"]),
.filters select {
  width: 100%;
}
/* The "Remote only" checkbox column should sit on the same line as the inputs */
.filters .checkbox,
.filters > div:has(input[type="checkbox"]) {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  padding-bottom: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-1);
  font-weight: 500;
  cursor: pointer;
}
.filters input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--primary);
  cursor: pointer;
}
@media (max-width: 820px) {
  .filters { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .filters { grid-template-columns: 1fr; }
  .filters .checkbox { padding-bottom: 0; }
}

.job-detail-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.job-detail-header h1 { margin-bottom: 0; }
.job-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.88rem;
  margin-top: 0.65rem;
}
.job-section {
  background: #fff;
  border: 1px solid var(--bg-3);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.85rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}
.job-section h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  margin-bottom: 0.85rem;
  font-weight: 700;
}
.job-section .prose {
  white-space: pre-wrap;
  color: var(--text-1);
  line-height: 1.75;
}

.empty-state {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-2);
}
.empty-state h3 { color: var(--text-1); margin-bottom: 0.5rem; }

/* Screening Q&A */
.screening-q {
  padding: 1rem 1.15rem;
  background: var(--bg-2);
  border: 1px solid var(--bg-3);
  border-radius: var(--r-md);
  margin-bottom: 0.65rem;
}
.screening-label {
  margin: 0 0 0.65rem;
  color: var(--text-0);
  font-size: 0.95rem;
  line-height: 1.45;
}
.screening-options {
  display: flex;
  gap: 0.6rem;
}
.screening-radio {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  background: #fff;
  border: 1.5px solid var(--bg-3);
  border-radius: var(--r-md);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-1);
  transition: all 0.12s ease-out;
}
.screening-radio:hover {
  border-color: var(--primary);
  background: var(--bg-2);
}
.screening-radio input { margin: 0; cursor: pointer; accent-color: var(--primary); }
.screening-radio:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary-tint);
  color: var(--primary-2);
}

/* File input */
input[type="file"] {
  width: 100%;
  background: #fff;
  border: 1.5px dashed var(--bg-3);
  border-radius: var(--r-md);
  padding: 0.85rem;
  color: var(--text-1);
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.15s;
}
input[type="file"]:hover { border-color: var(--primary); }
input[type="file"]::file-selector-button {
  background: var(--primary-tint);
  color: var(--primary);
  border: none;
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-sm);
  margin-right: 0.85rem;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
}
