/* ===== HOME PAGE ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(104% 82% at 78% 42%, rgba(255, 106, 43, 0.07) 0%, rgba(255, 106, 43, 0.045) 32%, rgba(255, 106, 43, 0.02) 54%, rgba(255, 106, 43, 0.007) 68%, rgba(255, 106, 43, 0) 79%),
    radial-gradient(90% 72% at 10% 1%, rgba(255, 106, 43, 0.085) 0%, rgba(255, 106, 43, 0.052) 28%, rgba(255, 106, 43, 0.022) 46%, rgba(255, 106, 43, 0.008) 62%, rgba(255, 106, 43, 0) 74%),
    #090b0f;
  padding: var(--spacing-3xl) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  height: auto;
  background:
    radial-gradient(120% 100% at 50% 115%, rgba(0, 0, 0, 0.5) 0%, rgba(9, 11, 15, 0) 58%),
    radial-gradient(130% 130% at 50% -22%, rgba(0, 0, 0, 0.36) 0%, rgba(9, 11, 15, 0) 62%);
  opacity: 1;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.14'/%3E%3C/svg%3E");
  background-size: 34px 34px, 34px 34px, 180px 180px;
  background-repeat: repeat, repeat, repeat;
  background-blend-mode: normal, normal, multiply;
  opacity: 0.16;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  margin-bottom: 22px;
  background: rgba(255, 106, 43, 0.08);
  color: rgba(255, 122, 61, 0.95);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 106, 43, 0.32);
  box-shadow: inset 0 0 0 1px rgba(255, 106, 43, 0.06);
}

.hero-title {
  font-size: clamp(var(--font-size-5xl), 8vw, var(--font-size-7xl));
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-kerning: normal;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  text-rendering: optimizeLegibility;
  margin-bottom: var(--spacing-xl);
  color: #ffffff;
  text-wrap: pretty;
  max-width: 11.5ch;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.14em;
  row-gap: 0.02em;
  transition: color 0.34s ease, text-shadow 0.34s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-title-word {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: #ffffff;
  transition:
    color 0.34s ease,
    text-shadow 0.34s ease,
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--word-index, 0) * 32ms);
}

.hero-title-word::after {
  content: attr(data-word);
  position: absolute;
  inset: 0;
  color: transparent;
  pointer-events: none;
  background-image: linear-gradient(108deg, transparent 25%, rgba(255, 255, 255, 0.06) 47%, rgba(255, 106, 43, 0.22) 50%, rgba(255, 255, 255, 0.06) 53%, transparent 75%);
  background-size: 220% 100%;
  background-position: -120% 0;
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0;
  animation: hero-word-sheen 8.6s ease-in-out infinite;
  animation-delay: calc(2.1s + (var(--word-index, 0) * 120ms));
}

.hero-title-keyword {
  color: #ffffff;
  margin-left: -0.015em;
}

.hero-title:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

.hero-title:hover .hero-title-word {
  transform: translateY(-1.1px);
  color: #fffefc;
  text-shadow:
    0 0 8px rgba(255, 106, 43, 0.12),
    0 0 16px rgba(255, 106, 43, 0.07);
}

.hero-title:hover .hero-title-keyword {
  color: #ff6a2b;
  text-shadow:
    0 0 11px rgba(255, 106, 43, 0.3),
    0 0 22px rgba(255, 106, 43, 0.15);
}

@keyframes hero-word-sheen {
  0%,
  82%,
  100% {
    background-position: -120% 0;
    opacity: 0;
  }
  86% {
    opacity: 0.22;
  }
  94% {
    background-position: 120% 0;
    opacity: 0.06;
  }
}

.hero-description {
  font-size: var(--font-size-lg);
  line-height: 1.58;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xl);
  max-width: 430px;
  color: rgba(244, 247, 251, 0.78);
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: clamp(58px, 7vw, 96px);
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(2px);
  color: rgba(255, 255, 255, 0.66);
  text-decoration: none;
  z-index: 2;
  opacity: 0;
  transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease, opacity 0.42s ease, transform 0.22s ease;
}

.hero.is-ready .hero-scroll-indicator {
  opacity: 1;
  transition-delay: 0.68s;
}

.hero-scroll-icon {
  display: block;
  width: 1em;
  line-height: 1;
  text-align: center;
  margin-left: 1px;
  font-size: 11px;
  animation: hero-scroll-icon-bob 1.65s ease-in-out infinite;
}

.hero-scroll-indicator:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(-50%) translateY(-2px);
}

@keyframes hero-scroll-icon-bob {
  0% {
    transform: translateY(-1px);
    opacity: 0.9;
  }
  65% {
    transform: translateY(2px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(-1px);
    opacity: 0.9;
  }
}

.hero-eyebrow,
.hero-title,
.hero-description,
.hero-buttons {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.78s cubic-bezier(0.16, 0.84, 0.24, 1), transform 0.78s cubic-bezier(0.16, 0.84, 0.24, 1);
  margin-bottom: 22px;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  padding-right: 18px;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 0.84, 0.24, 1),
    transform 0.9s cubic-bezier(0.16, 0.84, 0.24, 1);
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: -100px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 106, 43, 0.18) 0%,
    rgba(255, 106, 43, 0.08) 38%,
    rgba(255, 106, 43, 0.025) 55%,
    transparent 70%
  );
  filter: blur(78px);
  transform: translate(6%, 8%);
  pointer-events: none;
}

.hero-image img {
  width: min(100%, 760px);
  max-width: 100%;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  opacity: 0;
  object-fit: contain;
  transform: translate3d(
      var(--hero-parallax-x, 0px),
      var(--hero-parallax-y, 0px),
      0
    )
    scale(var(--hero-image-scale, 1.24));
  transform-origin: center 58%;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 84%,
    rgba(0, 0, 0, 0.88) 90%,
    rgba(0, 0, 0, 0.52) 95%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 84%,
    rgba(0, 0, 0, 0.88) 90%,
    rgba(0, 0, 0, 0.52) 95%,
    transparent 100%
  );
  transition:
    transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease;
}

.hero-image img.is-loaded {
  opacity: 1;
}

.hero-image img:hover {
  --hero-image-scale: 1.27;
}

.hero .btn-primary {
  background: #ff6a2b;
  border-color: #ff6a2b;
  color: #090b0f;
  box-shadow: 0 10px 26px rgba(255, 106, 43, 0.26), 0 0 0 1px rgba(255, 106, 43, 0.2);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.hero .btn-primary:hover {
  background: #ff7a3d;
  border-color: #ff7a3d;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 122, 61, 0.33), 0 0 0 1px rgba(255, 122, 61, 0.28);
}

.hero .btn-secondary {
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.hero .btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 106, 43, 0.34);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.hero.is-ready .hero-eyebrow,
.hero.is-ready .hero-title,
.hero.is-ready .hero-description,
.hero.is-ready .hero-buttons,
.hero.is-ready .hero-image {
  opacity: 1;
  transform: translateY(0);
}

.hero.is-ready .hero-eyebrow { transition-delay: 0.08s; }
.hero.is-ready .hero-title { transition-delay: 0.21s; }
.hero.is-ready .hero-description { transition-delay: 0.35s; }
.hero.is-ready .hero-buttons { transition-delay: 0.5s; }
.hero.is-ready .hero-image {
  transition-delay: 0.44s;
  animation: hero-float 7.2s ease-in-out 1.4s infinite;
}

@keyframes hero-float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}

.featured-section {
  padding: var(--spacing-3xl) 0;
  background: var(--bg-primary);
}

.featured-section .section-title {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
  font-size: clamp(var(--font-size-4xl), 6vw, var(--font-size-5xl));
  font-weight: 900;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--text-primary);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
}

.featured-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
  position: relative;
  cursor: pointer;
}

.featured-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 1;
}

.featured-card:hover::before {
  opacity: 1;
}

.featured-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.featured-card:hover .card-image img {
  transform: scale(1.08);
}

.card-content {
  padding: var(--spacing-lg);
  text-align: center;
  position: relative;
  z-index: 2;
}

.card-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  line-height: var(--line-height-normal);
  color: var(--text-primary);
  margin: 0;
  transition: color var(--transition-base);
}

.featured-card:hover .card-title {
  color: var(--accent-primary);
}

.card-image-placeholder {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
}

.card-content-placeholder {
  padding: var(--spacing-lg);
}

.placeholder-line {
  height: 16px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  margin-bottom: var(--spacing-sm);
}

.placeholder-line.short {
  width: 60%;
}

#about {
  background: var(--bg-secondary);
}

.about-grid {
  max-width: 1000px;
  margin: 0 auto;
}

.about-content .lead {
  font-size: var(--font-size-xl);
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-2xl);
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-slow);
}

.features-grid.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.feature-card {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-5px);
  background: var(--glass-border);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  font-size: var(--font-size-2xl);
  color: var(--bg-primary);
}

.feature-card h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.join-section {
  position: relative;
  overflow: hidden;
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #090b0f 100%);
  text-align: center;
}

.join-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/Patreon Banner.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.22;
  filter: grayscale(1) saturate(0.32) contrast(1.08) brightness(0.72);
  transform: scale(1.05);
  transform-origin: center;
  animation: join-bg-drift 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.join-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(9, 11, 15, 0.34) 0%, rgba(9, 11, 15, 0.66) 72%, rgba(9, 11, 15, 0.88) 100%),
    linear-gradient(180deg, rgba(9, 11, 15, 0.88) 0%, rgba(9, 11, 15, 0.78) 45%, rgba(9, 11, 15, 0.9) 100%);
  pointer-events: none;
}

@keyframes join-bg-drift {
  0% {
    transform: scale(1.05) translate3d(-1.5%, -1%, 0);
  }
  100% {
    transform: scale(1.08) translate3d(1.5%, 1%, 0);
  }
}

.join-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 36px) clamp(18px, 3.2vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.94) 0%, rgba(10, 10, 10, 0.92) 100%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.join-section h2 {
  font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-4xl));
  font-weight: 900;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--text-primary);
  margin-bottom: var(--spacing-xl);
}

.join-section p {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.join-section .discord-btn {
  min-width: 216px;
  border-width: 2px;
  border-color: rgba(114, 137, 218, 0.8);
  background: linear-gradient(180deg, #7289da 0%, #5865f2 100%) !important;
  color: #ffffff;
  box-shadow:
    0 10px 24px rgba(88, 101, 242, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.join-section .discord-btn:hover {
  border-color: rgba(131, 152, 227, 0.88);
  background: linear-gradient(180deg, #8096e0 0%, #6672f6 100%) !important;
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(88, 101, 242, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.join-section .discord-btn i {
  font-size: 0.98rem;
}

.patreon-section {
  padding: var(--spacing-3xl) 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 106, 43, 0.08), transparent 34%),
    radial-gradient(circle at 84% 76%, rgba(255, 106, 43, 0.06), transparent 36%),
    #0a0a0a;
}

.patreon-section .site-section-heading {
  justify-content: center;
  text-align: center;
}

.patreon-section .site-section-heading .status-pill {
  margin-bottom: 10px;
}

.patreon-section .site-section-heading h2 {
  margin-bottom: 12px;
}

.patreon-section .site-section-heading p {
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}

.patreon-section .patreon-trust-line {
  margin-top: 8px;
  color: rgba(244, 247, 251, 0.66);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.patreon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.patreon-card {
  position: relative;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
}

.patreon-card.is-featured {
  border-color: rgba(255, 122, 61, 0.54);
  box-shadow: 0 16px 30px rgba(255, 106, 43, 0.22);
}

.patreon-tier {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(244, 247, 251, 0.88);
}

.patreon-price {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 0.98;
  color: #ffffff;
}

.patreon-price span {
  margin-left: 4px;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 247, 251, 0.56);
}

.patreon-value-line {
  margin: -2px 0 2px;
  color: rgba(244, 247, 251, 0.84);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

.patreon-perks {
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: rgba(244, 247, 251, 0.68);
  font-size: 0.84rem;
  line-height: 1.38;
}

.patreon-perks li {
  position: relative;
  padding-left: 14px;
}

.patreon-perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
}

.patreon-btn {
  margin-top: auto;
  width: 100%;
  min-height: 36px;
  padding-left: 12px;
  padding-right: 12px;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.patreon-card-legend {
  border-color: rgba(191, 136, 90, 0.42);
  background: linear-gradient(180deg, rgba(191, 136, 90, 0.08) 0%, rgba(13, 13, 13, 0.93) 30%);
}

.patreon-card-kill-leader {
  border-color: rgba(255, 106, 43, 0.4);
  background: linear-gradient(180deg, rgba(255, 106, 43, 0.1) 0%, rgba(13, 13, 13, 0.93) 30%);
}

.patreon-card-champion {
  border-color: rgba(167, 133, 255, 0.46);
  background: linear-gradient(180deg, rgba(154, 120, 255, 0.1) 0%, rgba(13, 13, 13, 0.93) 30%);
}

.patreon-card-apex-predator {
  border-color: rgba(237, 89, 96, 0.44);
  background: linear-gradient(180deg, rgba(237, 89, 96, 0.09) 0%, rgba(13, 13, 13, 0.93) 30%);
}

.patreon-card-champion .patreon-btn {
  border-color: rgba(167, 133, 255, 0.36);
}

.patreon-card-champion .patreon-btn:hover {
  border-color: rgba(167, 133, 255, 0.72);
  background: rgba(167, 133, 255, 0.14);
  color: #f3ecff;
  box-shadow: 0 10px 24px rgba(76, 56, 143, 0.28);
}

.patreon-card-apex-predator .patreon-btn {
  border-color: rgba(237, 89, 96, 0.34);
}

.patreon-card-apex-predator .patreon-btn:hover {
  border-color: rgba(237, 89, 96, 0.7);
  background: rgba(237, 89, 96, 0.14);
  color: #ffe8ea;
  box-shadow: 0 10px 24px rgba(120, 42, 47, 0.28);
}

.patreon-card-legend .patreon-perks li::before { background: #bf885a; }
.patreon-card-kill-leader .patreon-perks li::before { background: #ff6a2b; }
.patreon-card-champion .patreon-perks li::before { background: #a785ff; }
.patreon-card-apex-predator .patreon-perks li::before { background: #ed5960; }

.patreon-recommended {
  position: absolute;
  top: 12px;
  right: 12px;
  min-height: 18px;
  padding: 0 7px;
  border-radius: 999px;
  border: 1px solid rgba(255, 106, 43, 0.36);
  background: rgba(255, 106, 43, 0.12);
  color: rgba(255, 229, 217, 0.9);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all var(--transition-base);
}

.social-links a:hover {
  background: var(--accent-primary);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.featured-card:nth-child(1) { animation-delay: 0.1s; }
.featured-card:nth-child(2) { animation-delay: 0.2s; }
.featured-card:nth-child(3) { animation-delay: 0.3s; }
.featured-card:nth-child(4) { animation-delay: 0.4s; }
.featured-card:nth-child(5) { animation-delay: 0.5s; }
.featured-card:nth-child(6) { animation-delay: 0.6s; }
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: clamp(2.4rem, 9vw, 3.2rem);
    letter-spacing: -0.022em;
    row-gap: 0.01em;
    justify-content: center;
  }

  .hero-description {
    font-size: var(--font-size-base);
    max-width: 88%;
    text-align: center;
  }

  .hero-image {
    padding-right: 0;
    max-width: 80%;
    margin: 0 auto;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hero-scroll-indicator {
    bottom: 42px;
  }

  .featured-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .patreon-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .patreon-card {
    padding: 14px;
    gap: 10px;
  }

  .patreon-price {
    font-size: 1.72rem;
  }

  .patreon-btn {
    min-height: 44px;
  }

  .feature-card {
    padding: var(--spacing-lg);
  }

  .join-content {
    padding: 24px 20px;
  }

  .join-section h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    margin-bottom: var(--spacing-md);
  }

  .join-section p {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-xl);
  }

  .join-section .discord-btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-stats,
  .join-benefits,
  .join-stats {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .stat {
    padding: var(--spacing-sm);
    min-width: auto;
    width: 100%;
    max-width: 200px;
  }
}

@media (max-width: 540px) {
  .patreon-grid {
    grid-template-columns: 1fr;
  }

  .patreon-section .site-section-heading {
    text-align: left;
  }

  .patreon-section .site-section-heading p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  .hero-description {
    font-size: var(--font-size-sm);
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    padding: 8px 14px;
  }

  #latest .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow,
  .hero-title,
  .hero-description,
  .hero-buttons,
  .hero-image {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-title,
  .hero-title-word,
  .hero .btn-primary,
  .hero .btn-secondary,
  .hero-image img {
    transition: none !important;
  }

  .hero-title-word::after,
  .hero-title:hover .hero-title-word,
  .hero-title:hover .hero-title-keyword {
    animation: none !important;
    text-shadow: none !important;
    transform: none !important;
  }

  .hero-image img,
  .hero-image img:hover {
      transform: scale(1.285);
  }

  .hero-scroll-icon {
    animation: none;
  }

  .hero-scroll-indicator {
    transition: none;
  }

  .join-section::before {
    animation: none;
    transform: scale(1.05);
  }
}

.latest-renders .featured-card .card-content,
#latest .featured-card .card-content {
  text-align: left;
}

#latest .featured-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

#latest .featured-card {
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.95) 0%, rgba(10, 10, 10, 0.94) 100%);
}

#latest .featured-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 106, 43, 0.3);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.3);
}

#latest .featured-card .card-image {
  aspect-ratio: 0.82;
  display: grid;
  place-items: center;
  overflow: hidden;
}

#latest .featured-card .card-image img {
  object-fit: contain;
  object-position: center 62%;
  background: linear-gradient(180deg, rgba(255, 106, 43, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  padding: 6px;
  transform: scale(1.14);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

#latest .featured-card:hover .card-image img {
  transform: scale(1.2);
}

#latest .featured-card .card-content {
  padding: 12px;
}

#latest .featured-card .status-pill {
  min-height: 22px;
  font-size: 11px;
  margin-bottom: 6px;
}

#latest .featured-card .card-title {
  font-size: 0.96rem;
  line-height: 1.34;
}

#latest .featured-card .recent-card-meta {
  font-size: 0.78rem;
  color: #ff6a2b;
}

@media (max-width: 768px) {
  #latest .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  #latest .featured-grid {
    grid-template-columns: 1fr;
  }
}
