/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
/* Global theme tokens */
:root {
  --bg: #000000;
  --fg: #f5f5f5;
  /* Primary accent: red */
  --accent: #ff3b3b;
}

/* Base reset */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--fg);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

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

a:hover {
  color: var(--accent);
}

/* Generic page + section layout */
.page {
  background: var(--bg);
  color: var(--fg);
}

.page--dark {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 5rem;
  padding-bottom: 0;
}

.section {
  padding: 3rem 3rem 0;
}

.section--narrow {
  max-width: 1180px;
  margin: 0 auto;
}

.section__header {
  margin-bottom: 2.5rem;
}

.story-detail__header {
	position: relative;
}

.story-detail__number {
	position: absolute;
	top: -0.75rem;
	left: -0.1rem;
	font-size: clamp(4.5rem, 10vw, 7rem);
	font-weight: 700;
	color: rgba(148, 163, 184, 0.12);
	z-index: 0;
	pointer-events: none;
}

.story-detail__header-text {
	position: relative;
	z-index: 1;
}

.section__eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.95);
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 0.75rem;
}

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

.section__subtitle {
  max-width: 44rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(209, 213, 219, 0.9);
}

/* Timeline intro two-column layout */
.timeline-intro {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  grid-gap: 2.5rem;
  gap: 2.5rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.timeline-intro__image-wrap {
  border-radius: 0.75rem;
  overflow: hidden;
  /* background: #020617; */
}

.timeline-intro__image {
  width: 100%;
  height: auto;
  display: block;
}

.timeline-intro__body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.timeline-intro__authors {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.95);
}

.timeline-intro__paragraph {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(209, 213, 219, 0.9);
}

/* Stories page cards */
.stories-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-gap: 1.5rem;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}

.story-card {
	position: relative;
	display: block;
	padding: 1.4rem 1.6rem;
	border-radius: 0.9rem;
	border: 1px solid rgba(55, 65, 81, 0.85);
	background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.96), #020617);
	overflow: hidden;
	transition: transform 160ms ease-out, box-shadow 160ms ease-out, border-color 160ms ease-out;
}

.story-card__media {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.18;
	filter: grayscale(1);
}

.story-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.9));
	z-index: 0;
}

.story-card__number {
	position: absolute;
	top: 0.7rem;
	left: 1.1rem;
	font-size: 7rem;
	font-weight: 700;
	letter-spacing: 0em;
	color: rgba(148, 163, 184, 0.16);
	z-index: 0;
	pointer-events: none;
}

.story-card__body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
}

.story-card__name {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.35rem;
}

.story-card__quote {
	font-size: 0.9rem;
	font-style: italic;
	color: rgba(248, 250, 252, 0.9);
	margin-bottom: 0.55rem;
}

.story-card__summary {
	font-size: 0.88rem;
	line-height: 1.6;
	color: rgba(209, 213, 219, 0.9);
}

.story-card:hover {
	transform: translateY(-3px);
	border-color: rgba(248, 113, 113, 0.9);
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
}

@media (max-width: 768px) {
	.stories-list {
		grid-template-columns: minmax(0, 1fr);
	}
}

.story-detail-layout {
	display: block;
}

.story-detail-layout::after {
	content: "";
	display: block;
	clear: both;
}

.story-detail {
	display: block;
	/* paragraphs inside will stack naturally and wrap around the floated image */
}

.story-detail__image {
	float: left;
	max-width: min(45%, 420px);
	margin: 0 1.75rem 1.5rem 0;
}

.story-detail__image-img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	border-radius: 0.75rem;
	overflow: hidden;
}

.story-detail__quote {
	max-width: 40rem;
	margin-top: 0.75rem;
	margin-bottom: 2rem;
	font-size: 1.05rem;
	line-height: 1.7;
	font-style: italic;
	color: rgba(209, 213, 219, 0.9);
	border-left: 2px solid var(--accent);
	padding-left: 1rem;
}

.story-detail__paragraph {
	font-size: 0.95rem;
	line-height: 1.8;
	color: rgba(209, 213, 219, 0.95);
}

.story-detail__header-top {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}

