/* ===== TOKENS ===== */
:root {
  --bg: #06060f;
  --bg2: #0d0d1f;
  --card: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --cyan: #00d4ff;
  --purple: #8b5cf6;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --font: 'Space Grotesk', sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: auto;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font);
}

.mono {
  font-family: var(--mono);
}

/* ===== NOISE OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ===== GLOW BG ===== */
body::after {
  content: '';
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 60vh;
  background: radial-gradient(ellipse at center,
      rgba(139, 92, 246, 0.12) 0%,
      rgba(0, 212, 255, 0.07) 50%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.glass-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.1), 0 0 60px rgba(0, 212, 255, 0.04);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, backdrop-filter 0.3s;
}

.navbar.scrolled {
  background: rgba(6, 6, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.nav-logo .dot {
  color: var(--cyan);
}

.nav-links {
  display: flex;
  gap: 8px;
  flex: 1;
}

.nav-dropdown {
  position: relative;
}

.nav-btn {
  color: var(--muted);
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-btn:hover {
  color: var(--text);
  background: var(--card);
}

.chev {
  font-size: 0.7rem;
  transition: transform 0.2s;
}

.nav-dropdown:hover .chev,
.nav-dropdown.open .chev {
  transform: rotate(180deg);
}

.drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(13, 13, 31, 0.95);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  min-width: 160px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
  backdrop-filter: blur(20px);
}

.nav-dropdown:hover .drop-menu,
.nav-dropdown.open .drop-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.drop-menu a {
  display: block;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 0.85rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.drop-menu a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.lang-btn {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.8rem;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.2s;
}

.lang-btn:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}

.contact-btn {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 10px;
  transition: opacity 0.2s, transform 0.2s;
}

.contact-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 100px 0 60px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  width: 100%;
}

.hero-text {
  flex: 1;
}

.hero-sub {
  color: var(--cyan);
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.hero-h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -2px;
}

.hi {
  color: var(--muted);
  font-weight: 400;
}

.firstname {
  color: var(--text);
}

.lastname {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-resume {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.85rem;
  padding: 12px 24px;
  border-radius: 10px;
  transition: all 0.25s;
}

.btn-resume:hover {
  background: rgba(0, 212, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.socials {
  display: flex;
  gap: 12px;
}

.soc-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--muted);
  transition: all 0.2s;
}

.soc-icon:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  background: rgba(0, 212, 255, 0.06);
}

/* ===== PHOTO / RINGS ===== */
.hero-photo {
  position: relative;
  flex-shrink: 0;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid transparent;
}

.r1 {
  width: 100%;
  height: 100%;
  border-color: rgba(0, 212, 255, 0.4);
  animation: spin1 8s linear infinite;
  background: linear-gradient(var(--bg), var(--bg)) padding-box,
    linear-gradient(135deg, var(--cyan), transparent 60%) border-box;
}

.r2 {
  width: 85%;
  height: 85%;
  border-color: rgba(139, 92, 246, 0.35);
  animation: spin2 12s linear infinite;
  background: linear-gradient(var(--bg), var(--bg)) padding-box,
    linear-gradient(225deg, var(--purple), transparent 60%) border-box;
}

.r3 {
  width: 70%;
  height: 70%;
  border-color: rgba(0, 212, 255, 0.2);
  animation: spin1 6s linear infinite reverse;
  background: linear-gradient(var(--bg), var(--bg)) padding-box,
    linear-gradient(45deg, var(--cyan), transparent 50%) border-box;
}

@keyframes spin1 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes spin2 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.avatar {
  position: relative;
  z-index: 2;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.15), 0 0 80px rgba(139, 92, 246, 0.1);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(139, 92, 246, 0.25));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 2px;
}

/* ===== SECTION COMMON ===== */
.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.sec-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 48px;
  position: relative;
  display: inline-block;
}

.sec-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
}

/* ===== UPDATES + STATS ===== */
.mid-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.mid-section .section-wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  align-items: start;
}

.updates-card {
  padding: 28px;
}

.card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.clock-icon {
  font-size: 1rem;
}

.card-label {
  color: var(--cyan);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.updates-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.update-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.update-row:last-child {
  border-bottom: none;
}

.upd-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.upd-text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text);
}

.upd-date {
  color: var(--muted);
  font-size: 0.75rem;
  white-space: nowrap;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  padding: 28px 20px;
  text-align: center;
}

.stat-num {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.stat-lbl {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

/* ===== EXPERIENCE ===== */
.exp-section {
  padding: 80px 0;
}

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

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, var(--cyan), var(--purple));
  opacity: 0.3;
}

.tl-item {
  position: relative;
  margin-bottom: 32px;
}

.tl-dot {
  position: absolute;
  left: -38px;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.5);
}

.tl-card {
  padding: 28px;
}

