/* src/tokens/colors.css */
:root {
  --color-bg: #f7f5ef;
  --color-surface: #ffffff;
  --color-border: #e4e0d7;
  --color-text: #071c2b;
  --color-text-muted: #606870;
  --color-accent: #11a8a0;
  --color-accent-contrast: #071c2b;
  --color-accent-text: #277c6e;
  --color-accent-gold: #c2a56c;
  --color-focus: #145c8f;
  --color-success: #1a7a43;
  --color-warning: #a85705;
  --color-danger: #b93327;
  --color-ink-bg: #071c2b;
  --color-ink-surface: #0b2d45;
  --color-ink-border: #103e60;
  --color-ink-text: #f7f5ef;
  --color-ink-text-muted: #bec8d1;
  --gradient-answer:
    linear-gradient(
      135deg,
      #11a8a0 0%,
      #2c8c7c 55%,
      #c2a56c 100%);
}

/* src/tokens/typography.css */
:root {
  --font-family-display:
    "Onest",
    "Public Sans",
    system-ui,
    -apple-system,
    sans-serif;
  --font-family-sans:
    "Public Sans",
    system-ui,
    -apple-system,
    sans-serif;
  --font-family-mono:
    "JetBrains Mono",
    ui-monospace,
    "SFMono-Regular",
    Menlo,
    monospace;
  --font-size-display: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  --line-height-display: 1.02;
  --letter-spacing-display: -0.02em;
  --font-size-headline: clamp(1.75rem, 2.5vw + 1rem, 2.75rem);
  --line-height-headline: 1.1;
  --letter-spacing-headline: -0.015em;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.75rem;
  --font-size-2xl: 2.125rem;
  --font-size-3xl: 2.5rem;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

/* src/tokens/spacing.css */
:root {
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 999px;
}

/* src/tokens/elevation.css */
:root {
  --shadow-signature: 0 20px 48px -20px color-mix(in srgb, #11a8a0 35%, transparent);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* src/tokens/index.css */

/* src/fonts.css */
@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/fonts/Onest-Variable.woff2) format("woff2");
}
@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/fonts/PublicSans-Variable.woff2) format("woff2");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/fonts/JetBrainsMono-Variable.woff2) format("woff2");
}

/* src/components/AnsweringO/AnsweringO.css */
.answering-o {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  background: var(--gradient-answer);
  box-shadow: var(--shadow-signature);
}
.answering-o__dots {
  display: flex;
  align-items: center;
  gap: 0.22em;
}
.answering-o__dot {
  width: 0.16em;
  height: 0.16em;
  border-radius: var(--radius-full);
  background: var(--color-ink-text);
  animation: answering-o-pulse 1.2s var(--ease-out-quart) infinite;
}
.answering-o__dot:nth-child(2) {
  animation-delay: 0.15s;
}
.answering-o__dot:nth-child(3) {
  animation-delay: 0.3s;
}
.answering-o__check {
  width: 0.5em;
  height: 0.5em;
  color: var(--color-ink-text);
  animation: answering-o-resolve 0.4s var(--ease-out-expo) both;
}
.answering-o__check path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: answering-o-draw 0.35s var(--ease-out-quart) 0.1s forwards;
}
@keyframes answering-o-pulse {
  0%, 80%, 100% {
    opacity: 0.35;
    transform: scale(0.85);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes answering-o-resolve {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes answering-o-draw {
  to {
    stroke-dashoffset: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .answering-o__dot {
    animation: none;
    opacity: 0.85;
  }
  .answering-o__check {
    animation: none;
  }
  .answering-o__check path {
    animation: none;
    stroke-dashoffset: 0;
  }
}

/* src/components/Badge/Badge.css */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 3px var(--space-2);
  border-radius: var(--radius-full);
  border: 1px solid currentColor;
  font-family: var(--font-family-sans);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
}
.badge--success {
  color: var(--color-success);
}
.badge--warning {
  color: var(--color-warning);
}
.badge--danger {
  color: var(--color-danger);
}
.badge--neutral {
  color: var(--color-text-muted);
  border-color: var(--color-border);
}

/* src/components/Button/Button.css */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-family: var(--font-family-sans);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.15s var(--ease-out-quart),
    border-color 0.15s var(--ease-out-quart),
    transform 0.15s var(--ease-out-quart);
}
.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.button:not(:disabled):active {
  transform: translateY(1px) scale(0.98);
}
.button:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
}
.button--primary {
  background: var(--color-accent);
  color: var(--color-accent-contrast);
}
.button--primary:not(:disabled):hover {
  background: var(--color-accent-text);
  transform: translateY(-1px);
}
.button--secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border-color: var(--color-border);
}
.button--secondary:not(:disabled):hover {
  border-color: var(--color-accent-text);
  transform: translateY(-1px);
}
@media (prefers-reduced-motion: reduce) {
  .button {
    transition: background-color 0.15s linear, border-color 0.15s linear;
  }
  .button:not(:disabled):hover,
  .button:not(:disabled):active {
    transform: none;
  }
}

