/* ============================================================
   Lefthanded Foundation — Style Sheet
   Theme: Brutalist Minimalist (Black & Yellow)
   ============================================================ */

/* ── IMPORTS ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

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

:root {
  --bg: #080808;
  --fg: #f5f5f5;
  --yellow: #FFD000;
  --card: #111111;
  --border: #262626;
  --muted: #8c8c8c;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Mobile side borders — subtle frame around the whole page */
@media (max-width: 767px) {
  body {
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }
}

::selection {
  background: var(--yellow);
  color: var(--bg);
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--yellow); }

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

img { max-width: 100%; height: auto; display: block; }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-mono);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

input, button { font-family: inherit; }

/* ── UTILITY CLASSES ──────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) {
  .container { padding: 0 1.5rem; }
}

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

.label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
}

.text-yellow { color: var(--yellow); }
.bg-yellow { background-color: var(--yellow); }
.text-muted { color: var(--muted); }
.text-black { color: var(--bg); }

.border-b { border-bottom: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── NAVBAR ───────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar__logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.navbar__logo-name {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: -0.02em;
  color: var(--yellow);
}
.navbar__logo-sub {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.navbar__links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.navbar__links a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.15s;
}
.navbar__links a:hover,
.navbar__links a.active {
  color: var(--yellow);
}
.navbar__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar__cta {
  display: none;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--bg);
  padding: 0.5rem 1.25rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.navbar__cta:hover { background: #fff; }

.navbar__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg);
  transition: color 0.15s;
}
.navbar__hamburger:hover { color: var(--yellow); }
.navbar__hamburger svg { width: 20px; height: 20px; }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  transition: background 0.15s, color 0.15s;
}
.mobile-menu a:hover {
  background: var(--yellow);
  color: var(--bg);
}
.mobile-menu a.active { color: var(--yellow); }
.mobile-menu__cta {
  display: block;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  background: var(--yellow);
  color: var(--bg);
}

@media (min-width: 768px) {
  .navbar__links { display: flex; }
  .navbar__cta { display: inline-block; }
  .navbar__hamburger { display: none; }
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
}
.hero__strip {
  background: var(--yellow);
  padding: 0.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero__strip span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
}
.hero__strip-date { display: none; }

.hero__grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
}
.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__heading {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero__sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 28rem;
  margin-bottom: 2rem;
}
.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 1rem 1.5rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  text-align: center;
}
.btn--primary {
  background: var(--yellow);
  color: var(--bg);
}
.btn--primary:hover { background: #fff; }
.btn--outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}
.btn--dark {
  background: var(--bg);
  color: var(--yellow);
}
.btn--dark:hover { background: #fff; color: var(--bg); }
.btn--outline-dark {
  background: transparent;
  color: var(--bg);
  border: 2px solid var(--bg);
}
.btn--outline-dark:hover {
  background: var(--bg);
  color: var(--yellow);
}

.hero__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__stat-box {
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.hero__stat-value {
  font-family: var(--font-mono);
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.hero__stat-desc {
  color: var(--muted);
  font-size: 1rem;
}
.hero__stat-desc strong { color: var(--fg); }

.hero__tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero__tag {
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.hero__tag span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero__tag svg { width: 12px; height: 12px; color: var(--yellow); }
.hero__tag:hover {
  background: var(--yellow);
  color: var(--bg);
}
.hero__tag:hover svg { color: var(--bg); }

@media (min-width: 640px) {
  .hero__buttons { flex-direction: row; }
  .hero__strip-date { display: inline; }
}
@media (min-width: 768px) {
  .hero { min-height: 90vh; }
  .hero__strip { padding: 0.5rem 1.5rem; }
  .hero__strip span { font-size: 0.7rem; }
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 4rem 0;
  }
  .hero__left {
    border-right: 1px solid var(--border);
    padding-right: 3rem;
  }
  .hero__right { padding-left: 3rem; }
  .hero__stat-box { padding: 2.5rem; margin-bottom: 1.5rem; }
  .hero__tag { padding: 1rem; }
  .hero__tag span { font-size: 0.7rem; }
}

/* ── TICKER ───────────────────────────────────────────── */
.ticker {
  background: var(--yellow);
  padding: 0.5rem 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.ticker__item {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  padding: 0 1rem;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .ticker { padding: 0.75rem 0; }
  .ticker__item { padding: 0 2rem; font-size: 0.7rem; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── STATS STRIP ──────────────────────────────────────── */
.stats {
  border-bottom: 1px solid var(--border);
}
.stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.stats__item {
  padding: 1.5rem 1.25rem;
  border-right: 1px solid var(--border);
  transition: background 0.15s;
  overflow: hidden;
}
.stats__item:nth-child(2n) { border-right: none; }
.stats__item:hover { background: var(--yellow); }
.stats__item:hover .stats__value { color: var(--bg); }
.stats__item:hover .stats__label { color: var(--bg); }
.stats__value {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 0.25rem;
  transition: color 0.15s;
  word-break: break-word;
}
.stats__label {
  color: var(--muted);
  font-size: 0.7rem;
  transition: color 0.15s;
}
@media (min-width: 768px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
  .stats__item { padding: 3rem 2rem; }
  .stats__item:nth-child(2n) { border-right: 1px solid var(--border); }
  .stats__item:last-child { border-right: none; }
  .stats__label { font-size: 0.75rem; }
}

/* ── MISSION ──────────────────────────────────────────── */
.mission {
  border-bottom: 1px solid var(--border);
}
.mission__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 3.5rem 0;
}
.mission__heading {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.mission__text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 28rem;
  margin-bottom: 1.5rem;
}
.mission__link {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.15s;
}
.mission__link:hover { color: #fff; }

.quote-box {
  border: 1px solid var(--yellow);
  padding: 1.5rem;
}
.quote-box blockquote {
  font-family: var(--font-mono);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.quote-box cite {
  color: var(--muted);
  font-size: 0.875rem;
  font-style: normal;
}
.quote-box__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  border-top: 1px solid var(--border);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}
.quote-box__stat-value {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--yellow);
}
.quote-box__stat-label {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.25rem;
}
@media (min-width: 768px) {
  .mission__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 0;
  }
  .quote-box { padding: 2rem; }
  .quote-box__stat-value { font-size: 1.5rem; }
}

/* ── RESOURCES ────────────────────────────────────────── */
.resources {
  border-bottom: 1px solid var(--border);
}
.resources__inner { padding: 3.5rem 0; }
.resources__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.resources__heading {
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}
.resources__all {
  display: none;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
  transition: border-color 0.15s, color 0.15s;
  align-self: flex-start;
}
.resources__all:hover { border-color: var(--yellow); color: var(--yellow); }

.resources__grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--border);
}
.resource-card {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.resource-card:last-child { border-bottom: none; }
.resource-card:hover { background: var(--card); }
.resource-card__number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.resource-card__title {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: color 0.15s;
}
.resource-card:hover .resource-card__title { color: var(--yellow); }
.resource-card__desc {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.resource-card__link {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.15s;
}
.resource-card__link:hover { color: #fff; }

.resources__all-mobile {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
  transition: border-color 0.15s, color 0.15s;
}
.resources__all-mobile:hover { border-color: var(--yellow); color: var(--yellow); }

@media (min-width: 640px) {
  .resources__all-mobile { display: none; }
  .resources__all { display: inline-flex; }
  .resources__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
  }
}
@media (min-width: 768px) {
  .resources__inner { padding: 5rem 0; }
  .resources__grid { grid-template-columns: repeat(3, 1fr); }
  .resource-card {
    padding: 2rem;
    border-bottom: none;
    border-right: 1px solid var(--border);
  }
  .resource-card:last-child { border-right: none; }
  .resource-card__number { margin-bottom: 1.5rem; }
  .resource-card__title { font-size: 1.5rem; margin-bottom: 1rem; }
  .resource-card__desc { margin-bottom: 2rem; }
}

/* ── EVENTS PEEK ─────────────────────────────────────── */
.events-peek {
  border-bottom: 1px solid var(--border);
}
.events-peek__inner {
  padding: 3.5rem 0;
}
.events-peek__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.events-peek__heading {
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}
.events-peek__all {
  display: none;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
  transition: border-color 0.15s, color 0.15s;
  align-self: flex-start;
}
.events-peek__all:hover { border-color: var(--yellow); color: var(--yellow); }

.events-peek__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--border);
}
.event-card {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  overflow: hidden;
}
.event-card:last-child { border-bottom: none; }
.event-card:hover { background: var(--card); }