.tl-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.tl-company {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.tl-role {
  color: var(--cyan);
  font-size: 0.8rem;
}

.tl-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.tl-date {
  color: var(--muted);
  font-size: 0.75rem;
}

.tl-loc {
  color: var(--muted);
  font-size: 0.72rem;
}

.badge-planned {
  font-family: var(--mono);
  font-size: 0.68rem;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--cyan);
}

.tl-bullets {
  padding-left: 16px;
  margin-bottom: 16px;
}

.tl-bullets li {
  list-style: disc;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 6px;
  line-height: 1.6;
}

.tl-bullets li::marker {
  color: var(--purple);
}

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

.tag {
  font-family: var(--mono);
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: var(--purple);
}

/* ===== PROJECTS ===== */
.projects-section {
  padding: 80px 0;
}

.bento {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
}

.proj-card {
  padding: 32px;
}

.proj-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.proj-emoji {
  font-size: 2rem;
}

.proj-badge {
  font-family: var(--mono);
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
}

.proj-badge.tb {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--cyan);
}

.proj-badge.tek {
  background: rgba(251, 146, 60, 0.1);
  border: 1px solid rgba(251, 146, 60, 0.3);
  color: #fb923c;
}

.proj-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.proj-desc {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ===== SKILLS ===== */
.skills-section {
  padding: 80px 0;
}

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

.skill-group {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.3s;
}

.skill-group:hover {
  border-color: rgba(139, 92, 246, 0.3);
}

.sg-title {
  color: var(--cyan);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.skill-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sbadge {
  font-family: var(--mono);
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
  transition: all 0.2s;
}

.sbadge:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
  color: var(--purple);
}

/* ===== LEADERSHIP ===== */
.leadership-section {
  padding: 80px 0;
}

.lead-card {
  padding: 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.lead-emoji {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.lead-body {
  flex: 1;
}

.lead-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.lead-org {
  font-size: 1.2rem;
  font-weight: 600;
}

.lead-role {
  color: var(--cyan);
  font-size: 0.8rem;
  margin-bottom: 16px;
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 80px 0;
}

.contact-card {
  padding: 48px;
  text-align: center;
}

.contact-intro {
  color: var(--muted);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--muted);
  transition: all 0.2s;
}

.contact-link:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  background: rgba(0, 212, 255, 0.06);
}

.cl-icon {
  font-size: 1.1rem;
}

/* ===== GITHUB SECTION ===== */
.github-section {
  padding: 80px 0;
}

.blog-section {
  padding: 80px 0;
}

.sec-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 12px;
}

.sec-title-row .sec-title {
  margin-bottom: 0;
}

.view-all-btn {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--cyan);
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 7px 16px;
  border-radius: 8px;
  transition: all 0.2s;
}

.view-all-btn:hover {
  background: rgba(0, 212, 255, 0.08);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.15);
}

/* Skeleton loader */
.repos-grid,
.blog-grid {
  display: grid;
  gap: 16px;
}

.repos-grid {
  grid-template-columns: repeat(3, 1fr);
}

.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.repo-skeleton {
  height: 180px;
  border-radius: 14px;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.04) 25%,
      rgba(255, 255, 255, 0.08) 50%,
      rgba(255, 255, 255, 0.04) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Repo card */
.repo-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.repo-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.08);
  transform: translateY(-3px);
}

.repo-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.repo-icon {
  font-size: 1.1rem;
}

.repo-lang {
  font-family: var(--mono);
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.lang-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.repo-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.repo-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.repo-footer {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.repo-meta {
  font-size: 0.72rem;
  color: var(--muted);
}

/* Fetch error */
.fetch-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Blog card */
.blog-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}

.blog-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.08);
  transform: translateY(-3px);
}

.blog-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-icon {
  font-size: 1.3rem;
}

.blog-date {
  font-size: 0.72rem;
  color: var(--muted);
}

.blog-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.blog-read {
  font-size: 0.75rem;
  color: var(--purple);
}

.blog-empty {
  grid-column: 1 / -1;
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
}

/* ===== FOOTER ===== */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.footer-text {
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-photo {
    width: 260px;
    height: 260px;
  }

  .hero-actions {
    justify-content: center;
  }

  .socials {
    justify-content: center;
  }

  .mid-section .section-wrap {
    grid-template-columns: 1fr;
  }

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

  .bento {
    grid-template-columns: 1fr;
  }

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

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

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

  .tl-head {
    flex-direction: column;
  }

  .tl-meta {
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .nav-inner {
    padding: 0 16px;
  }

  .nav-links {
    display: none;
  }

  .section-wrap {
    padding: 0 16px;
  }

  .hero-inner {
    padding: 0 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-h1 {
    letter-spacing: -1px;
  }

  .lead-card {
    flex-direction: column;
  }

  .contact-card {
    padding: 28px 20px;
  }
}