/* ═══════════════════════════════════════════════════════
   TANNER PICARD — kovusolutions.cloud
   Style: Dark · Clean · Bold
═══════════════════════════════════════════════════════ */

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

:root {
  --bg:       #070B14;
  --bg2:      #0D1421;
  --bg3:      #111C2E;
  --border:   #1A2840;
  --text:     #DDE4EF;
  --muted:    #5A7A9A;
  --dim:      #2A3F58;
  --accent:   #3D8EF5;
  --accent2:  #F5722D;
  --green:    #2DD4A0;
  --font-d:   'Syne', sans-serif;
  --font-b:   'DM Sans', sans-serif;
  --nav-h:    64px;
  --max:      1100px;
  --r:        10px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
strong { color: #EEF2FA; font-weight: 600; }
em { color: #EEF2FA; font-style: italic; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}

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

/* ── NAVIGATION ───────────────────────────────────────── */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: border-color 0.3s;
}
#mainNav.scrolled { border-bottom-color: var(--border); }

.nav-logo {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  letter-spacing: 0.5px;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  color: var(--accent) !important;
  border: 1px solid rgba(61,142,245,0.35);
  padding: 7px 18px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover {
  background: var(--accent) !important;
  color: var(--bg) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 0;
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mob-link {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--muted);
  transition: color 0.2s;
}
.mob-link:hover, .mob-link:last-child { color: var(--text); }
.mob-cta { color: var(--accent) !important; border-bottom: none; }

/* ── HERO ─────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61,142,245,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,142,245,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-bg-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, transparent 40%, var(--bg) 100%);
}

.hero-content {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-d);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.eyebrow-sep { color: var(--dim); }

.hero-name {
  font-family: var(--font-d);
  font-size: clamp(56px, 10vw, 110px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -2px;
  color: #EEF2FA;
  margin-bottom: 2rem;
}
.name-row { display: block; }

.hero-tagline {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 3rem;
}
.br-desk { display: block; }

/* Email Gate */
.resume-gate {
  max-width: 420px;
}
.gate-label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0.75rem;
  letter-spacing: 0.3px;
}
.gate-row {
  display: flex;
  gap: 0;
  margin-bottom: 0.5rem;
}
.gate-row input {
  flex: 1;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--text);
  font-family: var(--font-b);
  font-size: 14px;
  padding: 12px 16px;
  border-radius: var(--r) 0 0 var(--r);
  outline: none;
  transition: border-color 0.2s;
}
.gate-row input:focus { border-color: var(--accent); }
.gate-row input::placeholder { color: var(--dim); }
.gate-row button {
  background: var(--accent);
  color: var(--bg);
  border: none;
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 0 var(--r) var(--r) 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
}
.gate-row button:hover { background: #5BA3FF; }
.gate-row button:active { transform: scale(0.98); }
.gate-row button:disabled { opacity: 0.6; cursor: not-allowed; }
.gate-note {
  font-size: 12px;
  color: var(--dim);
}
.gate-note.success { color: var(--green); }
.gate-note.error   { color: #F56B6B; }

/* Stats Bar */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 3rem;
  text-align: center;
}
.stat-n {
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-l {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.stat-div {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ── SECTION COMMONS ──────────────────────────────────── */
section { padding: 6rem 0; }
#about { background: var(--bg2); }
#work  { background: var(--bg); }
#projects { background: var(--bg2); }
#startup { background: var(--bg); }
#contact { background: var(--bg2); }

.section-tag {
  font-family: var(--font-d);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.section-h {
  font-family: var(--font-d);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: #EEF2FA;
  line-height: 1.1;
  margin-bottom: 3rem;
}

/* ── ABOUT ────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.tp-monogram {
  font-family: var(--font-d);
  font-size: 72px;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 2rem;
  letter-spacing: -2px;
}

.cert-block { margin-top: 1rem; }
.cert-title {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.cert-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cert-list li {
  font-size: 12px;
  color: var(--dim);
  padding-left: 1rem;
  position: relative;
  line-height: 1.4;
}
.cert-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.bio {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 15px;
}

.skills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2rem;
}
.skill {
  font-size: 12px;
  color: var(--accent);
  border: 1px solid rgba(61,142,245,0.25);
  background: rgba(61,142,245,0.06);
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

/* ── TIMELINE ─────────────────────────────────────────── */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tl-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0 1.5rem;
  padding-bottom: 3rem;
}
.tl-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6px;
}
.tl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent);
  flex-shrink: 0;
}
.tl-dot-founder { background: var(--green); box-shadow: 0 0 0 2px var(--green); }
.tl-dot-navy    { background: var(--dim);   box-shadow: 0 0 0 2px var(--dim); }
.tl-line {
  width: 1px;
  flex: 1;
  background: var(--border);
  margin-top: 6px;
  min-height: 40px;
}

.tl-body {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.tl-item:last-child .tl-body { border-bottom: none; }

.tl-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: 0.4rem;
}
.tl-company {
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 700;
  color: #EEF2FA;
}
.tl-period {
  font-size: 12px;
  color: var(--muted);
}
.tl-badge {
  font-size: 11px;
  background: rgba(45,212,160,0.1);
  color: var(--green);
  border: 1px solid rgba(45,212,160,0.25);
  padding: 2px 10px;
  border-radius: 100px;
}
.tl-role {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 1rem;
  font-style: italic;
}
.tl-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1rem;
}
.tl-bullets li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}
.tl-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--dim);
  font-size: 12px;
  top: 2px;
}
.tl-note {
  font-size: 14px;
  color: var(--dim);
  font-style: italic;
}
.tl-startup-link {
  font-size: 13px;
  color: var(--accent);
  display: inline-block;
  margin-top: 0.5rem;
  border-bottom: 1px solid rgba(61,142,245,0.3);
  transition: border-color 0.2s;
}
.tl-startup-link:hover { border-color: var(--accent); }

