:root {
  --ink: #061b2c;
  --text: #263440;
  --muted: #64717d;
  --muted-dark: rgba(255, 255, 255, 0.78);
  --line: #d9e2ec;
  --soft: #f3f6fa;
  --paper: #ffffff;
  --blue: #0083ff;
  --blue-deep: #005ab8;
  --shadow: 0 18px 45px rgba(6, 27, 44, 0.12);
  --max: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  width: 100%;
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: clip;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 4vw, 54px);
  color: #ffffff;
  background: rgba(6, 27, 44, 0.52);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  transition: padding 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

main [id],
footer[id] {
  scroll-margin-top: 104px;
}

.site-header.is-scrolled {
  padding-block: 8px;
  background: rgba(6, 27, 44, 0.9);
  box-shadow: 0 10px 28px rgba(2, 13, 24, 0.18);
}

.brand,
.site-nav,
.hero-actions,
.footer-actions {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
  font-weight: 800;
}

.brand img {
  display: block;
  width: 82px;
  height: 82px;
  object-fit: contain;
  object-position: center;
  padding: 2px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  transition: width 180ms ease, height 180ms ease;
}

.site-header.is-scrolled .brand img {
  width: 58px;
  height: 58px;
}

.site-nav {
  gap: 18px;
}

.site-nav a {
  padding: 11px 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.04rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.site-nav .nav-contact {
  padding-inline: 20px;
  color: #ffffff;
  background: var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 28px rgba(0, 131, 255, 0.25);
  font-weight: 900;
}

.site-nav .nav-contact:hover,
.site-nav .nav-contact:focus-visible {
  background: var(--blue-deep);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #ffffff;
}

.hero {
  position: relative;
  min-height: 64vh;
  display: grid;
  align-items: start;
  overflow: hidden;
  padding: 126px clamp(20px, 5vw, 72px) 34px;
  color: #ffffff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.16) contrast(1.08) saturate(1.08);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 13, 24, 0.92) 0%, rgba(6, 27, 44, 0.66) 36%, rgba(6, 27, 44, 0.08) 78%),
    linear-gradient(0deg, rgba(2, 13, 24, 0.24), rgba(2, 13, 24, 0.02));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #6fc4ff;
}

h1,
h2,
h3,
p {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

button,
a {
  max-width: 100%;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.04;
}

.hero h1 {
  color: #ffffff;
  max-width: 940px;
  font-size: clamp(2.35rem, 4.95vw, 5.15rem);
  line-height: 1.1;
  letter-spacing: 0;
  white-space: normal;
  overflow-wrap: normal;
}

.hero-title-break {
  display: block;
}

.hero-copy {
  max-width: 860px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 800;
}

.button-primary {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(0, 131, 255, 0.25);
}

.button-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.intro-band {
  padding: 0 clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, #071c2e 0%, #ffffff 74%);
}

.intro-card {
  width: min(var(--max), 100%);
  margin: 0 auto;
  transform: translateY(-24px);
  padding: clamp(19px, 2.55vw, 29px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.intro-card p {
  max-width: 980px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: calc(100% - 40px);
  max-width: var(--max);
  margin: 18px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-strip div {
  padding: 18px;
  background: var(--paper);
}

.trust-strip strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.trust-strip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.94rem;
}

.text-accent {
  color: var(--blue);
  font-weight: 800;
}

.section {
  width: calc(100% - 40px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(38px, 5vw, 60px) 0;
}

.section-muted {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
  background: var(--soft);
}

.section-heading {
  max-width: 100%;
  margin-bottom: 20px;
}

#use-cases .section-heading {
  margin-bottom: 28px;
}

.section h2 {
  font-size: clamp(2rem, 3.45vw, 3.05rem);
}

@media (min-width: 1120px) {
  .section-heading h2 {
    white-space: nowrap;
  }
}

.lead {
  max-width: 870px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.lead-stack {
  display: grid;
  gap: 15px;
}

.lead-stack p {
  margin: 0;
}

#what-we-do .lead {
  max-width: 100%;
}

#why-clients-use-us .lead {
  max-width: 100%;
}

.what-list {
  display: grid;
  gap: 15px;
  padding: 0;
  list-style: none;
}

.what-list li {
  position: relative;
  padding-left: 34px;
}

.what-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(0, 131, 255, 0.12);
}

.problem-grid,
.report-preview,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.problem-grid article,
.report-preview > div,
.faq-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.problem-grid h3,
.report-preview h3,
.faq-grid h3 {
  font-size: 1.15rem;
}

.problem-grid p,
.report-preview p,
.faq-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.monitor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.monitor-grid li {
  position: relative;
  padding: 18px 18px 18px 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--muted);
}

.monitor-grid li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 1.4em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(0, 131, 255, 0.12);
}

