/* ═══════════════════════════════════════════
   DiscoCast Visualizer — Promo Landing Page
   Museum Dark · Monochrome · Minimal
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  --bg-primary: #09090b;
  --bg-secondary: #0f0f12;
  --bg-card: rgba(255 255 255 / 0.025);
  --bg-card-hover: rgba(255 255 255 / 0.05);
  --bg-glass: rgba(255 255 255 / 0.03);
  --border-subtle: rgba(255 255 255 / 0.06);
  --border-hover: rgba(255 255 255 / 0.12);

  --text-primary: #e8e8ec;
  --text-secondary: rgba(232 232 236 / 0.55);
  --text-muted: rgba(232 232 236 / 0.3);

  /* Subtle accent — warm off-white, barely tinted */
  --accent: #d4d0c8;
  --accent-dim: rgba(212 208 200 / 0.08);
  --accent-warm: #c8b89a;
  --accent-cool: #9ab0c8;

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

body.beta-modal-open {
  overflow: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Beta Modal ── */
.promo-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at top, rgba(255 255 255 / 0.06), transparent 45%),
    rgba(5 5 7 / 0.82);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.promo-modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.promo-modal-card {
  width: min(100%, 720px);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: 28px;
  border: 1px solid rgba(255 255 255 / 0.1);
  background:
    linear-gradient(180deg, rgba(255 255 255 / 0.08) 0%, rgba(255 255 255 / 0.03) 100%),
    #111215;
  box-shadow:
    0 30px 80px rgba(0 0 0 / 0.5),
    inset 0 1px 0 rgba(255 255 255 / 0.06);
  overflow: hidden;
}

.promo-modal-header {
  padding: 40px 40px 24px 40px;
  flex-shrink: 0;
}

.promo-modal-scroll-area {
  padding: 0 40px;
  overflow-y: auto;
  flex-grow: 1;
  min-height: 0;
}

.promo-modal-scroll-area::-webkit-scrollbar {
  width: 6px;
}
.promo-modal-scroll-area::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
}
.promo-modal-scroll-area::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}
.promo-modal-scroll-area::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

.promo-modal-footer {
  padding: 24px 40px 40px 40px;
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.promo-modal-eyebrow {
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-warm);
}

.promo-modal-build {
  margin: -8px 0 0 !important;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-warm);
}

.promo-modal-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.3vw, 1.95rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.promo-modal-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.promo-modal-card p:last-of-type {
  margin-bottom: 0;
}

.promo-modal-subtitle {
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 24px;
  margin-bottom: 12px !important;
}

.promo-modal-list {
  list-style-type: disc;
  padding-left: 24px;
  margin-bottom: 24px;
  color: var(--text-secondary);
}

.promo-modal-list li {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

.promo-modal-list li strong {
  color: var(--text-primary);
}

.promo-modal-card a {
  color: var(--text-primary);
  text-decoration: underline;
  text-decoration-color: rgba(255 255 255 / 0.25);
  text-underline-offset: 0.18em;
}

.promo-modal-note {
  margin-top: 14px;
}

.promo-modal-button {
  margin-top: 0;
  width: fit-content;
  min-width: 0;
  padding: 12px 24px;
}

/* ── Ambient Background — very subtle ── */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-bg::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255 255 255 / 0.02) 0%, transparent 70%);
}

/* ── Container ── */
.container {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(9 9 11 / 0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.nav-cta {
  padding: 7px 18px;
  background: var(--text-primary);
  color: var(--bg-primary) !important;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
}

.nav-cta:hover {
  background: #fff;
  transform: translateY(-1px);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0 40px;
}

.hero-content { max-width: 720px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s var(--ease-out) both;
}

.hero-badge .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-warm);
  animation: dotPulse 3s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-logo {
  width: 380px;
  max-width: 100%;
  height: auto;
  margin: 0 auto 24px;
  border-radius: var(--radius-xl);
  box-shadow: 0 0 80px rgba(255 255 255 / 0.04);
  animation: fadeInUp 0.8s var(--ease-out) 0.1s both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.75;
  font-weight: 400;
  animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
}

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

.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255 255 255 / 0.08);
}

/* Smaller buttons for hero */
.hero-actions .btn {
  padding: 11px 22px;
  font-size: 0.8rem;
}

