*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --purple: #3d2f6b;
  --teal: #00a8a8;
  --orange: #f07828;
  --lavender: #a89ec0;
  --bg: #f9f9f8;
  --white: #ffffff;
  --ink: #111110;
  --ink-2: #444340;
  --ink-3: #888785;
  --border: #e8e7e4;
  --border-dark: #d0cfc9;
}

body {
  font-family: 'Epilogue', sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  background: rgba(249,249,248,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo img {
  height: 40px;
  display: block;
}

.nav-center {
  display: flex; gap: 40px;
  list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}

.nav-center a {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-center a:hover { color: var(--ink); }

.nav-right { display: flex; align-items: center; gap: 12px; }

.nav-btn-ghost {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  transition: border-color 0.2s, color 0.2s;
}
.nav-btn-ghost:hover { border-color: var(--ink); color: var(--ink); }

.nav-btn-fill {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  padding: 8px 18px;
  background: var(--orange);
  border-radius: 6px;
  transition: opacity 0.2s;
}
.nav-btn-fill:hover { opacity: 0.88; }

/* ── HERO ── */
.hero {
  padding-top: 64px;
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding-left: 40px; padding-right: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 32px;
  opacity: 0;
  animation: up 0.6s 0.1s ease forwards;
}

.hero-tag-dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 820px;
  margin-bottom: 36px;
  opacity: 0;
  animation: up 0.7s 0.2s ease forwards;
}

.hero-h1 .accent-teal { color: var(--teal); }
.section-h2 .accent-teal { color: var(--teal); }
.hero-h1 .accent-orange { color: var(--orange); }

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 520px;
  margin-bottom: 48px;
  opacity: 0;
  animation: up 0.7s 0.3s ease forwards;
}

.hero-actions {
  display: flex; align-items: center; gap: 16px;
  opacity: 0;
  animation: up 0.7s 0.4s ease forwards;
}

.btn-primary {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--purple);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-secondary {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.btn-secondary:hover { color: var(--ink); }
.btn-secondary svg { transition: transform 0.2s; }
.btn-secondary:hover svg { transform: translateX(3px); }

.hero-metrics {
  display: flex; gap: 0;
  margin-top: 80px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  opacity: 0;
  animation: up 0.7s 0.5s ease forwards;
}

.metric {
  flex: 1;
  padding-right: 40px;
  border-right: 1px solid var(--border);
  margin-right: 40px;
}
.metric:last-child { border-right: none; margin-right: 0; padding-right: 0; }

.metric-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.metric-num sup { font-size: 18px; color: var(--teal); }

.metric-label {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.4;
}

@keyframes up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── LOGO BAR ── */
.logobar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
  padding: 20px 40px;
  display: flex; align-items: center; gap: 0;
  overflow: hidden;
}

.logobar-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
  padding-right: 40px;
  border-right: 1px solid var(--border);
  margin-right: 40px;
  flex-shrink: 0;
}

.logobar-items {
  display: flex; gap: 48px; align-items: center;
  flex: 1;
}

.logobar-item {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--border-dark);
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.logobar-item:hover { color: var(--ink-3); }

/* ── SERVICES ── */
.services {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 24px;
  display: block;
}

.section-h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 64px;
  max-width: 560px;
}

.section-h2 em {
  font-style: italic;
  font-family: 'Epilogue', sans-serif;
  font-weight: 300;
  color: var(--ink-2);
}

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.service-row {
  padding: 36px 40px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 24px;
  background: var(--white);
  transition: background 0.2s;
  cursor: default;
}
.service-row:hover { background: #fafaf9; }
.service-row:nth-child(even) { border-right: none; }
.service-row:nth-last-child(-n+2) { border-bottom: none; }

.service-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
}

.service-h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.service-p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-3);
}

/* ── AUDIENCES ── */
.audiences {
  background: var(--purple);
  padding: 120px 40px;
}

.audiences-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.audiences .section-tag { color: rgba(255,255,255,0.4); }

.audiences .section-h2 {
  color: var(--white);
  margin-bottom: 56px;
}