.monitor-grid strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.use-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-self: stretch;
  min-height: 0;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.use-card-extra {
  display: none;
}

#use-cases.is-expanded .use-card-extra {
  display: grid;
}

.use-cases-toggle {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.use-cases-toggle .button {
  min-width: 150px;
  justify-content: center;
}

.card-index,
.process-grid span {
  color: var(--blue);
  font-weight: 900;
  font-size: 0.82rem;
}

.use-card h3 {
  margin-top: 10px;
  font-size: 1.28rem;
}

.use-card p {
  margin: 12px 0 0;
}

.case-copy {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.case-copy p {
  margin: 0;
}

.case-copy strong {
  color: var(--ink);
}

.use-card-image {
  display: block;
  align-self: end;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 24px;
  border-radius: 8px;
  overflow: hidden;
}

.case-copy + .use-card-image {
  margin-top: 24px;
}

.use-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.deliverables {
  margin-top: 12px;
  padding-top: 0;
  color: var(--muted);
  font-size: 0.93rem;
  font-style: italic;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(1320px, calc(100vw - 40px));
  margin-inline: calc((min(var(--max), calc(100vw - 40px)) - min(1320px, calc(100vw - 40px))) / 2);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.process-grid article {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 18px;
  background: var(--soft);
  border-right: 1px solid var(--line);
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid h3 {
  margin-top: 14px;
  font-size: 1.12rem;
}

.process-grid p {
  margin: 10px 0 42px;
  font-size: 0.94rem;
}

.process-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-top: auto;
  align-self: center;
  color: var(--blue);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 244, 252, 0.96));
  border: 1px solid rgba(0, 131, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(6, 27, 44, 0.08);
}

.process-icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.deliverables-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.report-section {
  padding-top: 0;
}

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

.report-preview > div {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding-top: 50px;
}

.report-preview > div::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 131, 255, 0.7), rgba(0, 131, 255, 0.12));
}

.status-badge {
  position: absolute;
  top: 18px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 9px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: #eef6ff;
  border: 1px solid rgba(0, 131, 255, 0.2);
  font-size: 0.78rem;
  font-weight: 800;
}

.status-reviewed,
.status-change,
.status-access,
.status-clear {
  color: var(--blue-deep);
  background: #eef6ff;
  border-color: rgba(0, 131, 255, 0.2);
}

.sample-report-cta {
  margin-top: 22px;
}

.faq-section {
  padding-top: 0;
}

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

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
}

.final-cta h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.final-cta p {
  max-width: 760px;
  margin: 12px 0 0;
}

.cta-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  max-width: 760px;
  margin: 18px 0 0;
  padding-left: 1.25em;
  color: rgba(255, 255, 255, 0.82);
}

.cta-steps li::marker {
  color: var(--blue);
  font-weight: 900;
}

.cta-email a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.receive-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
  margin: 20px 0 0;
  padding-left: 1.4em;
  color: var(--text);
  font-size: clamp(1.02rem, 1.55vw, 1.18rem);
}

.receive-list li::marker {
  color: var(--blue);
  font-weight: 900;
}

.receive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.receive-grid article {
  position: relative;
  padding: 20px 20px 20px 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.receive-grid article::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 1.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(0, 131, 255, 0.12);
}

.receive-grid h3 {
  font-size: 1.12rem;
}

.receive-grid p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(27px, 5.1vw, 65px);
  align-items: start;
}

