/* ============================================================
   FRANCISCO SANTOS BELMONTE — Personal Brand Website
   ============================================================ */

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

:root {
  --bg: #080C10;
  --bg-2: #0D1117;
  --bg-3: #111820;
  --surface: #131B24;
  --surface-2: #1A2535;
  --border: rgba(255,255,255,0.07);
  --border-2: rgba(255,255,255,0.12);
  --primary: #3B82F6;
  --primary-dark: #2563EB;
  --accent: #60A5FA;
  --glow: rgba(59, 130, 246, 0.15);
  --glow-2: rgba(99, 179, 237, 0.08);
  --text: #F1F5F9;
  --text-muted: #94A3B8;
  --text-subtle: #64748B;
  --gradient: linear-gradient(135deg, #3B82F6, #8B5CF6);
  --gradient-text: linear-gradient(135deg, #60A5FA, #A78BFA);
  --mono: 'JetBrains Mono', 'Courier New', monospace;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.6);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 3px; }

/* ── UTILITIES ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dot { color: var(--primary); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.section-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

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

.section-header h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.pill {
  display: inline-block;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin: 4px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(59,130,246,0.4);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(59,130,246,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-outline:hover {
  background: var(--surface);
  border-color: var(--primary);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 14px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
}
.btn-sm:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
}

#navbar.scrolled {
  background: rgba(8, 12, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin: 0;
  flex: 1;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.nav-links a:hover {
  color: var(--text);
  background: var(--surface);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.glow-1 {
  width: 600px;
  height: 600px;
  background: rgba(59, 130, 246, 0.12);
  top: -100px;
  right: -100px;
}
.glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(139, 92, 246, 0.08);
  bottom: 0;
  left: 10%;
}

.hero-content {
  width: 100%;
}

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

.hero-text h1 {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.hero-text .badge {
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

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

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

.stat-num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-2);
}

/* ── PHOTO ── */
.hero-photo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.photo-frame {
  position: relative;
  width: 220px;
  height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(59, 130, 246, 0.14);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 12px 48px rgba(0,0,0,0.6),
    0 0 80px rgba(59,130,246,0.07);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.25) contrast(1.04) brightness(0.88);
}

.photo-tint {
  position: absolute;
  inset: 0;
  background: rgba(59, 130, 246, 0.07);
  mix-blend-mode: color;
  pointer-events: none;
  z-index: 2;
}

.photo-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-subtle);
  white-space: nowrap;
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-subtle);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-decoration: none;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── ABOUT ── */
#about {
  padding: 120px 0;
  background: var(--bg-2);
}

.about-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: start;
  margin-bottom: 48px;
}

.about-text p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-text p strong {
  color: var(--text);
  font-weight: 600;
}

.about-pills {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.about-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  width: 240px;
}

.about-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}


/* ── EXPERTISE ── */
#expertise {
  padding: 120px 0;
}

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

.expertise-card {
  position: relative;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  overflow: hidden;
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.3s ease;
}

.expertise-card:hover {
  border-color: rgba(59,130,246,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.expertise-card:hover::before {
  background: var(--gradient);
}

.expertise-card.featured {
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(139,92,246,0.05));
  border-color: rgba(59,130,246,0.2);
  grid-column: span 1;
}

.expertise-card.featured::before {
  background: var(--gradient);
}

.card-number {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-subtle);
  margin-bottom: 20px;
  font-weight: 500;
}

.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59,130,246,0.1);
  border-radius: 12px;
  margin-bottom: 20px;
  color: var(--accent);
}

.expertise-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.expertise-card p {
  font-size: 14px;
  color: var(--text-subtle);
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.card-tags span {
  padding: 4px 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-subtle);
  font-weight: 500;
}

/* ── CAREER / TIMELINE ── */
#career {
  padding: 120px 0;
  background: var(--bg-2);
}

.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 0;
  width: 1px;
  background: var(--border-2);
}

.timeline-item {
  position: relative;
  padding: 0 0 56px 48px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -8px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 2px solid var(--border-2);
  transition: all 0.3s;
}

.timeline-item.current .timeline-dot {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(59,130,246,0.2);
}

.timeline-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  border-color: rgba(59,130,246,0.2);
  transform: translateX(4px);
}

