:root {
  color-scheme: light;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-200: #fecdd3;
  --rose-700: #be123c;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
  --shadow-lift: 0 28px 80px rgba(15, 23, 42, 0.14);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  background: #fff;
  color: var(--slate-950);
}

section[id] {
  scroll-margin-top: 96px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

svg {
  display: block;
}

.container {
  width: min(100% - 40px, 1280px);
  margin-inline: auto;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(226, 232, 240, 0.72);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(15, 23, 42, 0.06);
}

.nav-inner {
  width: min(100% - 40px, 1280px);
  height: 80px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.nav-actions,
.nav-links,
.hero-actions,
.footer-inner,
.panel-heading {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}

.nav-links {
  gap: 28px;
  color: var(--slate-600);
  font-size: 0.875rem;
  font-weight: 700;
}

.nav-links a,
.nav-signin,
.site-footer a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-signin:hover,
.site-footer a:hover {
  color: var(--emerald-700);
}

.nav-actions {
  gap: 12px;
}

.nav-signin {
  color: var(--slate-700);
  font-size: 0.875rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms var(--ease), box-shadow 200ms var(--ease), border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-sm {
  padding: 0 16px;
  font-size: 0.875rem;
}

.btn-lg {
  min-height: 52px;
  padding: 0 22px;
  font-size: 1rem;
}

.btn-primary {
  background: var(--emerald-600);
  color: #fff;
  box-shadow: 0 16px 34px rgba(5, 150, 105, 0.22);
}

.btn-primary:hover {
  background: var(--emerald-700);
}

.btn-secondary {
  border-color: var(--slate-300);
  background: #fff;
  color: var(--slate-900);
}

.btn-secondary:hover {
  border-color: var(--emerald-200);
  box-shadow: var(--shadow-soft);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.98) 0%, #fff 100%);
  padding-top: 96px;
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#dbe3ef 1px, transparent 1px), linear-gradient(90deg, #dbe3ef 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.62;
}

.hero-fade {
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0));
}

.hero-inner {
  position: relative;
  padding-block: 48px 64px;
}

.careers-hero-inner {
  min-height: 590px;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 920px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--emerald-200);
  border-radius: 999px;
  background: #fff;
  padding: 8px 16px;
  color: #065f46;
  font-size: 0.875rem;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--emerald-500);
  animation: pulse 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.35;
  }
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 1060px;
  margin-top: 24px;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 790px;
  margin-top: 24px;
  color: var(--slate-600);
  font-size: clamp(1.125rem, 2.5vw, 1.35rem);
  line-height: 1.65;
}

.trust-line {
  margin-top: 12px;
  color: var(--slate-500);
  font-size: 0.925rem;
  font-weight: 700;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hero-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 20px;
  margin-top: 48px;
}

.matter-desk,
.stat-stack article,
.feature-grid article,
.workflow-grid article,
.pricing-grid article,
.lead-panel {
  border: 1px solid var(--slate-200);
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.matter-desk {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-lift);
}

.desk-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--slate-950);
  color: #fff;
  padding: 18px 24px;
}

.desk-topbar p {
  color: var(--emerald-300);
  font-size: 0.875rem;
  font-weight: 800;
}

.desk-topbar span {
  display: block;
  margin-top: 4px;
  color: var(--slate-300);
  font-size: 0.75rem;
}

.desk-topbar strong {
  flex: 0 0 auto;
  border: 1px solid rgba(110, 231, 183, 0.42);
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--emerald-200);
  padding: 6px 12px;
  font-size: 0.75rem;
}

.desk-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.court-record {
  border-right: 1px solid var(--slate-200);
  background: var(--slate-50);
  padding: 24px;
}

.readiness-card {
  padding: 24px;
}

.panel-heading {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.panel-heading p {
  color: var(--slate-500);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel-heading h2 {
  margin-top: 4px;
  color: var(--slate-950);
  font-size: 1.35rem;
  font-weight: 900;
}

.panel-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--emerald-200);
  border-radius: 18px;
  background: var(--emerald-50);
  color: var(--emerald-700);
}

