/* ============================================================
   DECODING MEDIA — Core Stylesheet
   Apple.com meets editorial podcast brand
   Cinematic · Minimal · Purposeful
   ============================================================ */

/* ------------------------------------------------------------
   CSS Variables
   ------------------------------------------------------------ */
:root {
  --bg-primary: #000000;
  --bg-secondary: #0A0A0A;
  --bg-surface: #111111;
  --bg-footer: #030303;
  --bg-host: #070707;
  --border: #1E1E1E;
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0A0;
  --text-muted: #888888;
  --text-dim: #666666;
  --text-faint: #555555;
  --text-ghost: #444444;
  --text-darkest: #333333;
  --accent-warm: #F5F0E8;
  --font-display: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --nav-height: 64px;
  --nav-height-mobile: 56px;
}

/* ------------------------------------------------------------
   Global Reset & Base
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

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

::selection {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

:focus-visible {
  outline: 2px solid white;
  outline-offset: 2px;
}

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

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

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

/* ------------------------------------------------------------
   Typography Utilities
   ------------------------------------------------------------ */
.font-display {
  font-family: var(--font-display);
}

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

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-faint);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

/* ------------------------------------------------------------
   MISSION
------------------------------------------------------------ */
.mission {
  padding: 140px 24px;
  background: var(--bg-primary);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission .container {
  max-width: 900px;
}

.mission-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.4;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.mission-author {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ------------------------------------------------------------
   Container
   ------------------------------------------------------------ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 60px;
  }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-height-mobile);
  transition: background 300ms ease, border-bottom 300ms ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.navbar-links {
  display: none;
}

.navbar-links a {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  position: relative;
  transition: color 300ms;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: white;
  transition: width 250ms ease;
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-links a:hover {
  color: white;
}

.nav-cta {
  background: white;
  color: black;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  transition: all 300ms ease;
  display: none;
}

@media (min-width: 1024px) {
  .nav-cta {
    display: inline-block;
  }
}

.nav-cta:hover {
  background: #f0f0f0;
  transform: scale(1.02);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 1.5px;
  background: white;
  transition: all 300ms ease;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 36px;
  color: white;
  opacity: 0;
  transform: translateY(20px);
  transition: all 400ms ease;
}

.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active a:nth-child(1) { transition-delay: 100ms; }
.mobile-menu.active a:nth-child(2) { transition-delay: 200ms; }
.mobile-menu.active a:nth-child(3) { transition-delay: 300ms; }
.mobile-menu.active a:nth-child(4) { transition-delay: 400ms; }
.mobile-menu.active a:nth-child(5) { transition-delay: 500ms; }

/* Navbar Desktop */
@media (min-width: 768px) {
  .navbar-inner {
    padding: 0 40px;
  }
}

@media (min-width: 1024px) {
  .navbar {
    height: var(--nav-height);
  }

  .navbar-inner {
    padding: 0 60px;
  }



  .navbar-links {
    display: flex;
    gap: 36px;
    align-items: center;
  }

  .hamburger {
    display: none;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.hero-label span.line {
  width: 40px;
  height: 1px;
  background: var(--text-darkest);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.hero-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

.hero-tagline .line {
  width: 40px;
  height: 1px;
  background: var(--text-darkest);
}

.hero-tagline span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--accent-warm);
}

.hero-description {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: white;
  color: black;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover {
  background: #f0f0f0;
  transform: scale(1.02);
}

.btn-secondary {
  background: transparent;
  color: white;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 100px;
  border: 1px solid var(--text-darkest);
  transition: all 300ms;
  cursor: pointer;
  display: inline-block;
}

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

/* Hero Marquee */
.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid #111;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-darkest);
  padding-right: 24px;
  letter-spacing: 0.1em;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Hero Responsive */
@media (min-width: 768px) {
  .hero-title {
    font-size: 72px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-tagline span {
    font-size: 20px;
  }

  .hero-description {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 90px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .hero-tagline span {
    font-size: 22px;
  }

  .hero-description {
    font-size: 17px;
  }
}

/* ============================================================
   FEATURED EPISODE
   ============================================================ */
.featured-episode {
  padding: 120px 0;
  position: relative;
}

.featured-card {
  background: #0D0D0D;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.featured-thumbnail {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

.featured-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(0.85);
  opacity: 1;
}

.featured-thumbnail .ep-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 0.1em;
}

.featured-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-ep-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.featured-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
}

.featured-guest {
  font-size: 15px;
  color: #777;
  margin-bottom: 16px;
}

.featured-description {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.featured-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-ghost);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.platform-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--text-darkest);
  border-radius: 100px;
  background: var(--bg-surface);
  color: #aaa;
  font-size: 13px;
  font-family: var(--font-body);
  transition: all 300ms;
}

.platform-btn:hover {
  border-color: white;
  color: white;
}

.platform-btn svg {
  width: 16px;
  height: 16px;
}

.btn-spotify svg {
  color: #1DB954 !important;
}

.btn-youtube svg {
  color: #FF0000 !important;
}

.btn-instagram svg {
  color: #E1306C !important;
}

.btn-linkedin svg {
  color: #0A66C2 !important;
}

.btn-spotify svg {
  color: #1DB954 !important;
}

/* Featured Episode Responsive */
@media (min-width: 768px) {
  .featured-card {
    padding: 40px;
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .featured-card {
    flex-direction: row;
    padding: 48px;
    gap: 48px;
  }

  .featured-thumbnail {
    width: 360px;
  }

  .featured-title {
    font-size: 42px;
  }
}

/* ============================================================
   EPISODES GRID
   ============================================================ */
.episodes {
  padding: 120px 0;
}

.episodes-header {
  text-align: center;
  margin-bottom: 60px;
}

.episodes-header .section-heading {
  font-size: 36px;
}

.episodes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.episode-card {
  background: var(--bg-surface);
  border: 1px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.episode-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--text-darkest);
  background: #161616;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.episode-card-thumb {
  aspect-ratio: 1 / 1;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.episode-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.episode-card-thumb .ep-num {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.1em;
}

.episode-card-body {
  padding: 20px;
}

.episode-card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}

.episode-card-guest {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.episode-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.episode-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border: 1px solid #2a2a2a;
  border-radius: 100px;
  color: var(--text-ghost);
}

.episode-card-duration {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-ghost);
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  font-size: 16px;
  color: white;
  font-weight: 500;
  transition: all 300ms;
}

