
:root {
  color-scheme: light;
  --ink: #16181d;
  --muted: #60656f;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --line: #dedbd3;
  --line-strong: #c9c4b9;
  --accent: #2457e6;
  --accent-dark: #183ea7;
  --accent-soft: #eef3ff;
  --green: #25724c;
  --green-soft: #e9f5ee;
  --amber: #8a5b00;
  --amber-soft: #fff4d8;
  --red: #a53732;
  --red-soft: #fbeceb;
  --navy: #111a31;
  --shadow: 0 18px 55px rgba(19, 25, 45, .08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.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;
}
.site-shell { min-height: 100vh; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(222, 219, 211, .9);
  background: rgba(251, 250, 247, .94);
  backdrop-filter: blur(14px);
}
.site-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 72px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 760;
  letter-spacing: -.02em;
}
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--navy);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.site-nav { display: flex; align-items: center; gap: 20px; }
.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--ink); }
.nav-cta {
  padding: 10px 15px;
  border-radius: 999px;
  color: white !important;
  background: var(--navy);
}
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.hero {
  padding: 82px 0 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, .9fr);
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #d8d3c8;
  border-radius: 999px;
  color: #444b56;
  background: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .02em;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
h1 {
  margin: 22px 0 20px;
  max-width: 760px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero-copy {
  max-width: 690px;
  margin: 0;
  color: #4e535d;
  font-size: 20px;
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.primary-button, .secondary-button {
  min-height: 48px;
  padding: 0 19px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 760;
  text-decoration: none;
  border: 1px solid transparent;
}
.primary-button { color: white; background: var(--accent); }
.primary-button:hover, .primary-button:focus-visible { background: var(--accent-dark); }
.secondary-button { color: var(--ink); background: white; border-color: var(--line-strong); }
.secondary-button:hover, .secondary-button:focus-visible { border-color: #8e8a80; }
.promise-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.promise-chip {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #565c66;
  background: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 680;
}
.hero-console {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 18px;
  background: var(--navy);
  color: white;
  box-shadow: 0 28px 90px rgba(17, 26, 49, .22);
  overflow: hidden;
}
.hero-console::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -130px;
  top: -130px;
  border-radius: 50%;
  background: rgba(73, 116, 255, .18);
  filter: blur(4px);
}
.console-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; position: relative; z-index: 1; }
.console-lights { display: flex; gap: 6px; }
.console-lights span { width: 8px; height: 8px; border-radius: 50%; background: #6c7282; }
.console-title { color: #aeb7d0; font-size: 12px; font-weight: 700; }
.console-card {
  position: relative;
  z-index: 1;
  margin-top: 17px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
}
.console-label { color: #9da9c7; font-size: 12px; font-weight: 760; text-transform: uppercase; letter-spacing: .08em; }
.console-card h2 { margin: 9px 0 8px; font-size: 25px; letter-spacing: -.03em; }
.console-card p { margin: 0; color: #cbd2e5; line-height: 1.55; }
.console-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 18px; }
.console-stat { padding: 12px; border-radius: 12px; background: rgba(255,255,255,.06); }
.console-stat strong { display: block; font-size: 20px; }
.console-stat span { color: #aeb7d0; font-size: 11px; }
.console-alert {
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  color: #ffd8d6;
  background: rgba(197, 65, 58, .18);
  border: 1px solid rgba(255, 140, 132, .22);
  font-size: 13px;
}
.section { padding: 72px 0; }
.section-heading { max-width: 760px; margin-bottom: 30px; }
.section-heading h2 { margin: 10px 0 12px; font-size: clamp(34px, 4.5vw, 54px); letter-spacing: -.045em; line-height: 1.05; }
.section-heading p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.kicker { color: var(--accent); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.quick-scan-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 18px;
  align-items: stretch;
}
.scan-panel, .result-panel, .surface-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.scan-panel { padding: 24px; }
/* The tab strip is gone with the tabs. A white pill in a grey track is the
   shape of a selected segment, so a single one invites the eye to look for the
   others and read their absence as disabled or failed. #34 removed the
   controls for modes this surface does not offer, on the ground that a
   disabled control is still an advertisement; a strip with nothing to switch
   to advertises the same absence in another shape. The rules are deleted
   rather than left unused, so restoring the strip cannot be a markup-only
   change. */
.scan-mode-name {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .02em;
}
.scan-mode { margin-top: 14px; }
.scan-mode[hidden] { display: none; }
/* Quick-scan capability boundary. These declarations were inline `style=`
   attributes, which the self-only CSP the public surface serves forbids --
   `style-src 'self'`. Values are carried over unchanged; the rendered page
   must look identical. */
.quick-scan-honesty-contract {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 16px;
  background: #fff;
  color: #334155;
  font-size: 14px;
  line-height: 1.45;
}
.mode-availability { display: grid; gap: 8px; margin-bottom: 10px; }
.mode-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 12px;
  background: #f8fafc;
}
.mode-badge {
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.mode-badge.available { color: #166534; background: #dcfce7; border: 1px solid #bbf7d0; }
.mode-note { margin: 0; }
.field { display: grid; gap: 7px; margin-bottom: 14px; }
.field label { font-size: 13px; font-weight: 760; }
.field small { color: var(--muted); line-height: 1.45; }
.field input, .field textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--ink);
  background: white;
  resize: vertical;
}
.field input:focus, .field textarea:focus, button:focus-visible, a:focus-visible {
  outline: 3px solid rgba(36, 87, 230, .22);
  outline-offset: 2px;
}
.advanced { margin: 15px 0; }
.advanced summary { color: var(--muted); font-size: 13px; font-weight: 700; cursor: pointer; }
.scan-submit { width: 100%; border: 0; }
.scan-submit[disabled] { opacity: .55; cursor: wait; }
.scan-status { min-height: 20px; margin: 11px 0 0; color: var(--muted); font-size: 13px; }
/* The panel is informational only. The Store sample result is the Store Proof
   Card returned by POST /store-scan, which replaces the page. The badge, count,
   issue-card and coverage-note rules that used to live here styled an inline
   result renderer that no longer exists; they are removed rather than left
   behind, so restoring the fake panel cannot be a markup-only change. */
.result-panel { min-height: 100%; padding: 24px; background: #f6f7fb; }
.result-panel h3 { margin: 0 0 14px; font-size: 15px; color: var(--ink); }
/* The panel now states what the scan checks rather than what will happen after
   it. A visitor deciding whether to enter a URL is choosing on the checks, not
   on a description of the next screen; the previous copy spent half the width
   explaining a destination the button already reaches. Each item here has a
   producer in the engine -- nothing is listed that the card cannot report. */
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li { padding: 11px 0; border-bottom: 1px solid var(--line); }
.check-list li:last-child { border-bottom: 0; }
.check-list strong { display: block; font-size: 14px; color: var(--ink); }
.check-list span { display: block; margin-top: 3px; font-size: 13px; line-height: 1.5; color: var(--muted); }
.check-boundary {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}
.field-optional { font-weight: 400; color: var(--muted); }
.result-empty { min-height: 360px; display: grid; place-items: center; text-align: center; color: var(--muted); }
.result-empty strong { display: block; margin-bottom: 8px; color: var(--ink); font-size: 19px; }
.workflow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.workflow-card { padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.workflow-step { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: white; background: var(--navy); font-size: 13px; font-weight: 800; }
.workflow-card h3 { margin: 16px 0 8px; font-size: 18px; }
.workflow-card p { margin: 0; color: var(--muted); line-height: 1.55; font-size: 14px; }
.proof-layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: 18px; }
.sample-proof-title { font-size: clamp(42px, 6vw, 68px); }
.proof-copy { padding: 28px; }
.proof-copy h3 { margin: 12px 0; font-size: 32px; letter-spacing: -.04em; }
.proof-copy p { color: var(--muted); line-height: 1.65; }
.proof-card-preview { padding: 24px; color: white; background: var(--navy); }
.proof-topline { display: flex; justify-content: space-between; gap: 12px; color: #aeb7d0; font-size: 12px; }
.proof-card-preview h3 { margin: 18px 0 7px; font-size: 26px; }
.proof-card-preview p { color: #cad2e7; line-height: 1.55; }
.proof-eq { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 20px 0; }
.proof-eq div { padding: 13px; border-radius: 12px; background: rgba(255,255,255,.07); }
.proof-eq strong { display: block; font-size: 19px; }
.proof-eq span { color: #aeb7d0; font-size: 11px; }
.proof-warning { padding: 12px; border: 1px solid rgba(255, 203, 107, .3); border-radius: 12px; color: #ffe3ad; background: rgba(181, 120, 0, .14); font-size: 13px; }
.boundary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.boundary-card { padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.boundary-card strong { display: block; margin-bottom: 8px; }
.boundary-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.cta-band { margin: 40px 0 80px; padding: 36px; border-radius: var(--radius-lg); color: white; background: var(--navy); display: flex; justify-content: space-between; gap: 28px; align-items: center; }
.cta-band h2 { margin: 0 0 8px; font-size: 34px; letter-spacing: -.035em; }
.cta-band p { margin: 0; color: #bdc7de; }
.site-footer { border-top: 1px solid var(--line); }
.site-footer-inner { max-width: 1180px; margin: 0 auto; padding: 26px 24px 40px; display: flex; justify-content: space-between; gap: 24px; color: var(--muted); font-size: 12px; }
@media (max-width: 960px) {
  .hero, .quick-scan-shell, .proof-layout { grid-template-columns: 1fr; }
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
  .boundary-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
}
@media (max-width: 680px) {
  .site-header-inner, .wrap { padding-left: 16px; padding-right: 16px; }
  .site-nav a:not(.nav-cta) { display: none; }
  h1 { font-size: 47px; }
  .hero-copy { font-size: 17px; }
  .section { padding: 52px 0; }
  .workflow-grid { grid-template-columns: 1fr; }
  .console-grid, .proof-eq { grid-template-columns: 1fr; }
  .cta-band { padding: 26px; align-items: flex-start; flex-direction: column; }
  .site-footer-inner { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}



/* Support Surface Visual Recovery 20260725-r7 */

:root {
  --mp-bg: #f7f4ee;
  --mp-card: #fffdf8;
  --mp-card-strong: #ffffff;
  --mp-ink: #15171d;
  --mp-muted: #5c6470;
  --mp-border: rgba(21, 23, 29, 0.12);
  --mp-border-strong: rgba(21, 23, 29, 0.18);
  --mp-blue: #1f5eff;
  --mp-blue-dark: #113fba;
  --mp-green: #1f8f5f;
  --mp-shadow: 0 18px 60px rgba(24, 28, 36, 0.08);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  transform: translateY(-160%);
  z-index: 1000;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  background: var(--mp-ink);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.support-surface-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--mp-border);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(18px);
}

.support-surface-header nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.support-surface-header a {
  color: var(--mp-muted);
  text-decoration: none;
  font-weight: 760;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.55rem 0.72rem;
  border-radius: 999px;
}

.support-surface-header a:first-child {
  margin-right: auto;
  color: var(--mp-ink);
  font-size: 1.05rem;
  font-weight: 900;
}

.support-surface-header a:hover,
.support-surface-header a:focus {
  color: var(--mp-blue);
  background: rgba(31, 94, 255, 0.08);
  outline: none;
}

.support-surface-main {
  min-height: 72vh;
  padding: 4.5rem 1.5rem 5rem;
  background:
    radial-gradient(circle at 18% 8%, rgba(31, 94, 255, 0.12), transparent 28rem),
    radial-gradient(circle at 82% 10%, rgba(31, 143, 95, 0.10), transparent 24rem),
    var(--mp-bg);
  color: var(--mp-ink);
}

.support-surface-main > * {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.support-surface-main h1 {
  margin: 1.1rem auto 1rem;
  max-width: 860px;
  font-size: clamp(2.9rem, 8vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
  color: var(--mp-ink);
}

.support-surface-main h1 + p {
  max-width: 860px;
  margin: 0 auto 2.2rem;
  color: var(--mp-muted);
  font-size: clamp(1.05rem, 1.8vw, 1.26rem);
  line-height: 1.65;
}

.support-surface-main h2 {
  margin: 0 0 0.7rem;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.support-surface-main p {
  color: var(--mp-muted);
  line-height: 1.72;
}

.support-surface-main section,
.support-surface-main article {
  border: 1px solid var(--mp-border);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--mp-shadow);
  padding: 1.4rem;
}

.support-surface-main section + section,
.support-surface-main article + article {
  margin-top: 1rem;
}

.support-surface-main form {
  max-width: 1120px;
  margin: 2rem auto 0;
  border: 1px solid var(--mp-border-strong);
  border-radius: 28px;
  background: var(--mp-card-strong);
  box-shadow: var(--mp-shadow);
  padding: clamp(1.2rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: minmax(180px, 0.85fr) minmax(220px, 1fr) minmax(280px, 1.4fr);
  gap: 1rem;
  align-items: end;
}

.support-surface-main label {
  display: grid;
  gap: 0.45rem;
  color: var(--mp-ink);
  font-weight: 850;
}

.support-surface-main input,
.support-surface-main select,
.support-surface-main textarea {
  width: 100%;
  min-height: 2.85rem;
  border: 1px solid var(--mp-border-strong);
  border-radius: 14px;
  background: #ffffff;
  color: var(--mp-ink);
  font: inherit;
  padding: 0.8rem 0.9rem;
}

.support-surface-main textarea {
  min-height: 9.5rem;
  resize: vertical;
}

.support-surface-main input:focus,
.support-surface-main select:focus,
.support-surface-main textarea:focus {
  outline: 3px solid rgba(31, 94, 255, 0.18);
  border-color: var(--mp-blue);
}

.support-surface-main button,
.support-surface-main input[type="submit"] {
  border: 0;
  border-radius: 999px;
  background: var(--mp-blue);
  color: #ffffff;
  font-weight: 900;
  padding: 0.9rem 1.2rem;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(31, 94, 255, 0.22);
}

.support-surface-main button:hover,
.support-surface-main input[type="submit"]:hover {
  background: var(--mp-blue-dark);
}

.support-surface-main strong {
  display: block;
  max-width: 1120px;
  margin: 1rem auto 0;
  border-left: 4px solid var(--mp-green);
  border-radius: 16px;
  background: rgba(31, 143, 95, 0.08);
  color: var(--mp-ink);
  padding: 1rem 1.1rem;
  line-height: 1.55;
}

.support-surface-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #101522;
  color: rgba(255, 255, 255, 0.76);
  padding: 2rem 1.5rem;
}

.support-surface-footer nav,
.support-surface-footer div {
  max-width: 1120px;
  margin: 0 auto;
}

.support-surface-footer nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.support-surface-footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 780;
}

.support-surface-footer a:hover,
.support-surface-footer a:focus {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 819px) {
  .support-surface-header nav {
    align-items: flex-start;
  }

  .support-surface-header a:first-child {
    flex-basis: 100%;
    margin-right: 0;
  }

  .support-surface-main {
    padding-top: 3rem;
  }

  .support-surface-main h1 {
    font-size: clamp(2.65rem, 15vw, 4.1rem);
  }

  .support-surface-main form {
    grid-template-columns: 1fr;
  }
}
/* Support Surface Back Home Link 20260725-r8fix */

.support-back-home {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 0.35rem;
  margin: 0 auto 1.6rem;
  border: 1px solid var(--mp-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--mp-blue-dark);
  text-decoration: none;
  font-weight: 850;
  padding: 0.62rem 0.9rem;
  box-shadow: 0 10px 28px rgba(24, 28, 36, 0.06);
}

.support-back-home:hover,
.support-back-home:focus {
  color: var(--mp-blue);
  background: #ffffff;
  outline: 3px solid rgba(31, 94, 255, 0.14);
}

/* Support Surface Form Layout Fix 20260725-r3 */

.support-contact-form {
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1fr);
  align-items: start;
  gap: 1.25rem 1.5rem;
}

.support-contact-form .support-field {
  min-width: 0;
  display: grid;
  gap: 0.55rem;
}

.support-contact-form label {
  display: block;
  color: var(--mp-ink);
  font-weight: 850;
}

.support-field--issue {
  grid-column: 1;
}

.support-field--project {
  grid-column: 2;
}

.support-field--project input,
.support-field--issue select {
  min-height: 3.25rem;
}

.support-field--question {
  grid-column: 1 / -1;
}

.support-field--question textarea {
  min-height: 220px;
  width: 100%;
}

.support-contact-form .support-safety-note,
.support-contact-form .support-response-note,
.support-contact-form .support-mailto-note {
  margin: 0;
}

.support-contact-form .support-safety-note {
  grid-column: 1;
}

.support-contact-form .support-response-note {
  grid-column: 2;
  align-self: center;
  color: var(--mp-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.support-contact-form .support-mailto-note {
  grid-column: 1 / -1;
  color: var(--mp-muted);
  font-size: 1rem;
  line-height: 1.65;
}

@media (max-width: 819px) {
  .support-contact-form {
    grid-template-columns: 1fr;
  }

  .support-field--issue,
  .support-field--project,
  .support-field--question,
  .support-contact-form .support-safety-note,
  .support-contact-form .support-response-note,
  .support-contact-form .support-mailto-note {
    grid-column: 1;
  }

  .support-field--question textarea {
    min-height: 180px;
  }
}

/* Support Surface Form Layout Fix 20260725-r4 */

.support-contact-form {
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1fr);
  align-items: start;
  gap: 1.25rem 1.5rem;
}

.support-contact-form .support-field {
  min-width: 0;
  display: grid;
  gap: 0.55rem;
}

.support-contact-form label {
  display: block;
  color: var(--mp-ink);
  font-weight: 850;
}

.support-field--issue {
  grid-column: 1;
}

.support-field--project {
  grid-column: 2;
}

.support-field--project input,
.support-field--issue select {
  min-height: 3.25rem;
}

.support-field--question {
  grid-column: 1 / -1;
}

.support-field--question textarea {
  min-height: 220px;
  width: 100%;
}

.support-contact-form .support-safety-note,
.support-contact-form .support-response-note,
.support-contact-form .support-mailto-note {
  margin: 0;
}

.support-contact-form .support-safety-note {
  grid-column: 1;
}

.support-contact-form .support-response-note {
  grid-column: 2;
  align-self: center;
  color: var(--mp-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.support-contact-form .support-mailto-note {
  grid-column: 1 / -1;
  color: var(--mp-muted);
  font-size: 1rem;
  line-height: 1.65;
}

@media (max-width: 819px) {
  .support-contact-form {
    grid-template-columns: 1fr;
  }

  .support-field--issue,
  .support-field--project,
  .support-field--question,
  .support-contact-form .support-safety-note,
  .support-contact-form .support-response-note,
  .support-contact-form .support-mailto-note {
    grid-column: 1;
  }

  .support-field--question textarea {
    min-height: 180px;
  }
}