/* src/components/Skeleton/Skeleton.css */
.skeleton {
  background:
    linear-gradient(
      90deg,
      var(--color-border) 25%,
      var(--color-bg) 50%,
      var(--color-border) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .skeleton {
    animation: none;
    background: var(--color-border);
  }
}
@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* src/components/EmptyState/EmptyState.css */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-8);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-lg);
  color: var(--color-text-muted);
}
.empty-state__title {
  margin: 0;
  font-family: var(--font-family-sans);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
}
.empty-state__description {
  margin: 0;
  font-family: var(--font-family-sans);
  font-size: var(--font-size-sm);
}
.empty-state__action {
  margin-top: var(--space-2);
}

/* src/components/NavHeader/NavHeader.css */
.nav-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) 0;
}
.nav-header__mark {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  background: var(--color-accent);
}
.nav-header__brand {
  font-family: var(--font-family-display);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.01em;
  color: var(--color-text);
}
.nav-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-left: auto;
}

/* src/components/AppShell/AppShell.css */
.app-shell {
  display: flex;
  min-height: 100dvh;
  background: var(--color-bg);
}
.app-shell__rail {
  flex: 0 0 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-4) var(--space-2) var(--space-6);
  background: var(--color-surface);
  border-right: 1px solid var(--color-border);
}
.app-shell__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
}
.app-shell__mark:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
}
.app-shell__mark-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
}
.app-shell__mark-dot--1 {
  background: #11a8a0;
}
.app-shell__mark-dot--2 {
  background: #2c8c7c;
}
.app-shell__mark-dot--3 {
  background: #c2a56c;
}
.app-shell__nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-1);
  width: 100%;
}
.app-shell__nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: var(--space-2) var(--space-1);
  margin: 0 var(--space-1);
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: background-color 0.15s var(--ease-out-quart), color 0.15s var(--ease-out-quart);
}
.app-shell__nav-item:hover {
  color: var(--color-text);
  background: color-mix(in srgb, var(--color-text) 5%, transparent);
}
.app-shell__nav-item:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
}
.app-shell__nav-item--active {
  color: var(--color-accent-text);
  background: color-mix(in srgb, var(--color-accent) 14%, transparent);
}
.app-shell__nav-item--active:hover {
  color: var(--color-accent-text);
  background: color-mix(in srgb, var(--color-accent) 18%, transparent);
}
.app-shell__nav-label {
  font-size: 0.6875rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
  text-align: center;
}
.app-shell__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.app-shell__topbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-6);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  min-height: 60px;
}
.app-shell__topbar-spacer {
  flex: 1;
}
.app-shell__account {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.app-shell__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  color: var(--color-accent-contrast);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.01em;
}
.app-shell__agency-name {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
}
.app-shell__logout {
  background: none;
  border: none;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: background-color 0.15s var(--ease-out-quart), color 0.15s var(--ease-out-quart);
}
.app-shell__logout:hover {
  color: var(--color-text);
  background: color-mix(in srgb, var(--color-text) 6%, transparent);
}
.app-shell__logout:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
}
.app-shell__content {
  flex: 1;
  padding: var(--space-8) var(--space-6) var(--space-10);
}
@media (max-width: 480px) {
  .app-shell__rail {
    flex-basis: 64px;
  }
  .app-shell__nav-label {
    display: none;
  }
  .app-shell__agency-name {
    display: none;
  }
}

