/* ============================================
   Sayam Mattoo — Editorial Portfolio
   ============================================ */

:root {
  --bg: #f7f5f2;
  --bg-alt: #efede9;
  --text-main: #111111;
  --text-muted: #6b6b6b;
  --text-light: #999999;
  --accent: #b45309;
  --accent-soft: rgba(180, 83, 9, 0.08);
  --border: rgba(17, 17, 17, 0.1);
  --border-hover: rgba(17, 17, 17, 0.2);
  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --container: 1200px;
  --header-h: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s ease;
}

:root[data-theme="dark"] {
  --bg: #0c0c0c;
  --bg-alt: #161616;
  --text-main: #f5f5f5;
  --text-muted: #999999;
  --text-light: #666666;
  --accent: #d97706;
  --accent-soft: rgba(217, 119, 6, 0.1);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.65;
  font-size: 1rem;
  font-weight: 400;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ---- Header ---- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(247, 245, 242, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: height var(--transition), background var(--transition), border-color var(--transition);
}

:root[data-theme="dark"] header {
  background: rgba(12, 12, 12, 0.85);
}

header.scrolled {
  height: 60px;
  border-bottom-color: var(--border);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1.5rem;
}

.logo {
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo-short {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--text-main);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-main);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition-fast);
}

.nav-cta:hover {
  border-color: var(--border-hover);
  background: var(--accent-soft);
}

.nav-cta .arrow {
  transition: transform var(--transition-fast);
}

.nav-cta:hover .arrow {
  transform: translate(2px, -2px);
}

.nav-cta-mobile {
  display: none;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  position: relative;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: '';
  position: absolute;
  left: 0;
}

.menu-icon::before { top: -7px; }
.menu-icon::after { top: 7px; }

.mobile-menu-btn[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.mobile-menu-btn[aria-expanded="true"] .menu-icon::before {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn[aria-expanded="true"] .menu-icon::after {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Hero ---- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  padding-bottom: 4rem;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: clamp(2.5rem, 7vw, 6.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 14ch;
  margin-bottom: 1.75rem;
}

.hero-role {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.hero-support {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition-fast), color var(--transition);
}

.btn .arrow {
  transition: transform var(--transition-fast);
}

.btn:hover .arrow {
  transform: translate(2px, -2px);
}

.btn-primary {
  background: var(--text-main);
  color: var(--bg);
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--text-main);
}

.btn-secondary:hover {
  border-color: var(--border-hover);
  background: var(--accent-soft);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

.hero-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-linkedin:hover {
  color: var(--text-main);
}

/* ---- Marquee ---- */
.marquee {
  overflow: hidden;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee-track-reverse {
  animation-direction: reverse;
  animation-duration: 35s;
}

.marquee-track span {
  flex-shrink: 0;
  padding-right: 3rem;
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- Sections ---- */
.section {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.section-heading {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: 18ch;
  margin-bottom: 2.5rem;
}

/* ---- About ---- */
.about-body {
  max-width: 640px;
}

.about-body p {
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.about-more {
  margin-top: 2rem;
  max-width: 640px;
}

.about-more summary {
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition-fast);
}

.about-more summary::-webkit-details-marker { display: none; }

.about-more summary::after {
  content: '↓';
  font-size: 0.75rem;
  transition: transform var(--transition);
}

.about-more[open] summary::after {
  transform: rotate(180deg);
}

.about-more summary:hover {
  color: var(--accent);
}

.about-more p {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ---- Stats ---- */
.stats-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.stat-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stat-number {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text-main);
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 240px;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  align-self: center;
}

/* ---- Experience ---- */
.exp-list {
  border-top: 1px solid var(--border);
}

.exp-item {
  border-bottom: 1px solid var(--border);
}

.exp-item summary {
  list-style: none;
  cursor: pointer;
}

.exp-item summary::-webkit-details-marker { display: none; }

.exp-summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: start;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  transition: opacity var(--transition-fast);
}

.exp-summary:hover {
  opacity: 0.75;
}

.exp-num {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-light);
  padding-top: 0.25rem;
}

.exp-title {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.exp-org {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.exp-date {
  font-size: 0.8125rem;
  color: var(--text-light);
}

.exp-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform var(--transition);
  line-height: 1;
  padding-top: 0.15rem;
}

.exp-item[open] .exp-toggle {
  transform: rotate(45deg);
}

.exp-details {
  padding: 0 0 clamp(1.5rem, 3vw, 2.5rem) clamp(2.5rem, 6vw, 5rem);
  max-width: 680px;
}

.exp-details p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.exp-details ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.exp-details li {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

/* ---- Work / Projects ---- */
.work-section {
  background: var(--bg-alt);
}

.project-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--border);
}

.project-category {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.project-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.project-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.35rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
  transition: border-color var(--transition-fast), color var(--transition-fast);
}

.tag:hover {
  border-color: var(--border-hover);
  color: var(--text-main);
}

/* Abstract data visual */
.project-visual {
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: transform var(--transition);
}

.project-featured:hover .project-visual {
  transform: scale(1.02);
}

.project-visual-data {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
}

.data-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

.data-viz {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  height: 60%;
  position: relative;
  z-index: 1;
}

.data-bar {
  width: clamp(24px, 4vw, 40px);
  height: var(--h);
  background: var(--accent);
  opacity: 0.7;
  border-radius: 2px 2px 0 0;
  transition: opacity var(--transition);
}

.project-featured:hover .data-bar {
  opacity: 1;
}

.data-line {
  position: absolute;
  bottom: 35%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  z-index: 2;
  opacity: 0.6;
}

/* Secondary project */
.project-secondary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.project-secondary-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 0.5rem;
}

.mini-stat-num {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.mini-stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---- Toolkit ---- */
.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
}

.toolkit-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.toolkit-list li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  transition: color var(--transition-fast);
}

.toolkit-list li:hover {
  color: var(--text-main);
}

/* ---- Research ---- */
.research-list {
  display: flex;
  flex-direction: column;
}

.research-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  border-bottom: 1px solid var(--border);
  transition: opacity var(--transition-fast);
}

.research-item:first-child {
  border-top: 1px solid var(--border);
}

.research-item:hover {
  opacity: 0.75;
}

.research-title {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  max-width: 680px;
}

.research-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.research-link {
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--transition), transform var(--transition), color var(--transition-fast);
  white-space: nowrap;
}