.story-detail__back {
	margin-left: 1.5rem;
	font-size: 0.8rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.story-detail__back a {
	color: rgba(148, 163, 184, 0.95);
}

.story-detail__back a:hover {
	color: var(--accent);
}

@media (max-width: 900px) {
	.story-detail-layout {
		display: block;
	}

	.story-detail__image {
		float: none;
		width: 100%;
		margin: 0 0 1.25rem 0;
	}
}

/* Generic image / art gallery – 4-column flex layout */
.gallery {
  display: flex;
  flex-wrap: wrap;
  padding: 5px 0;
  gap: 10px;
}

.gallery__column {
  flex: 25% 1;
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.gallery__item {
  overflow: hidden;
  border-radius: 0.5rem;
  background: #020617;
}

.gallery__img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item__caption {
  padding: 0.4rem 0.6rem 0.55rem;
  font-size: 0.78rem;
  color: rgba(209, 213, 219, 0.9);
}

@media (max-width: 900px) {
  .gallery__column {
    flex: 50% 1;
  }
}

@media (max-width: 600px) {
  .gallery__column {
    flex: 100% 1;
  }
}

/* Album-style art gallery – masonry columns, tight gaps */
.album {
	max-width: 1320px;
	margin: 0 auto;
	column-count: 3;
	column-gap: 6px;
}

.album__item {
	page-break-inside: avoid;
	break-inside: avoid;
	margin-bottom: 6px;
	overflow: hidden;
	border-radius: 0.5rem;
}

.album__item--clickable {
	cursor: pointer;
}

.album__item--clickable img {
	transition: transform 160ms ease-out, filter 160ms ease-out;
}

.album__item--clickable:hover img {
	transform: scale(1.03);
	filter: brightness(1.08);
}

.album__item img {
	width: 100%;
	height: auto;
	display: block;
}

@media (max-width: 900px) {
	.album {
		column-count: 2;
	}
}

@media (max-width: 600px) {
	.album {
		column-count: 1;
	}
}

/* Art page groups */
.art-group {
	margin-bottom: 2.75rem;
}

.art-group__title {
	margin: 2rem 0 0.9rem;
	font-size: 0.96rem;
	font-weight: 600;
}

/* Simple lightbox for art images */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 40;
	background: rgba(0, 0, 0, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
 	opacity: 0;
 	transition: opacity 180ms ease-out;
}

.lightbox__inner {
	max-width: min(960px, 94vw);
	max-height: min(90vh, 700px);
	position: relative;
	transform: scale(0.98);
	transition: transform 180ms ease-out;
}

.lightbox--open {
	opacity: 1;
}

.lightbox--open .lightbox__inner {
	transform: scale(1);
}

.lightbox--closing {
	opacity: 0;
}

.lightbox__image {
	display: block;
	max-width: 100%;
	max-height: 100%;
	border-radius: 0.75rem;
}

.lightbox__close {
	position: absolute;
	top: -2.5rem;
	right: 0;
	border: 0;
	background: transparent;
	color: rgba(209, 213, 219, 0.9);
	font-size: 1.8rem;
	cursor: pointer;
}

.lightbox__caption {
	margin-top: 0.75rem;
	font-size: 0.9rem;
	color: rgba(209, 213, 219, 0.9);
	text-align: center;
}

/* Editors / project team cards */
.team-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin-top: 2rem;
}

.team-card {
  padding: 1.1rem 1.3rem;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(55, 65, 81, 0.8);
  background: transparent;
  display: block;
  position: relative;
}

.team-card__photo {
  width: 120px;
  border-radius: 0.45rem;
  overflow: hidden;
  float: left;
  margin: 0 1.25rem 0.75rem 0;
}

.team-card__photo-img {
  width: 100%;
  height: auto;
  display: block;
}

.team-card__body {
  display: block;
}

.team-card__name {
  font-size: 1.02rem;
  font-weight: 600;
  margin: 0;
}

.team-card__role {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(148, 163, 184, 0.95);
}

.team-card__bio {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(209, 213, 219, 0.9);
}

/* Vertical timeline */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 3.5rem;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 1.05rem;
  top: 0.1rem;
  bottom: 0.1rem;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(148, 163, 184, 0.85),
    rgba(51, 65, 85, 0.6)
  );
}