.event-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--border);
  filter: grayscale(30%);
  transition: filter 0.3s;
}
.event-card:hover .event-card__img { filter: grayscale(0%); }

.event-card__body {
  padding: 1.25rem;
}
.event-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.event-card__date {
  border: 1px solid var(--yellow);
  padding: 0.5rem 0.75rem;
  text-align: center;
  min-width: 3.5rem;
}
.event-card__month {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
}
.event-card__day {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}
.event-card__tag {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
}
.event-card__title {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color 0.15s;
}
.event-card:hover .event-card__title { color: var(--yellow); }
.event-card__desc {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}
.event-card__location {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--muted);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}
.event-card__info { min-width: 0; }

.events-peek__all-mobile {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
  transition: border-color 0.15s, color 0.15s;
}
.events-peek__all-mobile:hover { border-color: var(--yellow); color: var(--yellow); }

@media (min-width: 640px) {
  .events-peek__all-mobile { display: none; }
  .events-peek__all { display: inline-flex; }
  .events-peek__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
  }
}
@media (min-width: 768px) {
  .events-peek__inner { padding: 5rem 0; }
  .events-peek__grid { grid-template-columns: repeat(3, 1fr); }
  .event-card {
    border-bottom: none;
    border-right: 1px solid var(--border);
  }
  .event-card:last-child { border-right: none; }
  .event-card__img { height: 200px; }
  .event-card__title { font-size: 1.05rem; }
}