.research-item:hover .research-link,
.research-item:focus-visible .research-link {
  opacity: 1;
  transform: translateX(0);
  color: var(--accent);
}

/* ---- Education ---- */
.education-section {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.education-degree {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.education-school {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.education-meta {
  font-size: 0.875rem;
  color: var(--text-light);
}

.education-secondary {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.education-secondary p {
  font-size: 0.8125rem;
  color: var(--text-light);
}

/* ---- Certifications ---- */
.certs-section {
  padding-top: 0;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.certs-list li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}

.certs-list li:first-child {
  border-top: 1px solid var(--border);
}

/* ---- Final CTA ---- */
.cta-section {
  padding: clamp(6rem, 12vw, 10rem) 0;
  border-top: 1px solid var(--border);
}

.cta-headline {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.cta-support {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  font-size: 0.9375rem;
}

.cta-links a {
  color: var(--text-muted);
  font-weight: 500;
}

.cta-links a:hover {
  color: var(--text-main);
}

.cta-sep {
  color: var(--text-light);
}

/* ---- Footer ---- */
footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-name {
  font-weight: 600;
  font-size: 0.9375rem;
}

.footer-links {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--text-main);
}

.footer-copy p {
  font-size: 0.8125rem;
  color: var(--text-light);
}

/* ---- Theme Toggle ---- */
.theme-toggle {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-main);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.125rem;
  z-index: 90;
  transition: transform var(--transition-fast), border-color var(--transition);
}

.theme-toggle:hover {
  transform: scale(1.08);
  border-color: var(--border-hover);
}

/* ---- Reveal Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .marquee-track {
    animation: none;
  }

  .research-link {
    opacity: 1;
    transform: none;
  }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .toolkit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-featured {
    grid-template-columns: 1fr;
  }

  .project-visual {
    max-height: 320px;
  }
}

@media (max-width: 768px) {
  .logo-full { display: none; }
  .logo-short { display: inline; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg);
    border-left: 1px solid var(--border);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.125rem;
  }

  .nav-actions .nav-cta {
    display: none;
  }

  .nav-cta-mobile {
    display: block;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }

  .nav-cta-mobile .nav-cta {
    display: inline-flex;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 101;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .stat-divider {
    display: none;
  }

  .exp-summary {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
  }

  .exp-details {
    padding-left: 2.5rem;
  }

  .project-secondary {
    grid-template-columns: 1fr;
  }

  .project-secondary-stats {
    flex-direction: row;
    gap: 2rem;
  }

  .toolkit-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .research-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .research-link {
    opacity: 1;
    transform: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    max-width: none;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .project-secondary-stats {
    flex-direction: column;
    gap: 1.25rem;
  }
}