.view-all-link:hover {
  gap: 14px;
}

.view-all-link .arrow {
  transition: transform 300ms;
}

.view-all-link:hover .arrow {
  transform: translateX(4px);
}

/* Episodes Grid Responsive */
@media (min-width: 768px) {
  .episodes-header .section-heading {
    font-size: 48px;
  }

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

@media (min-width: 1024px) {
  .episodes-header .section-heading {
    font-size: 56px;
  }

  .episodes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 120px 0;
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.about-content {
  flex: 1.2;
}

.about-content .section-heading {
  font-size: 32px;
  margin-bottom: 32px;
}

.about-text p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: white;
}

.stat-item .stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.about-image {
  flex: 0.8;
  display: flex;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 0 80px rgba(255, 255, 255, 0.04);
}

/* About Responsive */
@media (min-width: 768px) {
  .about-content .section-heading {
    font-size: 42px;
  }
}

@media (min-width: 1024px) {
  .about-grid {
    flex-direction: row;
    gap: 80px;
  }

  .about-content .section-heading {
    font-size: 52px;
  }
}

/* ============================================================
   HOST
   ============================================================ */
.host {
  padding: 120px 0;
  background: var(--bg-host);
  text-align: center;
}

.host-heading {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
}

.host-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: var(--text-dim);
  margin-bottom: 32px;
}

.host-bio {
  font-size: 17px;
  color: #777;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 24px;
}

.social-links a {
  color: var(--text-ghost);
  transition: all 300ms;
}

.footer-social .social-links a:hover {
  color: white;
}

/* ------------------------------------------------------------
   GLOW EFFECTS
------------------------------------------------------------ */
.glow-effect-yt {
  animation: glowPulseYt 2s infinite alternate;
}

@keyframes glowPulseYt {
  from { filter: drop-shadow(0 0 4px rgba(255, 0, 0, 0.4)); }
  to { filter: drop-shadow(0 0 12px rgba(255, 0, 0, 0.8)); }
}

.glow-effect-email {
  animation: glowPulseEmail 2.5s infinite alternate;
}

@keyframes glowPulseEmail {
  from { text-shadow: 0 0 4px rgba(255, 255, 255, 0.2); }
  to { text-shadow: 0 0 10px rgba(255, 255, 255, 0.6); }
}

.social-links a:hover {
  color: white;
  transform: translateY(-2px);
}

.social-links svg {
  width: 22px;
  height: 22px;
}