/* src/components/ScoreBadge/ScoreBadge.css */
.score-badge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
  overflow: hidden;
}
.score-badge__total {
  font-family: var(--font-family-mono);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  line-height: 1;
}
.score-badge__max {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-muted);
}
.score-badge__scan {
  position: absolute;
  inset: 0;
  width: 40%;
  background:
    linear-gradient(
      90deg,
      transparent,
      color-mix(in srgb, var(--color-accent) 16%, transparent),
      transparent);
  transform: translateX(-110%);
  animation: score-badge-sweep 1.4s ease-in-out 1;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .score-badge__scan {
    animation: none;
    opacity: 0;
  }
}
@keyframes score-badge-sweep {
  0% {
    transform: translateX(-110%);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translateX(110%);
    opacity: 0;
  }
}

/* src/components/CategoryBar/CategoryBar.css */
.category-bar {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.category-bar__row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: var(--space-3);
}
.category-bar__label {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}
.category-bar__track {
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--color-border);
  overflow: hidden;
}
.category-bar__fill {
  height: 100%;
  background: var(--color-accent);
  border-radius: var(--radius-full);
}
.category-bar__value {
  font-family: var(--font-family-mono);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
}
.category-bar__max {
  color: var(--color-text-muted);
  font-weight: var(--font-weight-regular);
}

/* src/components/CheckRow/CheckRow.css */
.check-row {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-family: var(--font-family-sans);
  font-size: var(--font-size-sm);
}
.check-row__icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.check-row--pass .check-row__icon {
  color: var(--color-success);
}
.check-row--warn .check-row__icon {
  color: var(--color-warning);
}
.check-row--fail .check-row__icon {
  color: var(--color-danger);
}
.check-row__evidence {
  margin: 0;
  color: var(--color-text);
}
.check-row__fix {
  margin: var(--space-1) 0 0;
  color: var(--color-text-muted);
}

/* src/components/NeedsConfirmationTag/NeedsConfirmationTag.css */
.needs-confirmation-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border: 1px dashed var(--color-warning);
  border-radius: var(--radius-md);
  color: var(--color-warning);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-sm);
  font-style: italic;
}
.needs-confirmation-tag .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;
}

/* src/components/ScoreDelta/ScoreDelta.css */
.score-delta {
  display: inline-flex;
  align-items: baseline;
  gap: var(--space-2);
  font-family: var(--font-family-mono);
  font-size: var(--font-size-sm);
}
.score-delta__range {
  color: var(--color-text-muted);
}
.score-delta__diff {
  font-weight: var(--font-weight-bold);
}
.score-delta--up .score-delta__diff {
  color: var(--color-success);
}
.score-delta--down .score-delta__diff {
  color: var(--color-danger);
}
.score-delta--flat .score-delta__diff {
  color: var(--color-text-muted);
}

/* src/components/FixCard/FixCard.css */
.fix-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  overflow: hidden;
}
.fix-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--color-border);
}
.fix-card__title {
  font-family: var(--font-family-sans);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
  color: var(--color-text);
}
.fix-card__language {
  margin-left: auto;
  font-family: var(--font-family-mono);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}
.fix-card__code {
  margin: 0;
  padding: var(--space-4);
  font-family: var(--font-family-mono);
  font-size: var(--font-size-sm);
  color: var(--color-text);
  overflow-x: auto;
  white-space: pre;
}
.fix-card__todo-confirm {
  background: color-mix(in srgb, var(--color-warning) 20%, transparent);
  color: var(--color-warning);
  border-radius: var(--radius-sm);
  padding: 0 2px;
}

