/* ==========================================================================
   WaterHeater.app — shared stylesheet
   Brand system: navy surface, burnt orange for action, cream for warm neutrals.
   Type: Manrope (human), IBM Plex Mono (system/data).
   Rules: 4px radius, 56px touch targets, one orange action per view.
   ========================================================================== */

:root{
  --ink:#030D21;
  --ink-2:#03162F;
  --ink-3:#0A2140;
  --orange:#E05C16;
  --orange-hot:#C54C0F;
  --orange-soft:#D97757;
  --gold:#B5820A;
  --cream:#EBE3D6;
  --cream-2:#F4EFE6;
  --white:#FFFFFF;
  --gray:rgba(255,255,255,0.65);
  --gray-2:rgba(255,255,255,0.42);
  --hairline:rgba(255,255,255,0.10);
  --danger:#F26A3F;
  --success:#4ADE80;

  --font-sans:'Manrope',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  --font-mono:'IBM Plex Mono',ui-monospace,SFMono-Regular,Menlo,monospace;

  --r:4px;
  --r-lg:8px;
  --touch:56px;
  --container:1160px;
  --header-h:72px;
}

*,*::before,*::after{box-sizing:border-box}
/* The hidden attribute must beat any component display rule, or JS that
   hides an element (e.g. the submit footer after a sent application)
   silently does nothing. */
[hidden]{display:none !important}
html{scroll-behavior:smooth;scroll-padding-top:calc(var(--header-h) + 16px)}
body{
  margin:0;
  font-family:var(--font-sans);
  font-size:16px;font-weight:400;line-height:1.55;
  color:var(--cream-2);background:var(--ink);
  -webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;
  min-height:100vh;display:flex;flex-direction:column;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none;transition:color .15s ease}
button{font-family:inherit;cursor:pointer;border:none;background:none}
h1,h2,h3,h4{margin:0;color:var(--white);letter-spacing:-0.02em;font-weight:800}
p{margin:0}
:focus-visible{outline:2px solid var(--orange);outline-offset:2px;border-radius:var(--r)}

.container{width:100%;max-width:var(--container);margin:0 auto;padding:0 24px}
.mono{font-family:var(--font-mono);letter-spacing:0}
.skip-link{position:absolute;left:-999px;top:0;z-index:200;background:var(--orange);color:#fff;padding:12px 18px;border-radius:var(--r);font-weight:700}
.skip-link:focus{left:16px;top:16px}
main{flex:1 0 auto}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(3,13,33,0.82);
  backdrop-filter:saturate(180%) blur(14px);
  -webkit-backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid var(--hairline);
}
.nav{display:flex;align-items:center;gap:24px;height:var(--header-h)}
.brand{display:inline-flex;align-items:center;gap:14px;color:var(--white);font-weight:800}
.brand__wm{font-size:22px;letter-spacing:-0.02em;line-height:1;font-weight:800}
.brand__wm .dot{color:var(--orange)}
.brand__endorse{
  display:inline-flex;align-items:center;gap:8px;
  padding-left:14px;border-left:1px solid var(--hairline);
  line-height:1;
}
.brand__endorse-label{
  font-family:var(--font-mono);font-size:9px;font-weight:500;
  letter-spacing:0.14em;text-transform:uppercase;color:var(--gray-2);
  white-space:nowrap;
}
.brand__endorse-logo{height:22px;width:auto;display:block;border-radius:2px}

