/* CARAIXIS marketing site. Hand written CSS, no build step.
   Brand spec: _caraixis-brand/BRAND.md (v1.0, 2026) */

/* ---------- tokens ---------- */
:root {
  --red:   #D11B1B;
  --red-2: #E5322F;
  --ink:   #0A0A0D;
  --slate: #1A1A1D;
  --steel: #6B6F76;
  --mist:  #EDEDED;

  --good: #3FBF6F;
  --warn: #E8A33D;
  --bad:  #FF7A4D;

  --line:      rgba(237, 237, 237, 0.10);
  --line-soft: rgba(237, 237, 237, 0.06);
  --panel:     #131316;
  --dim:       #9BA0A7;
  --muted-2:   #969BA2;

  --display: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --wrap: 1140px;
  --r: 14px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--mist);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
}
p { margin: 0 0 1.1em; }
a { color: var(--mist); text-decoration-color: rgba(209, 27, 27, 0.55); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--red-2); }
ul { margin: 0 0 1.2em; padding-left: 1.15rem; }
li { margin-bottom: 0.45em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }

/* ---------- focus ---------- */
:focus { outline: 2px solid var(--red-2); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }
:focus-visible {
  outline: 2px solid var(--red-2);
  outline-offset: 3px;
  border-radius: 4px;
}
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--red); color: #fff;
  padding: 0.7rem 1.1rem; z-index: 100;
  font-weight: 600; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.rule { border-top: 1px solid var(--line-soft); }

.eyebrow {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  margin: 0 0 1rem;
}
.eyebrow .dot { color: var(--red-2); }

.lede { font-size: clamp(1.05rem, 2vw, 1.22rem); color: #C8CCD2; max-width: 62ch; }
.muted { color: var(--dim); }
.small { font-size: 0.9rem; }
.measure { max-width: 68ch; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 13, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; flex-wrap: wrap;
  padding-top: 0.9rem; padding-bottom: 0.9rem;
}
.wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.06rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--mist);
  white-space: nowrap;
}
.wordmark .ai { color: var(--red); }
.wordmark:hover .ai { color: var(--red-2); }

.site-nav { display: flex; align-items: center; gap: clamp(0.9rem, 2.4vw, 1.8rem); flex-wrap: wrap; }
.site-nav a {
  font-size: 0.9rem; font-weight: 500; color: var(--dim);
  text-decoration: none; padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
}
.site-nav a:hover { color: var(--mist); border-bottom-color: var(--red); }
.site-nav a[aria-current="page"] { color: var(--mist); border-bottom-color: var(--red); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.btn-primary { background: var(--red); color: #FFF; }
.btn-primary:hover { background: var(--red-2); transform: translateY(-1px); }
.btn-ghost { border-color: var(--line); color: var(--mist); background: transparent; }
.btn-ghost:hover { border-color: var(--mist); transform: translateY(-1px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }

/* ---------- hero ---------- */
.hero { position: relative; padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 5rem); overflow: hidden; }
.hero::before {
  content: "";
  position: absolute; inset: -40% 30% 40% -20%;
  background: radial-gradient(60% 60% at 30% 40%, rgba(209, 27, 27, 0.16), transparent 70%);
  pointer-events: none;
}
.hero > * { position: relative; }
.hero h1 {
  font-size: clamp(2.35rem, 6.2vw, 4.1rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  max-width: 17ch;
  margin-bottom: 1.3rem;
}
.hero h1 .accent { color: var(--red-2); }
.hero .lede { font-size: clamp(1.08rem, 2.1vw, 1.3rem); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }

/* ---------- panels ---------- */
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(1.4rem, 3vw, 2rem);
}
.panel-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 0.9rem; margin-bottom: 1.2rem;
}
.panel-head h3 {
  font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mist); margin: 0;
}
.panel-head .tag { font-family: var(--mono); font-size: 0.74rem; color: var(--muted-2); }

.live {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--dim);
}
.live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--good); box-shadow: 0 0 0 3px rgba(63, 191, 111, 0.16);
}

.agent-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.agent-list li {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--mono); font-size: 0.82rem;
  color: #D6D9DE; margin: 0;
  padding: 0.42rem 0.1rem;
  border-bottom: 1px dashed var(--line-soft);
}
.agent-list li:last-child { border-bottom: 0; }
.agent-list .state { color: var(--muted-2); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; }
.agent-list .state.seen { color: var(--good); }

.footnote { font-size: 0.82rem; color: var(--muted-2); margin: 1.1rem 0 0; line-height: 1.55; }

