/* ============================================================
   HYPE SERIES — style.css
   Vanilla conversion of the React/Vite Figma project
   ============================================================ */

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

*::-webkit-scrollbar {
  display: none;
}

:root {
  --bg: #080808;
  --cream: #F0EDE6;
  --red: #FF3B00;
  --yellow: #FFE500;
  --muted: #888077;
  --card: #111111;
  --border: rgba(240, 237, 230, 0.08);
  --font-sans: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --font-disp: 'Barlow', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-sans);
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
}

/* ── LAYOUT HELPERS ───────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3rem;
  align-items: start;
}

.col-2 {
  grid-column: span 2;
}

.col-10 {
  grid-column: span 10;
}

@media (max-width: 768px) {
  .grid-12 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .col-2,
  .col-10 {
    grid-column: span 1;
  }
}

.section {
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 9rem 0;
  }
}

.text-center {
  text-align: center;
}

/* ── TYPOGRAPHY TOKENS ────────────────────────────────────── */
.label-red {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  display: block;
}

.label-line {
  margin-top: 1rem;
  width: 2rem;
  height: 1px;
  background: var(--red);
}

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

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

.outline-text {
  -webkit-text-stroke: 2px var(--red);
  color: transparent;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--red);
  color: var(--cream);
  transition: background 0.2s, color 0.2s;
}

.btn-primary:hover {
  background: var(--cream);
  color: var(--bg);
}

.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(240, 237, 230, 0.25);
  color: var(--cream);
  transition: border-color 0.2s;
}

.btn-outline:hover {
  border-color: var(--cream);
}

.btn-outline-dark {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(240, 237, 230, 0.2);
  color: var(--cream);
  transition: border-color 0.2s, color 0.2s;
  text-align: center;
}

.btn-outline-dark:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-dark {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--bg);
  color: var(--cream);
  transition: background 0.2s, color 0.2s;
  text-align: center;
}

.btn-dark:hover {
  background: var(--cream);
  color: var(--bg);
}

.btn-outline-red {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid rgba(8, 8, 8, 0.35);
  color: var(--bg);
  transition: border-color 0.2s;
  text-align: center;
}

.btn-outline-red:hover {
  border-color: var(--bg);
}

/* ── NAVBAR ─────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

#navbar.scrolled {
  background: rgba(8, 8, 8, 1);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

@media (max-width: 768px) {
  #navbar {
    padding: 1.25rem 1.5rem;
  }
}

.nav-logo img {
  height: 40px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--cream);
}

.nav-cta {
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
}

@media (max-width: 768px) {
  .nav-cta {
    display: none;
  }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

.ham-line {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: transform 0.2s, opacity 0.2s;
}

.hamburger.open .ham-line:nth-child(1) {
  transform: rotate(45deg) translateY(5px);
}

.hamburger.open .ham-line:nth-child(2) {
  opacity: 0;
}

.hamburger.open .ham-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px);
}

/* ── MOBILE MENU ─────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-link {
  font-family: var(--font-disp);
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  transition: color 0.2s;
}

.mobile-link:hover {
  color: var(--red);
}

.mobile-apply {
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;

  display: flex;
  flex-direction: column;
  justify-content: center;

  overflow: hidden;

  padding-top: 80px;
  /* navbar height */
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.7);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 20%, #080808 85%);
}

.hero-content {
  position: relative;
  z-index: 10;

  width: 100%;
  max-width: 1100px;

  /* margin: auto; */
  padding: 2rem 3rem;

  display: flex;
  flex-direction: column;
  /* justify-content: center; */

  flex: 1;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 1.5rem 1.5rem 2rem;
  }
}

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.badge-red {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--red);
  color: var(--cream);
}

.badge-muted {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.hero-headline {
  font-family: var(--font-disp);
  font-size: clamp(2.5em, 10vw, 9rem);
  font-weight: 800;
  line-height: .8;
  letter-spacing: -0.02em;
  color: var(--cream);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .hero-bottom {
    flex-direction: row;
    align-items: flex-end;
    gap: 3rem;
  }
}

.hero-desc {
  max-width: 28rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--muted), transparent);
}

/* ── TICKER ──────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
  padding: 0.75rem 0;
}

.ticker-dark {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ticker-accent {
  background: var(--red);
}

.ticker-track {
  display: inline-flex;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
}

.ticker-text {
  font-family: var(--font-disp);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ticker-dot {
  font-size: 0.75rem;
}

.ticker-dark .ticker-text {
  color: var(--cream);
}

.ticker-dark .ticker-dot {
  color: var(--muted);
}

.ticker-accent .ticker-text {
  color: var(--red);
}

.ticker-accent .ticker-dot {
  color: var(--red);
}

/* ── MANIFESTO ───────────────────────────────────────────── */
.manifesto-headline {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.01em;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 2.5rem;
}

.manifesto-body {
  display: grid;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .manifesto-body {
    grid-template-columns: 1fr 1fr;
  }
}

.manifesto-body p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 42ch;
}

/* ── STATS ───────────────────────────────────────────────── */
.stats-strip {
  padding: 4rem 0;
  background: var(--red);
}

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

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.stat-value {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--bg);
  letter-spacing: -0.01em;
  line-height: 1;
}

.stat-label {
  margin-top: 0.25rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}

/* ── EPISODES ────────────────────────────────────────────── */
.episodes-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 1rem;
}

.section-title {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
  text-transform: uppercase;
  line-height: 1;
}

.view-all {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  border-bottom: 1px solid var(--muted);
  padding-bottom: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.15s, border-color 0.15s;
}