.nav__links{display:flex;gap:24px;margin-left:auto;list-style:none;padding:0}
.nav__links a{color:var(--gray);font-weight:600;font-size:14px;padding:8px 4px;position:relative}
.nav__links a::after{
  content:"";position:absolute;left:4px;right:4px;bottom:0;height:2px;background:var(--orange);
  transform:scaleX(0);transform-origin:left;transition:transform .2s ease;
}
.nav__links a:hover{color:var(--white)}
.nav__links a:hover::after,.nav__links a[aria-current="page"]::after{transform:scaleX(1)}
.nav__actions{display:flex;align-items:center;gap:8px;margin-left:16px}
.nav__toggle{
  display:none;width:44px;height:44px;padding:10px;background:none;border:none;
  cursor:pointer;color:var(--white);align-items:center;justify-content:center;
}
.nav__toggle svg{width:22px;height:22px;stroke:currentColor;stroke-width:2;fill:none;stroke-linecap:round}
.mobile-menu{
  display:none;flex-direction:column;gap:4px;
  padding:12px 24px 20px;border-top:1px solid var(--hairline);
  background:rgba(3,13,33,0.96);
}
.mobile-menu[hidden]{display:none}
.mobile-menu:not([hidden]){display:flex}
.mobile-menu a{
  color:var(--cream-2);font-weight:600;font-size:15px;padding:12px 8px;
  border-radius:var(--r);
}
.mobile-menu a:hover{background:rgba(255,255,255,0.06)}
.mobile-menu .btn{margin-top:8px}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  min-height:var(--touch);padding:16px 26px;
  font-family:inherit;font-size:16px;font-weight:700;line-height:1;
  border:1px solid transparent;border-radius:var(--r);
  cursor:pointer;white-space:nowrap;
  transition:background-color .15s ease, color .15s ease, border-color .15s ease, transform .05s ease;
}
.btn:active{transform:translateY(1px)}
.btn--primary{background:var(--orange);color:var(--white)}
.btn--primary:hover{background:var(--orange-hot);color:var(--white)}
.btn--ghost{background:transparent;color:var(--cream-2);border-color:var(--hairline)}
.btn--ghost:hover{background:rgba(255,255,255,0.06);color:var(--white);border-color:rgba(255,255,255,0.25)}
.btn--sm{min-height:44px;padding:12px 18px;font-size:14px}
.btn--xl{min-height:64px;padding:20px 32px;font-size:18px;gap:10px}
.btn svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round}

/* ==========================================================================
   HERO (index.html)
   ========================================================================== */
