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

:root {
  --color-void: #15130E;
  --color-surface: #1C1915;
  --color-cream: #F7F3EC;
  --color-cream-dark: #EDE8DF;
  --color-red: #E05535;
  --color-red-glow: rgba(224, 85, 53, 0.35);
  --color-white: #FFFFFF;
  --color-text-dark: #1C1915;
  --color-text-muted: #888888;
  --color-border-dark: #2A2520;
  --color-border-cream: #DDD8CF;
}

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

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--color-text-dark);
  background: var(--color-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.15;
}

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

ul { list-style: none; }

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========= UTILITY ========= */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-red);
  margin-bottom: 1.25rem;
}

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.0625rem;
  padding: 18px 38px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--solid-red {
  background: var(--color-red);
  color: var(--color-white);
}

.btn--solid-red:hover {
  background: #c94a2e;
}

.btn--ghost-white {
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--color-white);
}

.btn--ghost-white:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

.btn--ghost-red {
  border: 1.5px solid var(--color-red);
  color: var(--color-red);
}

.btn--ghost-red:hover {
  background: var(--color-red);
  color: var(--color-white);
}

/* ========= NAVIGATION ========= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s, backdrop-filter 0.3s, -webkit-backdrop-filter 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(21, 19, 14, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo {
  display: inline-block;
  width: 38px;
  height: 46px;
  background: var(--color-red);
  -webkit-mask: url('../assets/images/logo-black.png') center/contain no-repeat;
  mask: url('../assets/images/logo-black.png') center/contain no-repeat;
}

.nav__name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s, text-shadow 0.2s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-red);
  transition: width 0.25s ease;
}

.nav__link:hover {
  color: var(--color-white);
  text-shadow: 0 0 12px rgba(255,255,255,0.4);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__support {
  font-size: 0.9375rem;
  padding: 10px 24px;
  box-shadow: 0 0 16px rgba(224,85,53,0.25), inset 0 0 16px rgba(224,85,53,0.06);
}

.nav__support:hover {
  box-shadow: 0 0 24px rgba(224,85,53,0.4), inset 0 0 20px rgba(224,85,53,0.1);
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5.5px, 5.5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* Mobile overlay — simple flat panel, class-driven via html.menu-open */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-void);
  z-index: 999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

html.menu-open,
html.menu-open body {
  overflow: hidden;
}

html.menu-open .nav__overlay {
  display: block;
}

html.menu-open .nav {
  background: rgba(21, 19, 14, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* ========= DROPDOWN NAV ========= */
.nav__item--has-dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s, text-shadow 0.2s;
  position: relative;
}

.nav__dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-red);
  transition: width 0.25s ease;
}

.nav__dropdown-toggle:hover,
.nav__item--has-dropdown.open .nav__dropdown-toggle {
  color: var(--color-white);
  text-shadow: 0 0 12px rgba(255,255,255,0.4);
}

.nav__dropdown-toggle:hover::after,
.nav__item--has-dropdown.open .nav__dropdown-toggle::after {
  width: 100%;
}

.nav__dropdown-toggle svg {
  transition: transform 0.2s;
  opacity: 0.6;
  flex-shrink: 0;
}

.nav__item--has-dropdown.open .nav__dropdown-toggle svg {
  transform: rotate(180deg);
  opacity: 1;
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 256px;
  background: #0c0a07;
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 2px solid var(--color-red);
  border-radius: 0 12px 12px 12px;
  padding: 8px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 200;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.05);
}

.nav__item--has-dropdown.open .nav__dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav__dropdown li a {
  display: block;
  padding: 10px 14px;
  border-radius: 7px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.01em;
  border-left: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.nav__dropdown li a:hover {
  background: rgba(224,85,53,0.08);
  color: var(--color-white);
  border-left-color: var(--color-red);
}

/* Mobile overlay inner — flat list of links */
.nav__overlay-inner {
  display: flex;
  flex-direction: column;
  padding: 104px 32px 56px;
  max-width: 480px;
  margin: 0 auto;
}

.nav__overlay-inner a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-white);
  padding: 11px 0;
  text-decoration: none;
  transition: color 0.15s;
}

