/* TechVision Solutions — style.css */

:root {
  --bg: #0d1220;
  --surface: #121a2c;
  --surface-2: #182238;
  --line: #253149;
  --line-soft: #1d2738;
  --cyan: #00c2ff;
  --cyan-dim: #0891b2;
  --white: #ffffff;
  --text: #e8ecf4;
  --muted: #98a4ba;
  --success: #22c55e;
  --error: #ef4444;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  --radius: 4px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

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

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

a {
  color: var(--cyan);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  margin: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--cyan);
  color: #00121c;
  font-weight: 700;
  border-radius: var(--radius);
}

.skip-link:focus {
  left: 0;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 18, 32, 0.92);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand:hover {
  text-decoration: none;
}

.brand-logo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-name .brand-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 500;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.main-nav a {
  display: block;
  padding: 0.5rem 0.9rem;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
}

.main-nav a:hover {
  color: var(--text);
  text-decoration: none;
}

.main-nav a.active,
.main-nav a[aria-current="page"] {
  color: var(--cyan);
  border-color: rgba(0, 194, 255, 0.35);
  background: rgba(0, 194, 255, 0.08);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: var(--radius);
  padding: 0.5rem 0.7rem;
  cursor: pointer;
  line-height: 0;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    background: var(--surface);
    border-bottom: 1px solid var(--line-soft);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 0.75rem 1.25rem 1.25rem;
    gap: 0.15rem;
  }

  .main-nav a {
    padding: 0.75rem 0.9rem;
    font-size: 1.05rem;
  }
}

/* ---------- Buttons & labels ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid var(--cyan);
  border-radius: var(--radius);
  background: var(--cyan);
  color: #00121c;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn:hover {
  text-decoration: none;
  background: #29ceff;
  box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.2);
}

.btn:active {
  transform: translateY(1px);
}

.btn-ghost {
  background: transparent;
  color: var(--cyan);
}

.btn-ghost:hover {
  background: rgba(0, 194, 255, 0.08);
  box-shadow: none;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.7rem;
}

.section-label::before,
.section-label::after {
  content: "";
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.section-label::before {
  width: 20px;
}

.section-label::after {
  width: 60px;
}

/* ---------- Sections / layout ---------- */
section {
  padding-block: 4.5rem;
}

.alt-bg {
  background: var(--surface);
  border-block: 1px solid var(--line-soft);
}