.view-all:hover {
  color: var(--red);
  border-color: var(--red);
}

.episodes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
}

@media (min-width: 768px) {
  .episodes-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.episode-card {
  display: block;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}

.episode-card:hover .ep-title {
  color: var(--red);
}

.episode-img-wrap {
  position: relative;
  overflow: hidden;
}

.episode-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.5);
  transition: transform 0.7s ease;
}

.episode-card:hover .episode-img {
  transform: scale(1.04);
}

.ep-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--red);
  color: var(--cream);
  padding: 0.25rem 0.5rem;
}

.episode-meta {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid var(--border);
  margin-top: 0;
  /* border is on episode-body */
}

@media (max-width: 480px) {
  .episode-meta {
    padding: 1rem 1.25rem 0;
  }
}

.ep-number,
.ep-attendees,
.ep-location {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.ep-title {
  font-family: var(--font-disp);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  letter-spacing: 0.01em;
  color: var(--cream);
  line-height: 1.2;
  padding: 0.75rem 2rem 0.5rem;
  transition: color 0.2s;
}

@media (max-width: 480px) {
  .ep-title {
    padding: 0.75rem 1.25rem 0.5rem;
  }
}

.ep-location {
  padding: 0 2rem 2rem;
}

@media (max-width: 480px) {
  .ep-location {
    padding: 0 1.25rem 1.5rem;
  }
}

/* ── VOICES ──────────────────────────────────────────────── */
.voices-section {
  background: #111111;
  position: relative;
  overflow: hidden;
}

.voices-deco {
  position: absolute;
  top: -4rem;
  left: 2.5rem;
  font-family: var(--font-disp);
  font-size: 20rem;
  color: rgba(255, 59, 0, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.voices-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.voices-divider {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.voices-layout {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .voices-layout {
    grid-template-columns: 8fr 4fr;
    align-items: start;
  }
}

/* Quote items */
.voices-quotes {
  position: relative;
}

.voice-item {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s, transform 0.5s;
  position: absolute;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

.voice-item.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
  height: auto;
  overflow: visible;
}

.voice-quote {
  font-family: var(--font-disp);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--cream);
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-style: normal;
}

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

.voice-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--red);
  font-family: var(--font-disp);
  font-size: 1.125rem;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.voice-name {
  font-size: 0.9rem;
  color: var(--cream);
  font-weight: 500;
}

.voice-college {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* Voice selector */
.voices-selector {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (max-width: 767px) {
  .voices-selector {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.voice-btn {
  text-align: left;
  padding: 1rem;
  border: 1px solid var(--border);
  background: transparent;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}

.voice-btn.active {
  background: rgba(255, 59, 0, 0.1);
  border-color: var(--red);
}

.vbtn-college {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.voice-btn.active .vbtn-college {
  color: var(--red);
}

.vbtn-name {
  font-size: 0.875rem;
  color: var(--muted);
}

.voice-btn.active .vbtn-name {
  color: var(--cream);
}

/* ── CROWD BREAK ─────────────────────────────────────────── */
.crowd-break {
  position: relative;
  overflow: hidden;
  height: 50vw;
  max-height: 600px;
  min-height: 280px;
}

.crowd-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.7);
}

.crowd-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 8, 0.3);
}

.crowd-text {
  font-family: var(--font-disp);
  font-size: clamp(2.5rem, 10vw, 9rem);
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: .9;
  text-align: center;
  text-transform: uppercase;
  padding: 0 1.5rem;
}

/* ── SPONSORS ────────────────────────────────────────────── */
.sponsors-intro {
  margin-bottom: 5rem;
}

.sponsors-headline {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.sponsors-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 55ch;
}

.tiers-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
}

@media (min-width: 768px) {
  .tiers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tier-card {
  padding: 2.5rem;
  background: var(--bg);
}

@media (min-width: 768px) {
  .tier-card {
    padding: 2.5rem;
  }
}

.tier-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.tier-value {
  font-family: var(--font-disp);
  font-size: 2rem;
  letter-spacing: -0.01em;
  line-height: 1;
}

.tier-reach {
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.tier-slots {
  margin-top: 2rem;
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(240, 237, 230, 0.1);
  color: var(--muted);
  padding: 0.5rem 0.75rem;
}

.sponsor-ctas {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .sponsor-ctas {
    flex-direction: row;
  }

  .sponsor-ctas .btn-primary,
  .sponsor-ctas .btn-outline-dark {
    padding: 1rem 2rem;
  }
}

/* ── COLLEGE STRIP ───────────────────────────────────────── */
.college-strip {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.college-strip-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 2rem;
}

.college-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
}

.college-list span {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(240, 237, 230, 0.25);
}

/* ── APPLY SECTION ───────────────────────────────────────── */
.apply-section {
  background: var(--red);
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .apply-section {
    padding: 10rem 2.5rem;
  }
}

.apply-bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
  font-family: var(--font-disp);
  font-size: 30vw;
  color: rgba(8, 8, 8, 0.08);
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.apply-season-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(8, 8, 8, 0.5);
  margin-bottom: 1.5rem;
}

.apply-headline {
  font-family: var(--font-disp);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  color: var(--bg);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 2rem;
}

.apply-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(8, 8, 8, 0.65);
  max-width: 48ch;
  margin: 0 auto 3rem;
}

.apply-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .apply-ctas {
    flex-direction: row;
  }
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 4fr 2fr 2fr 2fr;
  }
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 32ch;
}

.footer-col-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(240, 237, 230, 0.5);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--red);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}