.nav__overlay-inner a:active {
  color: var(--color-red);
}

.nav__overlay-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.35);
  margin-top: 28px;
  margin-bottom: 2px;
}

.nav__overlay-cta {
  margin-top: 36px;
  align-self: flex-start;
  border: 1px solid var(--color-red);
  border-radius: 100px;
  padding: 12px 28px !important;
  font-size: 1rem !important;
  color: var(--color-red) !important;
}

.nav__overlay-cta:active {
  background: var(--color-red);
  color: var(--color-white) !important;
}

/* ========= HERO ANIMATIONS ========= */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroImageFadeIn {
  from { opacity: 0; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1); }
}

/* ========= HERO ========= */
.hero {
  position: relative;
  background: var(--color-void);
  overflow: hidden;
  padding: 100px 0 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 100px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero__title {
  font-size: clamp(2.75rem, 7vw, 5.25rem);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 56px;
  max-width: 750px;
  letter-spacing: -0.025em;
  line-height: 1.08;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.25s;
}

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

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.7s ease forwards;
  animation-delay: 0.5s;
}

/* ========= STATS SECTION ========= */
.stats {
  background: var(--color-void);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(224,85,53,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.stats__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.stats__divider {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, var(--color-border-dark), transparent);
  flex-shrink: 0;
}

.stats__item {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.stats__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--color-red);
  line-height: 1;
  text-shadow: 0 0 12px rgba(224,85,53,0.15);
}

.stats__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Hero full-bleed background image */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
  opacity: 0;
  animation: heroImageFadeIn 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.1s;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(21,19,14,0.92) 0%, rgba(21,19,14,0.75) 50%, rgba(21,19,14,0.45) 100%),
    linear-gradient(to top, rgba(21,19,14,0.95) 0%, transparent 40%);
  z-index: 1;
}

/* ========= NETWORK ========= */
.network {
  background: var(--color-surface);
  padding: 72px 0;
  border-top: 1px solid var(--color-border-dark);
  border-bottom: 1px solid var(--color-border-dark);
  text-align: center;
}

.network .section-label {
  margin-bottom: 36px;
}

.network__cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.network__name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.375rem, 3vw, 2.125rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  user-select: none;
  cursor: default;
  opacity: 0;
}

/* Keyframes set via JS once section enters viewport */
@keyframes name-entrance {
  0%   { opacity: 0; color: var(--color-red); text-shadow: 0 0 28px rgba(224,85,53,0.7); }
  4%   { opacity: 1; color: var(--color-red); text-shadow: 0 0 28px rgba(224,85,53,0.7); }
  14%  { color: var(--color-red); text-shadow: 0 0 28px rgba(224,85,53,0.7); }
  40%  { color: rgba(255,255,255,0.5); text-shadow: none; }
  100% { opacity: 1; color: rgba(255,255,255,0.5); text-shadow: none; }
}


@media (max-width: 768px) {
  .network {
    padding: 48px 0;
  }
  .network__cluster {
    gap: 5px 20px;
  }
  .network__name {
    font-size: 0.875rem;
  }
}

/* ========= MISSION ========= */
.mission {
  position: relative;
  background: var(--color-cream);
  padding: 100px 0;
}

.mission__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mission__text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.mission__text p {
  font-size: 1.0625rem;
  color: var(--color-text-dark);
  line-height: 1.75;
  max-width: 540px;
}

.mission__video {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.mission__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* ========= HOW IT WORKS ========= */
.how-it-works {
  position: relative;
  background: var(--color-cream-dark);
  padding: 80px 0;
}

.how-it-works__steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--color-border-cream);
  background: var(--color-cream);
  transition: transform 0.2s, box-shadow 0.2s;
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.step__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-red);
  line-height: 1;
}

.step__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3125rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.step__desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ========= OFFERINGS ========= */
.offerings {
  position: relative;
  background: var(--color-cream-dark);
  padding: 80px 0;
}

/* Photo cards — live services */
.offerings__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}

.offerings__card {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  height: 260px;
  cursor: pointer;
  text-decoration: none;
}