/* src/components/UrlInputBar/UrlInputBar.css */
.url-input-bar {
  display: flex;
  gap: var(--space-2);
}
.url-input-bar__input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background: var(--color-surface);
  transition: border-color 0.15s var(--ease-out-quart);
}
.url-input-bar__input::placeholder {
  color: var(--color-text-muted);
}
.url-input-bar__input:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
  border-color: var(--color-focus);
}

/* src/components/LeadCaptureForm/LeadCaptureForm.css */
.lead-capture-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.lead-capture-form__label {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}
.lead-capture-form__row {
  display: flex;
  gap: var(--space-2);
}
.lead-capture-form__input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background: var(--color-surface);
}
.lead-capture-form__consent {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}
.lead-capture-form__consent input[type=checkbox] {
  margin-top: 3px;
  flex-shrink: 0;
  width: auto;
}
.lead-capture-form__consent label {
  margin-bottom: 0;
  font-family: var(--font-family-sans);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}
.lead-capture-form__error {
  margin: 0;
  color: var(--color-danger);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-xs);
}

/* src/components/Footer/Footer.css */
.footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}
.footer__wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--space-10) var(--space-5) var(--space-6);
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.footer__brand {
  max-width: 22ch;
  flex-shrink: 0;
}
.footer__logo {
  display: block;
}
.footer__tagline {
  margin-top: var(--space-3);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}
.footer__groups {
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.footer__group-title {
  font-family: var(--font-family-mono);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.footer__group-links {
  list-style: none;
  margin: var(--space-4) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer__group-links a {
  color: var(--color-text);
  font-size: var(--font-size-sm);
  text-decoration: none;
}
.footer__group-links a:hover {
  color: var(--color-accent-text);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-10);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}
.footer__copyright {
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
}
.footer__legal {
  display: flex;
  gap: var(--space-4);
}
.footer__legal a {
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
}
@media (max-width: 720px) {
  .footer__top {
    flex-direction: column;
  }
  .footer__groups {
    gap: var(--space-6);
  }
}

/* src/components/MarketingNav/MarketingNav.css */
.marketing-nav {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}
.marketing-nav__wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.marketing-nav__logo {
  height: 33px;
  width: auto;
  display: block;
}
.marketing-nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  margin-left: auto;
}
.marketing-nav__links a {
  color: var(--color-text);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
}
.marketing-nav__links a:hover {
  color: var(--color-accent-text);
}
.marketing-nav__cta {
  color: var(--color-text) !important;
  text-decoration: none;
  background: var(--color-surface);
  border: 1.5px solid var(--color-text);
  padding: calc(var(--space-2) - 1.5px) calc(var(--space-4) - 1.5px);
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-semibold) !important;
  font-size: var(--font-size-sm);
}
.marketing-nav__cta:hover {
  background: var(--color-text) !important;
  color: var(--color-bg) !important;
}
.marketing-nav__mobile {
  display: none;
  position: relative;
  margin-left: auto;
}
.marketing-nav__mobile-toggle {
  list-style: none;
  cursor: pointer;
  color: var(--color-text);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.marketing-nav__mobile-toggle::-webkit-details-marker {
  display: none;
}
.marketing-nav__mobile[open] .marketing-nav__mobile-toggle {
  color: var(--color-bg);
  background: var(--color-text);
  border-color: var(--color-text);
}
.marketing-nav__mobile-links {
  position: absolute;
  top: calc(100% + var(--space-2));
  right: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  min-width: 200px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: 0 12px 32px -12px color-mix(in srgb, var(--color-text) 18%, transparent);
}
.marketing-nav__mobile-links a:not(.marketing-nav__cta) {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
}
.marketing-nav__mobile-links a:not(.marketing-nav__cta):hover {
  color: var(--color-text);
}
.marketing-nav__mobile-links .marketing-nav__cta {
  align-self: stretch;
  text-align: center;
}
@media (max-width: 860px) {
  .marketing-nav__links {
    display: none;
  }
  .marketing-nav__mobile {
    display: block;
  }
}

/* src/components/CheckerWidget/CheckerWidget.css */
.checker-widget {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-10);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  background: var(--color-bg);
  color: var(--color-text);
  padding: var(--space-10) var(--space-5) calc(var(--space-10) + var(--space-6));
  overflow: hidden;
}
.checker-widget::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: var(--radius-full);
  border: 56px solid color-mix(in srgb, var(--color-accent) 16%, transparent);
  pointer-events: none;
  z-index: 0;
}
.checker-widget h1 {
  font-family: var(--font-family-display);
  font-size: var(--font-size-display);
  line-height: var(--line-height-display);
  letter-spacing: var(--letter-spacing-display);
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  margin: 0;
  text-wrap: balance;
}
.checker-widget__lede {
  margin-top: var(--space-4);
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  max-width: 46ch;
}
.checker-widget__error {
  color: var(--color-danger);
  margin-top: var(--space-3);
}
.checker-widget__trust {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}
.checker-widget__built-for {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}
.checker-widget__built-for-icon {
  color: var(--color-accent-gold);
}
.checker-widget__copy {
  position: relative;
  z-index: 1;
}
.checker-widget__panel {
  position: relative;
  z-index: 1;
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-signature);
  padding: var(--space-6);
  min-height: 260px;
}
.checker-widget__state {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  height: 100%;
  justify-content: center;
}
.checker-widget__state p {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}
.checker-widget__state strong {
  color: var(--color-text);
  font-weight: var(--font-weight-semibold);
}
.checker-widget__results {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.checker-widget__status {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}
.checker-widget__lead-message {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}
.checker-widget__generate-error {
  color: var(--color-danger);
  font-size: var(--font-size-sm);
}
.checker-widget__fixes {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-6);
}
.checker-widget__share {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}
.checker-widget__faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
}
@media (max-width: 860px) {
  .checker-widget {
    grid-template-columns: 1fr;
  }
}