.hero{padding:96px 0 80px;overflow:hidden;position:relative}
.hero::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(1000px 500px at 12% 25%, rgba(224,92,22,0.14) 0%, transparent 60%),
    radial-gradient(700px 400px at 90% 80%, rgba(181,130,10,0.10) 0%, transparent 60%);
}
.hero__inner{
  display:grid;grid-template-columns:1.1fr 0.9fr;gap:64px;align-items:center;
  position:relative;
}
.eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  font-family:var(--font-mono);font-size:11px;font-weight:500;
  text-transform:uppercase;letter-spacing:0.12em;color:var(--gray);
  margin-bottom:22px;
}
.eyebrow__dot{
  width:8px;height:8px;border-radius:50%;background:var(--orange);
  box-shadow:0 0 0 4px rgba(224,92,22,0.15);
  animation:pulse-o 2s ease-out infinite;
}
@keyframes pulse-o{
  0%{box-shadow:0 0 0 0 rgba(224,92,22,0.4)}
  70%{box-shadow:0 0 0 10px rgba(224,92,22,0)}
  100%{box-shadow:0 0 0 0 rgba(224,92,22,0)}
}
.hero h1{font-size:clamp(40px,6vw,64px);line-height:1.02;color:var(--white);margin-bottom:22px;font-weight:800}
.hero h1 .accent{color:var(--orange)}
.hero__sub{color:var(--cream);font-size:19px;max-width:34em;margin-bottom:32px;line-height:1.5}
.hero__sub b{color:var(--white);font-weight:700}
.hero__pills{display:flex;flex-wrap:wrap;gap:8px;list-style:none;padding:0;margin:0 0 36px}
.hero__pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 14px;border-radius:999px;
  background:rgba(244,239,230,0.06);border:1px solid rgba(244,239,230,0.14);
  font-size:13px;font-weight:600;color:var(--cream-2);
}
.hero__pill svg{width:14px;height:14px;fill:none;stroke:var(--orange);stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round;flex:none}
.hero__cta{display:flex;flex-wrap:wrap;gap:12px}
.hero__cta .btn--primary{box-shadow:0 12px 32px rgba(224,92,22,0.3)}
.hero__visual{position:relative;display:flex;justify-content:center}
.card{
  width:100%;max-width:400px;background:var(--ink-2);
  border:1px solid var(--hairline);border-radius:var(--r);
  box-shadow:0 24px 60px rgba(0,0,0,0.4);padding:22px;position:relative;
}
.card__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px}
.badge{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--font-mono);font-size:11px;font-weight:600;
  padding:6px 12px;border-radius:999px;
  background:rgba(224,92,22,0.15);color:var(--orange);
  text-transform:uppercase;letter-spacing:0.08em;
}
.badge .pulse{width:6px;height:6px;border-radius:50%;background:var(--orange);animation:pulse-o 1.6s ease-out infinite}
.card__ts{font-family:var(--font-mono);font-size:12px;font-weight:500;color:var(--gray)}
.card__row{display:flex;align-items:center;gap:14px;padding:14px 0}
.card__avatar{
  width:44px;height:44px;border-radius:50%;flex:none;
  background:rgba(224,92,22,0.14);color:var(--orange);
  display:flex;align-items:center;justify-content:center;font-weight:800;font-size:14px;
  font-family:var(--font-mono);letter-spacing:0.02em;
}
.card__avatar svg{width:22px;height:22px;fill:none;stroke:var(--orange);stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.card__name{font-weight:700;color:var(--white);font-size:15px;line-height:1.3}
.card__name .verified{color:var(--orange);font-weight:700;margin-left:4px}
.card__meta{font-size:13px;color:var(--gray);margin-top:2px}
.card__match{position:relative;height:22px;margin:4px 0 4px 22px}
.card__match-line{position:absolute;left:0;top:0;bottom:0;width:2px;background:var(--hairline);border-radius:2px}
.card__match-dot{
  position:absolute;left:-3px;width:8px;height:8px;border-radius:50%;
  background:var(--orange);box-shadow:0 0 0 3px rgba(224,92,22,0.2);
  animation:match-travel 1.5s ease-in-out infinite;
}
@keyframes match-travel{0%{top:-4px;opacity:0}20%{opacity:1}80%{opacity:1}100%{top:18px;opacity:0}}
.card__footer{
  display:flex;align-items:center;justify-content:space-between;
  margin-top:14px;padding-top:14px;border-top:1px solid var(--hairline);
}
.card__price{font-family:var(--font-mono);font-size:14px;color:var(--cream)}
.card__price b{color:var(--white);font-weight:600}
.chip{
  position:absolute;display:inline-flex;align-items:center;gap:8px;
  padding:8px 14px;background:var(--cream-2);color:var(--ink);
  border-radius:999px;font-size:12px;font-weight:700;
  box-shadow:0 8px 20px rgba(0,0,0,0.35);animation:float 4s ease-in-out infinite;
}
.chip svg{width:14px;height:14px;fill:none;stroke:var(--orange);stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round;flex:none}
.chip--top{top:-14px;left:20px}
.chip--bottom{bottom:-14px;right:14px;animation-delay:1.4s}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-6px)}}

/* ==========================================================================
   PAGE HEROES (simple, for contact/faq/privacy/become-a-pro top)
   ========================================================================== */
.page-hero{padding:80px 0 40px;position:relative;overflow:hidden}
.page-hero::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(800px 400px at 20% 30%, rgba(224,92,22,0.10) 0%, transparent 60%);
}
.page-hero .container{position:relative}
.page-hero h1{font-size:clamp(36px,5vw,52px);line-height:1.05;margin-bottom:14px;color:var(--white)}
.page-hero .lead{color:var(--cream);font-size:18px;max-width:38em;line-height:1.55}
.page-hero .lead b{color:var(--white);font-weight:700}

/* ==========================================================================
   CONTENT SECTIONS
   ========================================================================== */
section.pad{padding:56px 0}
/* The hero already carries bottom padding; stacking a full pad top on it
   left a ~96px gap between the intro line and the first content. */
.page-hero + .pad{padding-top:20px}
section.pad--sm{padding:32px 0}
.section-title{
  font-family:var(--font-mono);font-size:11px;font-weight:500;
  letter-spacing:0.14em;text-transform:uppercase;color:var(--gray);
  margin-bottom:12px;
}

/* Contact cards */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;max-width:720px}
.contact-card{
  background:var(--ink-2);border:1px solid var(--hairline);
  border-radius:var(--r-lg);padding:26px;
}
.contact-card__label{
  font-family:var(--font-mono);font-size:11px;font-weight:500;
  letter-spacing:0.14em;text-transform:uppercase;color:var(--gray);
  margin-bottom:10px;
}
.contact-card__value{
  color:var(--white);font-size:22px;font-weight:700;letter-spacing:-0.01em;
  display:inline-block;
}
.contact-card__value:hover{color:var(--orange)}