.trust-copy p {
  max-width: 760px;
  margin: 15px 0 0;
  color: var(--text);
  font-size: clamp(1.02rem, 1.55vw, 1.18rem);
}

.benefit-list {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(0, 131, 255, 0.12);
}

.why-list {
  max-width: 920px;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.trust-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  color: var(--muted-dark);
}

.trust-panel h3 {
  color: #ffffff;
  font-size: 1.2rem;
}

.trust-panel h3 + p {
  margin-top: 10px;
}

.trust-panel p {
  margin: 15px 0 0;
}

.standards-panel .standards-list {
  grid-template-columns: 1fr;
  margin-top: 15px;
}

.standards-panel .standards-list li {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted-dark);
}

.standards-section {
  padding-top: 0;
}

.standards-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.standards-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 15px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.standards-list li {
  position: relative;
  padding: 14px 16px 14px 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--text);
  font-weight: 700;
}

.standards-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 1.35em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(0, 131, 255, 0.12);
}

.limits-section {
  padding-top: 0;
}

.limits-panel {
  padding: clamp(20px, 3.4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 45px rgba(6, 27, 44, 0.08);
}

.limits-panel h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.limits-panel p {
  max-width: 940px;
  margin: 15px 0 0;
  color: var(--text);
  font-size: clamp(1.02rem, 1.55vw, 1.18rem);
}

.limits-list {
  display: grid;
  gap: 14px;
  max-width: 1040px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-size: clamp(1.02rem, 1.55vw, 1.18rem);
}

.limits-list li {
  position: relative;
  padding-left: 30px;
}

.limits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(0, 131, 255, 0.12);
}

.meeting-section {
  padding-top: 0;
}

.meeting-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 3.4vw, 36px);
  border-radius: 8px;
  background: var(--ink);
  color: var(--muted-dark);
}

.meeting-card h2 {
  color: #ffffff;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.meeting-card p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted-dark);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
}

.meeting-card .button {
  flex: 0 0 auto;
  justify-content: center;
  min-width: 190px;
}

.site-footer {
  padding: clamp(29px, 4.25vw, 44px) clamp(20px, 5vw, 72px) 20px;
  color: #ffffff;
  background: #051523;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(150px, 0.65fr));
  gap: clamp(20px, 3.4vw, 39px);
  align-items: start;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer-brand h2 {
  color: #ffffff;
  max-width: 440px;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}

.footer-brand p:not(.eyebrow) {
  margin: 10px 0 7px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand a,
.footer-column a {
  display: table;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
}

.footer-brand .footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 0;
  padding: 9px 16px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(0, 131, 255, 0.24);
  font-weight: 700;
}

.footer-brand .footer-cta + a {
  margin-top: 30px;
}

.footer-label {
  display: inline-block;
  margin-right: 6px;
  font-weight: 800;
}

.footer-brand a + a,
.footer-column a + a {
  margin-top: 9px;
}

.footer-brand a:hover,
.footer-column a:hover,
.footer-brand a:focus-visible,
.footer-column a:focus-visible {
  color: #ffffff;
}

.footer-column h3 {
  display: inline-block;
  margin: 0 0 12px;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--blue);
  color: #ffffff;
  font-size: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), 100%);
  margin: 20px auto 0;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.footer-bottom p {
  margin: 0;
}

.contact-modal {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
}

.contact-modal.is-open,
.contact-modal:target {
  display: grid;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 15, 26, 0.72);
  backdrop-filter: blur(8px);
}

.contact-dialog {
  position: relative;
  width: min(560px, 100%);
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(8px) scale(0.98);
  animation: popup-in 180ms ease-out forwards;
}

@keyframes popup-in {
  to {
    transform: translateY(0) scale(1);
  }
}

.contact-dialog h2 {
  max-width: 440px;
  font-size: clamp(1.8rem, 3.8vw, 2.55rem);
}

.contact-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--soft);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 128px;
}

