/* =========================================================
   CC Digital — styles.css
   Tokens, base, layout, components.
   CC Digital brand tokens and accessible semantic theme colours.
   ========================================================= */

/* ---------- Tokens: light (default) ---------- */

:root {
  color-scheme: light dark;

  /* CC Digital design tokens: keep these exact brand values. */
  --cc-blue: #016FEE;
  --cc-deep-blue: #0157CD;
  --cc-dark-blue: #0140A7;
  --cc-cyan: #06C9FC;
  --cc-light-blue: #05A9FA;
  --cc-navy: #1D2A3C;
  --cc-blue-grey: #8295AD;
  --cc-pale-blue-grey: #D6E7F1;
  --cc-white: #FFFFFF;
  --cc-gradient: linear-gradient(135deg, var(--cc-dark-blue) 0%, var(--cc-blue) 55%, var(--cc-cyan) 100%);

  --button-bg: var(--cc-blue);
  --button-hover: var(--cc-deep-blue);
  --button-text: var(--cc-white);
  --bg: var(--cc-white);
  --surface: var(--cc-white);
  --text: var(--cc-navy);
  --text-muted: var(--cc-navy);
  --accent: var(--cc-deep-blue);
  --on-accent: var(--cc-white);
  --border: var(--cc-pale-blue-grey);
  --border-strong: var(--cc-blue-grey);
  --error: #B3261E;

  --sev-high-bg: #FCEAE8;
  --sev-high-fg: #8A1C14;
  --sev-med-bg: #FFF1D6;
  --sev-med-fg: #7A4B00;
  --sev-low-bg: var(--cc-pale-blue-grey);
  --sev-low-fg: var(--cc-dark-blue);

  /* Wireframe mock tones */
  --mock-frame: var(--cc-pale-blue-grey);
  --mock-block: color-mix(in srgb, var(--cc-pale-blue-grey) 75%, var(--cc-blue-grey));
  --mock-block-2: var(--cc-blue-grey);
  --mock-marker-bg: #B3261E;
  --mock-marker-fg: #FFFFFF;

  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "Cascadia Code", "SF Mono", Menlo, Consolas, monospace;

  --step--1: clamp(0.875rem, 0.85rem + 0.2vw, 0.95rem);
  --step-0: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  --step-1: clamp(1.125rem, 1.05rem + 0.5vw, 1.375rem);
  --step-2: clamp(1.375rem, 1.2rem + 0.9vw, 1.75rem);
  --step-3: clamp(1.75rem, 1.4rem + 1.6vw, 2.5rem);
  --step-4: clamp(2.25rem, 1.6rem + 3vw, 3.5rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 6rem;

  --measure: 65ch;
  --container: 72rem;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --header-h: 5.75rem;
}

/* ---------- Tokens: dark via system preference ---------- */

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: var(--cc-navy);
    --surface: color-mix(in srgb, var(--cc-navy) 94%, var(--cc-white));
    --text: var(--cc-white);
    --text-muted: var(--cc-pale-blue-grey);
    --accent: var(--cc-cyan);
    --on-accent: var(--cc-navy);
    --border: color-mix(in srgb, var(--cc-navy) 65%, var(--cc-blue-grey));
    --border-strong: var(--cc-blue-grey);
    --error: #F2A59F;

    --sev-high-bg: #3A1613;
    --sev-high-fg: #F6B6B0;
    --sev-med-bg: #3A2A0A;
    --sev-med-fg: #F4CF85;
    --sev-low-bg: var(--cc-navy);
    --sev-low-fg: var(--cc-light-blue);

    --mock-frame: var(--cc-navy);
    --mock-block: color-mix(in srgb, var(--cc-navy) 70%, var(--cc-blue-grey));
    --mock-block-2: var(--cc-blue-grey);
    --mock-marker-bg: #F2A59F;
    --mock-marker-fg: var(--cc-navy);
  }
}

/* ---------- Tokens: dark via explicit choice ---------- */

