/* ══════════════════════════════════════════════
   Cube³ Sistemas — Main Stylesheet
   https://cubesistemas.com.br
   ══════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --bg: #08090d;
  --bg2: #0e1017;
  --fg: #e8eaf0;
  --muted: #6b7084;
  --accent: #3b82f6;
  --accent-bright: #60a5fa;
  --accent-dim: rgba(59,130,246,0.12);
  --accent-glow: rgba(59,130,246,0.25);
  --card: #111318;
  --border: #1c1f2a;
  --border-hover: #2a2e3d;
  --radius: 14px;
  --mono: 'Kode Mono', monospace;
  --pixel: 'Kode Mono', monospace;
  --sans: 'IBM Plex Sans', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

/* ── Utilities ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

.tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-bright);
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tag::before {
  content: '//';
  color: var(--muted);
  font-weight: 400;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}
@keyframes cursorFade {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.15; }
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  backdrop-filter: blur(24px) saturate(1.2);
  background: rgba(8,9,13,0.75);
  border-bottom: 1px solid var(--border);
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--pixel);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo sup {
  color: var(--accent-bright);
  font-size: 14px;
  font-weight: 600;
  vertical-align: super;
  line-height: 1;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--mono);
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  font-family: var(--mono) !important;
  background: var(--accent);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 12px !important;
  text-decoration: none;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}
.nav-cta:hover {
  background: var(--accent-bright);
  box-shadow: 0 0 30px var(--accent-dim);
  transform: translateY(-1px);
}

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--fg); margin: 5px 0; transition: 0.3s; border-radius: 2px; }

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg2); border-bottom: 1px solid var(--border); padding: 24px 20px; gap: 20px; }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}
.hero-cube {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  opacity: 0.12;
  animation: float 10s ease-in-out infinite;
  pointer-events: none;
}
@media (max-width: 1024px) { .hero-cube { display: none; } }

.hero-glow {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.25;
  mask-image: radial-gradient(ellipse 50% 50% at 30% 50%, black 10%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-terminal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 40px;
  animation: fadeUp 0.6s ease forwards;
}
.hero-terminal .prompt { color: var(--accent-bright); }
.hero-terminal .cursor-blink {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: var(--accent);
  animation: blink 1s step-end infinite;
  border-radius: 1px;
}
.hero h1 {
  font-family: var(--pixel);
  font-size: clamp(32px, 5.5vw, 68px);
  line-height: 1.1;
  letter-spacing: -2px;
  font-weight: 700;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease 0.15s forwards;
  opacity: 0;
  max-width: 100%;
  overflow: hidden;
}
.hero h1 .accent { color: var(--accent-bright); }
.hero h1 .dim { color: var(--muted); font-weight: 300; }
.typewriter-line {
  display: block;
  height: 1.15em;
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
  width: 100%;
}
.typewriter-text {
  color: var(--accent-bright);
  display: inline;
}
.typewriter-text::after {
  content: '▌';
  color: var(--accent);
  font-weight: 400;
  margin-left: 2px;
  animation: cursorFade 1.2s ease-in-out infinite;
}
.hero-desc {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 44px;
  animation: fadeUp 0.8s ease 0.3s forwards;
  opacity: 0;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.45s forwards;
  opacity: 0;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 15px 30px;
  border-radius: 10px;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--fg);
  padding: 15px 30px;
  border-radius: 10px;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--border-hover); background: var(--bg2); }


/* ── MARQUEE ── */
.marquee-wrap {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 48px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.marquee-item::after {
  content: '■';
  font-size: 6px;
  color: var(--accent);
}

/* ── SERVICES ── */
.services { padding: 140px 0; }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 40px;
  flex-wrap: wrap;
}
.services-header h2 {
  font-family: var(--pixel);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -1.5px;
  font-weight: 700;
  max-width: 500px;
  line-height: 1.15;
}
.services-header h2 .accent { color: var(--accent-bright); }
.services-header p {
  color: var(--muted);
  font-size: 15px;
  max-width: 360px;
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, var(--accent-dim) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.service-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}
.service-card h3 {
  font-family: var(--pixel);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}
.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
.service-tags span {
  font-family: var(--mono);
  font-size: 11px;
  padding: 5px 12px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: 6px;
  color: var(--accent-bright);
  letter-spacing: 0.5px;
}