/* FAQ accordion */
.faq{max-width:820px}
.faq__item{border-bottom:1px solid var(--hairline)}
.faq__item summary{
  list-style:none;cursor:pointer;padding:22px 0;
  display:flex;justify-content:space-between;align-items:center;gap:16px;
  font-size:18px;font-weight:700;color:var(--white);
}
.faq__item summary::-webkit-details-marker{display:none}
.faq__item summary::after{
  content:"+";font-size:26px;font-weight:400;color:var(--orange);
  line-height:1;transition:transform .2s ease;flex:none;
}
.faq__item[open] summary::after{transform:rotate(45deg)}
.faq__item summary:hover{color:var(--orange-soft)}
.faq__body{padding:0 0 22px;color:var(--cream);font-size:16px;line-height:1.6}

/* Prose (privacy & terms) */
.prose{max-width:760px}
.prose h2{
  font-size:26px;color:var(--white);margin:36px 0 16px;letter-spacing:-0.01em;
  padding-bottom:10px;border-bottom:1px solid var(--hairline);
}
.prose h2:first-child{margin-top:0}
.prose h3{font-size:17px;color:var(--white);margin:22px 0 8px;font-weight:700}
.prose p{color:var(--cream);font-size:15px;line-height:1.65;margin-bottom:14px}
.prose p b{color:var(--white);font-weight:700}
.prose .meta{
  font-family:var(--font-mono);font-size:12px;color:var(--gray-2);
  margin-bottom:20px;letter-spacing:0.02em;
}
.prose a{color:var(--orange);font-weight:600}
.prose a:hover{color:var(--orange-soft)}

/* ==========================================================================
   BECOME A PRO (two-column pitch + form card, agency structure)
   ========================================================================== */
.section{padding:80px 0}
.kicker{
  font-family:var(--font-mono);font-size:11px;font-weight:700;
  text-transform:uppercase;letter-spacing:0.14em;color:var(--orange);
  margin-bottom:8px;
}
.lead{font-size:18px;color:var(--cream);margin-bottom:22px;line-height:1.55}
.lead strong,.lead b{color:var(--white);font-weight:700}

.pro-join__grid{
  display:grid;grid-template-columns:0.9fr 1.1fr;gap:64px;align-items:start;
}
.pro-join__pitch{position:sticky;top:calc(var(--header-h) + 32px)}
.pro-join__pitch h1{
  font-size:clamp(28px,3.4vw,40px);line-height:1.05;margin:8px 0 16px;
  color:var(--white);font-weight:800;text-transform:uppercase;letter-spacing:-0.02em;
}

.form-card{
  background:var(--ink-2);border:1px solid var(--hairline);
  border-radius:var(--r-lg);box-shadow:0 12px 32px rgba(0,0,0,0.35);
  margin:0 auto;
}
.pro-join__form .form-card{max-width:none}

.modal__mode{padding:32px}
.modal__head{margin-bottom:24px}
.modal__eyebrow{
  font-family:var(--font-mono);font-size:11px;font-weight:700;
  text-transform:uppercase;letter-spacing:0.14em;color:var(--orange);
}
.modal__title{
  font-size:26px;margin:6px 0 0;color:var(--white);
  font-weight:800;letter-spacing:-0.01em;
}
.modal__section{
  font-family:var(--font-mono);font-size:11px;font-weight:700;
  text-transform:uppercase;letter-spacing:0.14em;color:var(--orange);
  margin:32px 0 14px;padding-bottom:8px;
  border-bottom:1px solid var(--hairline);
}
[data-pro-form] .modal__section:first-child{margin-top:0}
.modal__foot{display:flex;gap:8px;margin-top:24px}
.modal__foot .btn{flex:1}
.modal__done{text-align:center;padding:20px 0;color:var(--cream);font-size:16px}
.modal__done b{color:var(--white)}

.req{color:var(--orange);margin-left:2px;font-weight:700}

.field{display:block;margin-bottom:16px}
.field:last-child{margin-bottom:0}

