:root {
  --navy-950: #071d2a;
  --navy-900: #0b2637;
  --navy-850: #0e3044;
  --navy-800: #12384e;
  --navy-700: #1e5065;
  --aqua-500: #55d9dc;
  --aqua-300: #9cedef;
  --aqua-100: #dffafa;
  --ink: #11222d;
  --muted: #5f717c;
  --line: #d9e4e7;
  --surface: #f4f8f9;
  --white: #ffffff;
  --success: #73e1c4;
  --shadow-sm: 0 10px 30px rgba(8, 34, 49, .08);
  --shadow-lg: 0 30px 80px rgba(8, 34, 49, .16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(14, 48, 68, .08);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 10px 35px rgba(8, 34, 49, .08);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { flex: 0 0 auto; }
.brand img { width: 250px; height: auto; }
.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.primary-nav > a:not(.button) {
  position: relative;
  color: #344d5b;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}
.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--aqua-500);
  transition: right .22s ease;
}
.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button):focus-visible::after { right: 0; }
.nav-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 720;
  letter-spacing: .01em;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible,
.primary-nav a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(85, 217, 220, .45);
  outline-offset: 3px;
}
.button-primary {
  color: var(--navy-950);
  background: var(--aqua-300);
  box-shadow: 0 12px 28px rgba(85, 217, 220, .2);
}
.button-primary:hover { background: #b6f4f5; box-shadow: 0 16px 34px rgba(85, 217, 220, .3); }
.button-secondary {
  color: var(--navy-850);
  background: rgba(255, 255, 255, .78);
  border-color: #c9d9de;
}
.button-secondary:hover { border-color: var(--navy-700); background: var(--white); }
.button-dark { color: var(--white); background: var(--navy-850); }
.button-dark:hover { background: var(--navy-700); }
.button-small { min-height: 42px; padding: 0 18px; font-size: 13px; }
.button-full { width: 100%; border: 0; }

.hero {
  position: relative;
  min-height: 780px;
  padding: calc(var(--header-height) + 92px) 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 20%, rgba(156, 237, 239, .28), transparent 31%),
    linear-gradient(180deg, #f8fbfc 0%, #ffffff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -310px;
  top: 230px;
  border-radius: 50%;
  border: 110px solid rgba(14, 48, 68, .025);
}
.hero-grid {
  position: absolute;
  inset: 0 0 0 55%;
  opacity: .28;
  background-image:
    linear-gradient(rgba(14, 48, 68, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 48, 68, .08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to left, black, transparent);
}
.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 45px;
}
.hero-copy { padding-bottom: 20px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--navy-700);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .13em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--aqua-500);
}
.eyebrow-light { color: var(--aqua-300); }
.hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(52px, 6.1vw, 84px);
  font-weight: 760;
  letter-spacing: -.055em;
  line-height: .98;
}
.hero-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: #435a68;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.status-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin: 34px 0 0;
  padding: 0;
  color: #526a76;
  font-size: 13px;
  font-weight: 620;
  list-style: none;
}
.status-list li { position: relative; padding-left: 16px; }
.status-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--aqua-500);
}
.hero-visual { position: relative; z-index: 1; }
.hero-visual > img { position: relative; width: 100%; filter: drop-shadow(0 30px 38px rgba(8, 34, 49, .17)); }
.visual-glow {
  position: absolute;
  inset: 10% 8% 16%;
  border-radius: 50%;
  background: rgba(85, 217, 220, .22);
  filter: blur(70px);
}
.visual-caption {
  margin: -4px 5% 0;
  color: #71838d;
  font-size: 11px;
  text-align: center;
}