.panel-icon svg,
.packet-note svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fact-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.fact-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: #fff;
  padding: 14px 16px;
}

.fact-list dt {
  color: var(--slate-600);
  font-size: 0.875rem;
  font-weight: 700;
}

.fact-list dd {
  margin: 0;
  color: var(--slate-950);
  font-size: 0.875rem;
  font-weight: 900;
  text-align: right;
}

.fact-list .warn {
  border-color: var(--amber-200);
  background: var(--amber-50);
}

.fact-list .warn dt {
  color: var(--amber-800);
}

.fact-list .warn dd {
  color: var(--amber-900);
}

.ask-card {
  margin-top: 20px;
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  background: #fff;
  padding: 16px;
}

.ask-card p {
  color: var(--slate-500);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ask-card strong {
  display: block;
  margin-top: 8px;
  color: var(--slate-900);
  font-size: 0.925rem;
  line-height: 1.65;
}

.ask-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.ask-card span {
  border-radius: 999px;
  background: var(--slate-100);
  color: var(--slate-700);
  padding: 6px 10px;
  font-size: 0.75rem;
  font-weight: 800;
}

.review-pill {
  flex: 0 0 auto;
  border: 1px solid var(--amber-200);
  border-radius: 999px;
  background: var(--amber-50);
  color: var(--amber-800);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check {
  display: flex;
  gap: 12px;
  border: 1px solid;
  border-radius: 18px;
  padding: 16px;
}

.check > span {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 999px;
}

.check h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 900;
}

.check h3 em {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 3px 8px;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
}

.check p {
  margin-top: 6px;
  font-size: 0.875rem;
  line-height: 1.55;
}

.check-ready {
  border-color: var(--emerald-200);
  background: var(--emerald-50);
  color: #065f46;
}

.check-ready > span {
  background: var(--emerald-500);
}

.check-review {
  border-color: var(--amber-200);
  background: var(--amber-50);
  color: var(--amber-800);
}

.check-review > span {
  background: #f59e0b;
}

.check-missing {
  border-color: var(--rose-200);
  background: var(--rose-50);
  color: var(--rose-700);
}

.check-missing > span {
  background: #f43f5e;
}

.packet-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  border-radius: 18px;
  background: var(--slate-950);
  color: #fff;
  padding: 16px;
}

.packet-note strong {
  font-size: 0.95rem;
}

.packet-note p {
  margin-top: 5px;
  color: var(--slate-300);
  font-size: 0.75rem;
  line-height: 1.55;
}

.packet-note svg {
  width: 34px;
  height: 34px;
  color: var(--emerald-300);
}

.stat-stack {
  display: grid;
  gap: 16px;
}

.stat-stack article {
  border-radius: 20px;
  padding: 20px;
}

