:root {
  --bg: #0f1419;
  --surface: #1a222d;
  --border: #2a3544;
  --text: #e8edf4;
  --muted: #8b9bb0;
  --accent: #c45c26;
  --accent-hover: #d96f35;
  --success: #3d9a6e;
  --max: 64rem;
  --max-narrow: 48rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 2rem, var(--max-narrow));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 95%, transparent);
  backdrop-filter: blur(8px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent);
}

.logo-mark {
  width: 2rem;
  height: 2rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.nav a:not(.btn) {
  color: var(--muted);
  transition: color 0.15s ease;
}

.nav a:not(.btn):hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  padding: 0.625rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--accent);
}

.hero {
  padding: 4rem 0 3rem;
  text-align: center;
}

.eyebrow {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  margin: 0.75rem 0 0;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero .lead {
  margin: 1rem auto 0;
  max-width: 38rem;
  font-size: 1.125rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 0.5rem;
  margin-top: 2.5rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--accent) 8%, var(--surface)),
    var(--surface)
  );
}

.hero-flow-card {
  flex: 1 1 9.5rem;
  min-width: 0;
  max-width: 11.5rem;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--bg);
  text-align: left;
}

.hero-flow-label {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-flow-arrow {
  flex: 0 0 auto;
  color: var(--muted);
  opacity: 0.85;
}

.mock-sheet {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: #f4f0e6;
  color: #2a2520;
  font-size: 0.625rem;
  line-height: 1.2;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.mock-sheet-title {
  font-weight: 700;
  font-size: 0.6875rem;
}

.mock-sheet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.25rem;
}

.mock-sheet-grid span {
  padding: 0.2rem 0;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.65);
  text-align: center;
  font-weight: 600;
}

.mock-sheet-total {
  font-weight: 700;
  font-size: 0.6875rem;
}

.mock-scorecard {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.625rem;
}

.mock-scorecard-row {
  display: grid;
  grid-template-columns: auto repeat(4, 1fr) auto;
  gap: 0.2rem;
  align-items: center;
}

.mock-end,
.mock-end-total {
  font-weight: 600;
  color: var(--muted);
}

.mock-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1.25rem;
  border-radius: 0.25rem;
  font-weight: 700;
  color: #fff;
}

.mock-arrow.hit-10 {
  background: #fbbf24;
}

.mock-arrow.hit-9 {
  background: #f59e0b;
}

.mock-arrow.hit-x {
  background: #fbbf24;
  box-shadow: inset 0 0 0 2px #fff;
}

.mock-scorecard-total {
  margin-top: 0.15rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--accent);
}

.mock-drift {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mock-chart {
  width: 100%;
  height: auto;
  color: var(--muted);
}

.mock-drift-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  font-size: 0.625rem;
  color: var(--muted);
}

.mock-drift-legend i {
  display: inline-block;
  width: 0.625rem;
  height: 0.125rem;
  margin-right: 0.25rem;
  vertical-align: middle;
  border-radius: 1px;
}

.legend-h {
  background: var(--accent);
}

.legend-v {
  background: #6ee7b7;
}

@media (max-width: 639px) {
  .hero-flow-arrow {
    display: none;
  }

  .hero-flow-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.section {
  padding: 3rem 0;
}

.section-title {
  margin: 0;
  text-align: center;
  font-size: 1.75rem;
}

.section-subtitle {
  margin: 0.5rem auto 0;
  max-width: 36rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9375rem;
}

.feature-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.feature-card {
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  background: var(--surface);
  padding: 1.25rem;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.0625rem;
}

.spotlight {
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--border));
  border-radius: 1rem;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--accent) 12%, transparent),
    var(--surface)
  );
  padding: 2rem 1.25rem;
  text-align: center;
}

.spotlight .section-title,
.spotlight h2 {
  margin-top: 0.5rem;
}