.timeline__item {
  position: relative;
  display: flex;
  padding-left: 3.75rem;
  padding-bottom: 3rem;
  transition: transform 160ms ease-out, background-color 160ms ease-out;
}

.timeline__marker {
  position: absolute;
  left: 1.05rem;
  top: 1.5rem;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--bg);
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9);
  transform: translateX(-50%);
}

.timeline__content {
  max-width: 40rem;
  padding: 0.3rem 0 0;
}

.timeline__date {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.95);
  margin-bottom: 0.4rem;
}

.timeline__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.timeline__summary {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(209, 213, 219, 0.9);
}

.timeline__item:hover {
  transform: translateX(4px);
}

/* Top navigation bar */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}

.main-nav__logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.main-nav__logo span {
  color: var(--accent);
}

.main-nav__links {
  display: flex;
  gap: 1.75rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.main-nav__cta {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--bg);
  background: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.main-nav__cta:hover {
  background: transparent;
  color: var(--accent);
}

/* Mobile nav toggle (hamburger), hidden by default */
.main-nav__toggle {
  display: none;
  width: 36px;
  height: 32px;
  margin-left: 1rem;
  padding: 0;
  border: 1px solid rgba(148, 163, 184, 0.8);
  border-radius: 0.375rem;
  background: rgba(15, 23, 42, 0.9);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.main-nav__toggle-bar {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.96);
}

.main-nav__mobile-menu {
  display: none;
}

/* Hero slider */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 3rem 4rem;
  transition: opacity 700ms ease, transform 700ms ease;
}

.hero__slide--hidden {
  opacity: 0;
  transform: translateX(4%);
  pointer-events: none;
}

.hero__slide--active {
  opacity: 1;
  transform: translateX(0);
}

/* Hero text animation: fade + rise on active slide */
.hero__slide .hero__eyebrow,
.hero__slide .hero__title,
.hero__slide .hero__subtitle,
.hero__slide .hero__meta,
.hero__slide .hero__buttons {
  opacity: 0;
  transform: translateY(10px);
}

.hero__slide--active .hero__eyebrow,
.hero__slide--active .hero__title,
.hero__slide--active .hero__subtitle,
.hero__slide--active .hero__meta,
.hero__slide--active .hero__buttons {
  animation: hero-text-in 700ms ease-out forwards;
}

.hero__slide--active .hero__title {
  animation-delay: 60ms;
}

.hero__slide--active .hero__subtitle {
  animation-delay: 120ms;
}

.hero__slide--active .hero__meta {
  animation-delay: 180ms;
}

.hero__slide--active .hero__buttons {
  animation-delay: 220ms;
}

@keyframes hero-text-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  /* filter: grayscale(1); */
  /* opacity: 0.65; */
    /* show image in full color */
  filter: none;
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  /* display: none; */
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0, 0, 0, 0.45), transparent 55%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.45));
}

.hero__content {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  z-index: 2;
}

.hero__eyebrow,
.hero__title,
.hero__subtitle,
.hero__meta {
  color: #ffffff;
  /* subtle white glow to keep text readable on complex photos */
  /* text-shadow: 0 0 3px rgba(255, 255, 255, 0.7); */
}