.credibility-strip { position: relative; background: var(--navy-850); }
.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px 0;
}
.credibility-grid > div { padding: 4px 24px; border-right: 1px solid rgba(255, 255, 255, .13); }
.credibility-grid > div:first-child { padding-left: 0; }
.credibility-grid > div:last-child { border-right: 0; }
.credibility-grid strong { display: block; color: var(--aqua-300); font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
.credibility-grid span { display: block; margin-top: 3px; color: rgba(255, 255, 255, .72); font-size: 13px; }

.section { padding: 116px 0; }
.section-light { background: var(--surface); }
.section-dark { color: var(--white); background: var(--navy-900); }
.section-heading { max-width: 760px; margin-bottom: 54px; }
.section-heading.narrow { max-width: 810px; }
.section-heading h2,
.workflow-intro h2,
.evidence-copy h2,
.company-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 740;
  letter-spacing: -.04em;
  line-height: 1.08;
}
.section-heading > p:last-child,
.workflow-intro > p,
.evidence-copy > p,
.company-copy > p,
.contact-copy > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.challenge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.challenge-card {
  min-height: 300px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.card-number { display: block; color: var(--aqua-500); font-size: 13px; font-weight: 780; letter-spacing: .08em; }
.challenge-card h3 { margin: 72px 0 12px; color: var(--navy-850); font-size: 22px; line-height: 1.2; }
.challenge-card p { margin: 0; color: var(--muted); font-size: 15px; }

.workflow-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: start; }
.workflow-intro { position: sticky; top: calc(var(--header-height) + 50px); }
.workflow-intro h2 { color: var(--white); }
.workflow-intro > p { color: rgba(255, 255, 255, .65); }
.workflow-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  padding: 16px 18px;
  border: 1px solid rgba(156, 237, 239, .25);
  border-radius: 14px;
  color: rgba(255, 255, 255, .78);
  background: rgba(156, 237, 239, .06);
  font-size: 13px;
}
.workflow-note svg { width: 18px; height: 18px; fill: none; stroke: var(--aqua-300); stroke-width: 1.8; }
.workflow-steps { margin: 0; padding: 0; list-style: none; }
.workflow-steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 25px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, .13);
}
.workflow-steps li:last-child { border-bottom: 1px solid rgba(255, 255, 255, .13); }
.step-index {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(156, 237, 239, .45);
  border-radius: 50%;
  color: var(--aqua-300);
  font-size: 14px;
  font-weight: 750;
}
.workflow-steps h3 { margin: 0; color: var(--white); font-size: 23px; }
.workflow-steps p { margin: 8px 0 0; color: rgba(255, 255, 255, .63); }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 14px 45px rgba(8, 34, 49, .06);
}
.value-card-featured { border-color: rgba(85, 217, 220, .65); box-shadow: 0 18px 55px rgba(85, 217, 220, .13); }
.icon-box {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--aqua-100);
}
.icon-box svg { width: 24px; height: 24px; fill: none; stroke: var(--navy-850); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.value-card h3 { margin: 28px 0 11px; color: var(--navy-850); font-size: 24px; }
.value-card > p { min-height: 82px; margin: 0; color: var(--muted); }
.value-card ul { margin: 25px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; }
.value-card li { position: relative; margin: 10px 0; padding-left: 20px; color: #435b68; font-size: 14px; }
.value-card li::before { content: ""; position: absolute; left: 0; top: .65em; width: 7px; height: 7px; border-radius: 50%; background: var(--aqua-500); }

.evidence-section { background: linear-gradient(135deg, #eef8f8, #f8fbfb 62%, #ffffff); }
.evidence-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 85px; align-items: center; }
.evidence-copy > p { font-size: 17px; }
.evidence-panel { padding: 34px; border: 1px solid rgba(14, 48, 68, .12); border-radius: var(--radius-lg); background: rgba(255, 255, 255, .78); box-shadow: var(--shadow-lg); backdrop-filter: blur(12px); }
.panel-label { margin: 0 0 23px; color: var(--navy-700); font-size: 12px; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.priority-list { margin: 0; padding: 0; list-style: none; }
.priority-list li { display: flex; gap: 18px; padding: 18px 0; border-top: 1px solid var(--line); color: var(--navy-850); font-weight: 660; }
.priority-list li:last-child { padding-bottom: 0; }
.priority-list span { color: var(--aqua-500); font-size: 12px; letter-spacing: .06em; }

.company-layout { display: grid; grid-template-columns: .52fr 1.48fr; gap: 82px; align-items: center; }
.company-mark { display: grid; place-items: center; min-height: 350px; border-radius: 42px; background: linear-gradient(145deg, #dff8f8, #ffffff); box-shadow: inset 0 0 0 1px rgba(14, 48, 68, .07), var(--shadow-sm); }
.company-mark svg { width: 230px; }
.company-copy { max-width: 730px; }
.company-copy > p { font-size: 17px; }
.company-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.company-tags span { padding: 8px 13px; border: 1px solid #cbdde1; border-radius: 999px; color: var(--navy-700); background: rgba(255, 255, 255, .8); font-size: 12px; font-weight: 680; }

.contact-section { padding: 116px 0; color: var(--white); background: var(--navy-850); }
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.contact-copy { padding-top: 22px; }
.contact-copy h2 { color: var(--white); }
.contact-copy > p { color: rgba(255, 255, 255, .68); }
.direct-email { display: inline-flex; flex-direction: column; gap: 2px; margin-top: 36px; color: var(--aqua-300); font-size: 18px; font-weight: 700; text-decoration: none; }
.direct-email span { color: rgba(255, 255, 255, .55); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.direct-email:hover { color: var(--white); }
.contact-form { padding: 34px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 26px; background: rgba(6, 27, 39, .45); box-shadow: 0 25px 70px rgba(0, 0, 0, .14); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; margin-bottom: 17px; }
.contact-form label > span { display: block; margin-bottom: 7px; color: rgba(255, 255, 255, .78); font-size: 12px; font-weight: 680; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 11px;
  color: var(--white);
  background: rgba(255, 255, 255, .07);
  transition: border-color .18s ease, background .18s ease;
}
.contact-form input,
.contact-form select { height: 49px; padding: 0 14px; }
.contact-form textarea { min-height: 135px; padding: 12px 14px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--aqua-300); background: rgba(255, 255, 255, .1); }
.contact-form select option { color: var(--ink); background: var(--white); }
.consent-row { display: grid !important; grid-template-columns: 19px 1fr; gap: 10px; align-items: start; }
.consent-row input { width: 17px; height: 17px; margin: 3px 0 0; accent-color: var(--aqua-500); }
.consent-row span { margin: 0 !important; color: rgba(255, 255, 255, .62) !important; font-size: 11px !important; font-weight: 500 !important; line-height: 1.55; }
.consent-row a { color: var(--aqua-300); }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-note { margin: 14px 0 0; color: rgba(255, 255, 255, .48); font-size: 11px; text-align: center; }

.site-footer { padding: 55px 0 26px; color: rgba(255, 255, 255, .7); background: var(--navy-950); }
.footer-main { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 36px; }
.footer-brand img { width: 230px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-links a { color: rgba(255, 255, 255, .67); font-size: 13px; font-weight: 620; text-decoration: none; }
.footer-links a:hover { color: var(--aqua-300); }
.footer-bottom { display: flex; justify-content: space-between; gap: 35px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); }
.footer-bottom p { max-width: 650px; margin: 0; font-size: 11px; }
.footer-bottom p:last-child { text-align: right; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-sm { transition-delay: .08s; }
.reveal-delay-md { transition-delay: .16s; }
.reveal-delay-lg { transition-delay: .24s; }

.legal-page { min-height: 100vh; background: var(--surface); }
.legal-header { position: static; }
.legal-main { padding: 80px 0 110px; }
.legal-card { max-width: 860px; margin: 0 auto; padding: clamp(28px, 5vw, 64px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.legal-card h1 { margin: 0; color: var(--navy-950); font-size: clamp(40px, 5vw, 60px); letter-spacing: -.04em; line-height: 1.05; }
.legal-card h2 { margin: 40px 0 12px; color: var(--navy-850); font-size: 23px; }
.legal-card p, .legal-card li { color: var(--muted); }
.legal-card ul { padding-left: 20px; }
.legal-meta { margin: 16px 0 32px !important; font-size: 13px; }
.legal-back { display: inline-flex; margin-bottom: 26px; color: var(--navy-700); font-weight: 700; text-decoration: none; }

.status-page { min-height: 100vh; display: grid; place-items: center; padding: 30px; background: var(--surface); }
.status-card { width: min(100%, 650px); padding: 55px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-lg); text-align: center; }
.status-card img { width: 245px; margin: 0 auto 42px; }
.status-icon { display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 25px; border-radius: 50%; color: var(--navy-850); background: var(--aqua-100); font-size: 30px; font-weight: 800; }
.status-card h1 { margin: 0; color: var(--navy-950); font-size: 38px; letter-spacing: -.03em; }
.status-card p { margin: 16px auto 30px; color: var(--muted); }

@media (max-width: 1060px) {
  :root { --header-height: 76px; }
  .brand img { width: 218px; }
  .primary-nav { gap: 20px; }
  .hero { min-height: auto; padding-top: calc(var(--header-height) + 72px); }
  .hero-layout { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero h1 { font-size: clamp(48px, 6vw, 68px); }
  .credibility-grid { grid-template-columns: repeat(2, 1fr); }
  .credibility-grid > div:nth-child(2) { border-right: 0; }
  .credibility-grid > div:nth-child(-n+2) { padding-bottom: 18px; }
  .credibility-grid > div:nth-child(n+3) { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.13); }
  .workflow-layout, .evidence-layout, .contact-layout { gap: 50px; }
  .company-layout { grid-template-columns: .65fr 1.35fr; gap: 45px; }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: grid;
    place-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
  }
  .nav-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; background: var(--navy-850); transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 22px 20px 28px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 28px 50px rgba(8, 34, 49, .12);
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
  }
  .primary-nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .primary-nav > a:not(.button) { padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: 16px; }
  .primary-nav .button { margin-top: 18px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-visual { max-width: 720px; margin: 20px auto 0; }
  .challenge-grid, .value-grid { grid-template-columns: 1fr; }
  .challenge-card { min-height: 0; }
  .challenge-card h3 { margin-top: 42px; }
  .value-card > p { min-height: 0; }
  .workflow-layout, .evidence-layout, .company-layout, .contact-layout { grid-template-columns: 1fr; }
  .workflow-intro { position: static; }
  .company-mark { min-height: 300px; }
  .company-mark svg { width: 190px; }
  .contact-copy { padding-top: 0; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand img { width: 192px; }
  .hero { padding-bottom: 65px; }
  .hero h1 { font-size: clamp(46px, 14vw, 62px); }
  .hero-lead { font-size: 18px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .status-list { display: grid; gap: 8px; }
  .visual-caption { margin-top: -12px; }
  .credibility-grid { grid-template-columns: 1fr; padding: 18px 0; }
  .credibility-grid > div,
  .credibility-grid > div:first-child { padding: 15px 0; border-right: 0; border-top: 1px solid rgba(255,255,255,.13); }
  .credibility-grid > div:first-child { border-top: 0; }
  .section, .contact-section { padding: 82px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .workflow-intro h2, .evidence-copy h2, .company-copy h2, .contact-copy h2 { font-size: 38px; }
  .challenge-card, .value-card, .evidence-panel, .contact-form { padding: 25px; }
  .workflow-steps li { grid-template-columns: 46px 1fr; gap: 16px; }
  .step-index { width: 42px; height: 42px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-main, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom p:last-child { text-align: left; }
  .status-card { padding: 38px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Contact-status refinements */
.status-icon-error { background: #fff1ed; color: #9f3d2e; }
.status-reference {
  width: fit-content;
  margin: -8px auto 26px !important;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--navy-700) !important;
  font-size: 12px;
  letter-spacing: .02em;
}