/* ── GALLERY SLIDER ──────────────────────────────────── */
.gallery {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.gallery__inner {
  padding: 3.5rem 0;
}
.gallery__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.gallery__heading {
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}
.gallery__controls {
  display: flex;
  gap: 0.5rem;
  align-self: flex-start;
}
.gallery__btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.gallery__btn:hover {
  background: var(--yellow);
  color: var(--bg);
  border-color: var(--yellow);
}
.gallery__track-wrap {
  overflow: hidden;
  margin: 0 -1.25rem;
  padding: 0 1.25rem;
}
.gallery__track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery__slide {
  flex: 0 0 85%;
  max-width: 85%;
  position: relative;
  overflow: hidden;
}
.gallery__slide img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.3s, transform 0.5s;
}
.gallery__slide:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}
.gallery__slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(transparent, rgba(8,8,8,0.9));
}
.gallery__slide-caption p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gallery__dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.gallery__dot {
  width: 8px;
  height: 8px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s, border-color 0.15s;
}
.gallery__dot.active {
  background: var(--yellow);
  border-color: var(--yellow);
}
@media (min-width: 640px) {
  .gallery__slide { flex: 0 0 55%; max-width: 55%; }
  .gallery__slide img { height: 400px; }
  .gallery__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .gallery__inner { padding: 5rem 0; }
  .gallery__slide { flex: 0 0 42%; max-width: 42%; }
  .gallery__slide img { height: 480px; }
  .gallery__track-wrap { margin: 0 -1.5rem; padding: 0 1.5rem; }
}

/* ── JOIN & LEARN MORE ───────────────────────────────── */
.join-learn {
  border-bottom: 1px solid var(--border);
}
.join-learn__grid {
  display: grid;
  grid-template-columns: 1fr;
}
.join-learn__box {
  padding: 2.5rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.join-learn__box:last-child { border-bottom: none; }
.join-learn__box h3 {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.join-learn__box h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.join-learn__box p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 28rem;
}
.join-learn__box--yellow {
  background: var(--yellow);
}
.join-learn__box--yellow h3 { color: var(--bg); }
.join-learn__box--yellow h2 { color: var(--bg); }
.join-learn__box--yellow p { color: rgba(8,8,8,0.7); }
@media (min-width: 768px) {
  .join-learn__grid { grid-template-columns: 1fr 1fr; }
  .join-learn__box {
    padding: 4rem 3rem;
    border-bottom: none;
    border-right: 1px solid var(--border);
  }
  .join-learn__box:last-child { border-right: none; }
}

/* ── FULL EVENTS PAGE ────────────────────────────────── */
.events-full {
  border-bottom: 1px solid var(--border);
}
.events-full__inner {
  padding: 3.5rem 0;
}
.events-full__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.event-full-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.15s;
}
.event-full-card:hover { border-color: var(--yellow); }
.event-full-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: grayscale(30%);
  transition: filter 0.3s;
}
.event-full-card:hover .event-full-card__img { filter: grayscale(0%); }
.event-full-card__body {
  padding: 1.5rem;
}
.event-full-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.event-full-card__date-badge {
  border: 1px solid var(--yellow);
  padding: 0.5rem 0.75rem;
  text-align: center;
  min-width: 3.5rem;
}
.event-full-card__tag {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
}
.event-full-card__title {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: color 0.15s;
}
.event-full-card:hover .event-full-card__title { color: var(--yellow); }
.event-full-card__desc {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.event-full-card__location {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
@media (min-width: 640px) {
  .events-full__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .events-full__inner { padding: 5rem 0; }
  .event-full-card__img { height: 240px; }
  .event-full-card__body { padding: 2rem; }
}

/* ── ROADMAP ─────────────────────────────────────────── */
.roadmap {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.roadmap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 70%, rgba(255,208,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.roadmap__inner {
  padding: 3.5rem 0;
  position: relative;
  z-index: 1;
}
.roadmap__header {
  text-align: center;
  margin-bottom: 3rem;
}
.roadmap__heading {
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.roadmap__sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 38rem;
  margin: 0 auto;
}
.roadmap__timeline {
  position: relative;
}

/* SVG Curve */
.roadmap__curve {
  display: none;
  width: 100%;
  height: 200px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 0;
  opacity: 0.6;
}
.roadmap__dot {
  filter: drop-shadow(0 0 6px rgba(255,208,0,0.5));
  animation: roadmapPulse 2.5s ease-in-out infinite;
}
.roadmap__dot:nth-child(2) { animation-delay: 0.3s; }
.roadmap__dot:nth-child(3) { animation-delay: 0.6s; }
.roadmap__dot:nth-child(4) { animation-delay: 0.9s; }
.roadmap__dot:nth-child(5) { animation-delay: 1.2s; }
@keyframes roadmapPulse {
  0%, 100% { r: 6; opacity: 1; }
  50%      { r: 9; opacity: 0.7; }
}

/* Mobile: vertical timeline */
.roadmap__cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
  padding-left: 2rem;
}
.roadmap__cards::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--yellow) 10%,
    var(--yellow) 90%,
    transparent 100%
  );
  opacity: 0.4;
}