.offerings__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.offerings__card:hover img {
  transform: scale(1.06);
}

.offerings__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21,19,14,0.92) 0%, rgba(21,19,14,0.55) 45%, rgba(21,19,14,0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background 0.3s;
}

.offerings__card:hover .offerings__card-overlay {
  background: linear-gradient(to top, rgba(21,19,14,0.95) 0%, rgba(21,19,14,0.6) 50%, rgba(21,19,14,0.15) 100%);
}

.offerings__card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 5px;
  letter-spacing: -0.02em;
}

.offerings__card-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

@media (min-width: 640px) {
  .offerings__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .offerings__card {
    height: 280px;
  }
}

@media (min-width: 1200px) {
  .offerings__card {
    height: 300px;
  }
}

/* Project list rows — in development */
.offerings-projects {
  margin-top: 28px;
  border-top: 1px solid var(--color-border-cream);
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

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

.offerings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border-cream);
  text-decoration: none;
  color: inherit;
}

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

@media (min-width: 768px) {
  .offerings-row:nth-child(odd) {
    padding-right: 32px;
    border-right: 1px solid var(--color-border-cream);
  }
  .offerings-row:nth-child(even) {
    padding-left: 32px;
    border-bottom: none;
  }
}

.offerings-row__main {
  min-width: 0;
}

.offerings-row__name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-dark);
  letter-spacing: -0.015em;
  margin-bottom: 2px;
  transition: color 0.18s;
}

.offerings-row:hover .offerings-row__name {
  color: var(--color-red);
}

.offerings-row__desc {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.offerings-row__aside {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.offerings-badge--dev {
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
  background: rgba(224,85,53,0.07);
  border: 1px solid rgba(224,85,53,0.18);
  color: var(--color-red);
}

.offerings-row__arrow {
  color: var(--color-text-muted);
  transition: transform 0.2s, color 0.2s;
  flex-shrink: 0;
}

.offerings-row:hover .offerings-row__arrow {
  transform: translateX(4px);
  color: var(--color-red);
}

/* ========= GALLERY ========= */
.gallery {
  position: relative;
  background: var(--color-cream);
  padding: 80px 0;
  overflow: hidden;
}

.gallery__track {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 28px 16px;
  scrollbar-width: none;
  cursor: grab;
}

.gallery__track::-webkit-scrollbar {
  display: none;
}

.gallery__track:active {
  cursor: grabbing;
}

.gallery__item {
  flex: 0 0 280px;
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(to top, rgba(21,19,14,0.35), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.gallery__item:hover::after {
  opacity: 1;
}

@media (min-width: 768px) {
  .gallery__item {
    flex: 0 0 340px;
    height: 420px;
  }
}

@media (min-width: 1200px) {
  .gallery__item {
    flex: 0 0 400px;
    height: 480px;
  }
}

/* ========= TESTIMONIAL ========= */
.testimonial {
  position: relative;
  background: var(--color-surface);
  padding: 80px 0;
}

.testimonial__inner {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.testimonial__quote-mark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 6rem;
  color: var(--color-red);
  line-height: 0.6;
  margin-bottom: 8px;
  text-shadow: 0 0 40px var(--color-red-glow);
}

.testimonial__text {
  font-size: clamp(1.1875rem, 2.5vw, 1.5rem);
  color: var(--color-white);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 32px;
}

.testimonial__author {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-red);
}

.testimonial__role {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.testimonial__school {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-white);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.testimonial__slides {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial__slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.testimonial__slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.testimonial__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.testimonial__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--color-text-muted);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  padding: 0;
}

.testimonial__dot.active {
  background: var(--color-red);
  border-color: var(--color-red);
}

/* ========= PODCAST ========= */
.podcast {
  position: relative;
  background: var(--color-cream);
  padding: 80px 0;
}

.podcast__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.podcast__content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.podcast__content p {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}

.podcast__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.podcast__image {
  border-radius: 12px;
  overflow: hidden;
}

.podcast__image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* ========= UPDATES ========= */
.updates {
  position: relative;
  background: var(--color-cream-dark);
  padding: 80px 0;
}

.updates__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

.update-card {
  background: var(--color-cream);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border-cream);
  transition: transform 0.25s, box-shadow 0.25s;
}

.update-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.07);
}