.hero-actions .btn-icon {
  width: 16px;
  height: 16px;
}

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

.btn-secondary:hover {
  color: var(--text-primary);
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Stats Bar ── */
.stats-bar {
  padding: 44px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.stat-item { animation: fadeInUp 0.6s var(--ease-out) both; }
.stat-item:nth-child(2) { animation-delay: 0.1s; }
.stat-item:nth-child(3) { animation-delay: 0.2s; }
.stat-item:nth-child(4) { animation-delay: 0.3s; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ── Section Headers ── */
.section {
  padding: 100px 0;
}

.section-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ── Divider ── */
.divider {
  border: none;
  height: 1px;
  background: var(--border-subtle);
  margin: 0;
}

/* ── Feature Cards Grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  position: relative;
  padding: 26px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all 0.4s var(--ease-out);
  overflow: hidden;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── Showcase (image placeholder) sections ── */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.showcase.reverse { direction: rtl; }
.showcase.reverse > * { direction: ltr; }

.showcase-visual {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
}

.showcase-visual-image-frame {
  aspect-ratio: auto;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showcase-image {
  width: 100%;
  height: auto;
  border-radius: inherit;
  border: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
  object-fit: contain;
}

.showcase-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.showcase-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

.showcase-content { padding: 8px 0; }

.showcase-content .feature-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.showcase-content .feature-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.showcase-content .feature-list .check-icon {
  position: absolute;
  left: 0;
  top: 2px;
  margin-top: 0;
}

.check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Image Layers Detail Section ── */
.image-layers {
  margin-top: 40px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.image-layers h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.image-layers-grid {
  column-count: 2;
  column-gap: 24px;
}

.il-item {
  position: relative;
  padding-left: 14px;
  margin-bottom: 12px;
  break-inside: avoid;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.il-item:last-child {
  margin-bottom: 0;
}

.il-item .il-dot {
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
}

/* ── Image Layer Categories ── */
.il-categories {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.il-category {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.il-category-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ── Keyboard Shortcuts Section ── */
.shortcuts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px;
}

.shortcut-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.shortcut-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}

.shortcut-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 26px;
  padding: 0 7px;
  background: rgba(255 255 255 / 0.05);
  border: 1px solid rgba(255 255 255 / 0.08);
  border-radius: 5px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.shortcut-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* ── Control Groups ── */
.controls-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.controls-group {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.controls-group-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.controls-group-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 640px;
}

.controls-group .shortcuts-grid {
  gap: 8px;
}

/* ── CTA Section ── */
.cta-section {
  text-align: center;
  padding: 100px 0;
}

.cta-card {
  position: relative;
  padding: 72px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255 255 255 / 0.08), transparent);
}

.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.cta-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 440px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ── Platform notes ── */
.platform-notes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.platform-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.platform-note svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

/* ── Footer ── */
.footer {
  padding: 44px 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-logo {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.footer-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  list-style: none;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

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

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s var(--ease-out) both;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    animation: none;
  }
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase { grid-template-columns: 1fr; gap: 36px; }
  .showcase.reverse { direction: ltr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .nav-links { display: none; }
  .image-layers-grid { column-count: 1; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 100px 0 60px; }
  .hero-logo { width: 280px; height: auto; }
  .section { padding: 72px 0; }
  .cta-card { padding: 48px 24px; }
  .shortcuts-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .download-actions .btn { width: auto; max-width: 280px; }
  .promo-modal-card { padding: 26px 22px; }
  .promo-modal-button { width: 100%; }
}

/* ── Lightbox trigger cursor ── */
.lightbox-trigger {
  cursor: zoom-in;
  transition: opacity 0.2s ease;
}
.lightbox-trigger:hover { opacity: 0.88; }

/* ── Lightbox overlay ── */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0 0 0 / 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

#lightbox.open {
  opacity: 1;
  pointer-events: all;
}

#lightbox-img {
  max-width: min(90vw, 1320px);
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 32px 80px rgba(0 0 0 / 0.6);
  transform: scale(0.95);
  transition: transform 0.25s var(--ease-out);
  object-fit: contain;
}

#lightbox.open #lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.lightbox-close:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
  border-color: var(--border-hover);
}