@media (max-width: 1024px) {
  html {
    scroll-padding-top: 102px;
  }

  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  body {
    min-width: 0;
  }

  main,
  footer,
  section,
  article,
  div,
  p,
  h1,
  h2,
  h3,
  ul,
  ol,
  li,
  a {
    min-width: 0;
  }

  main [id],
  footer[id] {
    scroll-margin-top: 102px;
  }

  .site-header {
    gap: 16px;
    min-height: 78px;
    padding: 10px 20px;
  }

  .nav-toggle {
    flex: 0 0 auto;
    display: block;
    min-width: 44px;
    min-height: 44px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(6, 27, 44, 0.96);
  }

  .site-nav a {
    overflow-wrap: normal;
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    min-height: 44px;
    padding: 12px 14px;
  }

  .hero {
    min-height: auto;
    padding: 112px 20px 70px;
  }

  .hero-content {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 7vw, 4rem);
    line-height: 1.08;
    overflow-wrap: normal;
  }

  .hero-copy {
    max-width: 100%;
    font-size: clamp(1rem, 2.4vw, 1.16rem);
    line-height: 1.55;
    overflow-wrap: normal;
  }

  .hero-actions {
    width: 100%;
    max-width: 520px;
  }

  .hero-actions .button {
    justify-content: center;
    text-align: center;
  }

  .section,
  .trust-strip,
  .footer-grid,
  .footer-bottom {
    width: calc(100% - 32px);
    max-width: none;
  }

  .intro-band,
  .section-muted,
  .site-footer {
    max-width: 100%;
    overflow-x: clip;
  }

  .intro-card,
  .trust-strip,
  .problem-grid article,
  .monitor-grid li,
  .use-card,
  .process-grid,
  .process-grid article,
  .receive-grid article,
  .faq-grid article,
  .limits-panel,
  .meeting-card,
  .footer-grid,
  .footer-bottom,
  .contact-dialog {
    min-width: 0;
  }

  .section-muted {
    padding-inline: 16px;
  }

  .section h2,
  .limits-panel h2,
  .meeting-card h2,
  .contact-dialog h2 {
    font-size: clamp(2rem, 5.5vw, 3rem);
    white-space: normal;
  }

  .lead,
  .trust-copy p,
  .limits-list,
  .receive-list {
    max-width: 100%;
    font-size: 1.05rem;
    overflow-wrap: normal;
  }

  .trust-strip,
  .problem-grid,
  .monitor-grid,
  .receive-grid,
  .report-preview,
  .faq-grid,
  .standards-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .section-split,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    width: 100%;
    margin-inline: 0;
  }

  .section-split {
    gap: 18px;
  }

  .process-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid article:last-child {
    border-bottom: 0;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .meeting-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 92px;
  }

  main [id],
  footer[id] {
    scroll-margin-top: 92px;
  }

  .site-header {
    min-height: 76px;
    padding: 10px 16px;
  }

  .site-header,
  .site-nav {
    max-width: 100vw;
  }

  .hero,
  .intro-band,
  .section-muted,
  .site-footer {
    width: 100%;
    max-width: 100%;
  }

  .hero-content,
  .section-heading,
  .lead,
  .lead-stack,
  .what-list,
  .problem-grid,
  .monitor-grid,
  .use-case-grid,
  .process-grid,
  .receive-grid,
  .standards-list,
  .faq-grid,
  .footer-grid,
  .footer-bottom {
    width: 100%;
    max-width: 100%;
  }

  .site-header.is-scrolled {
    padding-block: 8px;
  }

  .brand img {
    width: 62px;
    height: 62px;
  }

  .site-header.is-scrolled .brand img {
    width: 50px;
    height: 50px;
  }

  .site-nav {
    left: 12px;
    right: 12px;
  }

  .hero {
    padding: 96px 20px 56px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(2, 13, 24, 0.94) 0%, rgba(6, 27, 44, 0.76) 56%, rgba(6, 27, 44, 0.22) 100%),
      linear-gradient(0deg, rgba(2, 13, 24, 0.2), rgba(2, 13, 24, 0.06));
  }

  .hero h1 {
    font-size: clamp(2rem, 9.4vw, 2.55rem);
    line-height: 1.1;
  }

  .hero-copy {
    margin-top: 20px;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 340px;
    margin-top: 24px;
  }

  .hero-actions .button,
  .meeting-card .button,
  .footer-brand .footer-cta {
    width: 100%;
    justify-content: center;
  }

  .section,
  .trust-strip,
  .footer-grid,
  .footer-bottom {
    width: calc(100% - 32px);
  }

  .trust-strip {
    overflow: visible;
  }

  .trust-strip div,
  .problem-grid article,
  .monitor-grid li,
  .use-card,
  .process-grid article,
  .receive-grid article,
  .standards-list li,
  .faq-grid article,
  .limits-panel,
  .meeting-card,
  .footer-brand,
  .footer-column {
    width: 100%;
    max-width: 100%;
  }

  .section {
    padding: 40px 0;
  }

  .section-muted {
    padding-inline: 16px;
  }

  .section h2,
  .limits-panel h2,
  .meeting-card h2,
  .contact-dialog h2 {
    font-size: clamp(1.75rem, 7.8vw, 2.25rem);
    line-height: 1.1;
  }

  .section-heading {
    margin-bottom: 16px;
  }

  .lead,
  .trust-copy p,
  .limits-list,
  .receive-list {
    font-size: 1rem;
    line-height: 1.55;
  }

  .use-case-grid,
  .trust-strip,
  .problem-grid,
  .monitor-grid,
  .process-grid,
  .receive-grid,
  .report-preview,
  .faq-grid,
  .section-split,
  .standards-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .monitor-grid,
  .use-case-grid,
  .receive-grid,
  .faq-grid {
    gap: 12px;
  }

  .trust-strip {
    margin-top: 12px;
  }

  .trust-strip div,
  .problem-grid article,
  .monitor-grid li,
  .use-card,
  .receive-grid article,
  .faq-grid article,
  .limits-panel,
  .meeting-card,
  .trust-panel {
    padding: 16px;
  }

  .monitor-grid li,
  .receive-grid article {
    padding-left: 42px;
  }

  .process-grid article {
    padding: 16px;
  }

  .process-icon {
    width: 68px;
    height: 68px;
  }

  .process-icon svg {
    width: 38px;
    height: 38px;
  }

  .use-card h3 {
    font-size: 1.14rem;
  }

  .case-copy + .use-card-image {
    margin-top: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro-card {
    transform: translateY(-20px);
  }

  .trust-strip span,
  .trust-strip strong,
  .lead,
  .lead-stack p,
  .what-list li,
  .problem-grid p,
  .monitor-grid li,
  .case-copy p,
  .monitor-grid li,
  .use-card p,
  .receive-grid p,
  .faq-grid p,
  .footer-brand a,
  .footer-column a {
    overflow-wrap: normal;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-inline: 18px;
  }

  .button {
    min-height: 50px;
    padding-inline: 14px;
  }

  .contact-dialog {
    padding: 22px 18px;
  }

  .contact-form {
    gap: 13px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-inline: 16px;
  }

  .hero-content {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 8.7vw, 2.35rem);
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-actions {
    max-width: 100%;
  }

  .section,
  .trust-strip,
  .footer-grid,
  .footer-bottom {
    width: auto;
    max-width: none;
    margin-left: 16px;
    margin-right: 16px;
  }

  .section.section-muted {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .intro-card {
    width: auto;
    max-width: none;
    margin-left: 16px;
    margin-right: 16px;
  }

  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-footer .footer-grid,
  .site-footer .footer-bottom {
    margin-left: 0;
    margin-right: 0;
  }

  .section h2,
  .use-card h3,
  .lead,
  .use-card p,
  .benefit-list li {
    max-width: 100%;
    overflow-wrap: normal;
    word-wrap: normal;
    word-break: normal;
    hyphens: manual;
  }

  .section h2 {
    font-size: clamp(1.62rem, 6.9vw, 2rem);
    line-height: 1.12;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .lead {
    font-size: 0.96rem;
    line-height: 1.56;
  }

  .use-card h3 {
    font-size: 1.02rem;
    line-height: 1.14;
  }

  .use-card p,
  .case-copy,
  .benefit-list li {
    font-size: 0.94rem;
  }

  .why-list {
    gap: 18px;
    margin-top: 24px;
  }

  .benefit-list li {
    padding-left: 34px;
    line-height: 1.48;
  }

  .benefit-list li::before {
    left: 2px;
    top: 0.54em;
  }
}

/* Mobile layout source of truth */
@media (max-width: 767px) {
  :root {
    --mobile-gutter: 16px;
    --mobile-container: calc(100% - (var(--mobile-gutter) * 2));
  }

  html {
    scroll-padding-top: 92px;
    overflow-x: clip;
  }

  body {
    width: 100%;
    overflow-x: clip;
  }

  main,
  footer,
  section,
  article,
  div,
  ul,
  ol,
  li,
  p,
  h1,
  h2,
  h3 {
    min-width: 0;
  }

  main [id],
  footer[id] {
    scroll-margin-top: 92px;
  }

  .site-header {
    min-height: 76px;
    padding: 10px var(--mobile-gutter);
  }

  .brand img {
    width: 62px;
    height: 62px;
  }

  .site-header.is-scrolled .brand img {
    width: 50px;
    height: 50px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
    min-width: 44px;
    min-height: 44px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: var(--mobile-gutter);
    right: var(--mobile-gutter);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(6, 27, 44, 0.96);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    min-height: 44px;
    padding: 12px 14px;
    overflow-wrap: break-word;
  }

  .hero {
    min-height: auto;
    padding: 98px var(--mobile-gutter) 54px;
  }

  .hero-content {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.65rem);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .hero-copy {
    max-width: 100%;
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.52;
    overflow-wrap: break-word;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    max-width: none;
    gap: 12px;
    margin-top: 24px;
  }

  .button,
  .hero-actions .button,
  .meeting-card .button,
  .footer-brand .footer-cta {
    width: 100%;
    justify-content: center;
    min-height: 50px;
    padding: 13px 16px;
    text-align: center;
  }

  .intro-band {
    width: 100%;
    padding-inline: 0;
  }

  .intro-card,
  .section,
  .trust-strip,
  .footer-grid,
  .footer-bottom {
    width: var(--mobile-container);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .section {
    padding: 42px 0;
  }

  .section.section-muted {
    width: 100%;
    max-width: none;
    padding: 42px var(--mobile-gutter);
  }

  .section.section-muted > * {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .section-heading {
    width: 100%;
    max-width: none;
    margin-bottom: 18px;
  }

  .section h2,
  .limits-panel h2,
  .meeting-card h2,
  .contact-dialog h2 {
    max-width: 100%;
    font-size: clamp(1.8rem, 8.2vw, 2.35rem);
    line-height: 1.1;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .lead,
  .lead-stack,
  .lead-stack p,
  .trust-copy p,
  .limits-list,
  .receive-list {
    width: 100%;
    max-width: none;
    font-size: 1rem;
    line-height: 1.56;
    overflow-wrap: break-word;
  }

  .problem-grid,
  .monitor-grid,
  .use-case-grid,
  .process-grid,
  .receive-grid,
  .report-preview,
  .faq-grid,
  .section-split,
  .standards-list,
  .footer-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
    gap: 14px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    gap: 1px;
    margin-top: 14px;
    overflow: hidden;
  }

  .trust-strip div,
  .problem-grid article,
  .monitor-grid li,
  .use-card,
  .process-grid article,
  .receive-grid article,
  .faq-grid article,
  .limits-panel,
  .meeting-card,
  .trust-panel,
  .standards-list li,
  .report-preview > div {
    width: 100%;
    max-width: none;
    padding: 16px;
  }

  .monitor-grid li,
  .receive-grid article,
  .standards-list li {
    padding-left: 42px;
  }

  .monitor-grid li::before,
  .receive-grid article::before,
  .standards-list li::before {
    left: 18px;
  }

  .benefit-list,
  .what-list,
  .receive-list,
  .limits-list {
    width: 100%;
    max-width: none;
  }

  .benefit-list {
    gap: 16px;
    margin-top: 24px;
  }

  .benefit-list li {
    padding-left: 34px;
    font-size: 1rem;
    line-height: 1.5;
    overflow-wrap: break-word;
  }

  .benefit-list li::before {
    left: 2px;
    top: 0.56em;
  }

  .use-card {
    gap: 0;
  }

  .use-card h3 {
    font-size: 1.12rem;
    line-height: 1.16;
    overflow-wrap: break-word;
  }

  .use-card p,
  .case-copy,
  .case-copy p,
  .receive-grid p,
  .faq-grid p,
  .trust-strip span {
    font-size: 0.98rem;
    line-height: 1.55;
    overflow-wrap: break-word;
  }

  .case-copy {
    gap: 12px;
  }

  .case-copy + .use-card-image {
    margin-top: 18px;
  }

  .use-card-image {
    width: 100%;
    max-width: none;
    aspect-ratio: 16 / 10;
    margin-top: 18px;
    border-radius: 8px;
  }

  .process-grid {
    margin-inline: 0;
    border-radius: 8px;
  }

  .process-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid article:last-child {
    border-bottom: 0;
  }

  .process-icon {
    width: 68px;
    height: 68px;
    margin-top: auto;
  }

  .process-icon svg {
    width: 38px;
    height: 38px;
  }

  .section-split {
    gap: 18px;
  }

  .meeting-card {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .meeting-card p {
    max-width: none;
  }

  .footer-grid {
    align-items: start;
  }

  .footer-brand,
  .footer-column {
    width: 100%;
    max-width: none;
  }

  .footer-brand h2 {
    max-width: none;
  }

  .footer-brand a,
  .footer-column a {
    display: block;
    width: fit-content;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .contact-modal {
    padding: var(--mobile-gutter);
  }

  .contact-dialog {
    width: 100%;
    max-width: none;
    padding: 22px 18px;
  }

  .contact-form {
    gap: 13px;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: clamp(1.85rem, 9.4vw, 2.15rem);
  }

  .section h2,
  .limits-panel h2,
  .meeting-card h2,
  .contact-dialog h2 {
    font-size: clamp(1.65rem, 7.8vw, 2.05rem);
  }

  .use-card h3 {
    font-size: 1.04rem;
  }
}

/* Mobile text should wrap at word boundaries instead of splitting words. */
@media (max-width: 767px) {
  h1,
  h2,
  h3,
  p,
  li,
  span,
  strong,
  .lead,
  .hero-copy,
  .button,
  .site-nav a,
  .trust-strip strong,
  .trust-strip span,
  .problem-grid p,
  .monitor-grid li,
  .benefit-list li,
  .case-copy,
  .case-copy p,
  .use-card h3,
  .use-card p,
  .receive-grid p,
  .faq-grid p,
  .trust-copy p,
  .limits-list li,
  .meeting-card p,
  .footer-column a {
    overflow-wrap: normal;
    word-wrap: normal;
    word-break: normal;
    hyphens: manual;
  }

  .footer-brand a,
  .contact-form input,
  .contact-form textarea {
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: manual;
  }

}

/* Prevent an empty trust-strip grid cell on mobile/tablet widths. */
@media (max-width: 1024px) {
  .trust-strip {
    grid-template-columns: 1fr;
    overflow: hidden;
  }
}

/* Keep split sections inside the same mobile/tablet gutters. */
@media (max-width: 1024px) {
  .section-split,
  .trust-boundaries-section {
    width: calc(100% - 32px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    grid-template-columns: 1fr;
  }

  .section-split > *,
  .trust-boundaries-section > * {
    min-width: 0;
    max-width: 100%;
  }
}

/* Mobile/tablet footer: contact first, then three compact columns. */
@media (max-width: 1024px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 16px;
  }

  .site-footer .footer-brand {
    grid-column: 1 / -1;
  }

  .site-footer .footer-column {
    min-width: 0;
  }

  .site-footer .footer-column h3 {
    font-size: 0.92rem;
  }

  .site-footer .footer-column a {
    width: 100%;
    font-size: 0.82rem;
    line-height: 1.35;
  }
}

/* Mobile/tablet use cases: show four cards before Expand, keep the last two hidden. */
@media (max-width: 1024px) {
  #use-cases:not(.is-expanded) .use-card-extra:nth-of-type(4) {
    display: grid;
  }
}