:root[data-theme="dark"] {
  --bg: var(--cc-navy);
  --surface: color-mix(in srgb, var(--cc-navy) 94%, var(--cc-white));
  --text: var(--cc-white);
  --text-muted: var(--cc-pale-blue-grey);
  --accent: var(--cc-cyan);
  --on-accent: var(--cc-navy);
  --border: color-mix(in srgb, var(--cc-navy) 65%, var(--cc-blue-grey));
  --border-strong: var(--cc-blue-grey);
  --error: #F2A59F;

  --sev-high-bg: #3A1613;
  --sev-high-fg: #F6B6B0;
  --sev-med-bg: #3A2A0A;
  --sev-med-fg: #F4CF85;
  --sev-low-bg: var(--cc-navy);
  --sev-low-fg: var(--cc-light-blue);

  --mock-frame: var(--cc-navy);
  --mock-block: color-mix(in srgb, var(--cc-navy) 70%, var(--cc-blue-grey));
  --mock-block-2: var(--cc-blue-grey);
  --mock-marker-bg: #F2A59F;
  --mock-marker-fg: var(--cc-navy);
}

/* ---------- Reset and base ---------- */

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

html {
  scroll-padding-top: calc(var(--header-h) + var(--space-3));
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  line-height: 1.15;
  margin: 0 0 var(--space-3);
  text-wrap: balance;
  font-weight: 650;
  letter-spacing: -0.015em;
}

h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p, li, dd { text-wrap: pretty; }
p { margin: 0 0 var(--space-3); }
p:last-child { margin-bottom: 0; }

a {
  color: var(--accent);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 0.08em;
}
a:hover { text-decoration-thickness: 0.14em; }

svg { display: block; }

img, svg { max-width: 100%; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
  a, button, input, textarea, .card { transition: color .15s, background-color .15s, border-color .15s, outline-color .15s; }
}

/* ---------- Utilities ---------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.prose { max-width: var(--measure); }

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

.muted { color: var(--text-muted); }
.small { font-size: var(--step--1); }

.section {
  padding-block: clamp(3rem, 8vw, 6rem);
  border-top: 1px solid var(--border);
}

.section__intro {
  max-width: var(--measure);
  color: var(--text-muted);
  font-size: var(--step-1);
  margin-bottom: var(--space-5);
}

/* Placeholder: content the founders still need to supply. PLAN.md §7 */
.placeholder {
  outline: 2px dashed var(--border-strong);
  outline-offset: 2px;
  border-radius: 3px;
  padding: 0 0.25em;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 6px,
    color-mix(in srgb, var(--border-strong) 22%, transparent) 6px 12px
  );
  font-style: normal;
}

/* ---------- Skip link ---------- */

.skip-link {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
  z-index: 100;
  padding: var(--space-2) var(--space-3);
  background: var(--surface);
  color: var(--text);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  text-decoration: none;
  transform: translateY(-200%);
}
.skip-link:focus { transform: translateY(0); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 44px;
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.btn--primary {
  background: var(--button-bg);
  color: var(--button-text);
  border-color: var(--button-bg);
}
.btn--primary:hover { background: var(--button-hover); border-color: var(--button-hover); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn--lg { font-size: var(--step-1); padding: 0.8rem 1.6rem; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  /* Opaque, not translucent: text must never sit over half-visible content
     scrolling beneath it. Also lets contrast be verified automatically. */
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-height: var(--header-h);
  padding-block: var(--space-2);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-left: auto;
}

/* Below 48em the sticky bar carries the wordmark, the primary action and the
   theme toggle only. Letting the section links wrap in here cost three rows,
   roughly a third of a phone viewport, for the entire length of the scroll.
   The page is one sequential document with a clean heading outline, so
   assistive-technology users navigate it by heading rather than by this bar. */
.nav { display: none; }

@media (max-width: 47.999em) {
  .site-header .btn { font-size: var(--step--1); padding: 0.5rem 0.7rem; }
  .wordmark { font-size: var(--step-0); }
}

@media (min-width: 48em) {
  .nav { display: block; margin-left: auto; }
  .site-header__actions { margin-left: 0; }
}

.wordmark {
  font-weight: 700;
  font-size: var(--step-1);
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-right: auto;
  white-space: nowrap;
}
.wordmark:hover { color: var(--accent); }

/* Display the supplied artwork unchanged. The frame trims its generous
   outer whitespace; the white backing preserves the navy lettering in dark mode. */
.wordmark { flex-shrink: 0; }
.brand-logo {
  display: block;
  position: relative;
  overflow: hidden;
  width: 80px;
  aspect-ratio: 700 / 640;
  border-radius: var(--radius);
  background: var(--cc-white);
}
.brand-logo img {
  position: absolute;
  width: 179.142857%;
  max-width: none;
  height: auto;
  left: -39.285714%;
  top: -46.875%;
}
.brand-logo--footer { width: 140px; }
.footer-brand {
  display: inline-block;
  margin-bottom: var(--space-3);
  border-radius: var(--radius);
}
@media (max-width: 47.999em) {
  :root { --header-h: 4.75rem; }
  .wordmark .brand-logo { width: 64px; }
}

.nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-1) var(--space-4);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a:not(.btn) {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}
.nav a:not(.btn):hover { color: var(--accent); text-decoration: underline; }

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .icon-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .icon-sun { display: none; }
  :root:not([data-theme="light"]) .theme-toggle .icon-moon { display: block; }
}

