/*
 * CmdHire marketing site styles.
 */

:root {
  --bg: #f6f8f8;
  --ink: #0f1720;
  --muted: #60717f;
  --quiet: #8a99a6;
  --panel: rgba(255, 255, 255, 0.86);
  --line: rgba(15, 23, 32, 0.12);
  --teal: #0f766e;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --gold: #c88a1d;
  --plum: #5b4bd6;
  --shadow: 0 28px 90px rgba(15, 23, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fbfdfd 0%, var(--bg) 52%, #eef4f2 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select {
  font: inherit;
}

.site-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 22px;
}

.site-nav {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(100%, 1160px);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(15, 23, 32, 0.08);
  backdrop-filter: blur(18px) saturate(1.15);
}

.brand,
.app-brand,
.hero-actions,
.hero-metrics,
.nav-links,
.workflow-steps article,
.profile-preview,
.app-header,
.panel-title,
.match-row,
.section-heading,
.security-section,
.cta-section {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 16px;
  font-weight: 820;
}

.brand-mark,
.app-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(145deg, var(--teal), var(--plum));
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.24);
  overflow: hidden;
}

.brand-mark img,
.app-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.nav-links {
  justify-content: center;
  gap: 8px;
}

.nav-links a {
  border-radius: 999px;
  padding: 9px 13px;
  color: #465867;
  font-size: 13px;
  font-weight: 720;
}

.nav-links a:hover {
  background: rgba(15, 118, 110, 0.08);
  color: var(--teal);
}

.nav-links a.active {
  background: rgba(15, 118, 110, 0.12);
  color: var(--teal);
}

.nav-cta,
.primary-cta,
.secondary-cta,
.pilot-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 820;
}

.nav-cta {
  min-height: 38px;
  padding: 0 16px;
  color: #ffffff;
  background: linear-gradient(145deg, var(--teal), var(--blue));
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.18);
}

.hero-section {
  min-height: min(820px, calc(100vh - 40px));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 48px;
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 84px 0 54px;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.eyebrow {
  width: fit-content;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--teal);
  background: rgba(224, 245, 240, 0.76);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  font-size: 78px;
  font-weight: 870;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 560;
  line-height: 1.55;
}

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

.primary-cta,
.secondary-cta {
  min-height: 50px;
  padding: 0 20px;
}

.primary-cta {
  color: #ffffff;
  background: linear-gradient(145deg, var(--teal), var(--blue));
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.24);
}

.secondary-cta {
  border: 1px solid var(--line);
  color: #22313d;
  background: rgba(255, 255, 255, 0.76);
}

.hero-metrics {
  flex-wrap: wrap;
  gap: 10px;
}

.hero-metrics div {
  min-width: 132px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.7);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  font-size: 16px;
  font-weight: 850;
}

.hero-metrics span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.product-stage {
  position: relative;
  min-height: 660px;
}

.browser-card,
.cmdhire-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(1.12);
}

.browser-card {
  top: 34px;
  right: 58px;
  width: min(92%, 560px);
  border-radius: 24px;
  padding: 18px;
  transform: rotate(1.2deg);
}

.browser-topbar {
  display: grid;
  grid-template-columns: 10px 10px 10px 1fr;
  align-items: center;
  gap: 7px;
  color: var(--quiet);
  font-size: 12px;
  font-weight: 720;
}

.browser-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d7dee5;
}

.browser-topbar strong {
  justify-self: end;
  overflow: hidden;
  font-weight: 720;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-preview {
  gap: 14px;
  margin-top: 36px;
  border-radius: 20px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.92), rgba(236, 253, 245, 0.88));
}

.profile-avatar {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(145deg, var(--teal), var(--blue));
  font-size: 22px;
  font-weight: 850;
}

.profile-preview h2 {
  font-size: 26px;
  letter-spacing: 0;
}

.profile-preview p {
  margin-top: 5px;
  color: var(--muted);
  font-weight: 700;
}

.profile-lines {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.profile-lines span {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.16), rgba(37, 99, 235, 0.1));
}

.profile-lines span:nth-child(2) {
  width: 72%;
}

.profile-lines span:nth-child(3) {
  width: 48%;
}

.cmdhire-card {
  right: 0;
  bottom: 22px;
  width: min(96%, 620px);
  border-radius: 26px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(18, 27, 36, 0.96), rgba(16, 44, 53, 0.94)),
    #111820;
  color: #ffffff;
}

.app-header {
  justify-content: space-between;
  gap: 14px;
}

.app-brand {
  gap: 12px;
}

.app-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-weight: 860;
  overflow: hidden;
}

.app-brand strong,
.app-brand small {
  display: block;
}

.app-brand small {
  margin-top: 2px;
  color: #a5b7c6;
  font-weight: 680;
}

.status-pill {
  border: 1px solid rgba(45, 212, 191, 0.24);
  border-radius: 999px;
  padding: 8px 11px;
  color: #99f6e4;
  background: rgba(15, 118, 110, 0.22);
  font-size: 12px;
  font-weight: 820;
}