/* Multi-select (Skills, Service Areas) */
.multiselect{position:relative}
.multiselect__control{
  width:100%;min-height:48px;display:flex;align-items:center;gap:8px;flex-wrap:wrap;
  padding:10px 14px;background:var(--ink);border:1px solid var(--hairline);border-radius:var(--r);
  cursor:pointer;font-family:inherit;font-size:15px;color:var(--white);text-align:left;
  transition:border-color .15s ease, box-shadow .15s ease;
}
.multiselect__control:hover{border-color:rgba(224,92,22,0.35)}
.multiselect__control[aria-expanded="true"]{border-color:var(--orange);box-shadow:0 0 0 3px rgba(224,92,22,0.18)}
.multiselect__placeholder{color:var(--gray-2)}
.multiselect__chips{display:flex;flex-wrap:wrap;gap:6px}
.chip-mini{
  display:inline-flex;align-items:center;gap:6px;
  padding:3px 10px;border-radius:999px;
  background:rgba(224,92,22,0.16);color:var(--orange-soft);
  font-size:12px;font-weight:600;font-family:var(--font-mono);
  border:1px solid rgba(224,92,22,0.28);
}
.multiselect__caret{width:18px;height:18px;color:var(--gray);margin-left:auto;flex:none;stroke:currentColor;stroke-width:2;fill:none}
.multiselect__control[aria-expanded="true"] .multiselect__caret{transform:rotate(180deg)}
.multiselect__panel{
  position:absolute;left:0;right:0;top:calc(100% + 6px);z-index:5;
  background:var(--ink-2);border:1px solid var(--hairline);border-radius:var(--r);
  box-shadow:0 16px 40px rgba(0,0,0,0.5);padding:8px;
}
.multiselect__panel[hidden]{display:none}
.multiselect__search{
  width:100%;padding:10px 12px;margin-bottom:6px;
  background:var(--ink);border:1px solid var(--hairline);border-radius:var(--r);
  font-family:var(--font-mono);font-size:13px;color:var(--white);
}
.multiselect__search:focus{outline:none;border-color:var(--orange);box-shadow:0 0 0 3px rgba(224,92,22,0.18)}
.multiselect__opts{max-height:240px;overflow-y:auto}
.multiselect__opts::-webkit-scrollbar{width:8px}
.multiselect__opts::-webkit-scrollbar-track{background:transparent}
.multiselect__opts::-webkit-scrollbar-thumb{background:var(--hairline);border-radius:4px}

.checkrow{
  display:flex;align-items:center;gap:10px;
  padding:9px 10px;border-radius:var(--r);cursor:pointer;
  font-size:14px;color:var(--cream-2);
  transition:background .12s ease;
}
.checkrow:hover{background:rgba(224,92,22,0.08)}
.checkrow input{
  appearance:none;-webkit-appearance:none;margin:0;flex:none;
  width:16px;height:16px;border-radius:3px;
  border:1.5px solid var(--gray-2);background:transparent;
  display:inline-flex;align-items:center;justify-content:center;cursor:pointer;
  transition:background .1s, border-color .1s;
}
.checkrow input:checked{background:var(--orange);border-color:var(--orange)}
.checkrow input:checked::after{
  content:"";width:8px;height:5px;
  border-left:2px solid var(--white);border-bottom:2px solid var(--white);
  transform:rotate(-45deg);margin-top:-2px;
}
.checkrow input:focus-visible{outline:2px solid var(--orange);outline-offset:2px}

/* Working Days chips */
.chips{display:flex;flex-wrap:wrap;gap:8px}
.day-chip{
  padding:9px 14px;font-family:inherit;font-size:13px;font-weight:700;
  color:var(--cream-2);background:transparent;
  border:1px solid var(--hairline);border-radius:999px;cursor:pointer;
  transition:border-color .1s ease, background .1s ease, color .1s ease;
}
.day-chip:hover{border-color:rgba(224,92,22,0.4)}
.day-chip.is-active{background:var(--orange);border-color:var(--orange);color:var(--white)}

/* Working Hours timerange */
.timerange{display:flex;align-items:center;gap:10px}
.timerange .field__input{flex:1}
.timerange__sep{color:var(--gray);font-size:14px;font-weight:600}

