/* ============================================
   AVL FLOW — Hyperintelligence Layer for Operations
   An AVLFlow.com company
   Modern minimalist design system
   ============================================ */

:root {
  /* Color tokens */
  --bg: #FAFAF7;
  --bg-elev: #FFFFFF;
  --fg: #0A0A0A;
  --fg-soft: #2A2A2A;
  --muted: #6B6B6B;
  --muted-2: #9A9A95;
  --line: #E8E5DE;
  --line-soft: #F0EDE6;
  --accent: #2563EB;
  --accent-2: #0EA5E9;
  --accent-glow: rgba(37, 99, 235, 0.12);
  --gradient: linear-gradient(135deg, #2563EB 0%, #0EA5E9 100%);
  --highlight: #FF5722;

  /* Typography */
  --font-display: "Instrument Serif", "Georgia", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Layout */
  --container: 1240px;
  --container-narrow: 880px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

/* ===== Layout primitives ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 640px) {
  .container, .container-narrow { padding: 0 20px; }
}

/* ===== Typography ===== */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.display em {
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--fg);
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h2 em {
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h3 {
  font-size: 22px;
  font-weight: 500;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gradient);
}

p {
  color: var(--fg-soft);
}

.lead {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 640px;
}

/* ===== Navigation ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  background: rgba(250, 250, 247, 0.78);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}


.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.brand__mark {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s var(--ease);
  position: relative;
}

.nav__link:hover, .nav__link.is-active {
  color: var(--fg);
}

.nav__link.is-active::after {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 1px;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--fg);
}

.nav__toggle svg {
  display: block;
}

@media (max-width: 720px) {
  .nav__toggle { display: block; }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: var(--bg-elev);
    flex-direction: column;
    padding: 88px 32px 32px;
    gap: 8px;
    border-left: 1px solid var(--line);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.08);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 100;
  }

  .nav__links.is-open {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .nav__link.is-active::after { display: none; }

  .nav__link.is-active {
    color: var(--accent);
  }

  .nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease);
  }

  .nav__overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient);
  color: #fff;
  border: none;
  box-shadow: 0 2px 12px var(--accent-glow);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.25);
  filter: brightness(1.08);
}

.btn--ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--line);
}

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

.btn__arrow {
  transition: transform 0.25s var(--ease);
}

.btn:hover .btn__arrow {
  transform: translateX(3px);
}

/* ===== Sections ===== */
section {
  padding: 80px 0;
}

@media (max-width: 720px) {
  section { padding: 52px 0; }
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 44px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ===== Hero ===== */
.hero {
  padding: 54px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero__sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 460px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.hero__meta {
  display: flex;
  gap: 32px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__meta-num {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__meta-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.hero__visual {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-top: 0;
}

.hero__visual svg {
  width: 100%;
  height: auto;
}

@media (max-width: 960px) {
  .hero { padding: 48px 0 56px; }
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__visual { max-width: 380px; margin: 0 auto; }
}

/* ===== Marquee / integrations strip ===== */
.strip {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.strip__label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  flex-shrink: 0;
}

.strip__items {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.strip__item {
  font-size: 14px;
  color: var(--fg-soft);
  font-weight: 500;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s var(--ease);
}

.strip__item:hover {
  color: var(--accent);
}

.strip__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.2s var(--ease);
}

.strip__item:hover .strip__icon {
  opacity: 1;
}

/* ===== Social proof ===== */
.proof {
  padding: 56px 0;
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.proof__card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.35s var(--ease);
}

.proof__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.proof__stars {
  display: flex;
  gap: 2px;
}

.proof__quote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-soft);
  font-style: italic;
}

.proof__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}

.proof__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
}

.proof__role {
  font-size: 12px;
  color: var(--muted);
}

/* ===== Card grids ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  border-radius: var(--radius) var(--radius) 0 0;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 40px var(--accent-glow), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.card:hover::before {
  opacity: 1;
}

.card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
}

.card__title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.card__body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

.card__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 6px;
  color: var(--accent);
  transition: color 0.3s var(--ease);
}

.card:hover .card__icon {
  color: var(--accent-2);
}

/* ===== Process / steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.step {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: background 0.3s var(--ease);
}

.step:hover {
  background: var(--accent-glow);
}

.step:last-child {
  border-right: none;
}

.step__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
}

.step__title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.step__body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: none; }
}

/* ===== Detailed capability list (Solutions page) ===== */
.cap-list {
  border-top: 1px solid var(--line);
}

.cap {
  display: grid;
  grid-template-columns: 80px 1fr 2fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: padding 0.3s var(--ease);
}

.cap:hover {
  padding-left: 12px;
  border-bottom-color: var(--accent);
}

.cap__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.12em;
  padding-top: 6px;
}

.cap__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.cap__body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 540px;
}