/* ---------- Hero ---------- */

.hero {
  border-top: 6px solid transparent;
  border-image: var(--cc-gradient) 1;
  padding-block: clamp(3.5rem, 9vw, 7.5rem) clamp(3.5rem, 7vw, 6rem);
}

.hero .container {
  padding-inline: clamp(1.25rem, 6vw, 4.5rem);
}

.hero__layout {
  display: grid;
  gap: clamp(var(--space-6), 6vw, var(--space-8));
  align-items: center;
}

.hero__content { min-width: 0; }

.hero h1 { max-width: 22ch; }

.hero__lead {
  max-width: 58ch;
  font-size: var(--step-1);
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}

@media (max-width: 39.999em) {
  .hero {
    padding-block: 3.5rem 4rem;
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3) var(--space-5);
  margin-bottom: var(--space-5);
}

.hero__meta {
  font-size: var(--step--1);
  color: var(--text-muted);
  margin: 0;
}

.hero__visual {
  position: relative;
  min-width: 0;
  margin: 0;
}

.hero__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.hero__visual figcaption {
  position: absolute;
  inset: auto auto var(--space-3) var(--space-3);
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--cc-blue-grey);
  border-radius: 999px;
  background: var(--cc-navy);
  color: var(--cc-white);
  font-size: var(--step--1);
  font-weight: 650;
  line-height: 1.35;
}

@media (min-width: 56em) {
  .hero__layout {
    grid-template-columns: minmax(0, 1.02fr) minmax(24rem, 0.98fr);
  }
}

/* ---------- Fit lists ---------- */

.fit-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
}

.fit-list { list-style: none; margin: 0; padding: 0; }
.fit-list li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: var(--space-3);
}
.fit-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}
.fit-list--yes li::before { content: "✓"; color: var(--accent); }
.fit-list--no li::before { content: "–"; color: var(--text-muted); }

/* ---------- Cards ---------- */

.card-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}

.card__icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
  margin-bottom: var(--space-3);
}

.card h3 { font-size: var(--step-1); }
.card p { color: var(--text-muted); }

.note {
  max-width: var(--measure);
  margin-top: var(--space-5);
  padding-left: var(--space-4);
  border-left: 3px solid var(--border-strong);
  color: var(--text-muted);
}

/* ---------- Sample audit ---------- */

.sample-notice {
  max-width: var(--measure);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: var(--space-3) var(--space-4);
  margin-bottom: var(--space-6);
}
.sample-notice p { margin: 0; }

.finding {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 4vw, 2rem);
  margin-bottom: var(--space-5);
}

.finding__id {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-2);
}

.finding h3 { font-size: var(--step-2); max-width: 40ch; }

.finding__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  list-style: none;
  margin: 0 0 var(--space-4);
  padding: 0;
  font-size: var(--step--1);
  color: var(--text-muted);
}

.badge {
  display: inline-block;
  padding: 0.15em 0.6em;
  border-radius: 999px;
  font-weight: 650;
  font-size: var(--step--1);
}
.badge--high { background: var(--sev-high-bg); color: var(--sev-high-fg); }
.badge--med { background: var(--sev-med-bg); color: var(--sev-med-fg); }
.badge--low { background: var(--sev-low-bg); color: var(--sev-low-fg); }

.mock {
  margin: 0 0 var(--space-4);
}
.mock svg {
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--mock-frame);
}
.mock figcaption {
  font-size: var(--step--1);
  color: var(--text-muted);
  margin-top: var(--space-2);
}
.mock figcaption ol {
  margin: var(--space-1) 0 0;
  padding-left: 1.3rem;
}

.finding__body {
  display: grid;
  gap: 0 var(--space-4);
  margin: 0;
  max-width: 78ch;
}
.finding__body dt {
  font-weight: 650;
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-top: var(--space-3);
}
.finding__body dd {
  margin: var(--space-1) 0 0;
}