/* src/components/EvidencePanel/EvidencePanel.css */
.evidence-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.evidence-panel__head {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}
.evidence-panel__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}
.evidence-panel--bad .evidence-panel__dot {
  background: var(--color-danger);
}
.evidence-panel--good .evidence-panel__dot {
  background: var(--color-success);
}
.evidence-panel__head span:last-child {
  font-family: var(--font-family-mono);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}
.evidence-panel__body {
  padding: var(--space-4);
  background: color-mix(in srgb, var(--color-text) 4%, var(--color-surface));
}
.evidence-panel__body pre {
  margin: 0;
  font-family: var(--font-family-mono);
  font-size: var(--font-size-xs);
  line-height: 1.7;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
}

/* src/components/WeightBar/WeightBar.css */
.weight-bar {
  display: flex;
  height: 2.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.weight-bar__seg {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-mono);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-ink-text);
}

/* src/components/DeepStepTimeline/DeepStepTimeline.css */
.deepsteps {
  position: relative;
  margin-top: var(--space-4);
}
.deepstep {
  position: relative;
  padding: var(--space-10) 0;
  padding-left: calc(var(--space-8) + 3.5rem);
  border-bottom: 1px solid var(--color-border);
}
.deepstep:last-child {
  border-bottom: none;
}
.deepstep::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--color-border);
}
.deepstep:first-child::before {
  top: calc(var(--space-10) + 1.75rem);
}
.deepstep:last-child::before {
  bottom: calc(100% - var(--space-10) - 1.75rem);
}
.deepstep__num {
  position: absolute;
  left: 0;
  top: var(--space-10);
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-mono);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent-text);
}
.deepstep h2 {
  font-size: var(--font-size-headline);
  max-width: 26ch;
}
.deepstep__body {
  margin-top: var(--space-3);
}
@media (max-width: 860px) {
  .deepstep {
    padding-left: calc(var(--space-6) + 3rem);
  }
}