.roadmap__card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  margin-bottom: 1rem;
}
.roadmap__card::before {
  content: '';
  position: absolute;
  left: -1.85rem;
  top: 1.75rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid var(--bg);
  box-shadow: 0 0 8px rgba(255,208,0,0.4);
  z-index: 2;
}
.roadmap__card::after {
  content: '';
  position: absolute;
  left: -0.95rem;
  top: 2rem;
  width: 0.95rem;
  height: 1px;
  background: var(--yellow);
  opacity: 0.3;
}
.roadmap__card:hover {
  border-color: var(--yellow);
  transform: translateX(4px);
  box-shadow: -4px 0 16px rgba(255,208,0,0.08);
}
.roadmap__year {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--yellow);
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.75rem;
}
.roadmap__card-title {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color 0.15s;
}
.roadmap__card:hover .roadmap__card-title {
  color: var(--yellow);
}
.roadmap__card-desc {
  color: #b8b8b8;
  font-size: 0.875rem;
  line-height: 1.65;
}

/* The last card — future milestone */
.roadmap__card--5 {
  border-style: dashed;
  border-color: rgba(255,208,0,0.3);
  background: transparent;
}
.roadmap__card--5::before {
  background: transparent;
  border-color: var(--yellow);
  animation: roadmapPulse 2s ease-in-out infinite;
}
.roadmap__card--5 .roadmap__year {
  background: transparent;
  color: var(--yellow);
  border: 1px solid var(--yellow);
}

/* Desktop: horizontal layout with curve */
@media (min-width: 768px) {
  .roadmap__inner { padding: 5rem 0; }
  .roadmap__header { margin-bottom: 4rem; }

  .roadmap__curve {
    display: block;
    height: 260px;
  }
  .roadmap__timeline {
    min-height: 480px;
    display: flex;
    align-items: center;
    perspective: 800px;
  }
  .roadmap__cards {
    flex-direction: row;
    gap: 1.25rem;
    padding-left: 0;
    width: 100%;
  }
  .roadmap__cards::before { display: none; }
  .roadmap__card {
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
    transform: rotateX(2deg);
    transform-origin: bottom center;
  }
  .roadmap__card::before { display: none; }
  .roadmap__card::after { display: none; }
  .roadmap__card:nth-child(odd) {
    align-self: flex-start;
    margin-top: 0;
  }
  .roadmap__card:nth-child(even) {
    align-self: flex-end;
    margin-top: 4rem;
  }
  .roadmap__card:hover {
    transform: rotateX(0deg) translateY(-6px);
    box-shadow: 0 8px 32px rgba(255,208,0,0.1);
  }
  .roadmap__card-title { font-size: 1.05rem; }
}
@media (min-width: 1024px) {
  .roadmap__cards { gap: 1.5rem; }
  .roadmap__card { padding: 1.75rem; }
  .roadmap__card-title { font-size: 1.1rem; }
  .roadmap__card-desc { font-size: 0.85rem; }
}

/* ── FAMOUS LEFTIES MARQUEE ───────────────────────────── */
.famous {
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
  overflow: hidden;
  background: var(--card);
}
.famous__track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
  opacity: 0.8;
}
.famous__name {
  font-family: var(--font-mono);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(245,245,245,0.4);
  padding: 0 1.5rem;
  white-space: nowrap;
  transition: color 0.15s;
}
.famous__name:hover { color: var(--yellow); }
@media (min-width: 768px) {
  .famous { padding: 2.5rem 0; }
  .famous__name { font-size: 1.5rem; padding: 0 2.5rem; }
}

/* ── NEWSLETTER ───────────────────────────────────────── */
.newsletter {
  border-bottom: 1px solid var(--border);
}
.newsletter__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3.5rem 0;
  align-items: center;
}
.newsletter__heading {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
}
.newsletter__text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.newsletter__form {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}
.newsletter__input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem;
  font-size: 0.875rem;
  font-family: var(--font-mono);
  color: var(--fg);
  outline: none;
}
.newsletter__input::placeholder { color: var(--muted); }
.newsletter__submit {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--bg);
  border: none;
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.newsletter__submit:hover { background: #fff; }
.newsletter__note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
}
@media (min-width: 640px) {
  .newsletter__form { flex-direction: row; }
  .newsletter__submit { border-top: none; border-left: 1px solid var(--border); }
}
@media (min-width: 768px) {
  .newsletter__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 5rem 0;
  }
}