.stat-stack p,
.feature-grid span {
  color: var(--slate-500);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stat-stack strong {
  display: block;
  margin-top: 8px;
  color: var(--slate-950);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.1;
}

.stat-stack span {
  display: block;
  margin-top: 10px;
  color: var(--slate-600);
  font-size: 0.875rem;
  line-height: 1.6;
}

.section {
  padding-block: 88px;
  background: #fff;
}

.promise-grid,
.trust-grid,
.cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--emerald-700);
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section h2,
.final-cta h2 {
  margin-top: 16px;
  color: var(--slate-950);
  font-size: clamp(2.15rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

.section-copy,
.section-heading p,
.trust-grid p,
.cta-copy p {
  margin-top: 20px;
  color: var(--slate-600);
  font-size: 1.125rem;
  line-height: 1.75;
}

.promise-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mini-card {
  min-height: 180px;
  border: 1px solid;
  border-radius: 20px;
  padding: 20px;
}

.mini-card span {
  display: inline-flex;
  border-radius: 14px;
  padding: 8px 10px;
  font-size: 0.8rem;
  font-weight: 900;
}

.mini-card h3 {
  margin-top: 18px;
  color: var(--slate-950);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.45;
}

.mini-card.green {
  border-color: var(--emerald-200);
  background: var(--emerald-50);
  color: #065f46;
}

.mini-card.amber {
  border-color: var(--amber-200);
  background: var(--amber-50);
  color: var(--amber-800);
}

.mini-card.rose {
  border-color: var(--rose-200);
  background: var(--rose-50);
  color: var(--rose-700);
}

.section-dark {
  border-block: 1px solid var(--slate-200);
  background: var(--slate-950);
  color: #fff;
}

.section-dark .eyebrow {
  color: var(--emerald-300);
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark p {
  color: var(--slate-300);
}

.trust-list {
  display: grid;
  gap: 16px;
}

.trust-list article {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  padding: 20px;
}

.trust-list h3 {
  font-size: 1.05rem;
  font-weight: 900;
}

.trust-list p {
  margin-top: 8px;
  font-size: 0.925rem;
  line-height: 1.7;
}

.section-heading {
  max-width: 760px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.feature-grid,
.workflow-grid,
.pricing-grid {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid article,
.workflow-grid article,
.pricing-grid article {
  border-radius: 20px;
  padding: 24px;
  transition: transform 220ms var(--ease), border-color 180ms ease, box-shadow 220ms var(--ease);
}

.feature-grid article:hover,
.workflow-grid article:hover,
.pricing-grid article:hover,
.stat-stack article:hover {
  border-color: rgba(16, 185, 129, 0.28);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.feature-grid h3,
.workflow-grid h3,
.pricing-grid h3 {
  margin-top: 16px;
  color: var(--slate-950);
  font-size: 1.25rem;
  font-weight: 900;
}

.feature-grid p,
.workflow-grid p,
.pricing-grid p {
  margin-top: 12px;
  color: var(--slate-600);
  font-size: 0.925rem;
  line-height: 1.75;
}

.workflow-section {
  background: var(--slate-50);
}

.workflow-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workflow-grid article span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--slate-950);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-grid article {
  position: relative;
}

.pricing-grid .recommended {
  border-color: var(--emerald-500);
  box-shadow: var(--shadow-soft);
}

.recommended-pill {
  position: absolute;
  top: -12px;
  left: 20px;
  border-radius: 999px;
  background: var(--emerald-600);
  color: #fff;
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 900;
}

.pricing-grid strong {
  display: block;
  margin-top: 24px;
  color: var(--slate-950);
  font-size: 1.9rem;
  font-weight: 900;
}

.pricing-grid ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-grid li {
  position: relative;
  padding-left: 24px;
  color: var(--slate-700);
  font-size: 0.925rem;
  line-height: 1.5;
}

.pricing-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--emerald-500);
}

.pricing-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 28px;
  border: 1px solid var(--slate-300);
  border-radius: 10px;
  color: var(--slate-900);
  font-size: 0.925rem;
  font-weight: 900;
}

.pricing-grid a:hover {
  border-color: var(--emerald-200);
  color: var(--emerald-700);
}

.role-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 28px;
  align-items: start;
}

.role-summary,
.role-detail {
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.role-summary {
  position: sticky;
  top: 108px;
  padding: 24px;
}

.role-summary h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.role-summary dl {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.role-summary div {
  border-top: 1px solid var(--slate-200);
  padding-top: 14px;
}

.role-summary dt {
  color: var(--slate-500);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.role-summary dd {
  margin: 8px 0 0;
  color: var(--slate-900);
  font-weight: 800;
  line-height: 1.45;
}

.role-summary a {
  color: var(--emerald-700);
}

.role-detail {
  padding: clamp(24px, 4vw, 40px);
}

.role-detail h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.role-detail > p,
.role-apply p {
  margin-top: 16px;
  color: var(--slate-600);
  font-size: 1.05rem;
  line-height: 1.75;
}

.role-detail h3 {
  margin-top: 34px;
  color: var(--slate-950);
  font-size: 1.25rem;
  font-weight: 900;
}

.role-detail ul {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.role-detail li {
  position: relative;
  padding-left: 24px;
  color: var(--slate-700);
  line-height: 1.65;
}

.role-detail li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--emerald-500);
}

.role-apply {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  border-radius: 18px;
  background: var(--slate-50);
  padding: 22px;
}

.role-apply h3 {
  margin-top: 0;
}

.final-cta {
  background: var(--slate-950);
  color: #fff;
  padding: 64px 0;
}

.cta-shell {
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  padding: clamp(24px, 4vw, 40px);
}

.cta-copy {
  align-self: center;
}

.final-cta .eyebrow {
  color: var(--emerald-300);
}

.final-cta h2 {
  color: #fff;
}

.cta-copy p {
  color: var(--slate-300);
}

.lead-panel {
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: #fff;
  color: var(--slate-950);
  padding: 24px;
}

.lead-panel h3 {
  font-size: 1.5rem;
  font-weight: 900;
}

.lead-panel > p {
  margin-top: 8px;
  color: var(--slate-600);
  font-size: 0.925rem;
  line-height: 1.65;
}

form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--slate-700);
  font-size: 0.8rem;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--slate-300);
  border-radius: 10px;
  background: #fff;
  color: var(--slate-950);
  padding: 0 12px;
  outline: none;
}