/* src/components/FaqGroup/FaqGroup.css */
.faq-group {
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--color-border);
}
.faq-group:last-of-type {
  border-bottom: none;
}
.faq-group h2 {
  font-size: var(--font-size-headline);
}
.faq-group .faq {
  margin-top: var(--space-6);
}

/* src/components/AuthForm/AuthForm.css */
.auth-form {
  margin-top: var(--space-2);
}
.auth-form__field {
  margin-bottom: var(--space-4);
}
.auth-form__label {
  display: block;
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
}
.auth-form__input {
  width: 100%;
  padding: var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  font-family: var(--font-family-sans);
  background: var(--color-surface);
  color: var(--color-text);
}
.auth-form__input::placeholder {
  color: var(--color-text-muted);
}
.auth-form__error {
  color: var(--color-danger);
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
}
.auth-form__success h2 {
  font-size: var(--font-size-lg);
}
.auth-form__success p {
  margin-top: var(--space-2);
  color: var(--color-text-muted);
}

/* src/components/DeveloperDashboard/DeveloperDashboard.css */
.dash-shell {
  max-width: 640px;
  margin: var(--space-10) auto;
  padding: 0 var(--space-5);
}
.dash-shell h1 {
  font-size: var(--font-size-headline);
}
.dash-shell__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.dash-shell__email {
  font-family: var(--font-family-mono);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  margin-top: var(--space-2);
}
.dash-shell__loading {
  margin-top: var(--space-6);
  color: var(--color-text-muted);
}
.dash-shell__panel {
  margin-top: var(--space-6);
}
.dash-shell__lede {
  margin-top: var(--space-2);
  color: var(--color-text-muted);
}
.dash-shell__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
}
.dash-shell__row:last-of-type {
  border-bottom: none;
}
.dash-shell__row span:first-child {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}
.dash-shell__row span:last-child {
  font-family: var(--font-family-mono);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
}
.dash-shell__actions {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}
.dash-shell__key-value {
  display: flex;
  gap: var(--space-2);
  align-items: stretch;
  margin-top: var(--space-3);
}
.dash-shell__key-value code {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  padding: var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--color-text) 4%, var(--color-surface));
  font-size: var(--font-size-sm);
  white-space: nowrap;
}
.dash-shell__copy-status {
  margin-top: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}
.dash-shell__error {
  color: var(--color-danger);
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
}
.dash-shell__checkout-notice {
  margin-top: var(--space-6);
}

/* src/components/SelfAuditPanel/SelfAuditPanel.css */
.self-audit-panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.self-audit-panel__eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}
.self-audit-panel__eyebrow-label {
  font-family: var(--font-family-mono);
  font-size: var(--font-size-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: var(--font-weight-bold);
}
.self-audit-panel__timestamp {
  font-family: var(--font-family-mono);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.self-audit-panel__timestamp::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--color-success);
  display: inline-block;
}
.self-audit-panel__score-row {
  display: flex;
}
.self-audit-panel__site {
  font-family: var(--font-family-mono);
  font-size: var(--font-size-xs);
  color: var(--color-accent-text);
  margin-top: var(--space-1);
}
.self-audit-panel__issue {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  background: color-mix(in srgb, var(--color-warning) 8%, var(--color-surface));
  border: 1px solid color-mix(in srgb, var(--color-warning) 30%, transparent);
  border-radius: var(--radius-md);
  padding: var(--space-3);
}
.self-audit-panel__issue--clean {
  background: color-mix(in srgb, var(--color-success) 8%, var(--color-surface));
  border-color: color-mix(in srgb, var(--color-success) 30%, transparent);
}
.self-audit-panel__issue-icon {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: var(--radius-full);
  background: var(--color-warning);
  color: var(--color-surface);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  margin-top: 0.1rem;
}
.self-audit-panel__issue-icon--clean {
  background: var(--color-success);
}
.self-audit-panel__issue p {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--color-text);
}
.self-audit-panel__issue p em {
  font-style: normal;
  color: var(--color-text-muted);
}
/*# sourceMappingURL=index.css.map */