.audiences .section-h2 em { color: rgba(255,255,255,0.5); }

.aud-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.aud-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 36px 32px;
  transition: background 0.25s, border-color 0.25s;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.aud-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.aud-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.aud-icon-teal { background: rgba(0,168,168,0.15); }
.aud-icon-orange { background: rgba(240,120,40,0.15); }
.aud-icon-lavender { background: rgba(168,158,192,0.15); }

.aud-h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.aud-p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}

.aud-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}

.aud-features li {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 8px;
}

.aud-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.aud-dot-teal { background: var(--teal); }
.aud-dot-orange { background: var(--orange); }
.aud-dot-lavender { background: var(--lavender); }

.aud-link {
  display: inline-flex; align-items: center; justify-content: space-between;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 28px;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s, border-color 0.2s;
}
.aud-link:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.3);
}
.aud-link-teal { color: var(--teal); }
.aud-link-orange { color: var(--orange); }
.aud-link-lavender { color: var(--lavender); }

/* ── ABOUT ── */
.about {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-right { padding-top: 48px; }

.about-h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
}

.about-p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-2);
  margin-bottom: 16px;
}

.about-values {
  margin-top: 40px;
  display: flex; flex-direction: column; gap: 0;
}

.about-value {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: baseline;
}

.about-value-label {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-3);
}

.about-value-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-2);
}

/* big number block */
.about-stat-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.stat-block-item {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.stat-block-item:last-child { border-bottom: none; }

.stat-block-label {
  font-size: 13px;
  color: var(--ink-3);
}

.stat-block-val {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.stat-block-val .teal { color: var(--teal); }
.stat-block-val .orange { color: var(--orange); }

/* testimonial */
.testimonial {
  background: var(--purple);
  border-radius: 12px;
  padding: 32px;
}

.testimonial-quote {
  font-family: 'Epilogue', sans-serif;
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

.testimonial-author {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── CAREERS ── */
.careers {
  border-top: 1px solid var(--border);
}

.careers-unified {
  display: flex;
  flex-direction: column;
}

.careers-block {
  background: var(--white);
  padding: 100px 40px;
  border-bottom: 1px solid var(--border);
}

.careers-block-alt {
  background: var(--bg);
}

.careers-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.careers-left .section-h2 { margin-bottom: 20px; }

.careers-p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-2);
  margin-bottom: 36px;
}

.perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 36px;
}

.perk {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 18px;
}

.perk-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.perk-sub {
  font-size: 12px;
  color: var(--ink-3);
}

.positions-panel {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}

.positions-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}