/* ── 
HOW WE WORK ── */
.how-we-work {
  padding: 140px 0;
  border-top: 1px solid var(--border);
}
.hww-header {
  text-align: center;
  margin-bottom: 72px;
}
.hww-header h2 {
  font-family: var(--pixel);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -1.5px;
  font-weight: 700;
}
.hww-header h2 .accent { color: var(--accent-bright); }
.hww-header p {
  color: var(--muted);
  font-size: 15px;
  max-width: 520px;
  margin: 16px auto 0;
  line-height: 1.7;
}
.hww-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) { .hww-grid { grid-template-columns: 1fr; } }
.hww-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.hww-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.hww-card .step-badge {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hww-card .step-badge::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--accent);
}
.hww-card h3 {
  font-family: var(--pixel);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.hww-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.hww-card ul {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hww-card ul li {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}
.hww-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ── PORTFOLIO ── */
.portfolio {
  padding: 140px 0;
  border-top: 1px solid var(--border);
}
.portfolio-header {
  text-align: center;
  margin-bottom: 72px;
}
.portfolio-header h2 {
  font-family: var(--pixel);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -1.5px;
  font-weight: 700;
}
.portfolio-header h2 .accent { color: var(--accent-bright); }
.portfolio-header p {
  color: var(--muted);
  font-size: 15px;
  max-width: 460px;
  margin: 16px auto 0;
  line-height: 1.7;
}
.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) { .cases-grid { grid-template-columns: 1fr; } }
.case-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.case-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.case-card-link { text-decoration: none; color: inherit; display: block; }
.case-preview {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-preview-losticos {
  background: url('../assets/images/losticos-preview.png') center/cover no-repeat;
}
.case-preview-up {
  background: url('../assets/images/upcar-preview.png') center/cover no-repeat;
}
.case-preview-losticos .case-preview-logo,
.case-preview-up .case-preview-logo { display: none; }
.case-preview-logo {
  font-family: var(--pixel);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  opacity: 0.9;
  text-align: center;
  line-height: 1.3;
}
.case-preview-logo span { color: var(--accent-bright); font-size: 14px; display: block; margin-top: 4px; font-family: var(--mono); font-weight: 400; }
.case-label {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: var(--fg);
}
.case-body { padding: 32px; }
.case-body h3 {
  font-family: var(--pixel);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.case-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.case-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.case-tech span {
  font-family: var(--mono);
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: 6px;
  color: var(--accent-bright);
}
.case-link {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent-bright);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.case-link:hover { gap: 10px; }


/* ── ABOUT ── */
.about {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }
.about h2 {
  font-family: var(--pixel);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 24px;
}
.about h2 .accent { color: var(--accent-bright); }
.about-text p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.diff-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.diff-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s;
}
.diff-item:hover { border-color: var(--border-hover); }
.diff-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  background: var(--accent-dim);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.diff-item h4 {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.diff-item p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* ── CTA / CONTACT ── */
.cta {
  padding: 140px 0;
  position: relative;
}
.cta-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 350px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  filter: blur(100px);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 2; }
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) { .cta-grid { grid-template-columns: 1fr; gap: 48px; } }
.cta-info h2 {
  font-family: var(--pixel);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -2px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.cta-info h2 .accent { color: var(--accent-bright); }
.cta-info > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--fg);
  transition: all 0.3s;
}
.cta-channel:hover { border-color: var(--border-hover); transform: translateX(4px); }
.cta-channel-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-channel-icon.whatsapp { background: rgba(37,211,102,0.12); color: #25D366; }
.cta-channel-icon.email { background: var(--accent-dim); color: var(--accent-bright); }
.cta-channel-text h4 {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-channel-text p {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}


/* ── Contact Form ── */
.cta-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
}
.cta-form-card h3 {
  font-family: var(--pixel);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.cta-form-card > p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  font-family: var(--sans);
  font-size: 14px;
  transition: border-color 0.3s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #3a3d4a;
}
.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7084' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group select option {
  background: var(--bg2);
  color: var(--fg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-submit {
  width: 100%;
  padding: 14px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--accent-glow);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.form-status {
  font-family: var(--mono);
  font-size: 13px;
  margin-top: 12px;
  text-align: center;
}
.form-status.success { color: #25D366; }
.form-status.error { color: #f87171; }

/* ── FOOTER ── */
footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-left .logo { font-size: 18px; }
.footer-left p {
  color: var(--muted);
  font-size: 12px;
  margin-top: 6px;
  font-family: var(--mono);
}
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-links a {
  font-family: var(--mono);
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--fg); }
.footer-bottom {
  text-align: center;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: #333;
  font-family: var(--mono);
}