/* ── CTA STRIP ────────────────────────────────────────── */
.cta-strip {
  background: var(--yellow);
}
.cta-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem 0;
  text-align: center;
}
.cta-strip__heading {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--bg);
}
.cta-strip__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .cta-strip__buttons { flex-direction: row; gap: 1rem; }
}
@media (min-width: 768px) {
  .cta-strip__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 3.5rem 0;
  }
}

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
}
.footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
}
.footer__brand p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 18rem;
  margin-top: 1rem;
}
.footer__event {
  border: 1px solid var(--border);
  padding: 1rem;
  margin-top: 1.5rem;
}
.footer__event-date {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}
.footer__event-name {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
}
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__col a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.15s;
}
.footer__col a:hover { color: var(--yellow); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.footer__copy {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
}
.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  transition: color 0.15s;
}
.footer__legal a:hover { color: var(--yellow); }

@media (min-width: 768px) {
  .footer__main {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0;
  }
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ── PAGE PLACEHOLDER (inner pages) ───────────────────── */
.page-header {
  background: var(--card);
  border-bottom: 1px solid var(--border);
}
.page-header__inner {
  padding: 3.5rem 0;
}
.page-header h1 {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 700;
}
.page-header p {
  color: var(--muted);
  font-size: 1rem;
  margin-top: 1rem;
  max-width: 36rem;
}
.page-coming-soon {
  padding: 4rem 0;
}
.page-coming-soon__box {
  border: 1px dashed var(--border);
  padding: 3rem;
  text-align: center;
}
.page-coming-soon__box p {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.page-coming-soon__link {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.15s;
}
.page-coming-soon__link:hover { color: #fff; }
@media (min-width: 768px) {
  .page-header__inner { padding: 5rem 0; }
}

/* ── RESEARCH: THEMES ─────────────────────────────────── */
.research-themes { border-bottom: 1px solid var(--border); }
.research-themes__inner { padding: 3.5rem 0; }
.research-themes__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.research-themes__heading {
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}
.research-themes__intro {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 30rem;
}
.research-themes__grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--border);
}
.theme-card {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.theme-card:last-child { border-bottom: none; }
.theme-card:hover { background: var(--card); }
.theme-card__number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.theme-card__title {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: color 0.15s;
}
.theme-card:hover .theme-card__title { color: var(--yellow); }
.theme-card__desc {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.theme-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.theme-card__tags li {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.3rem 0.6rem;
  transition: border-color 0.15s, color 0.15s;
}
.theme-card:hover .theme-card__tags li { border-color: var(--yellow); color: var(--fg); }

@media (min-width: 640px) {
  .research-themes__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
  }
  .research-themes__grid { grid-template-columns: 1fr 1fr; }
  .theme-card {
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }
  .theme-card:nth-child(2n) { border-right: none; }
}
@media (min-width: 768px) {
  .research-themes__inner { padding: 5rem 0; }
  .research-themes__grid { grid-template-columns: repeat(3, 1fr); }
  .theme-card { padding: 2rem; }
  .theme-card:nth-child(2n) { border-right: 1px solid var(--border); }
  .theme-card:nth-child(3n) { border-right: none; }
  .theme-card:nth-last-child(-n+3) { border-bottom: none; }
}

/* ── RESEARCH: FEATURED STUDIES ───────────────────────── */
.studies { border-bottom: 1px solid var(--border); }
.studies__inner { padding: 3.5rem 0; }
.studies__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.studies__heading {
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}
.studies__note {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 30rem;
}
.studies__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.study-card {
  border: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s, transform 0.15s;
}
.study-card:hover { border-color: var(--yellow); transform: translateY(-3px); }
.study-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.study-card__field {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--bg);
  padding: 0.3rem 0.6rem;
}
.study-card__year {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
}
.study-card__title {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  transition: color 0.15s;
}
.study-card:hover .study-card__title { color: var(--yellow); }
.study-card__meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.study-card__abstract {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.study-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.study-card__tags li {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.25rem 0.5rem;
}
.study-card__link {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  transition: color 0.15s;
}
.study-card__link:hover { color: #fff; }

@media (min-width: 640px) {
  .studies__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
  }
  .studies__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .studies__inner { padding: 5rem 0; }
  .studies__grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .study-card { padding: 2rem; }
}

/* ── RESEARCH: MYTHS VS FACTS ─────────────────────────── */
.myths { border-bottom: 1px solid var(--border); }
.myths__inner { padding: 3.5rem 0; }
.myths__header { margin-bottom: 2rem; }
.myths__heading {
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}
.myths__grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--border);
}
.myth-row {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--border);
}
.myth-row:last-child { border-bottom: none; }
.myth-row__myth,
.myth-row__fact {
  padding: 1.5rem;
}
.myth-row__myth {
  border-bottom: 1px solid var(--border);
  background: var(--card);
}
.myth-row__myth p,
.myth-row__fact p {
  font-size: 0.95rem;
  line-height: 1.6;
}
.myth-row__myth p { color: var(--muted); }
.myth-row__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  margin-bottom: 0.75rem;
}
.myth-row__tag--myth { border: 1px solid var(--border); color: var(--muted); }
.myth-row__tag--fact { background: var(--yellow); color: var(--bg); }
@media (min-width: 768px) {
  .myths__inner { padding: 5rem 0; }
  .myths__header { margin-bottom: 3rem; }
  .myth-row { grid-template-columns: 1fr 1.3fr; }
  .myth-row__myth {
    border-bottom: none;
    border-right: 1px solid var(--border);
  }
  .myth-row__myth, .myth-row__fact { padding: 2rem; }
}