.positions-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.positions-badge {
  background: var(--teal);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.position {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.15s;
  cursor: pointer;
}
.position:last-child { border-bottom: none; }
.position:hover { background: var(--bg); }

.position-name {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}

.position-meta {
  font-size: 12px;
  color: var(--ink-3);
}

.position-arrow {
  color: var(--ink-3);
  transition: transform 0.2s, color 0.2s;
}
.position:hover .position-arrow {
  transform: translateX(3px);
  color: var(--teal);
}

/* ── CAREERS RECRUIT HEADING ── */
.careers-recruit-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.careers-recruit-heading .accent-teal { color: var(--teal); }
.careers-recruit-heading .accent-teal-grad {
  background: linear-gradient(90deg, #00a8a8 0%, #00c9a7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── PHYSICIAN INTEREST FORM ── */
.phys-form-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  align-self: start;
}

.phys-form-heading {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.phys-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phys-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.phys-form-input {
  font-family: 'Epilogue', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.phys-form-input::placeholder { color: var(--ink-3); }
.phys-form-input:focus { border-color: var(--teal); }

.phys-form-submit {
  align-self: flex-start;
  border: none;
  cursor: pointer;
  margin-top: 4px;
}

.phys-form-success {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  margin-top: 4px;
}

/* ── FOR ALL TEAM MEMBERS ── */
.team-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 100px 40px;
}

.team-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Left: text+perks, Right: jobs board */
.team-careers-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.team-section-text { max-width: 100%; }

.team-p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-2);
  margin-bottom: 16px;
}

.team-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.team-perk {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 26px;
  transition: border-color 0.2s;
}
.team-perk:hover { border-color: var(--border-dark); }
.careers-left .team-perk { background: var(--bg); }

.team-perk-name {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.team-perk-sub {
  font-size: 13px;
  color: var(--ink-3);
}

/* Team jobs board — full width below the top grid */
.team-jobs-board {
  max-height: 560px;
}

/* ── BILL PAY ── */
.billpay {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
}

.billpay-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}

.billpay-h3 {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.billpay-sub {
  font-size: 14px;
  color: var(--ink-3);
}

.billpay-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }

.btn-orange {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--orange);
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-orange { display: inline-flex; align-items: center; gap: 6px; }
.btn-orange:hover { opacity: 0.85; }
.btn-orange svg { transition: transform 0.2s; }
.btn-orange:hover svg { transform: translateX(3px); }

.btn-outline {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 12px 20px;
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 64px 40px 36px;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-logo {
  height: 36px;
  filter: brightness(0) invert(1) opacity(0.85);
  display: block;
  margin-bottom: 16px;
}

.nav-logo img {
  height: 36px;
  display: block;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.35);
  max-width: 240px;
  margin-bottom: 24px;
}

.footer-contact a,
.footer-contact span {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.footer-contact a:hover { color: rgba(255,255,255,0.85); }

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  color: rgba(255,255,255,0.2);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ── NAV LOGO TEXT fallback ── */
.nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--purple);
  text-decoration: none;
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(249,249,248,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu-ghost {
  margin-top: 8px;
  border: 1px solid var(--border-dark) !important;
  border-radius: 6px;
  padding: 10px 14px !important;
  text-align: center;
}
.mobile-menu-fill {
  background: var(--orange);
  color: var(--white) !important;
  border-radius: 6px;
  padding: 10px 14px !important;
  text-align: center;
  font-weight: 600 !important;
}

/* ── PERKS (updated) ── */
.perk {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 18px 14px;
}
.perk-icon {
  margin-bottom: 10px;
}

/* ── JOBS BOARD ── */
.jobs-board {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  max-height: 640px;
}

.jobs-board-header {
  padding: 20px 24px 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  flex-shrink: 0;
}

.jobs-board-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.jobs-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 8px 12px;
  margin-bottom: 14px;
  color: var(--ink-3);
}

.jobs-search {
  background: none;
  border: none;
  outline: none;
  font-family: 'Epilogue', sans-serif;
  font-size: 13px;
  color: var(--ink);
  width: 100%;
}
.jobs-search::placeholder { color: var(--ink-3); }

.jobs-filters {
  display: flex;
  gap: 6px;
  padding-bottom: 14px;
}

.jobs-filter-btn {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  background: none;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  cursor: pointer;
  transition: all 0.18s;
}
.jobs-filter-btn:hover { border-color: var(--ink-2); color: var(--ink-2); }
.jobs-filter-btn.active {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
}

.jobs-list {
  overflow-y: auto;
  flex: 1;
}

.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.15s;
  cursor: pointer;
}
.job-card:last-child { border-bottom: none; }
.job-card:hover { background: var(--bg); }
.job-card:hover .job-card-arrow { transform: translateX(3px); color: var(--teal); }

.job-card-left { flex: 1; min-width: 0; }

.job-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.job-card-sub {
  font-weight: 400;
  color: var(--ink-3);
  font-size: 13px;
}

.job-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-3);
}

.job-card-dept {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: var(--teal);
  background: rgba(0,168,168,0.08);
  padding: 2px 8px;
  border-radius: 20px;
}

.job-card-sep { color: var(--border-dark); }

.job-card-loc {
  display: flex;
  align-items: center;
  gap: 3px;
}

.job-card-arrow {
  color: var(--ink-3);
  transition: transform 0.2s, color 0.2s;
  flex-shrink: 0;
  margin-left: 12px;
}

