/* Dispatcher landing — explicit grid, dark developer aesthetic */

:root {
  --bg: #09090b;
  --bg-elevated: #111113;
  --bg-card: #0c0c0e;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #fafafa;
  --text-muted: #a1a1aa;
  --text-subtle: #71717a;
  --accent: #818cf8;
  --accent-bright: #a5b4fc;
  --accent-dim: rgba(129, 140, 248, 0.12);
  --accent-glow: rgba(129, 140, 248, 0.35);
  --success: #34d399;
  --grid-color: rgba(255, 255, 255, 0.045);
  --grid-size: 64px;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --radius: 10px;
  --max-width: 1200px;
  --nav-height: 64px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  background-position: center top;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Layout ─────────────────────────────────────────────── */

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

.section {
  position: relative;
  padding-block: 5rem;
}

.section--tight {
  padding-block: 3rem;
}

.grid-frame {
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius);
}

.grid-frame--glow {
  box-shadow:
    0 0 0 1px var(--border),
    0 24px 80px -24px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* ── Navigation ─────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  border-bottom: 1px solid var(--border);
  background: rgba(9, 9, 11, 0.82);
  backdrop-filter: blur(12px);
}

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

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav__logo {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--accent) 0%, #6366f1 100%);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  padding: 0.45rem 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

.nav__link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ── Buttons ──────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid transparent;
  transition:
    background 0.15s,
    border-color 0.15s,
    transform 0.1s,
    box-shadow 0.15s;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

.btn--primary:hover {
  background: #e4e4e7;
  border-color: #e4e4e7;
}

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

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn--ghost {
  color: var(--text-muted);
  padding-inline: 0.75rem;
}

.btn--ghost:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.btn--lg {
  padding: 0.8rem 1.35rem;
  font-size: 0.9375rem;
}

.kbd-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: 0.35rem;
  padding: 0.1rem 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-subtle);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 4px;
  line-height: 1.4;
}

.btn--primary .kbd-hint {
  color: rgba(9, 9, 11, 0.55);
  background: rgba(9, 9, 11, 0.08);
  border-color: rgba(9, 9, 11, 0.12);
}

/* ── Hero ───────────────────────────────────────────────── */

.hero {
  padding-block: 5.5rem 4rem;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
  color: var(--accent-bright);
  background: var(--accent-dim);
  border: 1px solid rgba(129, 140, 248, 0.25);
  border-radius: 999px;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero__title span {
  background: linear-gradient(135deg, var(--text) 30%, var(--accent-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  margin: 0 auto 2.25rem;
  max-width: 38rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero__platforms {
  font-size: 0.8125rem;
  color: var(--text-subtle);
}

/* ── Product preview ────────────────────────────────────── */

.preview {
  margin-top: 3.5rem;
}

.preview__frame {
  overflow: hidden;
  border-radius: var(--radius);
}

.preview__chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.preview__dots {
  display: flex;
  gap: 0.35rem;
}

.preview__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.preview__dot:nth-child(1) {
  background: #f87171;
}
.preview__dot:nth-child(2) {
  background: #fbbf24;
}
.preview__dot:nth-child(3) {
  background: #34d399;
}

.preview__titlebar {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-subtle);
}

.preview__body {
  display: grid;
  grid-template-columns: 52px 1fr 1.4fr;
  min-height: 380px;
}

.preview__rail {
  border-right: 1px solid var(--border);
  padding: 0.75rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.preview__rail-item {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
}

.preview__rail-item--active {
  background: var(--accent-dim);
  border-color: rgba(129, 140, 248, 0.3);
}

.preview__tasks {
  border-right: 1px solid var(--border);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.preview__tasks-header {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-subtle);
}

.preview__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  flex: 1;
}

.preview__col-label {
  font-size: 0.65rem;
  color: var(--text-subtle);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.preview__card {
  padding: 0.5rem 0.6rem;
  font-size: 0.7rem;
  line-height: 1.35;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 0.35rem;
}

.preview__card--highlight {
  border-color: rgba(129, 140, 248, 0.4);
  background: var(--accent-dim);
  color: var(--text);
}

.preview__workspace {
  display: flex;
  flex-direction: column;
}

.preview__tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.preview__tab {
  padding: 0.55rem 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-subtle);
  border-bottom: 2px solid transparent;
}

.preview__tab--active {
  color: var(--accent-bright);
  border-bottom-color: var(--accent);
}

.preview__terminal {
  flex: 1;
  padding: 1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.35);
}

.preview__terminal .prompt {
  color: var(--accent-bright);
}

.preview__terminal .comment {
  color: var(--text-subtle);
}

.preview__terminal .success {
  color: var(--success);
}

/* ── Feature grid ───────────────────────────────────────── */

.features__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.section-desc {
  margin: 0 auto;
  max-width: 32rem;
  color: var(--text-muted);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}

.feature-card {
  padding: 1.75rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.02);
}

.feature-card:nth-child(3n) {
  border-right: none;
}

.feature-card:nth-last-child(-n + 3) {
  border-bottom: none;
}

.feature-card__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  background: var(--accent-dim);
  border: 1px solid rgba(129, 140, 248, 0.2);
  border-radius: 8px;
}