/* Certifications */
.cert{border:1px solid var(--hairline);border-radius:var(--r);padding:16px}
.cert__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px}
.cert__title{margin:0}
.cert__add-link{
  border:none;background:none;color:var(--orange);
  font-family:inherit;font-size:13px;font-weight:700;cursor:pointer;
}
.cert__add-link:hover{color:var(--orange-soft)}
.cert__empty-box{
  border:1.5px dashed var(--hairline);border-radius:var(--r);
  padding:24px 20px;text-align:center;
}
.cert__empty{color:var(--gray);font-size:13px;margin-bottom:12px}
.cert__list{display:grid;gap:6px}
.cert__list li{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  padding:10px 12px;background:rgba(224,92,22,0.06);border:1px solid var(--hairline);
  border-radius:var(--r);font-family:var(--font-mono);font-size:13px;color:var(--cream-2);
  list-style:none;
}

/* Field error / done */
.field__error{
  margin-top:12px;font-size:13px;font-weight:600;color:var(--orange-soft);
}
.field__error[hidden]{display:none}

/* Old-page-hero styles kept for compatibility */
.pro-hero{padding:80px 0 24px;position:relative;overflow:hidden}
.pro-hero::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(700px 350px at 10% 20%, rgba(224,92,22,0.16) 0%, transparent 60%),
    radial-gradient(600px 350px at 100% 100%, rgba(181,130,10,0.10) 0%, transparent 65%);
}
.pro-hero__inner{position:relative}
.pro-hero .kicker{
  font-family:var(--font-mono);font-size:11px;font-weight:500;
  letter-spacing:0.14em;text-transform:uppercase;color:var(--orange);
  margin-bottom:18px;
}
.pro-hero h1{
  font-size:clamp(40px,6.5vw,68px);line-height:1;
  color:var(--white);margin-bottom:16px;font-weight:800;text-transform:uppercase;
}
.pro-hero .tagline{
  color:var(--cream);font-size:19px;font-weight:600;margin-bottom:14px;
}
.pro-hero .lead{color:var(--gray);font-size:16px;max-width:38em;line-height:1.55;margin-bottom:28px}
.pro-perks{
  display:grid;grid-template-columns:repeat(3,1fr);gap:14px;list-style:none;padding:0;margin:0 0 32px;
  max-width:720px;
}
.pro-perks li{
  display:flex;gap:10px;align-items:flex-start;
  background:rgba(244,239,230,0.05);border:1px solid var(--hairline);
  border-radius:var(--r);padding:14px 16px;
  color:var(--cream-2);font-size:14px;font-weight:600;line-height:1.35;
}
.pro-perks svg{width:18px;height:18px;flex:none;color:var(--orange);stroke:currentColor;stroke-width:2;fill:none;stroke-linecap:round;stroke-linejoin:round;margin-top:1px}
.pro-hero .cta-row{display:flex;gap:12px;flex-wrap:wrap}

/* Application form */
.pro-form{padding:32px 0 96px}
.pro-form h2{
  font-size:28px;color:var(--white);margin-bottom:26px;letter-spacing:-0.01em;
}
.pro-form fieldset{
  border:1px solid var(--hairline);border-radius:var(--r-lg);
  padding:24px 26px;margin-bottom:20px;background:rgba(3,22,47,0.55);
}
.pro-form legend{
  padding:0 8px;font-size:12px;font-weight:800;color:var(--orange);
  letter-spacing:0.12em;text-transform:uppercase;font-family:var(--font-mono);
}
.field{margin-bottom:16px}
.field:last-child{margin-bottom:0}
.field__label{
  display:block;font-size:13px;font-weight:600;color:var(--cream-2);
  margin-bottom:6px;letter-spacing:0.02em;
}
.field__hint{font-size:12px;color:var(--gray);margin-top:6px}
.field__input,.field__select,.field__textarea{
  width:100%;padding:14px 16px;
  font-family:inherit;font-size:15px;color:var(--white);
  background:var(--ink);border:1px solid var(--hairline);border-radius:var(--r);
  transition:border-color .15s ease, box-shadow .15s ease;
}
.field__input::placeholder,.field__textarea::placeholder{color:var(--gray-2)}
.field__input:focus,.field__select:focus,.field__textarea:focus{
  outline:none;border-color:var(--orange);box-shadow:0 0 0 3px rgba(224,92,22,0.18);
}
.field__textarea{min-height:96px;resize:vertical}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}