/* ── CONTACT FORM ────────────────────────────────────── */
.contact-section {
  border-bottom: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 3.5rem 0;
}
.contact-info h2 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.contact-info p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 28rem;
}
.contact-detail {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.contact-detail__icon {
  font-size: 1.25rem;
}
.contact-detail__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.25rem;
}
.contact-detail__value {
  color: var(--muted);
  font-size: 0.875rem;
}
.contact-form {
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
}
.form-field {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.form-field:last-child { border-bottom: none; }
.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--muted);
}
.form-field textarea {
  min-height: 120px;
  line-height: 1.6;
}
.contact-submit {
  display: block;
  width: 100%;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--bg);
  border: none;
  padding: 1.25rem;
  cursor: pointer;
  transition: background 0.15s;
}
.contact-submit:hover { background: #fff; }
.contact-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .form-row .form-field { border-right: 1px solid var(--border); }
  .form-row .form-field:last-child { border-right: none; }
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 5rem 0;
  }
}

/* ── ABOUT PAGE ──────────────────────────────────────── */

/* Story section */
.about-story {
  border-bottom: 1px solid var(--border);
}
.about-story__inner {
  padding: 3.5rem 0;
}
.about-story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.about-story__lead {
  font-family: var(--font-mono);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
  max-width: 36rem;
}
.about-story__text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 36rem;
}
.about-story__text p {
  margin-bottom: 1.5rem;
}
.about-story__text p:last-child {
  margin-bottom: 0;
}
.about-story__highlight {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  border-left: 4px solid var(--yellow);
  padding-left: 1.5rem;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .about-story__inner { padding: 5rem 0; }
  .about-story__grid {
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: start;
  }
}

/* Who We Are */
.about-who {
  border-bottom: 1px solid var(--border);
  background: var(--card);
}
.about-who__inner {
  padding: 3.5rem 0;
}
.about-who__heading {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 2rem;
}
.about-who__text {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 48rem;
}
.about-who__text p {
  margin-bottom: 1.5rem;
}
.about-who__text p:last-child {
  margin-bottom: 0;
}
.about-who__text strong {
  color: var(--fg);
  font-weight: 600;
}
.about-who__text em {
  color: var(--yellow);
  font-style: normal;
  font-weight: 700;
}
@media (min-width: 768px) {
  .about-who__inner { padding: 5rem 0; }
}

/* Mission & Vision boxes */
.about-mv {
  border-bottom: 1px solid var(--border);
}
.about-mv__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
}
.about-mv__box {
  padding: 2rem 1rem;
  border-bottom: 1px solid var(--border);
}
.about-mv__box:last-child { border-bottom: none; }
.about-mv__box h3 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.about-mv__box p {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 36rem;
}
.about-mv__box--yellow {
  background: var(--yellow);
}
.about-mv__box--yellow h3 {
  color: var(--bg);
}
.about-mv__box--yellow p {
  color: var(--bg);
  font-weight: 500;
}
@media (min-width: 768px) {
  .about-mv__grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-mv__box {
    padding: 3rem 2rem;
    border-bottom: none;
    border-right: 1px solid var(--border);
  }
  .about-mv__box:last-child { border-right: none; }
}

/* What We Do cards */
.about-wwd {
  border-bottom: 1px solid var(--border);
}
.about-wwd__inner {
  padding: 3.5rem 0;
}
.about-wwd__heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
}
.about-wwd__grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--border);
}
.about-wwd__card {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.about-wwd__card:last-child { border-bottom: none; }
.about-wwd__card:hover { background: var(--card); }
.about-wwd__card-num {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.about-wwd__card h4 {
  font-family: var(--font-mono);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: color 0.15s;
}
.about-wwd__card:hover h4 { color: var(--yellow); }
.about-wwd__card p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
}
@media (min-width: 640px) {
  .about-wwd__grid { grid-template-columns: 1fr 1fr; }
  .about-wwd__card { border-right: 1px solid var(--border); }
  .about-wwd__card:nth-child(2n) { border-right: none; }
  .about-wwd__card:nth-last-child(-n+2) { border-bottom: none; }
}
@media (min-width: 768px) {
  .about-wwd__inner { padding: 5rem 0; }
  .about-wwd__heading { margin-bottom: 3rem; }
  .about-wwd__card { padding: 2rem; }
  .about-wwd__card h4 { font-size: 1.25rem; }
}

/* Values */
.about-values {
  border-bottom: 1px solid var(--border);
  background: var(--card);
}
.about-values__inner {
  padding: 3.5rem 0;
}
.about-values__heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
}
.about-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.about-values__item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}
.about-values__item:last-child { border-bottom: none; }
.about-values__item-name {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  min-width: 8rem;
  padding-top: 0.15rem;
}
.about-values__item-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .about-values__inner { padding: 5rem 0; }
  .about-values__heading { margin-bottom: 3rem; }
  .about-values__item { padding: 1.5rem 0; }
  .about-values__item-name { min-width: 10rem; }
}