.match-panel {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.panel-title {
  justify-content: space-between;
  color: #8bd8e5;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.panel-title strong {
  color: #ffffff;
  text-transform: none;
}

.match-row {
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.06);
}

.match-row strong {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(45, 212, 191, 0.42), rgba(37, 99, 235, 0.2));
}

.match-row div {
  min-width: 0;
}

.match-row span,
.match-row small {
  display: block;
}

.match-row span {
  font-size: 15px;
  font-weight: 820;
}

.match-row small {
  margin-top: 3px;
  color: #aec1cf;
  font-weight: 650;
}

.match-row.strong {
  box-shadow: inset 4px 0 0 #2dd4bf;
}

.match-row.warm {
  box-shadow: inset 4px 0 0 #facc15;
}

.match-row.watch {
  box-shadow: inset 4px 0 0 #94a3b8;
}

.chat-card {
  margin-top: 14px;
  border-radius: 18px;
  padding: 14px 16px;
  color: #10202a;
  background: rgba(255, 255, 255, 0.92);
}

.chat-card span {
  color: var(--quiet);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.chat-card p {
  margin-top: 4px;
  font-weight: 720;
  line-height: 1.45;
}

.logo-strip {
  width: min(100%, 1160px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 88px;
}

.logo-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: #4b5d6a;
  background: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 780;
}

.section-block,
.workflow-section,
.security-section,
.cta-section {
  width: min(100%, 1160px);
  margin: 0 auto 88px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(280px, 440px);
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.section-heading .eyebrow {
  grid-column: 1;
}

.section-heading h2 {
  grid-column: 1;
}

.section-heading p {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
}

.section-heading h2,
.workflow-copy h2,
.security-section h2,
.cta-section h2 {
  max-width: 720px;
  margin-top: 14px;
  font-size: 52px;
  font-weight: 860;
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p,
.workflow-copy p,
.cta-section p {
  max-width: 440px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 590;
  line-height: 1.55;
}

.feature-grid,
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid article,
.security-grid article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 46px rgba(15, 23, 32, 0.07);
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(145deg, var(--teal), var(--blue));
  font-size: 12px;
  font-weight: 850;
}

.feature-grid h3,
.security-grid h3,
.workflow-steps h3 {
  font-size: 20px;
  font-weight: 840;
  letter-spacing: 0;
}

.feature-grid p,
.security-grid p,
.workflow-steps p {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 590;
  line-height: 1.55;
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1fr);
  gap: 42px;
  align-items: center;
  border-radius: 32px;
  padding: 36px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(18, 27, 36, 0.96), rgba(12, 47, 54, 0.95)),
    #111820;
  box-shadow: var(--shadow);
}

.workflow-copy .eyebrow {
  color: #99f6e4;
  background: rgba(15, 118, 110, 0.24);
  border-color: rgba(153, 246, 228, 0.2);
}

.workflow-copy p,
.workflow-steps p {
  color: #b7c8d4;
}

.workflow-steps {
  display: grid;
  gap: 12px;
}

.workflow-steps article {
  align-items: flex-start;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.workflow-steps strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(145deg, var(--cyan), var(--blue));
}