/* ---------- score ---------- */
.score-row { display: flex; align-items: flex-end; gap: clamp(1rem, 4vw, 2.4rem); flex-wrap: wrap; }
.score {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 3.6rem); line-height: 1;
  color: var(--steel); letter-spacing: -0.03em;
}
.score.now { color: var(--mist); }
.score.now .of { color: var(--steel); font-size: 0.42em; font-weight: 600; letter-spacing: 0.04em; }
.score-step { display: flex; flex-direction: column; gap: 0.5rem; }
.score-step .label {
  font-family: var(--display); font-size: 0.66rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--steel);
}
.score-bar { height: 4px; background: rgba(237,237,237,0.08); border-radius: 2px; overflow: hidden; margin-top: 1.6rem; }
.score-bar span { display: block; height: 100%; width: 100%; background: linear-gradient(90deg, var(--red), var(--red-2)); }

/* ---------- grids ---------- */
.grid { display: grid; gap: clamp(1rem, 2.4vw, 1.5rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--slate);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  padding: clamp(1.3rem, 2.6vw, 1.75rem);
  transition: border-color 180ms ease, transform 180ms ease;
}
.card:hover { border-color: rgba(209, 27, 27, 0.42); transform: translateY(-2px); }
.card .num {
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.14em;
  color: var(--red-2); display: block; margin-bottom: 0.9rem;
}
.card h3 {
  font-size: 0.94rem; letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.card p { font-size: 0.95rem; color: #BFC4CB; margin-bottom: 0; }
.card p + p { margin-top: 0.8rem; }

/* ---------- stat strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--r); overflow: hidden; }
.stat { background: var(--ink); padding: clamp(1.2rem, 3vw, 1.7rem); }
.stat .n {
  font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem, 4vw, 2.15rem);
  line-height: 1; letter-spacing: -0.02em; display: block; margin-bottom: 0.55rem;
}
.stat .n .unit { color: var(--red-2); }
.stat .k { font-size: 0.84rem; color: var(--muted-2); line-height: 1.45; display: block; }

/* ---------- steps (product page) ---------- */
.step { display: grid; grid-template-columns: 96px 1fr; gap: clamp(1.2rem, 3vw, 2.4rem); align-items: start; padding: clamp(1.8rem, 4vw, 2.6rem) 0; border-top: 1px solid var(--line-soft); }
.step:first-of-type { border-top: 0; }
.step .marker {
  font-family: var(--display); font-weight: 800; font-size: 2.1rem;
  color: transparent; -webkit-text-stroke: 1px var(--steel); line-height: 1;
}
.step h3 { font-size: clamp(1.35rem, 3vw, 1.75rem); letter-spacing: 0.02em; text-transform: uppercase; margin-bottom: 0.9rem; }
.step h3 .k { color: var(--red-2); }
.checks { list-style: none; padding: 0; margin: 1.3rem 0 0; display: grid; gap: 0.55rem; }
.checks li { position: relative; padding-left: 1.6rem; font-size: 0.95rem; color: #BFC4CB; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 8px; height: 8px; background: var(--red); border-radius: 2px;
}

/* ---------- pricing ---------- */
.tier {
  display: flex; flex-direction: column;
  background: var(--slate); border: 1px solid var(--line-soft);
  border-radius: var(--r); padding: clamp(1.5rem, 3vw, 2rem);
}
.tier.featured { border-color: rgba(209, 27, 27, 0.5); background: linear-gradient(180deg, rgba(209,27,27,0.07), transparent 45%), var(--slate); }
.tier .kind { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); }
.tier.featured .kind { color: var(--red-2); }
.tier h3 { font-size: 1.5rem; margin: 0.8rem 0 0.35rem; letter-spacing: -0.01em; }
.tier .price { font-family: var(--display); font-weight: 700; font-size: 1.02rem; color: var(--mist); margin: 0 0 0.35rem; }
.tier .terms { font-size: 0.86rem; color: var(--muted-2); margin-bottom: 1.2rem; }
.tier .what { font-size: 0.95rem; color: #C8CCD2; }
.tier .checks { margin-top: 0.6rem; }
.tier .btn { margin-top: auto; align-self: flex-start; }
.tier .spacer { flex: 1 1 auto; min-height: 1.4rem; }

.compare { width: 100%; border-collapse: collapse; font-size: 0.92rem; min-width: 620px; }
.compare th, .compare td { text-align: left; padding: 0.85rem 1rem; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.compare thead th { font-family: var(--display); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); }
.compare tbody th { font-weight: 500; color: var(--mist); }
.compare td { color: #BFC4CB; }
.scroll-x { overflow-x: auto; border: 1px solid var(--line-soft); border-radius: var(--r); }

/* ---------- faq ---------- */
.qa { border-top: 1px solid var(--line-soft); padding: 1.5rem 0; }
.qa h3 { font-size: 1.05rem; letter-spacing: 0; text-transform: none; margin-bottom: 0.5rem; }
.qa p { color: #BFC4CB; margin-bottom: 0; font-size: 0.96rem; }

/* ---------- cta band ---------- */
.cta {
  border: 1px solid rgba(209, 27, 27, 0.35);
  border-radius: var(--r);
  background: linear-gradient(135deg, rgba(209, 27, 27, 0.13), rgba(19, 19, 22, 0.9) 60%);
  padding: clamp(1.8rem, 5vw, 3rem);
  display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
}
.cta h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); margin-bottom: 0.6rem; }
.cta p { color: #C8CCD2; margin-bottom: 0; }
.cta .btn-row { margin-top: 0; justify-content: flex-start; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: grid; grid-template-columns: 130px 1fr; gap: 1rem; padding: 0.85rem 0; border-bottom: 1px solid var(--line-soft); margin: 0; }
.contact-list .k { font-family: var(--display); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); padding-top: 0.2rem; }
.contact-list a { color: var(--mist); }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line-soft); padding: clamp(2.5rem, 5vw, 3.5rem) 0 2.5rem; margin-top: 2rem; }
.footer-top { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; align-items: flex-start; }
.footer-tagline {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  letter-spacing: -0.01em; color: var(--mist);
  margin: 0.9rem 0 0; max-width: 24ch;
}
.footer-nav { display: grid; grid-auto-flow: column; grid-template-rows: repeat(4, auto); gap: 0.5rem 3rem; }
.footer-nav a { font-size: 0.9rem; color: var(--dim); text-decoration: none; }
.footer-nav a:hover { color: var(--mist); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-top: clamp(2rem, 5vw, 3rem); padding-top: 1.4rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.82rem; color: var(--muted-2);
}