.feature-card__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.feature-card__desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ── Stats row ──────────────────────────────────────────── */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}

.stat {
  padding: 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}

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

.stat__value {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
}

.stat__label {
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: var(--text-subtle);
}

/* ── Testimonials ───────────────────────────────────────── */

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.testimonial {
  padding: 1.75rem;
  border-right: 1px solid var(--border);
  background: var(--bg-card);
}

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

.testimonial__quote {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dim), rgba(255, 255, 255, 0.06));
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-bright);
}

.testimonial__name {
  font-size: 0.875rem;
  font-weight: 500;
}

.testimonial__role {
  font-size: 0.75rem;
  color: var(--text-subtle);
}

/* ── CTA band ───────────────────────────────────────────── */

.cta-band {
  text-align: center;
  padding: 4rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 60% 80% at 50% 120%, var(--accent-glow), transparent),
    var(--bg-card);
}

.cta-band__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.cta-band__desc {
  margin: 0 auto 1.75rem;
  max-width: 28rem;
  color: var(--text-muted);
}

/* ── Footer ─────────────────────────────────────────────── */

.footer {
  border-top: 1px solid var(--border);
  padding-block: 3rem 2rem;
  margin-top: 2rem;
  background: rgba(0, 0, 0, 0.25);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer__brand-desc {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--text-subtle);
  max-width: 18rem;
}

.footer__col-title {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-subtle);
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.15s;
}

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

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-subtle);
}

.footer__shortcuts {
  display: flex;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.footer__shortcuts span {
  color: var(--text-subtle);
}

/* ── Legal pages ────────────────────────────────────────── */

.legal {
  padding-block: 3rem 5rem;
}

.legal__header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.legal__title {
  margin: 0 0 0.5rem;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.legal__updated {
  font-size: 0.875rem;
  color: var(--text-subtle);
}

.legal__content {
  max-width: 42rem;
}

.legal__content h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.legal__content h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.legal__content p,
.legal__content li {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.legal__content ul,
.legal__content ol {
  padding-left: 1.25rem;
}

.legal__content a {
  color: var(--accent-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

/* ── Support page ───────────────────────────────────────── */

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.support-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  transition: border-color 0.15s, background 0.15s;
}

.support-card:hover {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.02);
}

.support-card__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.support-card__desc {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.faq {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  background: var(--bg-card);
  transition: background 0.15s;
}

.faq__question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq__icon {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--text-subtle);
  transition: transform 0.2s;
}

.faq__item[open] .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
  background: var(--bg-card);
}

/* ── Keyboard shortcuts modal ───────────────────────────── */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.modal-overlay--open {
  opacity: 1;
  visibility: visible;
}

.modal {
  width: min(100%, 420px);
  padding: 1.5rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  transform: translateY(8px);
  transition: transform 0.2s;
}

.modal-overlay--open .modal {
  transform: translateY(0);
}

.modal__title {
  margin: 0 0 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem;
  color: var(--text-subtle);
  border-radius: 6px;
}

.modal__close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.shortcut-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.shortcut-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.shortcut-list kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  padding: 0.2rem 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 5px;
}

/* ── Toast ──────────────────────────────────────────────── */

.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 300;
  padding: 0.65rem 1.1rem;
  font-size: 0.875rem;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: transform 0.25s, opacity 0.25s;
  pointer-events: none;
}

.toast--visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ── Responsive ─────────────────────────────────────────── */

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

  .feature-card:nth-child(3n) {
    border-right: 1px solid var(--border);
  }

  .feature-card:nth-child(2n) {
    border-right: none;
  }

  .feature-card:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--border);
  }

  .feature-card:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(2) {
    border-right: none;
  }

  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .testimonial {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .testimonial:last-child {
    border-bottom: none;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .preview__body {
    grid-template-columns: 44px 1fr;
  }

  .preview__workspace {
    display: none;
  }
}

@media (max-width: 640px) {
  .nav__links {
    display: none;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    border-right: none !important;
  }

  .feature-card:not(:last-child) {
    border-bottom: 1px solid var(--border) !important;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }

  .stat:last-child {
    border-bottom: none;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .preview__body {
    grid-template-columns: 1fr;
  }

  .preview__rail {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Landing nav account icon (Clerk UserButton / Sign in) */
.nav__account {
  display: flex;
  align-items: center;
}