.section-head {
  margin-bottom: 2.75rem;
  max-width: 760px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-head p {
  color: var(--muted);
  margin-top: 0.9rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

h3 {
  font-size: 1.15rem;
}

.intro-mono {
  font-family: var(--font-mono);
  color: var(--cyan);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.lede {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 1.2rem;
  max-width: 60ch;
}

/* ---------- Hero ---------- */
.hero {
  padding-block: 5rem 4.5rem;
  background:
    radial-gradient(ellipse 60% 50% at 78% 10%, rgba(0, 194, 255, 0.10), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line-soft);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.9rem;
}

.hero-badge {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.hero-claim {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--line-soft);
  padding-top: 1.4rem;
}

.hero-claim div {
  padding-right: 1rem;
}

.hero-claim strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: var(--cyan);
  line-height: 1.2;
}

.hero-claim span {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-art {
  position: relative;
}

.hero-art svg {
  width: 100%;
  height: auto;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-claim {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .hero-claim {
    grid-template-columns: 1fr;
  }
}

/* ---------- Intro features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.feature-card:hover {
  border-color: rgba(0, 194, 255, 0.4);
  transform: translateY(-2px);
}

.feature-card svg {
  width: 30px;
  height: 30px;
  color: var(--cyan);
  margin-bottom: 0.9rem;
}

.feature-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.feature-card .f-mono {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(0, 194, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.45rem;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Bike cards? no - image cards ---------- */
/* ---------- Service cards (home) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.service-card:hover {
  border-color: rgba(0, 194, 255, 0.4);
  transform: translateY(-2px);
}

.service-card .card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-card .card-body .f-mono {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.service-card h3 {
  font-size: 1.15rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.service-card ul {
  list-style: none;
  margin-top: 0.3rem;
  display: grid;
  gap: 0.35rem;
}

.service-card ul li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--text);
  font-size: 0.9rem;
}

.service-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 2px;
  background: var(--cyan);
}

.card-link {
  margin-top: auto;
  padding-top: 0.9rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--cyan);
}

.card-art {
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line-soft);
}

.card-art svg {
  width: 100%;
  height: 100%;
}

.cta-card {
  background: linear-gradient(160deg, #0f2d3e, var(--surface) 60%);
  border: 1px solid rgba(0, 194, 255, 0.4);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cta-card .f-mono {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cta-card h3 {
  font-size: 1.25rem;
}

.cta-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-card .btn {
  margin-top: 0.6rem;
  align-self: flex-start;
}

@media (max-width: 820px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Process (over-ons / index) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  counter-reset: step;
}

.step {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.5rem 1.3rem;
  position: relative;
}

.step .step-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--cyan);
  letter-spacing: 0.1em;
}

.step h3 {
  margin: 0.6rem 0 0.4rem;
  font-size: 1rem;
}

.step p {
  color: var(--muted);
  font-size: 0.87rem;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* ---------- Full-width dark band (numbers) ---------- */
.band {
  background:
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(0, 194, 255, 0.08), transparent 70%);
  border-block: 1px solid var(--line-soft);
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.band-grid div {
  padding: 1rem;
}

.band-grid strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 2rem;
  color: var(--cyan);
  line-height: 1.1;
}

.band-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .band-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split .art-box {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.split .art-box svg {
  width: 100%;
  height: auto;
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ---------- Newsletter ---------- */
.newsletter {
  background:
    linear-gradient(160deg, rgba(0, 194, 255, 0.06), transparent 40%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-bottom: -2rem;
  position: relative;
}

.newsletter-form {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.newsletter-form .field {
  flex: 1 1 260px;
}

@media (max-width: 620px) {
  .newsletter { padding: 1.8rem; }
}

/* ---------- Forms ---------- */
.form-field {
  margin-bottom: 1.15rem;
}

.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.form-field .req {
  color: var(--cyan);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 0.98rem;
  padding: 0.7rem 0.85rem;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.15);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.1rem;
}

@media (max-width: 620px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid;
}

.form-status.success {
  display: block;
  color: var(--success);
  border-color: rgba(34, 197, 94, 0.5);
  background: rgba(34, 197, 94, 0.08);
}

.form-status.error {
  display: block;
  color: var(--error);
  border-color: rgba(239, 68, 68, 0.5);
  background: rgba(239, 68, 68, 0.08);
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.2rem;
}

.info-card h3 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.8rem;
}

.info-card p,
.info-card address {
  font-style: normal;
  color: var(--text);
}

.info-card .muted {
  color: var(--muted);
  font-size: 0.9rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.hours-table th,
.hours-table td {
  text-align: left;
  padding: 0.45rem 0.2rem;
  border-bottom: 1px solid var(--line-soft);
}

.hours-table th {
  color: var(--muted);
  font-weight: 600;
}

.hours-table .closed {
  color: var(--error);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.hours-table .open {
  color: var(--success);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.oncall {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line-soft);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--cyan);
  letter-spacing: 0.06em;
}

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

/* ---------- Over-ons ---------- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.team-card .avatar {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
}

.team-card .avatar svg {
  width: 34px;
  height: 34px;
  color: var(--cyan);
}

.team-card h3 {
  font-size: 1.02rem;
}

.team-card .role {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.4rem;
}

.team-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 760px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

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

.forwho-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.forwho-card svg {
  width: 30px;
  height: 30px;
  color: var(--cyan);
  margin-bottom: 0.8rem;
}

.forwho-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.35rem;
}

.forwho-card p {
  color: var(--muted);
  font-size: 0.86rem;
}

@media (max-width: 880px) {
  .forwho-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .forwho-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Timeline ---------- */
.timeline {
  list-style: none;
  border-left: 1px solid var(--line);
  padding-left: 1.5rem;
  display: grid;
  gap: 1.6rem;
}

.timeline li {
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -1.62rem;
  top: 0.35rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.2);
}

.timeline strong {
  font-family: var(--font-mono);
  color: var(--cyan);
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.timeline p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 0.15rem;
}

/* ---------- Legal pages ---------- */
.legal {
  max-width: 780px;
}

.legal h2 {
  margin: 2.4rem 0 0.8rem;
  font-size: 1.3rem;
}

.legal h3 {
  margin: 1.8rem 0 0.5rem;
  font-size: 1.05rem;
}

.legal p,
.legal li {
  color: var(--muted);
  font-size: 0.95rem;
}

.legal ul,
.legal ol {
  padding-left: 1.4rem;
  margin: 0.6rem 0;
  display: grid;
  gap: 0.3rem;
}

.legal strong {
  color: var(--text);
}

.legal .date-line {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--cyan);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
  margin-top: 3rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 2rem;
  padding-block: 3rem 2rem;
}

.footer-col h3 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--cyan);
}

.footer-col p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
}

.footer-col address {
  font-style: normal;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-hours {
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer-hours .closed {
  color: var(--error);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-block: 1.4rem;
}

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

.footer-bottom p {
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-legal {
  display: flex;
  gap: 1.2rem;
  font-size: 0.84rem;
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
}

/* ---------- Misc ---------- */
.mono {
  font-family: var(--font-mono);
}

.text-muted {
  color: var(--muted);
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.stack {
  display: grid;
  gap: 1rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.back-link {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

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