.hero__eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hero__title {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

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

.hero__subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.hero__meta {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 2rem;
}

.hero__buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero__primary-btn,
.hero__ghost-btn {
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero__primary-btn {
  background: var(--accent);
  color: var(--bg);
  border: 1px solid var(--accent);
}

.hero__primary-btn:hover {
  background: transparent;
  color: var(--accent);
}

.hero__ghost-btn {
  background: transparent;
  border: 1px solid rgba(156, 163, 175, 0.7);
  color: rgba(229, 231, 235, 0.9);
}

.hero__ghost-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Slider controls (arrows, dots, scroll hint) */
.hero__controls {
  position: absolute;
  left: 3rem;
  right: 3rem;
  bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
}

.hero__arrows {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hero__arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(156, 163, 175, 0.55);
  background: rgba(0, 0, 0, 0.7);
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hero__arrow-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Hero mobile layout: ensure bottom slider controls are visible */
@media (max-width: 768px) {
	.hero__slide {
		padding-top: 4.2rem;      /* pull content slightly higher */
		padding-bottom: 2.1rem;   /* free some space for controls */
	}

	.hero__controls {
		bottom: 0.55rem;          /* sit closer to screen edge */
	}
}

.hero__dots {
  display: flex;
  gap: 0.4rem;
}

.hero__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(107, 114, 128, 0.7);
  cursor: pointer;
}

.hero__dot--active {
  width: 22px;
  background: var(--accent);
}

.hero__scroll-hint {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.9);
  text-align: center;
  cursor: pointer;
}

.hero__scroll-hint::after {
  /* SVG down arrow icon shown under the text */
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin: 0.5rem auto 0;
  background: center/contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 2v10M4.5 8.5 8 12l3.5-3.5' fill='none' stroke='%23ff3b3b' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  opacity: 0.9;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero__scroll-line {
  /* legacy vertical line hidden in favour of SVG icon */
  display: none;
}

.hero__scroll-hint:hover {
  color: var(--accent);
}

.hero__scroll-hint:hover::after {
  transform: translateY(3px);
  opacity: 1;
}

/* Site footer */
.site-footer {
  margin-top: auto;
  padding: 2.25rem 3rem 2.5rem;
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.96), #020617);
}

.site-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer__left {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.site-footer__text {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(148, 163, 184, 0.95);
}

.site-footer__copyright {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(100, 116, 139, 0.95);
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.site-footer__social-link {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.95);
}

.site-footer__social-link:hover {
  border-color: var(--accent);
}

.site-footer__icon {
  width: 14px;
  height: 14px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.site-footer__icon--fb {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23e5e7eb' d='M9.5 3.1h1.7V1H9.4C7.4 1 6 2.3 6 4.6v1.4H4.5V8h1.5v7h2.3V8h1.9l.3-2H8.3V4.5c0-.9.3-1.4 1.2-1.4z'/%3E%3C/svg%3E");
}

.site-footer__icon--x {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23e5e7eb' d='M3 3l3.9 5.3L3.2 13h1.5l3-3.9L10.8 13H13L8.9 7.5 12.6 3H11.1L8.4 6.5 5.9 3z'/%3E%3C/svg%3E");
}

.site-footer__back-to-top {
  position: fixed;
  right: 1.75rem;
  bottom: 1.75rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.site-footer__back-icon {
  width: 16px;
  height: 16px;
  display: block;
  background: center/contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 13V3M4.5 6.5 8 3l3.5 3.5' fill='none' stroke='%23e5e7eb' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.site-footer__back-to-top:hover {
  border-color: var(--accent);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .main-nav {
    padding: 1rem 1.5rem;
  }

  /* Hide desktop links + CTA on mobile */
  .main-nav__links,
  .main-nav__cta {
    display: none;
  }

  /* Show burger toggle on mobile */
  .main-nav__toggle {
    display: flex;
  }

  /* Mobile dropdown panel */
  .main-nav__mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 0.75rem 1.5rem 1.25rem;
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.96), #020617);
    border-bottom: 1px solid rgba(55, 65, 81, 0.9);
    display: none;
    flex-direction: column;
    gap: 0.75rem;
  }

  .main-nav--open .main-nav__mobile-menu {
    display: flex;
  }

  .main-nav__mobile-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(226, 232, 240, 0.96);
  }

  .main-nav__mobile-cta {
    margin-top: 0.25rem;
    align-self: flex-start;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    border: 1px solid var(--accent);
    background: var(--accent);
    color: var(--bg);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
  }

  .hero__content {
    padding-top: 3.5rem;
  }

  .hero__controls {
    left: 1.5rem;
    right: 1.5rem;
  }

  /* Mobile layout for hero buttons: stack and make full-width for better tap targets */
  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    max-width: 320px;
  }

  .hero__primary-btn,
  .hero__ghost-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding-inline: 1.4rem;
  }
}

/* Stack timeline intro on mobile */
@media (max-width: 768px) {
  .timeline-intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.75rem;
  }

  .site-footer {
    padding: 1.75rem 1.5rem 2rem;
  }

  .site-footer__inner {
    flex-direction: row;
    align-items: center;
  }
}

/* Stack timeline intro on mobile */
@media (max-width: 768px) {
  .timeline-intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.75rem;
  }
}