.timeline-item.current .timeline-content {
  border-color: rgba(59,130,246,0.2);
  background: linear-gradient(135deg, rgba(59,130,246,0.05), var(--surface));
}

.timeline-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.timeline-date {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-subtle);
  font-weight: 500;
}

.timeline-badge {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.current-badge {
  background: rgba(59,130,246,0.15);
  color: var(--accent);
  border: 1px solid rgba(59,130,246,0.25);
}

.timeline-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.timeline-company {
  display: block;
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 16px;
}

.timeline-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.timeline-content p strong {
  color: var(--text);
}

.timeline-list {
  list-style: none;
  margin: 12px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.timeline-list li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.timeline-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.6;
}

.timeline-projects-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-subtle);
  margin: 20px 0 12px;
}

.timeline-projects {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.timeline-project {
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-left: 2px solid rgba(59,130,246,0.4);
  border-radius: 0 8px 8px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.project-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.project-desc {
  font-size: 13px;
  color: var(--text-subtle);
  line-height: 1.6;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.timeline-tags span {
  padding: 5px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-subtle);
  font-weight: 500;
}

/* ── COMPANY ── */
#company {
  padding: 120px 0;
  background: var(--bg-3);
}

.company-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.company-text .section-tag {
  margin-bottom: 12px;
}

.company-text h2 {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.company-tagline {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 24px;
  font-weight: 500;
}

.company-text > p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.company-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 36px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
}

.service-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.company-card-big {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.company-card-big::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
}

.company-logo-big {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  color: var(--text);
}

.company-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

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

.metric-value {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}

.metric-label {
  font-size: 11px;
  color: var(--text-subtle);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.company-brands {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.brand-pill {
  padding: 6px 14px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.18);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

.company-card-desc {
  font-size: 14px;
  color: var(--text-subtle);
  font-style: italic;
}

/* ── CONTACT ── */
#contact {
  padding: 120px 0;
}

.contact-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-block .section-header {
  margin-bottom: 0;
}

.contact-block .section-header p {
  margin-top: 20px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.25s ease;
  group: true;
}

.contact-card:hover {
  border-color: rgba(59,130,246,0.3);
  background: var(--surface-2);
  transform: translateX(4px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59,130,246,0.1);
  border-radius: 10px;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-label {
  font-size: 12px;
  color: var(--text-subtle);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-value {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}

.contact-arrow {
  color: var(--text-subtle);
  flex-shrink: 0;
  transition: all 0.2s;
}

.contact-card:hover .contact-arrow {
  color: var(--accent);
  transform: translate(2px, -2px);
}

/* ── FOOTER ── */
footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

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

.footer-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: -0.03em;
}

.footer-text {
  font-size: 13px;
  color: var(--text-subtle);
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-subtle);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-muted); }

/* ── ANIMATIONS ── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay for children */
[data-animate]:nth-child(2) { transition-delay: 0.1s; }
[data-animate]:nth-child(3) { transition-delay: 0.2s; }

.expertise-card:nth-child(1) { transition-delay: 0s; }
.expertise-card:nth-child(2) { transition-delay: 0.08s; }
.expertise-card:nth-child(3) { transition-delay: 0.16s; }
.expertise-card:nth-child(4) { transition-delay: 0.24s; }
.expertise-card:nth-child(5) { transition-delay: 0.32s; }
.expertise-card:nth-child(6) { transition-delay: 0.40s; }

.timeline-item:nth-child(1) .timeline-content { transition-delay: 0s; }
.timeline-item:nth-child(2) .timeline-content { transition-delay: 0.12s; }
.timeline-item:nth-child(3) .timeline-content { transition-delay: 0.24s; }
.timeline-item:nth-child(4) .timeline-content { transition-delay: 0.36s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-top,
  .company-block,
  .contact-block {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-right {
    width: 100%;
    align-items: center;
  }
  .expertise-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 600px) {
  #hero { padding: 100px 0 60px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .company-metrics { grid-template-columns: repeat(3, 1fr); }
  .contact-block { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .hero-text h1 { font-size: 48px; }
}

/* ── MOBILE NAV (open state) ── */
@media (max-width: 900px) {
  .nav-inner {
    flex-wrap: wrap;
    position: relative;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
    margin-top: 8px;
  }
  .nav-links.open li a {
    padding: 12px 16px;
    border-radius: 8px;
  }
}