.ai-block {
  background: rgba(61,142,245,0.05);
  border: 1px solid rgba(61,142,245,0.15);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 0.75rem 1rem;
  margin-top: 1rem;
}
.ai-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.ai-text { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── PROJECTS ─────────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.proj-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem;
  transition: border-color 0.25s, transform 0.25s;
}
.proj-card:hover {
  border-color: rgba(61,142,245,0.4);
  transform: translateY(-3px);
}
.proj-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.proj-name {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 700;
  color: #EEF2FA;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.proj-desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }
.proj-nums {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}
.pnum { display: flex; flex-direction: column; }
.pnum-n {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.pnum-l { font-size: 11px; color: var(--dim); margin-top: 2px; }
.proj-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.proj-tags span {
  font-size: 11px;
  color: var(--muted);
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ── STARTUP ──────────────────────────────────────────── */
.startup-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.startup-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--border);
}
.startup-co {
  font-family: var(--font-d);
  font-size: 24px;
  font-weight: 800;
  color: #EEF2FA;
}
.startup-dates { font-size: 13px; color: var(--muted); margin-top: 2px; }
.startup-badge {
  background: rgba(245,114,45,0.1);
  color: var(--accent2);
  border: 1px solid rgba(245,114,45,0.3);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
}
.startup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.startup-block {
  padding: 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.startup-block:nth-child(even) { border-right: none; }
.startup-block:nth-child(3),
.startup-block:nth-child(4) { border-bottom: none; }
.startup-block-title {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  font-size: 11px;
}
.startup-block p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ── CONTACT ──────────────────────────────────────────── */
.contact-intro {
  font-size: 16px;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.8;
}
.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.role-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem 1.25rem;
  transition: border-color 0.25s, transform 0.25s;
}
.role-card:hover {
  border-color: rgba(61,142,245,0.4);
  transform: translateY(-3px);
}
.role-icon { font-size: 24px; margin-bottom: 0.75rem; }
.role-title {
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 700;
  color: #EEF2FA;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.role-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.c-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  cursor: pointer;
}
.c-link:last-child { border-bottom: none; }
.c-link:hover { background: var(--bg3); }
.c-link-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--dim);
  width: 70px;
  flex-shrink: 0;
}
.c-link-val {
  font-size: 15px;
  color: var(--text);
  flex: 1;
}
.c-link-arrow {
  color: var(--accent);
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-4px);
}
.c-link:hover .c-link-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-name {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.footer-meme {
  font-size: 13px;
  color: var(--accent2);
  border: 1px solid rgba(245,114,45,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  transition: background 0.2s;
}
.footer-meme:hover { background: rgba(245,114,45,0.1); }
.footer-copy { font-size: 12px; color: var(--dim); }

/* ── SCROLL REVEAL ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MEME LAB PAGE ────────────────────────────────────── */
body.meme-page { background: var(--bg); }

.meme-hero {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.meme-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,114,45,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,114,45,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.meme-eyebrow {
  font-family: var(--font-d);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--accent2);
  margin-bottom: 1.5rem;
}
.meme-title {
  font-family: var(--font-d);
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 800;
  color: #EEF2FA;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.meme-subtitle {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.7;
}

.meme-lab-section {
  padding: 3rem 0 6rem;
}
.meme-lab-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2rem;
}

.upload-zone {
  background: var(--bg2);
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  margin-bottom: 1.5rem;
  position: relative;
}
.upload-zone:hover, .upload-zone.dragover {
  border-color: var(--accent2);
  background: rgba(245,114,45,0.04);
}
.upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.upload-icon { font-size: 40px; margin-bottom: 1rem; }
.upload-text { font-size: 15px; color: var(--muted); margin-bottom: 0.5rem; }
.upload-hint { font-size: 12px; color: var(--dim); }
.upload-preview {
  max-width: 100%;
  max-height: 300px;
  border-radius: 8px;
  object-fit: contain;
  display: none;
  margin: 0 auto;
}

.grade-btn {
  width: 100%;
  background: var(--accent2);
  color: #fff;
  border: none;
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 700;
  padding: 16px;
  border-radius: var(--r);
  cursor: pointer;
  letter-spacing: 1px;
  transition: background 0.2s, transform 0.1s;
  margin-bottom: 2rem;
}
.grade-btn:hover { background: #F5892D; }
.grade-btn:active { transform: scale(0.99); }
.grade-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.result-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  display: none;
}
.result-card.visible { display: block; }
.result-grade-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.result-grade-letter {
  font-family: var(--font-d);
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent2);
}
.result-grade-label { font-size: 13px; color: var(--dim); margin-top: 4px; }
.result-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  white-space: pre-wrap;
}
.result-verdict {
  margin-top: 1.25rem;
  padding: 0.75rem 1rem;
  background: rgba(245,114,45,0.06);
  border-left: 3px solid var(--accent2);
  font-size: 14px;
  color: var(--text);
  font-style: italic;
}

.meme-loading {
  text-align: center;
  padding: 2rem;
  display: none;
}
.meme-loading.visible { display: block; }
.meme-loading-dots { color: var(--accent2); font-size: 28px; letter-spacing: 4px; animation: dots 1.2s infinite; }
.meme-loading-text { font-size: 14px; color: var(--muted); margin-top: 0.5rem; }
@keyframes dots {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .tp-monogram { font-size: 48px; }
  .cert-block { display: none; }
  .projects-grid { grid-template-columns: 1fr; }
  .startup-grid { grid-template-columns: 1fr; }
  .startup-block:nth-child(even) { border-right: none; }
  .startup-block:nth-child(3) { border-bottom: 1px solid var(--border); }
  .roles-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { gap: 1rem; }
  .stat { padding: 0 1.5rem; }
  .stat-div { display: none; }
  .br-desk { display: none; }
}

@media (max-width: 600px) {
  .hero-name { letter-spacing: -1px; }
  .roles-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .stats-bar { flex-direction: column; align-items: center; padding: 1.5rem; gap: 1.5rem; }
  .stat-div { display: none; }
  .startup-top { flex-direction: column; align-items: flex-start; gap: 1rem; }
  #mainNav { padding: 0 1.25rem; }
}