.update-card__thumb {
  width: 100%;
  height: 180px;
  background: var(--color-cream-dark);
  object-fit: cover;
}

.update-card__body {
  padding: 22px;
}

.update-card__date {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.update-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 14px;
  line-height: 1.4;
}

.update-card__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-red);
  transition: opacity 0.2s;
}

.update-card__link:hover {
  opacity: 0.75;
}

.updates__cta {
  text-align: center;
  margin-top: 40px;
}

.updates__cta a {
  font-weight: 500;
  color: var(--color-red);
  font-size: 0.9375rem;
  transition: opacity 0.2s;
}

.updates__cta a:hover {
  opacity: 0.75;
}

/* ========= NOT-LIVE DIALOG ========= */
.app-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  border: none;
  border-radius: 16px;
  padding: 0;
  max-width: 380px;
  width: calc(100% - 48px);
  background: var(--color-cream);
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}

.app-dialog::backdrop {
  background: rgba(21,19,14,0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.app-dialog__inner {
  padding: 40px 36px;
  text-align: center;
}

.app-dialog__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.app-dialog__text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.app-dialog__close {
  width: 100%;
}

/* ========= FOOTER ========= */
.footer {
  background: var(--color-void);
  padding: 60px 0 28px;
  color: var(--color-text-muted);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.footer__logo {
  display: inline-block;
  width: 32px;
  height: 38px;
  background: var(--color-red);
  -webkit-mask: url('../assets/images/logo-black.png') center/contain no-repeat;
  mask: url('../assets/images/logo-black.png') center/contain no-repeat;
}

.footer__brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--color-white);
}

.footer__copyright {
  font-size: 0.8125rem;
}

.footer__location {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 5px;
  opacity: 0.6;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__nav-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 2px;
}

.footer__nav a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: var(--color-white);
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__social-icons {
  display: flex;
  gap: 12px;
}

.footer__social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--color-border-dark);
  transition: border-color 0.2s, background 0.2s;
}

.footer__social-icons a:hover {
  border-color: var(--color-red);
  background: rgba(224,85,53,0.08);
}

.footer__social-icons svg {
  width: 18px;
  height: 18px;
  fill: var(--color-text-muted);
  transition: fill 0.2s;
}

.footer__social-icons a:hover svg {
  fill: var(--color-red);
}

.footer__email {
  font-size: 0.875rem;
}

.footer__email a {
  color: var(--color-text-muted);
  transition: color 0.2s;
}

.footer__email a:hover {
  color: var(--color-white);
}

.footer__bottom {
  border-top: 1px solid var(--color-border-dark);
  padding-top: 24px;
  margin-top: 16px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  opacity: 0.5;
}

/* ========= RESPONSIVE: TABLET (768px) ========= */
@media (min-width: 768px) {
  .how-it-works__steps {
    flex-direction: row;
  }

  .step {
    flex: 1;
  }

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

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer__nav {
    gap: 36px;
    align-items: flex-start;
  }
}

/* ========= RESPONSIVE: DESKTOP (1200px) ========= */
@media (min-width: 1200px) {
  .nav__links {
    display: flex;
  }

  .nav__hamburger {
    display: none;
  }

  /* Hero full-bleed */
  .hero {
    padding: 0;
  }

  .hero__inner {
    min-height: 100vh;
    padding: 120px 0 80px;
    justify-content: center;
  }

  .hero__content {
    max-width: 780px;
  }

  /* Mission side-by-side */
  .mission__inner {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }

  .mission__text {
    flex: 1;
  }

  .mission__video {
    flex: 1;
    padding-bottom: 0;
    height: 360px;
  }

  .mission__video iframe {
    position: static;
    height: 100%;
  }

  /* Steps */
  .how-it-works__steps {
    gap: 28px;
  }

  /* Podcast side-by-side */
  .podcast__inner {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }

  .podcast__content {
    flex: 1;
  }

  .podcast__image {
    flex: 1;
  }

  /* Updates 3 columns */
  .updates__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