input:focus,
select:focus {
  border-color: var(--emerald-500);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-footnote {
  color: var(--slate-500);
  font-size: 0.75rem;
  line-height: 1.5;
}

.form-message {
  min-height: 1.25rem;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.5;
}

.form-message[data-tone="success"] {
  color: var(--emerald-700);
}

.form-message[data-tone="error"] {
  color: var(--rose-700);
}

.site-footer {
  border-top: 1px solid var(--slate-200);
  background: #fff;
  padding-block: 32px;
}

.footer-inner {
  justify-content: space-between;
  gap: 18px;
  color: var(--slate-500);
  font-size: 0.875rem;
}

.footer-inner div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-inner a {
  color: var(--slate-600);
  font-weight: 700;
}

@media (max-width: 1120px) {
  .hero-showcase,
  .promise-grid,
  .trust-grid,
  .cta-shell,
  .role-layout {
    grid-template-columns: 1fr;
  }

  .stat-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .role-summary {
    position: static;
  }
}

@media (max-width: 860px) {
  .nav-links,
  .nav-signin {
    display: none;
  }

  .container,
  .nav-inner {
    width: min(100% - 32px, 1280px);
  }

  .hero-inner {
    padding-block: 38px 56px;
  }

  .desk-grid,
  .feature-grid,
  .workflow-grid,
  .pricing-grid,
  .promise-cards,
  .stat-stack {
    grid-template-columns: 1fr;
  }

  .court-record {
    border-right: 0;
    border-bottom: 1px solid var(--slate-200);
  }

  .section {
    padding-block: 72px;
  }
}

@media (max-width: 540px) {
  .nav-inner {
    height: 72px;
  }

  .brand {
    font-size: 1.18rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .btn-sm {
    padding-inline: 12px;
  }

  .hero {
    padding-top: 72px;
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 4.6rem);
  }

  .hero-actions,
  .hero-actions .btn,
  .lead-panel .btn,
  .role-apply .btn {
    width: 100%;
  }

  .careers-hero-inner {
    min-height: auto;
  }

  .role-apply {
    align-items: stretch;
    flex-direction: column;
  }

  .desk-topbar,
  .panel-heading,
  .packet-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .fact-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .fact-list dd {
    text-align: left;
  }

  .court-record,
  .readiness-card,
  .lead-panel {
    padding: 18px;
  }

  .cta-shell {
    padding: 18px;
    border-radius: 22px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