.jobs-board-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: var(--white);
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
}

.jobs-board-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  background: var(--orange);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  transition: opacity 0.2s, gap 0.2s;
}
.jobs-board-all-link:hover { opacity: 0.88; gap: 10px; }

/* ── CONTACT SECTION ── */
.contact-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 120px 40px;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-2);
  margin-bottom: 36px;
  margin-top: 8px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-detail-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-detail-row:hover { color: var(--ink); }

.contact-detail-icon {
  width: 36px;
  height: 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  flex-shrink: 0;
}

/* ── CONTACT FORM ── */
.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}

.form-input {
  font-family: 'Epilogue', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus { border-color: var(--purple); }
.form-input::placeholder { color: var(--ink-3); }

.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 100px; }

.form-submit {
  border: none;
  cursor: pointer;
  align-self: flex-start;
}

.form-success {
  font-size: 13px;
  color: var(--teal);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
}

/* ── FOOTER LOGO TEXT ── */
.footer-logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 16px;
}

/* ── RESPONSIVE ── */

/* Tablet (≤ 900px) */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-center { display: none; }
  .nav-btn-ghost, .nav-btn-fill { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 100px 24px 60px; min-height: auto; }
  .hero-sub { font-size: 16px; }
  .hero-metrics { flex-direction: column; gap: 20px; margin-top: 48px; }
  .metric { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 20px; margin-bottom: 0; padding-right: 0; margin-right: 0; }
  .metric:last-child { border-bottom: none; }

  .services { padding: 80px 24px; }
  .section-h2 { margin-bottom: 40px; }
  .services-list { grid-template-columns: 1fr; border-radius: 10px; }
  .service-row { border-right: none !important; padding: 28px 24px; }
  .service-row:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .service-row:last-child { border-bottom: none; }

  .audiences { padding: 80px 24px; }
  .aud-grid { grid-template-columns: 1fr; }

  .about { grid-template-columns: 1fr; padding: 80px 24px; }

  .careers-block { padding: 80px 24px; }
  .careers-inner { grid-template-columns: 1fr; gap: 40px; }
  .phys-form-row { grid-template-columns: 1fr; }
  .team-perks { grid-template-columns: 1fr 1fr; margin-top: 24px; }
  .team-jobs-board { max-height: 500px; }

  .jobs-board { max-height: 500px; }

  .contact-section { padding: 80px 24px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }

  footer { padding: 48px 24px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .billpay { flex-direction: column; align-items: flex-start; }
}

/* Mobile (≤ 600px) */
@media (max-width: 600px) {
  .hero { padding: 88px 20px 48px; }
  .hero-h1 { font-size: clamp(36px, 10vw, 52px); margin-bottom: 24px; }
  .hero-sub { font-size: 15px; max-width: 100%; margin-bottom: 32px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-actions a { width: 100%; justify-content: center; }
  .hero-metrics { margin-top: 40px; }

  .section-h2 { font-size: clamp(26px, 7vw, 40px); }

  .services { padding: 60px 20px; }
  .service-row { padding: 22px 18px; gap: 16px; }

  .audiences { padding: 60px 20px; }
  .aud-card { padding: 28px 24px; }
  .aud-grid { gap: 12px; }

  .about { padding: 60px 20px; gap: 32px; }
  .about-right { padding-top: 0; }

  .careers-block { padding: 60px 20px; }
  .careers-recruit-heading { font-size: clamp(16px, 5vw, 22px); }
  .team-perks { grid-template-columns: 1fr; }
  .phys-form-wrap { padding: 20px; }

  .jobs-board { max-height: 420px; }
  .team-jobs-board { max-height: 420px; }
  .jobs-filter-btn { font-size: 11px; padding: 5px 10px; }
  .jobs-filters { gap: 4px; flex-wrap: wrap; }

  .contact-section { padding: 60px 20px; }
  .contact-form { padding: 20px; }

  footer { padding: 48px 20px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-desc { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-legal { flex-wrap: wrap; gap: 12px; }
}