/* Checkbox grid (skills, languages, ZIPs) */
.check-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:8px;
}
.check-grid--tight{grid-template-columns:repeat(auto-fill,minmax(90px,1fr));gap:6px}
.check{
  display:flex;align-items:center;gap:10px;
  padding:10px 12px;border:1px solid var(--hairline);border-radius:var(--r);
  cursor:pointer;transition:border-color .15s ease, background .15s ease;
  font-size:13px;color:var(--cream-2);line-height:1.3;
}
.check--tight{padding:8px 10px;font-size:12px;justify-content:flex-start}
.check:hover{border-color:rgba(224,92,22,0.35);background:rgba(224,92,22,0.05)}
.check input{
  appearance:none;-webkit-appearance:none;margin:0;flex:none;
  width:16px;height:16px;border-radius:3px;
  border:1.5px solid var(--gray-2);background:transparent;
  display:inline-flex;align-items:center;justify-content:center;
  transition:background .1s, border-color .1s;
  cursor:pointer;
}
.check input:checked{background:var(--orange);border-color:var(--orange)}
.check input:checked::after{
  content:"";width:8px;height:5px;
  border-left:2px solid var(--white);border-bottom:2px solid var(--white);
  transform:rotate(-45deg);margin-top:-2px;
}
.check input:focus-visible{outline:2px solid var(--orange);outline-offset:2px}

/* ZIP picker */
.zip-picker__search{
  margin-bottom:14px;
}
.zip-picker__search input{
  width:100%;max-width:340px;padding:12px 14px;
  font-family:var(--font-mono);font-size:14px;color:var(--white);
  background:var(--ink);border:1px solid var(--hairline);border-radius:var(--r);
}
.zip-picker__search input:focus{outline:none;border-color:var(--orange);box-shadow:0 0 0 3px rgba(224,92,22,0.18)}
.zip-picker__count{
  font-family:var(--font-mono);font-size:11px;color:var(--gray);
  letter-spacing:0.06em;text-transform:uppercase;margin-bottom:10px;
}
.zip-grid{max-height:340px;overflow-y:auto;padding-right:6px;border:1px solid var(--hairline);border-radius:var(--r);padding:12px}
.zip-grid::-webkit-scrollbar{width:8px}
.zip-grid::-webkit-scrollbar-track{background:transparent}
.zip-grid::-webkit-scrollbar-thumb{background:var(--hairline);border-radius:4px}

/* Availability */
.days{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:14px}
.day{
  min-width:52px;padding:10px 14px;font-family:inherit;font-size:13px;font-weight:700;
  color:var(--cream-2);background:transparent;
  border:1px solid var(--hairline);border-radius:var(--r);cursor:pointer;
  transition:all .1s ease;
}
.day:hover{border-color:rgba(224,92,22,0.4)}
.day[aria-pressed="true"]{background:var(--orange);color:var(--white);border-color:var(--orange)}

/* File upload */
.file-drop{
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  padding:16px 18px;border:1.5px dashed var(--hairline);border-radius:var(--r);
  color:var(--gray);font-size:14px;
}
.file-drop button{
  padding:10px 16px;font-weight:700;color:var(--white);
  background:transparent;border:1px solid var(--hairline);border-radius:var(--r);
  cursor:pointer;
}
.file-drop button:hover{border-color:var(--orange);color:var(--orange)}