.spotlight-note {
  margin: 1.25rem auto 0;
  max-width: 32rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.workflow-steps {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .workflow-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

.workflow-step {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  padding: 1rem;
  text-align: left;
}

.workflow-step h3 {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
}

.workflow-step p {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.workflow-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.feature-card p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.pricing-table-wrap {
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 0.875rem;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.pricing-table th,
.pricing-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-top: 1px solid var(--border);
}

.pricing-table thead th {
  border-top: none;
  background: var(--surface);
}

.pricing-table th:not(:first-child),
.pricing-table td:not(:first-child) {
  text-align: center;
}

.pricing-table .pro-col {
  color: var(--accent);
}

.pricing-table .cell-included {
  font-weight: 600;
  color: var(--success);
}

.pricing-table .cell-included-pro {
  font-weight: 600;
  color: var(--accent);
}

.pricing-table .cell-limited {
  font-weight: 500;
  color: var(--accent);
}

.pricing-table .cell-excluded {
  font-weight: 300;
  color: var(--border);
}

.pricing-product-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .pricing-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .pricing-product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.price-audience {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.pricing-table-four {
  min-width: 42rem;
}

.pricing-cards {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .pricing-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.price-card {
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  background: var(--surface);
  padding: 1.5rem;
}

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 25%, transparent);
}

.price-card h3 {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.price-card .amount {
  margin: 0.5rem 0 0;
  font-size: 2.25rem;
  font-weight: 700;
}

.price-card .detail {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.price-card .btn {
  width: 100%;
  margin-top: 1.25rem;
}

.cta-band {
  margin: 3rem 0;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--border));
  border-radius: 1rem;
  background: color-mix(in srgb, var(--accent) 8%, var(--surface));
  padding: 2rem 1.5rem;
  text-align: center;
}

.cta-band h2 {
  margin: 0;
  font-size: 1.5rem;
}

.cta-band p {
  margin: 0.75rem auto 0;
  max-width: 32rem;
  color: var(--muted);
}

.cta-band .hero-actions {
  margin-top: 1.5rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 3rem;
  color: var(--muted);
  font-size: 0.875rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a:hover {
  color: var(--text);
}

.legal-page main {
  padding: 3rem 0 4rem;
}

.legal-page h1 {
  margin: 0;
  font-size: 2rem;
}

.legal-page .updated {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.legal-page section {
  margin-top: 2rem;
}

.legal-page h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

.legal-page p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.legal-page p + p {
  margin-top: 0.75rem;
}

.legal-page a:not(.btn) {
  color: var(--accent);
}

.legal-page a:not(.btn):hover {
  text-decoration: underline;
}

.fine-print {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
}

.fine-print a {
  color: var(--accent);
}

.fine-print a:hover {
  text-decoration: underline;
}

/* Content pages (about, features, contact) */
.content-page main {
  padding: 2.5rem 0 4rem;
}

.content-page .page-hero {
  margin-bottom: 2.5rem;
}

.content-page .page-hero h1 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
}

.content-page .page-hero .lead {
  margin: 1rem 0 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.content-page section {
  margin-top: 2.5rem;
}

.content-page h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

.content-page p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.content-page p + p {
  margin-top: 0.75rem;
}

.content-page ul {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.7;
}

.content-page li + li {
  margin-top: 0.35rem;
}

.content-page a:not(.btn) {
  color: var(--accent);
}

.content-page a:not(.btn):hover {
  text-decoration: underline;
}

/* Keep button labels readable on orange (content-page link color must not apply). */
.content-page a.btn-primary,
.content-page button.btn-primary {
  color: #fff;
}

.role-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

@media (min-width: 720px) {
  .role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .role-grid:has(> :nth-child(3)) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.role-card {
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  background: var(--surface);
  padding: 1.5rem;
}

.role-card h3 {
  margin: 0;
  font-size: 1.125rem;
  color: var(--text);
}

.role-card .role-tag {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.role-card p {
  margin-top: 0.75rem;
}

.role-card ul {
  margin-top: 0.75rem;
}

.cta-inline {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  background: var(--surface);
  text-align: center;
}

.cta-inline p {
  margin-top: 0.5rem;
}

.cta-inline .hero-actions {
  justify-content: center;
  margin-top: 1rem;
}

.feature-shots {
  margin-top: 2.5rem;
}

.feature-shot {
  margin: 1.25rem 0 0;
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  overflow: hidden;
  background: var(--surface);
}

.feature-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.feature-shot figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.feature-shot.is-missing {
  display: none;
}

/* Clubs marketing page */
.clubs-page .clubs-hero {
  position: relative;
  padding: 2.5rem 0 3rem;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(196, 92, 38, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(61, 154, 110, 0.08), transparent 50%),
    var(--bg);
}

.clubs-hero-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .clubs-hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.5rem;
  }
}

.clubs-hero-copy h1 {
  margin: 0.75rem 0 0;
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.clubs-hero-copy .lead {
  margin-top: 1rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.clubs-hero-copy .hero-actions {
  margin-top: 1.5rem;
}

.clubs-hero-visual,
.clubs-story-visual {
  margin: 0;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.clubs-hero-visual img,
.clubs-story-visual img {
  width: 100%;
  height: auto;
}

.clubs-story-visual--shot {
  background: #0b0f14;
}

.clubs-story-visual--shot img {
  object-fit: cover;
  object-position: top center;
  max-height: 28rem;
}

.clubs-story-visual-stack {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 560px) {
  .clubs-story-visual-stack {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 860px) {
  .clubs-story:has(.clubs-story-visual-stack) {
    align-items: start;
  }
}

.clubs-pain {
  padding: 3rem 0 1rem;
}

.clubs-pain-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

@media (min-width: 720px) {
  .clubs-pain-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.clubs-pain-card {
  padding: 1.25rem 1.35rem;
  border-radius: 0.875rem;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
}

.clubs-pain-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.clubs-pain-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.925rem;
}

.clubs-stories {
  padding: 2.5rem 0 1rem;
}

.clubs-stories .section-subtitle {
  max-width: 36rem;
}

.clubs-story {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2.75rem;
}

@media (min-width: 860px) {
  .clubs-story {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 2.5rem;
  }

  .clubs-story.reverse {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  }

  .clubs-story.reverse .clubs-story-copy {
    order: 2;
  }

  .clubs-story.reverse .clubs-story-visual {
    order: 1;
  }
}

.clubs-kicker {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.clubs-story-copy h3 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.clubs-story-copy p:not(.clubs-kicker) {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.clubs-roles,
.clubs-aside {
  padding: 2.5rem 0 0;
}

.clubs-role-grid {
  margin-top: 1.25rem;
}

.clubs-aside p {
  max-width: 42rem;
}

.contact-form {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--bg);
  color: var(--text);
  font: inherit;
}

.contact-form textarea {
  min-height: 9rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--accent) 50%, transparent);
  outline-offset: 1px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-status {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.contact-status--success {
  color: var(--success);
}

.contact-status--error {
  color: #e88a7a;
}

.contact-status--pending {
  color: var(--muted);
}

.nav-compact .nav {
  gap: 0.75rem 1rem;
}

@media (max-width: 640px) {
  .nav-compact .nav a:not(.btn) {
    font-size: 0.8125rem;
  }
}

.faq-group {
  margin-top: 2rem;
}

.faq-group h2 {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  color: var(--text);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 0.625rem;
  background: var(--surface);
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 0.875rem 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1rem 1rem;
}

.news-entry {
  margin-top: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.news-entry:last-of-type {
  border-bottom: none;
}

.news-date {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
}

.news-entry h2 {
  margin: 0.35rem 0 0.75rem;
  font-size: 1.25rem;
  color: var(--text);
}

.trust-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.trust-card {
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  background: var(--surface);
  padding: 1.25rem;
}

.trust-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--text);
}

.trust-card p {
  margin: 0;
}

.trust-card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
}

.diagram-text {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 0.625rem;
  border: 1px dashed var(--border);
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

.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;
}