@media (min-width: 56em) {
  .finding__body { grid-template-columns: 11rem 1fr; }
  .finding__body dt { margin-top: var(--space-3); }
  .finding__body dd { margin-top: var(--space-3); }
}

/* ---------- Scope and price ---------- */

.scope-layout {
  display: grid;
  gap: var(--space-6);
  align-items: start;
}
@media (min-width: 56em) {
  .scope-layout { grid-template-columns: 1fr 20rem; }
}

.scope-list { margin: 0; }
.scope-list dt {
  font-weight: 650;
  margin-top: var(--space-4);
}
.scope-list dt:first-child { margin-top: 0; }
.scope-list dd {
  margin: var(--space-1) 0 0;
  color: var(--text-muted);
}

.price-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  position: sticky;
  top: calc(var(--header-h) + var(--space-3));
}
.price-panel__label {
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: var(--space-1);
}
.price-panel__amount {
  font-size: var(--step-3);
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--space-1);
}
.price-panel {
  border-top: 4px solid var(--cc-light-blue);
}
.price-panel .btn { width: 100%; margin-top: var(--space-3); }

/* ---------- Process ---------- */

.steps {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
}
.steps li { counter-increment: step; }
.steps li::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: var(--space-3);
  border-radius: 999px;
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 700;
  font-size: var(--step-0);
}
.steps h3 { font-size: var(--step-1); }
.steps p { color: var(--text-muted); }

/* ---------- About ---------- */

.founders {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
}

.founder__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 700;
  font-size: var(--step-1);
  margin-bottom: var(--space-3);
}
.founder h3 { font-size: var(--step-1); margin-bottom: var(--space-1); }
.founder__role {
  color: var(--text-muted);
  font-size: var(--step--1);
  margin-bottom: var(--space-3);
}
/* Standalone link, not an inline prose link, so give it a full hit area. */
.founder__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

/* ---------- Form ---------- */

.contact-layout { max-width: 38rem; }

.form { margin-top: var(--space-5); }

.field { margin-bottom: var(--space-4); }

.field label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.field__hint {
  display: block;
  font-size: var(--step--1);
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}

.field input,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.6rem 0.75rem;
  font: inherit;
  font-size: max(1rem, var(--step-0));
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
}
.field textarea { min-height: 7rem; resize: vertical; }

.field input:hover,
.field textarea:hover { border-color: var(--accent); }

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--error);
  border-width: 2px;
}

.field__error {
  display: none;
  align-items: flex-start;
  gap: var(--space-1);
  margin-top: var(--space-1);
  font-size: var(--step--1);
  color: var(--error);
  font-weight: 550;
}
.field__error::before { content: "⚠"; }
.field__error:not(:empty) { display: flex; }

.form__summary {
  margin-bottom: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--error);
  border-radius: var(--radius);
  background: var(--surface);
}
.form__summary:empty { display: none; }
.form__summary h3 { font-size: var(--step-1); color: var(--error); margin-bottom: var(--space-2); }
.form__summary ul { margin: 0; padding-left: 1.2rem; }
.form__summary a { color: var(--error); }

.form__status {
  padding: var(--space-4);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.form__status:empty { display: none; }
.form__status h3 { font-size: var(--step-1); }

.form__note { font-size: var(--step--1); color: var(--text-muted); margin-top: var(--space-3); }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  padding-block: var(--space-6);
  color: var(--text-muted);
  font-size: var(--step--1);
}
.site-footer a { color: var(--accent); }
/* Standalone footer links are targets in their own right, not inline prose
   links, so give them a comfortable 44px hit area. */
.site-footer p a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.colophon {
  margin: var(--space-4) 0;
  max-width: var(--measure);
}
.colophon summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.colophon ul { margin: var(--space-2) 0 0; padding-left: 1.2rem; }
.colophon li { margin-bottom: var(--space-1); }

/* ---------- Forced colours (Windows High Contrast) ---------- */

@media (forced-colors: active) {
  .btn--primary,
  .theme-toggle,
  .card,
  .finding,
  .price-panel,
  .form__status,
  .sample-notice {
    border: 1px solid ButtonBorder;
  }
  :focus-visible { outline: 3px solid Highlight; }
  .steps li::before,
  .founder__avatar { border: 1px solid ButtonBorder; }
  .badge { border: 1px solid ButtonBorder; }
  .placeholder { outline: 2px dashed ButtonBorder; background-image: none; }
}

.about__footnote { margin-top: var(--space-4); }