.pro-form__submit{
  margin-top:16px;display:flex;align-items:center;gap:16px;flex-wrap:wrap;
}
.form-note{
  font-size:13px;color:var(--gray);max-width:36em;line-height:1.5;
}
.form-note.error{color:var(--danger)}
.form-note.success{color:var(--success)}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{
  flex-shrink:0;border-top:1px solid var(--hairline);
  padding:24px 0;background:var(--ink);
}
.footer__bar{
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:16px;
  font-size:13px;color:var(--gray);
}
.footer__bar a{color:var(--cream-2);font-weight:600}
.footer__bar a:hover{color:var(--white)}
.footer__endorse{
  font-family:var(--font-mono);font-size:11px;font-weight:500;
  letter-spacing:0.1em;text-transform:uppercase;color:var(--gray-2);
}
.footer__endorse b{color:var(--gray);font-weight:500}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:1024px){
  .hero{padding:64px 0 56px}
  .hero__inner{grid-template-columns:1fr;gap:48px}
  .hero h1{font-size:clamp(36px,8vw,52px)}
  .brand__endorse{display:none}
  .pro-perks{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:920px){
  .pro-join__grid{grid-template-columns:1fr;gap:40px}
  .pro-join__pitch{position:static}
}
@media (max-width:640px){
  :root{--header-h:60px}
  .nav__links,.nav__actions .btn{display:none}
  .nav__actions{margin-left:auto}
  .nav__toggle{display:inline-flex}
  .hero{padding:44px 0}
  .hero h1{font-size:34px;line-height:1.06}
  .hero__sub{font-size:16px}
  .hero__cta .btn{width:100%}
  .chip{display:none}
  .card{max-width:100%}
  .footer__bar{gap:8px;font-size:12px}
  .footer__endorse{display:block;width:100%;order:-1}
  .page-hero{padding:44px 0 24px}
  .contact-grid{grid-template-columns:1fr}
  .pro-hero h1{font-size:36px}
  .pro-perks{grid-template-columns:1fr}
  .field-row{grid-template-columns:1fr}
  .check-grid{grid-template-columns:1fr 1fr}
  .check-grid--tight{grid-template-columns:repeat(3,1fr)}
  .zip-grid{max-height:280px}
  .modal__mode{padding:22px}
  .modal__title{font-size:22px}
  .modal__foot{flex-direction:column}
  .multiselect__opts{max-height:200px}
  .timerange{flex-wrap:wrap}
  .timerange__sep{width:100%;text-align:center}
}

/* -------- Two-level city/ZIP service-area selector (mirrors admin dashboard) -------- */
.city-zip{display:flex;gap:10px;padding:10px}
.city-zip__panel{flex:1 1 0;min-width:0;border:1px solid var(--hairline);border-radius:var(--r);background:var(--ink-2);display:flex;flex-direction:column;min-height:12rem;max-height:16rem}
.city-zip__title{margin:0;padding:8px 10px;font-size:11px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--gray-2);border-bottom:1px solid var(--hairline);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.city-zip__list{list-style:none;margin:0;padding:4px;overflow-y:auto;flex:1}
.city-zip__empty{padding:10px;font-size:13px;color:var(--gray-2)}
.city-row{display:flex;align-items:center;gap:8px;padding:5px 6px;border-radius:var(--r)}
.city-row.is-active{background:rgba(224,92,22,0.14)}
.city-row.is-active .city-row__name{color:var(--white)}
.city-row input{flex:none;appearance:none;width:15px;height:15px;border:1.5px solid var(--gray-2);border-radius:3px;background:transparent;cursor:pointer;position:relative}
.city-row input:checked{background:var(--orange);border-color:var(--orange)}
.city-row input:checked::after{content:"";position:absolute;left:4px;top:1px;width:4px;height:8px;border:solid #fff;border-width:0 2px 2px 0;transform:rotate(45deg)}
.city-row input:focus-visible{outline:2px solid var(--orange);outline-offset:2px}
.city-row__name{flex:1;min-width:0;background:none;border:0;padding:0;text-align:left;font:inherit;font-size:13.5px;color:var(--gray);cursor:pointer;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.city-row__name:hover{color:var(--white)}
.city-row__count{flex:none;font-family:var(--font-mono);font-size:11px;color:var(--gray-2)}
.chip-mini--zip{display:inline-flex;align-items:center;gap:4px}
.chip-mini__x{background:none;border:0;padding:0 0 0 2px;font:inherit;font-size:13px;line-height:1;color:inherit;cursor:pointer;opacity:.7}
.chip-mini__x:hover{opacity:1}
.chip-mini__x:focus-visible{outline:2px solid var(--orange);outline-offset:1px}
[data-areas-flat]{max-height:16rem;overflow-y:auto}
@media (max-width:560px){.city-zip{flex-direction:column}.city-zip__panel{max-height:11rem}}