/* Did You Know (about page) */
.about-dyk {
  border-bottom: 1px solid var(--border);
}
.about-dyk__inner {
  padding: 3.5rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.about-dyk__stat {
  font-family: var(--font-mono);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}
.about-dyk__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 36rem;
}
.about-dyk__text strong {
  color: var(--fg);
}
.about-dyk__text em {
  font-style: normal;
  color: var(--yellow);
  font-weight: 700;
}
.about-dyk__pull {
  font-family: var(--font-mono);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-top: 1.5rem;
  color: var(--fg);
}
@media (min-width: 768px) {
  .about-dyk__inner {
    grid-template-columns: auto 1fr;
    gap: 4rem;
    padding: 5rem 0;
  }
}

/* ── COMMUNITY PAGE ──────────────────────────────────── */

/* Structure Overview */
.comm-structure__inner {
  padding: 3.5rem 0;
}
.comm-structure__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.comm-structure__heading {
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.comm-structure__sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 36rem;
  margin: 0 auto;
}

/* Role Cards Grid */
.comm-roles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--border);
}
.comm-role {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.comm-role:last-child { border-bottom: none; }
.comm-role:hover { background: rgba(255,208,0,0.02); }
.comm-role__top {
  padding: 1.5rem;
}
.comm-role__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--yellow);
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.75rem;
}
.comm-role__badge--open {
  background: var(--fg);
  color: var(--bg);
}
.comm-role__badge--outline {
  background: transparent;
  color: var(--yellow);
  border: 1px solid var(--yellow);
}
.comm-role__title {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color 0.15s;
}
.comm-role:hover .comm-role__title { color: var(--yellow); }
.comm-role__desc {
  color: #b8b8b8;
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 40rem;
}

/* Highlight variant (Founder) */
.comm-role--highlight {
  border-left: 3px solid var(--yellow);
  background: rgba(255,208,0,0.03);
}

/* Dashed variant (Sponsors) */
.comm-role--dashed {
  border-bottom: none;
}

/* Inline spec rows inside cards */
.comm-role__specs {
  border-top: 1px solid var(--border);
}
.comm-role__spec {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.6rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  color: #b8b8b8;
}
.comm-role__spec:last-child { border-bottom: none; }
.comm-role__spec-key {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  min-width: 5rem;
  flex-shrink: 0;
}

/* Board seats (reused) */
.comm-org__seats {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.75rem;
}
.comm-org__seat {
  width: 16px;
  height: 16px;
  border: 1px solid var(--border);
  background: transparent;
  transition: background 0.2s;
}
.comm-org__seat--filled {
  background: var(--yellow);
  border-color: var(--yellow);
}
.comm-org__seats-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 0.35rem;
}

/* Team area tags */
.comm-team-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.comm-team-tag {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border);
  transition: border-color 0.15s, color 0.15s;
}
.comm-team-tag:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

@media (min-width: 768px) {
  .comm-structure__inner { padding: 5rem 0; }
  .comm-structure__header { margin-bottom: 3rem; }
  .comm-roles {
    grid-template-columns: 1fr 1fr;
  }
  .comm-role {
    border-right: 1px solid var(--border);
  }
  .comm-role:nth-child(2n) { border-right: none; }
  /* Make last row items have no bottom border */
  .comm-role:nth-last-child(-n+2) { border-bottom: none; }
  /* If odd total, last item spans or just no bottom border */
  .comm-role__top { padding: 2rem; }
  .comm-role__spec { padding-left: 2rem; padding-right: 2rem; }
  .comm-role__title { font-size: 1.25rem; }
}