/* ---------- motion ---------- */
.rise { animation: rise 620ms cubic-bezier(0.22, 0.7, 0.3, 1) both; }
.rise-2 { animation-delay: 90ms; }
.rise-3 { animation-delay: 180ms; }
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cta { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .header-inner { padding-top: 0.7rem; padding-bottom: 0.7rem; gap: 0.6rem; }
  .site-nav { gap: 1rem; width: 100%; }
  .site-nav a { font-size: 0.86rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 0.6rem; }
  .step .marker { font-size: 1.5rem; }
  .footer-nav { grid-auto-flow: row; grid-template-rows: none; gap: 0.5rem; }
  .contact-list li { grid-template-columns: 1fr; gap: 0.2rem; }
  .btn { width: 100%; text-align: center; }
  .btn-row { gap: 0.6rem; }
}

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

@media print {
  body { background: #fff; color: #111; }
  .site-header, .cta { display: none; }
}

/* step column keeps one measure for lede and body */
.step .lede { max-width: none; font-size: 1.05rem; }
.step > div:last-child { max-width: 76ch; }

/* ==========================================================================
   The free scan. A visitor types an address and gets a real score, so this is
   the one place on the site where the product runs in front of them.
   ========================================================================== */

.scan-form { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 2rem; max-width: 34rem; }
.scan-input {
  flex: 1 1 16rem; min-width: 0;
  background: var(--slate); color: var(--mist);
  border: 1px solid var(--line-strong); border-radius: 4px;
  padding: .85rem 1rem; font: inherit; font-size: 1rem;
}
.scan-input::placeholder { color: var(--steel); }
.scan-input:focus-visible { outline: 2px solid var(--red-2); outline-offset: 2px; border-color: var(--red-2); }
.scan-form .btn { flex: 0 0 auto; }
.scan-note { color: var(--steel); font-size: .84rem; margin-top: .8rem; max-width: 46rem; }
.scan-out { margin-top: 2.4rem; }

.scan-msg { border: 1px solid var(--line-strong); border-left: 3px solid var(--red-2); padding: 1rem 1.2rem; border-radius: 4px; max-width: 46rem; }
.scan-msg p { margin: .4rem 0 0; color: var(--steel); }

/* Running. The bar is indeterminate on purpose: the scan takes as long as the
   site being scanned takes, and a fake percentage would be a lie. */
.scan-running { border: 1px solid var(--line); padding: 1.4rem; border-radius: 4px; max-width: 46rem; }
.scan-running p { margin: .6rem 0 0; }
.scan-bar { height: 3px; background: var(--line); overflow: hidden; border-radius: 2px; }
.scan-bar span { display: block; height: 100%; width: 38%; background: var(--red); animation: scan-sweep 1.35s ease-in-out infinite; }
@keyframes scan-sweep { 0% { transform: translateX(-100%); } 100% { transform: translateX(300%); } }

.scan-result { display: flex; gap: clamp(1.2rem, 3vw, 2.6rem); align-items: center; flex-wrap: wrap; }
.scan-score {
  flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 9.5rem; height: 9.5rem; border-radius: 50%;
  border: 2px solid var(--line-strong); background: var(--slate);
}
.scan-score-num { font-family: var(--display); font-weight: 800; font-size: 2.6rem; line-height: 1; }
.scan-score-of { color: var(--steel); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; margin-top: .3rem; }
.scan-grade-ready { border-color: var(--good); }
.scan-grade-partial { border-color: var(--warn); }
.scan-grade-closed { border-color: var(--bad); }
.scan-grade-unreachable { border-color: var(--steel); }
.scan-grade-ready .scan-score-num { color: var(--good); }
.scan-grade-partial .scan-score-num { color: var(--warn); }
.scan-grade-closed .scan-score-num { color: var(--bad); }
.scan-grade-unreachable .scan-score-num { color: var(--steel); font-size: 1.2rem; }
.scan-summary { flex: 1 1 18rem; min-width: 0; }
.scan-summary h2 { margin: .2rem 0 .5rem; }
.scan-counts { display: flex; gap: 1.2rem; flex-wrap: wrap; color: var(--steel); font-size: .85rem; margin-top: .7rem; }

.scan-sub { margin: 2.4rem 0 1rem; font-size: 1.05rem; text-transform: none; letter-spacing: 0; }
.scan-checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; border-top: 1px solid var(--line); }
.scan-check { padding: 1rem 0 1rem 1.1rem; border-bottom: 1px solid var(--line); position: relative; }
.scan-check::before { content: ""; position: absolute; left: 0; top: 1.35rem; width: 4px; height: 4px; background: var(--bad); }
.scan-check-warn::before { background: var(--warn); }
.scan-check-head { display: flex; gap: 1rem; align-items: baseline; justify-content: space-between; flex-wrap: wrap; }
.scan-weight { color: var(--steel); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.scan-check p { margin: .35rem 0 0; color: var(--steel); font-size: .9rem; }
.scan-fix { color: var(--mist) !important; }
.scan-clean { margin-top: 2rem; color: var(--good); }
.scan-cta { margin-top: 2.6rem; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .scan-bar span { animation: none; width: 100%; }
}
/* The scanned address is a URL, so it keeps its own casing. The eyebrow style
   this used to borrow is uppercase, which turned every result into a shout. */
.scan-target { color: var(--steel); font-size: .84rem; letter-spacing: .02em; margin: 0 0 .3rem; word-break: break-all; }

/* The contact form. Labelled, two column on a wide screen, one on a phone, and
   it submits without JavaScript because the product argues that it must. */
.contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 1.2rem; max-width: 46rem; margin-top: 2rem; }
.contact-form .field { display: flex; flex-direction: column; gap: .4rem; min-width: 0; }
.contact-form .field-wide { grid-column: 1 / -1; }
.contact-form label { font-size: .8rem; letter-spacing: .04em; color: var(--mist); }
.contact-form .opt { color: var(--steel); letter-spacing: 0; }
.contact-form .input { width: 100%; background: var(--slate); color: var(--mist); border: 1px solid var(--line-strong); border-radius: 4px; padding: .7rem .9rem; font: inherit; font-size: .95rem; }
.contact-form textarea.input { resize: vertical; min-height: 8rem; }
.contact-form .input:focus-visible { outline: 2px solid var(--red-2); outline-offset: 2px; border-color: var(--red-2); }
.contact-form .field-trap { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.contact-form .btn-row { display: flex; gap: .7rem; flex-wrap: wrap; align-items: center; }
.code { background: var(--slate); border: 1px solid var(--line); border-radius: 4px; padding: .9rem 1rem; overflow-x: auto; font-size: .8rem; line-height: 1.6; }
.scan-ok { border-left-color: var(--good); }
@media (max-width: 719px) { .contact-form { grid-template-columns: 1fr; } }

/* Report coverage is part of the result, including checks that did not run. */
.scan-check-pass::before { background: var(--good); }
.scan-check-skip::before { background: var(--steel); }
.scan-details { margin-top: 2rem; }
.scan-details summary { cursor: pointer; padding: .8rem 0; font-weight: 600; }
.scan-details summary:focus-visible { outline: 2px solid var(--red-2); outline-offset: 4px; }
.scan-summary p, .scan-check p, .scan-msg { overflow-wrap: anywhere; }
.scan-input:disabled { opacity: .7; }
