/* ===========================
   Variables
=========================== */
:root {
  --navy: #0f172a;
  --navy-light: #1e293b;
  --blue: #3b82f6;
  --blue-dark: #2563eb;
  --blue-light: #60a5fa;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --text: #1e293b;
  --text-light: #64748b;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --transition: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

ul { list-style: none; }

/* ===========================
   Container
=========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   Buttons
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59,130,246,0.4);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--blue-light);
  border-color: rgba(255,255,255,0.2);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.35);
}

/* ===========================
   Navigation
=========================== */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  cursor: default;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.07);
}

.nav-links .nav-cta {
  background: var(--blue);
  color: #fff;
  margin-left: 8px;
}
.nav-links .nav-cta:hover {
  background: var(--blue-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ===========================
   Section Labels & Headers
=========================== */
.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ===========================
   Hero
=========================== */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(59,130,246,0.13) 0%, transparent 65%);
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.3), transparent);
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.25);
  color: var(--blue-light);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 32px;
  letter-spacing: 0.2px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-name {
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -3px;
  line-height: 1.02;
  margin-bottom: 14px;
}

.hero-title {
  font-size: clamp(17px, 2.2vw, 22px);
  color: var(--blue-light);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.2px;
}

.hero-tagline {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 13px;
  border-radius: 50px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.25);
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(255,255,255,0.2);
  border-bottom: 2px solid rgba(255,255,255,0.2);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

/* ===========================
   Impact Stats
=========================== */
#impact {
  background: var(--navy-light);
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.stat {
  text-align: center;
  padding: 40px 16px;
  border-right: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.stat:last-child { border-right: none; }

.stat-number {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  color: var(--blue-light);
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 11.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.45;
  font-weight: 500;
  max-width: 120px;
  margin: 0 auto;
}

/* ===========================
   About
=========================== */
#about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.avatar-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.avatar-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  background: var(--gray-100);
  color: var(--text);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.social-link:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.about-content h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 24px;
}

.about-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 16.5px;
}
.about-content p:last-of-type { margin-bottom: 24px; }

.about-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

/* ===========================
   Portfolio
=========================== */
#portfolio {
  padding: 100px 0;
  background: var(--gray-50);
}

.portfolio-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 600;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.filter-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.filter-btn.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

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

.portfolio-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.portfolio-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--gray-300);
}

.portfolio-card.featured {
  border: 1.5px solid rgba(59,130,246,0.2);
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}
.portfolio-card.featured:hover {
  border-color: rgba(59,130,246,0.35);
}

.portfolio-card.hidden {
  display: none;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.company-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.2px;
}
.company-badge.strider { background: #ede9fe; color: #5b21b6; }
.company-badge.canopy  { background: #d1fae5; color: #065f46; }
.company-badge.veracity { background: #fef3c7; color: #92400e; }

.category-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  background: var(--gray-100);
  padding: 3px 10px;
  border-radius: 50px;
}

.portfolio-card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

.portfolio-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
}

.card-metric {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-dark);
  background: rgba(59,130,246,0.07);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--blue);
  line-height: 1.4;
}

.card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}
.card-link:hover { color: var(--blue-dark); }

.card-link-sm {
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  transition: var(--transition);
  display: inline-block;
  padding: 3px 0;
  line-height: 1.4;
}
.card-link-sm:hover { color: var(--blue-dark); }

.multi-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.confidential-badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  background: var(--gray-100);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  display: inline-block;
  border: 1px solid var(--gray-200);
}

/* ===========================
   Experience
=========================== */
#experience {
  padding: 100px 0;
  background: var(--white);
}

.timeline {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  padding-left: 36px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue) 0%, var(--gray-200) 100%);
}

.timeline-item {
  position: relative;
  padding-bottom: 52px;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-marker {
  position: absolute;
  left: -32px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue);
}

.timeline-date {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.timeline-content h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
}

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

.timeline-content ul {
  list-style: disc;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.timeline-content ul li {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===========================
   Skills
=========================== */
#skills {
  padding: 100px 0;
  background: var(--gray-50);
}

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

.skill-group {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
}

.skill-group h4 {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--blue);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
}

.skill-group ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.skill-group ul li {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.4;
  padding-left: 12px;
  position: relative;
}
.skill-group ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gray-300);
}

/* ===========================
   Blog
=========================== */
#blog {
  padding: 100px 0;
  background: var(--white);
}

.blog-coming-soon {
  display: flex;
  justify-content: center;
}

.blog-placeholder {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 64px 48px;
  text-align: center;
  max-width: 540px;
  width: 100%;
}

.blog-pen-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gray-300);
}

.blog-placeholder h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.blog-placeholder p {
  font-size: 15.5px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}

.blog-signup {
  display: flex;
  gap: 8px;
}

.blog-signup input {
  flex: 1;
  padding: 10px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
}
.blog-signup input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.blog-signup button {
  padding: 10px 20px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
  white-space: nowrap;
}
.blog-signup button:hover { background: var(--blue-dark); }

/* ===========================
   Contact
=========================== */
#contact {
  padding: 100px 0;
  background: var(--navy);
}

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

.contact-content .section-label { color: var(--blue-light); }

.contact-content h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  line-height: 1.05;
}

.contact-content > p {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 36px;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
a.contact-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}
.contact-item.no-link { cursor: default; }

.contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(59,130,246,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  flex-shrink: 0;
}

.contact-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 3px;
}

.contact-value {
  font-size: 14.5px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.cta-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 40px;
}

.cta-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.35;
}

.cta-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
  line-height: 1.65;
}

.cta-card .btn {
  width: 100%;
  margin-bottom: 10px;
}

/* ===========================
   Footer
=========================== */
footer {
  background: #0a101f;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 32px 0;
}

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

.footer-logo {
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  letter-spacing: -0.3px;
}

.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

/* ===========================
   Responsive — Tablet
=========================== */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stat:nth-child(3) { border-right: none; }
  .stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.05); }
  .stat:nth-child(5) { border-top: 1px solid rgba(255,255,255,0.05); }
  .stat:nth-child(6) { border-top: 1px solid rgba(255,255,255,0.05); border-right: none; }

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

  .contact-grid { gap: 48px; }
}

/* ===========================
   Responsive — Mobile
=========================== */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 14px; }
  .nav-links .nav-cta { margin-left: 0; text-align: center; }

  #hero { padding: 100px 20px 72px; }
  .hero-name { letter-spacing: -2px; }
  .hero-ctas { flex-direction: column; align-items: center; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-sidebar {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
  .avatar-circle {
    width: 88px;
    height: 88px;
    font-size: 28px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .avatar-links { flex-direction: row; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.05); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.05); }

  .portfolio-grid { grid-template-columns: 1fr; }
  .skills-grid    { grid-template-columns: 1fr; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content { flex-direction: column; text-align: center; }

  .blog-signup { flex-direction: column; }
  .blog-placeholder { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none !important; border-top: 1px solid rgba(255,255,255,0.05) !important; }
  .stat:first-child { border-top: none !important; }

  .about-sidebar { flex-direction: column; }

  .timeline { padding-left: 28px; }
  .timeline-marker { left: -24px; }
}