/* ── Pathway ─────────────────────────────────────────── */
.comm-pathway {
  border-bottom: 1px solid var(--border);
  background: var(--card);
}
.comm-pathway__inner {
  padding: 3.5rem 0;
}
.comm-pathway__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.comm-pathway__heading {
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.comm-pathway__flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.comm-pathway__step {
  border: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
  width: 100%;
  max-width: 320px;
  background: var(--bg);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.comm-pathway__step:hover {
  border-color: var(--yellow);
  box-shadow: 0 0 24px rgba(255,208,0,0.06);
}
.comm-pathway__step-number {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}
.comm-pathway__step-title {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.comm-pathway__step-desc {
  color: #b8b8b8;
  font-size: 0.85rem;
  line-height: 1.6;
}
.comm-pathway__arrow {
  padding: 0.75rem 0;
  transform: rotate(90deg);
}
.comm-pathway__note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.25rem;
  border: 1px dashed rgba(255,208,0,0.3);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.comm-pathway__note-icon { flex-shrink: 0; padding-top: 0.1rem; }
.comm-pathway__note p { font-size: 0.85rem; color: #b8b8b8; line-height: 1.6; }
.comm-pathway__note p strong { color: var(--fg); }

@media (min-width: 768px) {
  .comm-pathway__inner { padding: 5rem 0; }
  .comm-pathway__header { margin-bottom: 3rem; }
  .comm-pathway__flow {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
  .comm-pathway__step {
    max-width: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .comm-pathway__arrow {
    transform: none;
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
  }
}

/* ── Combined Principles + Status ────────────────────── */
.comm-bottom__inner {
  padding: 3.5rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.comm-bottom__heading {
  font-family: var(--font-mono);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* Principles list */
.comm-bottom__principle-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
}
.comm-bottom__principle {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.comm-bottom__principle:last-child { border-bottom: none; }
.comm-bottom__principle:hover { background: var(--card); }
.comm-bottom__p-num {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--yellow);
  padding-top: 0.15rem;
  flex-shrink: 0;
}
.comm-bottom__principle h4 {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  transition: color 0.15s;
}
.comm-bottom__principle:hover h4 { color: var(--yellow); }
.comm-bottom__principle p {
  color: #b8b8b8;
  font-size: 0.8rem;
  line-height: 1.5;
}

/* Status list */
.comm-status__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
}
.comm-status__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: #b8b8b8;
  transition: background 0.15s;
}
.comm-status__item:last-child { border-bottom: none; }
.comm-status__item:hover { background: var(--card); }
.comm-status__check {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  width: 1.5rem;
  text-align: center;
  flex-shrink: 0;
}
.comm-status__item--done .comm-status__check { color: var(--yellow); }
.comm-status__item--done span:last-child { color: var(--fg); }
.comm-status__item--progress .comm-status__check { color: var(--muted); }
.comm-status__item--upcoming .comm-status__check { color: var(--border); }
.comm-status__item--upcoming span:last-child { color: var(--muted); }

@media (min-width: 768px) {
  .comm-bottom__inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 5rem 0;
  }
}


/* ── ARROW SVG ────────────────────────────────────────── */
.icon-arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
.icon-arrow--sm {
  width: 12px;
  height: 12px;
}

/* ── THESIS / LEGAL PROSE (research, privacy, terms) ──── */
.thesis { border-bottom: 1px solid var(--border); }
.thesis__inner { padding: 3.5rem 0; }
.thesis__head {
  max-width: 52rem;
  margin: 0 auto 2rem;
}
.thesis__title {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.thesis__byline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.thesis__abstract {
  max-width: 52rem;
  margin: 0 auto 2.5rem;
  border-left: 2px solid var(--yellow);
  background: var(--card);
  padding: 1.5rem;
}
.thesis__abstract-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}
.thesis__abstract p:last-child {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}
.thesis__body {
  max-width: 52rem;
  margin: 0 auto;
}
.thesis__h {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.thesis__body p {
  color: #c4c4c4;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.thesis__body em { color: var(--fg); font-style: italic; }
.cite {
  font-size: 0.65em;
  line-height: 0;
}
.cite a {
  color: var(--yellow);
  font-family: var(--font-mono);
  font-weight: 700;
  padding: 0 0.1em;
  transition: color 0.15s;
}
.cite a:hover { color: #fff; text-decoration: underline; }
.thesis__refs {
  max-width: 52rem;
  margin: 2.5rem auto 0;
}
.thesis__ref-list {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-top: 1rem;
}
.thesis__ref-list li {
  display: list-item;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 0.85rem;
  padding-left: 0.35rem;
  scroll-margin-top: 80px;
}
.thesis__ref-list li:target {
  color: var(--fg);
  background: rgba(255,208,0,0.08);
}
.thesis__ref-list li::marker {
  color: var(--yellow);
  font-family: var(--font-mono);
  font-weight: 700;
}
.thesis__ref-list em { color: #c4c4c4; font-style: italic; }
.thesis__note {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.thesis__body ul.thesis__ref-list { list-style: disc; }
.thesis__body a { color: var(--yellow); text-decoration: underline; text-underline-offset: 2px; }
.thesis__body a:hover { color: #fff; }
@media (min-width: 768px) {
  .thesis__inner { padding: 5rem 0; }
  .thesis__abstract { padding: 2rem; }
  .thesis__h { font-size: 1.25rem; margin-top: 2.5rem; }
  .thesis__body p { font-size: 1rem; }
}