@media (max-width: 760px) {
  .cap { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
}

/* ===== CTA block ===== */
.cta-block {
  background: linear-gradient(135deg, #0c1a3a 0%, #1e3a6e 40%, #2563EB 100%);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: end;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.cta-block h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--bg);
}

.cta-block h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #7dd3fc 0%, #bae6fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-block p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-bottom: 24px;
}

.cta-block .btn--primary {
  background: #fff;
  color: var(--fg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.cta-block .btn--primary:hover {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  filter: none;
}

@media (max-width: 760px) {
  .cta-block { grid-template-columns: 1fr; padding: 36px 24px; }
}

/* ===== Form ===== */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.005em;
}

.field label span {
  color: var(--muted-2);
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--fg);
  transition: all 0.2s var(--ease);
  width: 100%;
  resize: vertical;
}

.field textarea {
  min-height: 120px;
  line-height: 1.5;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted-2);
}

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

/* ===== Form page layout ===== */
.connect-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 960px) {
  .connect-grid { grid-template-columns: 1fr; gap: 48px; }
}

.connect-aside {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.aside-block {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.aside-block h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 12px;
}

.aside-block p {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.55;
}

.next-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.next-step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
}

.next-step__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  padding-top: 3px;
  letter-spacing: 0.12em;
}

.next-step__text {
  font-size: 14px;
  color: var(--fg-soft);
  line-height: 1.5;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--line);
  padding: 44px 0 32px;
  margin-top: 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 720px) {
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__tag {
  font-size: 14px;
  color: var(--muted);
  max-width: 300px;
  line-height: 1.5;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: all 0.25s var(--ease);
}

.footer__social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

.footer__columns {
  display: flex;
  gap: 48px;
}

@media (max-width: 720px) {
  .footer__columns { gap: 32px; }
}

.footer__col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 16px;
}

.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col-links a {
  font-size: 14px;
  color: var(--fg-soft);
  transition: color 0.2s var(--ease);
}

.footer__col-links a:hover { color: var(--accent); }

.footer__col-note {
  font-size: 12px;
  color: var(--muted-2);
}

.footer__legal {
  width: 100%;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted-2);
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== Floating CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--gradient);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 40;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.4s var(--ease);
}

.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37, 99, 235, 0.4), 0 4px 12px rgba(0, 0, 0, 0.12);
}

.floating-cta svg {
  transition: transform 0.25s var(--ease);
}

.floating-cta:hover svg {
  transform: translateX(3px);
}

@media (max-width: 640px) {
  .floating-cta {
    right: 16px;
    bottom: 16px;
    font-size: 13px;
    padding: 12px 20px;
  }
}

/* ===== Hero orbital animations ===== */
.ring { transform-origin: 260px 260px; }
.ring--1 { animation: orbit 60s linear infinite; }
.ring--2 { animation: orbit 45s linear infinite reverse; }
.ring--3 { animation: orbit 30s linear infinite; }

@keyframes orbit {
  to { transform: rotate(360deg); }
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Field errors ===== */
.field__error {
  display: block;
  color: #FF5722;
  font-size: 13px;
  margin-top: 4px;
}

/* ===== Success state ===== */
.success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 24px;
  min-height: 60vh;
  justify-content: center;
}

.success.is-shown { display: flex; }

.success__icon { margin-bottom: 28px; }

.success__detail {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 480px;
  margin-top: 12px;
}

.success__next {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  text-align: left;
}

.success__step {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--body);
}

.success__step span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  flex-shrink: 0;
}