.host-contact {
  font-size: 14px;
  color: var(--text-faint);
}

.host-contact a {
  transition: all 300ms;
}

.host-contact a:hover {
  color: white;
  text-decoration: underline;
}

/* Host Responsive */
@media (min-width: 768px) {
  .host-heading {
    font-size: 60px;
  }

  .host-subtitle {
    font-size: 19px;
  }
}

@media (min-width: 1024px) {
  .host-heading {
    font-size: 72px;
  }

  .host-subtitle {
    font-size: 20px;
  }
}

/* ============================================================
   PLATFORMS
   ============================================================ */
.platforms {
  padding: 120px 0;
  text-align: center;
}

.platforms-heading {
  font-size: 32px;
}

.platforms-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 48px;
}

.platform-card {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  background: #0D0D0D;
  text-align: center;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.platform-card:hover {
  background: var(--bg-secondary);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px) scale(1.02);
}

.platform-youtube svg {
  color: #FF0000 !important;
}

.platform-spotify svg {
  color: #1DB954 !important;
}

.platform-card svg {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  color: #777;
}

.platform-card .platform-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.platform-card .platform-link {
  font-size: 13px;
  color: var(--text-faint);
  transition: color 300ms;
}

.platform-card:hover .platform-link {
  color: white;
}

/* Platforms Responsive */
@media (min-width: 768px) {
  .platforms-heading {
    font-size: 40px;
  }

  .platform-card {
    width: calc(50% - 10px);
  }
}

@media (min-width: 1024px) {
  .platforms-heading {
    font-size: 48px;
  }

  .platform-card {
    width: 200px;
  }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.contact-heading {
  font-size: 36px;
}

.contact-sub {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 560px;
  margin: 16px auto 40px;
}

.contact-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.contact-email {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--text-ghost);
  transition: color 300ms;
}

.contact-email:hover {
  color: white;
}

/* Contact Responsive */
@media (min-width: 768px) {
  .contact-heading {
    font-size: 48px;
  }

  .contact-sub {
    font-size: 17px;
  }

  .contact-email {
    font-size: 17px;
  }
}

@media (min-width: 1024px) {
  .contact-heading {
    font-size: 64px;
  }

  .contact-sub {
    font-size: 18px;
  }

  .contact-email {
    font-size: 18px;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-footer);
  padding: 64px 0 24px;
  border-top: 1px solid #111;
}

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

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


.footer-brand .footer-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--text-ghost);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-title {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-faint);
  margin-bottom: 8px;
}

.footer-nav a {
  font-size: 14px;
  color: var(--text-faint);
  transition: color 300ms;
}

.footer-nav a:hover {
  color: white;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-email {
  font-size: 14px;
  color: var(--text-faint);
  transition: color 300ms;
}

.footer-email:hover {
  color: white;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #111;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.footer-bottom span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-darkest);
}

/* Footer Responsive */
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================================================
   Animation Reveal Classes
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-stagger.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.line-reveal {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.line-reveal.visible {
  transform: scaleX(1);
}

/* ============================================================
   MODALS & FORMS
   ============================================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
  padding: 24px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  color: #888;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: color 200ms;
}

.modal-close:hover {
  color: white;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 15px;
  color: #888;
  margin-bottom: 32px;
}

/* Forms */
.dm-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #bbb;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dm-form input[type="text"],
.dm-form input[type="email"],
.dm-form input[type="url"],
.dm-form input[type="tel"],
.dm-form select,
.dm-form textarea {
  width: 100%;
  background: #181818;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 14px 16px;
  color: white;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 200ms, box-shadow 200ms;
}

.dm-form input:focus,
.dm-form select:focus,
.dm-form textarea:focus {
  outline: none;
  border-color: #666;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.05);
}

.dm-form select {
  appearance: none;
  cursor: pointer;
}

.dm-form textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.checkbox-group input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-group label {
  text-transform: none;
  font-family: var(--font-body);
  font-size: 15px;
  cursor: pointer;
}

.w-full {
  width: 100%;
}
.mt-4 {
  margin-top: 16px;
}
.hidden {
  display: none !important;
}

.form-branch {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background: #141414;
  border: 1px solid #222;
  border-radius: 12px;
  margin-top: 8px;
  animation: fadeIn 300ms ease;
}

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

.form-success {
  text-align: center;
  padding: 40px 0;
}
.form-success h4 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 12px;
}
.form-success p {
  color: #888;
}