.security-section {
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.security-grid {
  width: min(100%, 660px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.security-grid article {
  min-height: 210px;
}

.cta-section {
  justify-content: space-between;
  gap: 30px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 34px;
  padding: 36px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(237, 250, 247, 0.78));
  box-shadow: var(--shadow);
}

.pilot-form {
  width: min(100%, 420px);
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.pilot-form label {
  display: grid;
  gap: 7px;
  color: #3e5060;
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.pilot-form input,
.pilot-form select {
  width: 100%;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 12px;
  color: var(--ink);
  background: #ffffff;
  outline: 0;
}

.pilot-form input:focus,
.pilot-form select:focus {
  border-color: rgba(15, 118, 110, 0.42);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
}

.pilot-form button {
  min-height: 48px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(145deg, var(--teal), var(--blue));
  cursor: pointer;
}

.proof-section,
.page-hero,
.split-proof,
.impact-band,
.capability-list,
.operator-panel,
.trust-grid,
.policy-note,
.brand-lab,
.brand-usage,
.legal-page,
.site-footer {
  width: min(100%, 1160px);
  margin: 0 auto 88px;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.proof-copy {
  border-radius: 28px;
  padding: 32px;
  color: #ffffff;
  background: linear-gradient(145deg, rgba(18, 27, 36, 0.96), rgba(12, 47, 54, 0.95));
  box-shadow: var(--shadow);
}

.proof-copy h2 {
  margin-top: 14px;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.proof-grid article,
.impact-band article,
.trust-grid article {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 46px rgba(15, 23, 32, 0.07);
}

.proof-grid strong,
.impact-band strong {
  color: var(--teal);
  font-size: 18px;
  font-weight: 860;
}

.proof-grid p,
.impact-band p,
.trust-grid p,
.legal-page p,
.policy-note p,
.operator-panel li,
.split-proof p {
  color: var(--muted);
  font-weight: 590;
  line-height: 1.58;
}

.page-hero {
  padding: 92px 0 24px;
}

.page-hero h1 {
  max-width: 960px;
  margin-top: 16px;
  font-size: 68px;
  line-height: 0.98;
}

.page-hero p {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 21px;
  font-weight: 570;
  line-height: 1.55;
}

.split-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.split-proof > div,
.operator-panel,
.policy-note {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 52px rgba(15, 23, 32, 0.08);
}

.split-proof h2,
.operator-panel h2,
.policy-note h2 {
  margin-top: 12px;
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: 0;
}

.split-proof p,
.policy-note p {
  margin-top: 16px;
  font-size: 17px;
}

.impact-band,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.capability-list {
  display: grid;
  gap: 14px;
}

.capability-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 26px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 46px rgba(15, 23, 32, 0.07);
}

.capability-list span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(145deg, var(--teal), var(--blue));
  font-weight: 860;
}

.capability-list h2,
.trust-grid h2,
.legal-page h2 {
  font-size: 26px;
  line-height: 1.16;
  letter-spacing: 0;
}

.capability-list p {
  max-width: 820px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 590;
  line-height: 1.58;
}

.operator-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: start;
}

.operator-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.operator-panel li {
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(236, 253, 245, 0.72);
  color: #16312e;
  font-weight: 760;
}

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

.policy-note {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(237, 250, 247, 0.78));
}

.legal-page {
  max-width: 880px;
  padding: 92px 0 16px;
}

.legal-page h1 {
  margin-top: 16px;
  font-size: 58px;
  line-height: 1;
}

.legal-page h2 {
  margin-top: 34px;
}

.legal-page p {
  margin-top: 10px;
  font-size: 17px;
}

.legal-date {
  color: var(--quiet);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--muted);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer span {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 650;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  font-weight: 760;
}

.compact-cta {
  margin-top: 0;
}

.brand-hero {
  padding-bottom: 10px;
}

.brand-lab {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.brand-candidate {
  display: grid;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 30px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.brand-candidate-main {
  display: grid;
  place-items: center;
  border-radius: 24px;
  padding: 34px;
  background: linear-gradient(145deg, #101c28, #05111d);
}

.brand-candidate-main img {
  width: min(100%, 320px);
  aspect-ratio: 1;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.24));
}

.brand-candidate-copy h2 {
  margin-top: 10px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0;
}

.brand-candidate-copy p {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 590;
  line-height: 1.58;
}

.brand-scale-row {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.brand-scale-row img {
  flex: 0 0 auto;
}

.size-xl {
  width: 72px;
  height: 72px;
}

.size-md {
  width: 48px;
  height: 48px;
}

.size-sm {
  width: 32px;
  height: 32px;
}

.size-xs {
  width: 18px;
  height: 18px;
}

.brand-usage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.brand-nav-preview {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  column-gap: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 46px rgba(15, 23, 32, 0.07);
}

.brand-nav-preview img {
  grid-row: span 2;
  width: 54px;
  height: 54px;
}

.brand-nav-preview strong,
.brand-nav-preview span {
  display: block;
}

.brand-nav-preview strong {
  font-size: 18px;
  font-weight: 860;
}

.brand-nav-preview span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 62px;
  }

  .page-hero h1 {
    font-size: 54px;
  }

  .section-heading h2,
  .workflow-copy h2,
  .security-section h2,
  .cta-section h2 {
    font-size: 44px;
  }

  .hero-section,
  .workflow-section,
  .security-section,
  .cta-section,
  .proof-section,
  .operator-panel,
  .brand-lab,
  .brand-usage {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: 0;
  }

  .product-stage {
    min-height: 620px;
  }

  .section-heading,
  .security-section,
  .cta-section {
    align-items: flex-start;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading .eyebrow,
  .section-heading h2,
  .section-heading p {
    grid-column: 1;
  }

  .section-heading p {
    grid-row: auto;
  }

  .feature-grid,
  .security-grid,
  .impact-band,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
}

@media (max-width: 720px) {
  .site-shell {
    padding: 12px;
  }

  .site-nav {
    position: static;
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-section {
    padding-top: 50px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  h1 {
    font-size: 42px;
    line-height: 1;
  }

  .section-heading h2,
  .workflow-copy h2,
  .security-section h2,
  .cta-section h2 {
    font-size: 34px;
    line-height: 1.06;
  }

  .page-hero {
    padding-top: 48px;
  }

  .page-hero h1,
  .legal-page h1 {
    font-size: 40px;
    line-height: 1.05;
  }

  .page-hero p {
    font-size: 18px;
  }

  .product-stage {
    min-height: 720px;
  }

  .browser-card,
  .cmdhire-card {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .cmdhire-card {
    margin-top: -10px;
  }

  .feature-grid,
  .security-grid,
  .proof-grid,
  .split-proof,
  .impact-band,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article,
  .security-grid article {
    min-height: 220px;
  }

  .workflow-section,
  .cta-section {
    padding: 24px;
    border-radius: 24px;
  }

  .proof-copy h2,
  .split-proof h2,
  .operator-panel h2,
  .policy-note h2 {
    font-size: 30px;
  }

  .capability-list article {
    grid-template-columns: 1fr;
  }

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