*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
img,
video {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
:focus-visible {
  outline: 2px solid #e6b75a;
  outline-offset: 2px;
}
html {
  scroll-behavior: smooth;
}

:root {
  --bg: #0b1111;
  --panel: #1b1b17;
  --panel2: #132020;
  --soft: #182828;
  --muted: #c5bca3;
  --text: #f4ead1;
  --accent: #d9a441;
  --accent2: #f2d685;
  --green: #314f4c;
  --red: #8f2f2f;
  --radius: 8px;
  --shadow: 0 16px 36px rgba(0, 0, 0, 0.42);
  --w: 1200px;
  --nav-h: 64px;
}

body {
  font-family:
    "Trebuchet MS", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    Arial;
  background:
    radial-gradient(
      circle at 50% -20%,
      rgba(217, 164, 65, 0.08),
      transparent 34%
    ),
    linear-gradient(180deg, #0d1717 0%, #091010 60%, #0b1313 100%);
  color: var(--text);
  line-height: 1.6;
  padding-top: var(--nav-h);
  cursor: url("assets/mouse.png"), auto;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 2000px;
  height: 100vh;
  border-left: 1px solid rgba(217, 164, 65, 0.18);
  border-right: 1px solid rgba(217, 164, 65, 0.18);
  box-shadow:
    inset 0 0 110px rgba(217, 164, 65, 0.035),
    0 0 80px rgba(0, 0, 0, 0.38);
  pointer-events: none;
  z-index: 10000;
}

main {
  position: relative;
  background:
    linear-gradient(180deg, rgba(9, 16, 16, 0.92), rgba(10, 18, 18, 0.96)),
    radial-gradient(
      circle at 50% 20%,
      rgba(217, 164, 65, 0.055),
      transparent 36%
    );
  max-width: 2000px;
  margin: 0 auto;
}

a,
button,
.btn,
.thumb,
.card {
  cursor: url("assets/mouse.png"), pointer;
}

.wrap {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 20px;
}
section {
  padding: 60px 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--accent2);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}
.muted {
  color: var(--muted);
}
.grid {
  display: grid;
  gap: 20px;
}
.card {
  background: linear-gradient(
    180deg,
    rgba(18, 32, 32, 0.96),
    rgba(9, 17, 17, 0.98)
  );
  border: 1px solid rgba(231, 190, 100, 0.28);
  border-radius: var(--radius);
  box-shadow:
    var(--shadow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.card.elevated {
  border: 1px solid rgba(242, 214, 133, 0.34);
}
#trailer .card.elevated {
  aspect-ratio: 16 / 9;
}
.card.elevated iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.pad {
  padding: 24px;
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.15rem;
  border-radius: 6px;
  border: 1px solid rgba(242, 214, 133, 0.72);
  background: linear-gradient(180deg, #7f5f22, #4f3815);
  color: #fff7dd;
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}
.btn:hover {
  transform: translateY(-2px);
  border-color: #fff0ac;
  background: linear-gradient(180deg, #a77a28, #6a4818);
  color: #fff;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.38),
    0 0 22px rgba(217, 164, 65, 0.28);
}
.btn.secondary {
  background: linear-gradient(
    180deg,
    rgba(45, 72, 68, 0.92),
    rgba(19, 35, 34, 0.94)
  );
  border: 1px solid rgba(202, 191, 154, 0.62);
}
.btn.secondary:hover {
  background: linear-gradient(180deg, #3f6862, #203a38);
  border-color: var(--accent2);
  color: #fff;
}
.btn.ks {
  background: linear-gradient(135deg, #05ce78, #03a85e);
  border: 2px solid #05ce78;
  padding: 1rem 1.8rem;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 0 rgba(5, 206, 120, 0),
    0 8px 32px rgba(5, 206, 120, 0.45);
  animation: ks-pulse 2.4s ease-in-out infinite;
  transform: scale(1.08);
}
.btn.ks::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 80%
  );
  transform: translateX(-120%);
  animation: ks-shimmer 2.6s ease-in-out infinite;
}
.ks-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ks-inner .icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
.ks-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.ks-label {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #fff;
}
.ks-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.03em;
}
.btn.ks:hover {
  background: linear-gradient(135deg, #07e888, #05ce78);
  border-color: #07e888;
  color: #fff;
  transform: scale(1.13) translateY(-2px);
  box-shadow:
    0 0 30px rgba(5, 206, 120, 0.7),
    0 12px 40px rgba(5, 206, 120, 0.5);
}
@keyframes ks-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(5, 206, 120, 0),
      0 8px 32px rgba(5, 206, 120, 0.45);
  }
  50% {
    box-shadow:
      0 0 0 8px rgba(5, 206, 120, 0.12),
      0 8px 40px rgba(5, 206, 120, 0.6);
  }
}
@keyframes ks-shimmer {
  0% {
    transform: translateX(-120%);
  }
  60%,
  100% {
    transform: translateX(120%);
  }
}
.btn .icon {
  width: 20px;
  height: 20px;
}

header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  right: auto;
  width: 100%;
  max-width: 2000px;
  height: var(--nav-h);
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

header.is-sticky {
  background: rgba(18, 17, 13, 0.78);
  backdrop-filter: blur(8px) saturate(130%);
  border-bottom: 1px solid rgba(217, 164, 65, 0.26);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.42);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 40px;
}
.nav a.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 200;
  margin-right: auto;
}
.nav img.logo {
  max-height: 150px;
  width: 200px;
  height: auto;
}
.primary-nav {
  flex: 0 0 auto;
}
.primary-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav a.link {
  color: #f4ead1;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.65);
  transition: color 0.3s ease;
}
.primary-nav a.link:hover {
  color: var(--accent);
}

.social-top {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
}
.social-top li {
  list-style: none;
}
.social-top li::marker {
  content: "";
}
.social-top a {
  transition: transform 0.3s ease;
}
.social-top img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition:
    filter 0.3s ease,
    opacity 0.3s ease;
}
.social-top a:hover {
  transform: scale(1.12);
}
.social-top a:hover img {
  filter: brightness(0) saturate(100%) invert(83%) sepia(34%) saturate(679%)
    hue-rotate(357deg) brightness(103%) contrast(90%);
  opacity: 1;
}

.burger {
  display: none;
}
.mobile {
  display: none !important;
}

@media (max-width: 900px) {
  .primary-nav ul {
    display: none;
  }
  .burger {
    display: block;
  }
  .mobile {
    display: none !important;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(18, 17, 13, 0.96);
    border-bottom: 1px solid rgba(217, 164, 65, 0.24);
    z-index: 60;
  }
  .mobile.open {
    display: block !important;
  }
  .mobile a {
    display: block;
    padding: 16px 20px;
    border-top: 1px solid #ffffff10;
    color: var(--text);
    transition: color 0.3s ease;
  }
  .mobile a:hover {
    color: var(--accent);
  }
}

.hero {
  position: relative;
}
.hero,
.hero-video {
  margin-top: calc(-1 * var(--nav-h));
}
.hero-video {
  min-height: 100vh;
  height: 100vh;
  padding-top: clamp(calc(var(--nav-h) + 16px), 10vh, 160px);
  padding-bottom: clamp(24px, 6vh, 120px);
}
.hero-video .video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 40%;
  pointer-events: none;
}

.hero-video video::-webkit-media-controls {
  display: none !important;
}

.hero-video video::-webkit-media-controls-enclosure {
  display: none !important;
}
.hero-video .overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(7, 7, 6, 0.25),
      rgba(10, 9, 7, 0.4) 58%,
      rgba(13, 11, 8, 0.72)
    ),
    radial-gradient(
      70% 100% at 50% 100%,
      rgba(156, 104, 36, 0.18),
      transparent 60%
    );
}
.hero-video::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
}
.hero-video .inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding-bottom: 12vh;
}
.center-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin: 0 auto;
  padding: 0;
}
.hero-logo {
  width: min(800px, 60vw);
  height: auto;
  filter: drop-shadow(0 16px 42px rgba(0, 0, 0, 0.56))
    drop-shadow(0 0 18px rgba(217, 164, 65, 0.22));
}
.tagline {
  color: #f6e2b0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.72);
  font-size: clamp(1.05rem, 2.3vw, 1.35rem);
  margin-top: 8px;
  letter-spacing: 0.03em;
}
.hero-video .cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}

@media (max-width: 900px) {
  .hero-video {
    min-height: 58vh;
  }
  .hero-logo {
    width: min(420px, 72vw);
  }
}

.intro-split {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0;
}
.intro-split .bg-panel {
  position: absolute;
  inset: 0;
  height: 100%;
  background:
    radial-gradient(
      circle at 25% 45%,
      rgba(217, 164, 65, 0.075),
      transparent 34%
    ),
    #0b1111;
  z-index: 0;
  pointer-events: none;
}
.intro-split .split {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  grid-template-columns: minmax(280px, 520px) 1fr;
}
.intro-split .visual {
  position: relative;
  isolation: isolate;
}
.intro-split .visual::before {
  content: none;
}
.intro-split .visual::after {
  content: none;
}
.athena-particles {
  position: absolute;
  inset: -8% 0 8%;
  z-index: -1;
  pointer-events: none;
}
.athena-particles span {
  --x: 50%;
  --y: 50%;
  --dx: 0px;
  --dy: -26px;
  --s: 4px;
  --delay: 0s;
  --dur: 3.8s;
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: rgba(255, 238, 160, 0.95);
  box-shadow:
    0 0 8px rgba(255, 214, 88, 0.95),
    0 0 18px rgba(255, 171, 46, 0.62);
  opacity: 0;
  animation: intro-particle var(--dur) ease-in-out var(--delay) infinite;
}
.athena-particles span:nth-child(1) {
  --x: 20%;
  --y: 28%;
  --dx: -18px;
  --dy: -46px;
  --s: 5px;
  --delay: 0.1s;
  --dur: 4.8s;
}
.athena-particles span:nth-child(2) {
  --x: 78%;
  --y: 30%;
  --dx: 22px;
  --dy: -34px;
  --s: 3px;
  --delay: 0.7s;
  --dur: 3.9s;
}
.athena-particles span:nth-child(3) {
  --x: 31%;
  --y: 52%;
  --dx: -28px;
  --dy: -22px;
  --s: 4px;
  --delay: 1.2s;
  --dur: 4.4s;
}
.athena-particles span:nth-child(4) {
  --x: 71%;
  --y: 58%;
  --dx: 24px;
  --dy: -48px;
  --s: 5px;
  --delay: 0.4s;
  --dur: 5.1s;
}
.athena-particles span:nth-child(5) {
  --x: 44%;
  --y: 18%;
  --dx: -8px;
  --dy: -38px;
  --s: 3px;
  --delay: 1.8s;
  --dur: 4.2s;
}
.athena-particles span:nth-child(6) {
  --x: 58%;
  --y: 22%;
  --dx: 14px;
  --dy: -44px;
  --s: 4px;
  --delay: 2.1s;
  --dur: 5s;
}
.athena-particles span:nth-child(7) {
  --x: 26%;
  --y: 76%;
  --dx: -22px;
  --dy: -36px;
  --s: 4px;
  --delay: 0.9s;
  --dur: 4.7s;
}
.athena-particles span:nth-child(8) {
  --x: 80%;
  --y: 78%;
  --dx: 30px;
  --dy: -28px;
  --s: 3px;
  --delay: 1.5s;
  --dur: 4.1s;
}
.athena-particles span:nth-child(9) {
  --x: 38%;
  --y: 88%;
  --dx: -14px;
  --dy: -52px;
  --s: 5px;
  --delay: 0.2s;
  --dur: 5.4s;
}
.athena-particles span:nth-child(10) {
  --x: 62%;
  --y: 84%;
  --dx: 18px;
  --dy: -42px;
  --s: 4px;
  --delay: 2.6s;
  --dur: 4.6s;
}
.athena-particles span:nth-child(11) {
  --x: 15%;
  --y: 48%;
  --dx: -12px;
  --dy: -30px;
  --s: 3px;
  --delay: 2.9s;
  --dur: 4s;
}
.athena-particles span:nth-child(12) {
  --x: 88%;
  --y: 48%;
  --dx: 14px;
  --dy: -38px;
  --s: 4px;
  --delay: 3.2s;
  --dur: 4.9s;
}
.athena-particles span:nth-child(13) {
  --x: 24%;
  --y: 38%;
  --dx: -26px;
  --dy: -30px;
  --s: 3px;
  --delay: 0.35s;
  --dur: 3.8s;
}
.athena-particles span:nth-child(14) {
  --x: 74%;
  --y: 42%;
  --dx: 28px;
  --dy: -32px;
  --s: 4px;
  --delay: 0.95s;
  --dur: 4.3s;
}
.athena-particles span:nth-child(15) {
  --x: 48%;
  --y: 34%;
  --dx: -10px;
  --dy: -50px;
  --s: 5px;
  --delay: 1.35s;
  --dur: 5.2s;
}
.athena-particles span:nth-child(16) {
  --x: 55%;
  --y: 64%;
  --dx: 12px;
  --dy: -36px;
  --s: 3px;
  --delay: 1.75s;
  --dur: 3.7s;
}
.athena-particles span:nth-child(17) {
  --x: 34%;
  --y: 68%;
  --dx: -30px;
  --dy: -44px;
  --s: 4px;
  --delay: 2.15s;
  --dur: 4.6s;
}
.athena-particles span:nth-child(18) {
  --x: 69%;
  --y: 72%;
  --dx: 26px;
  --dy: -40px;
  --s: 5px;
  --delay: 2.45s;
  --dur: 5.3s;
}
.athena-particles span:nth-child(19) {
  --x: 18%;
  --y: 62%;
  --dx: -16px;
  --dy: -52px;
  --s: 4px;
  --delay: 0.55s;
  --dur: 4.9s;
}
.athena-particles span:nth-child(20) {
  --x: 84%;
  --y: 64%;
  --dx: 18px;
  --dy: -54px;
  --s: 3px;
  --delay: 1.05s;
  --dur: 4.2s;
}
.athena-particles span:nth-child(21) {
  --x: 42%;
  --y: 78%;
  --dx: -18px;
  --dy: -32px;
  --s: 3px;
  --delay: 1.65s;
  --dur: 3.9s;
}
.athena-particles span:nth-child(22) {
  --x: 58%;
  --y: 76%;
  --dx: 20px;
  --dy: -34px;
  --s: 4px;
  --delay: 2.05s;
  --dur: 4.4s;
}
.athena-particles span:nth-child(23) {
  --x: 36%;
  --y: 24%;
  --dx: -20px;
  --dy: -28px;
  --s: 3px;
  --delay: 2.75s;
  --dur: 4.1s;
}
.athena-particles span:nth-child(24) {
  --x: 66%;
  --y: 26%;
  --dx: 24px;
  --dy: -30px;
  --s: 4px;
  --delay: 3.1s;
  --dur: 4.8s;
}
.athena-smoke {
  position: absolute;
  inset: -18% 14% 2%;
  z-index: -2;
  pointer-events: none;
}
.athena-smoke span {
  --x: 50%;
  --y: 50%;
  --dx: 0px;
  --dy: -24px;
  --w: 150px;
  --h: 82px;
  --delay: 0s;
  --dur: 8s;
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  height: var(--h);
  border-radius: 50%;
  /* Pre-blurred soft falloff instead of filter: blur() — animating blur forces
     a full GPU re-raster every frame, which starves scrolling. */
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 231, 170, 0.05) 32%,
    rgba(255, 183, 70, 0.022) 56%,
    transparent 76%
  );
  opacity: 0;
  transform: translate(-50%, -50%);
  animation: intro-smoke-puff var(--dur) ease-in-out var(--delay) infinite;
}
.athena-smoke span:nth-child(1) {
  --x: 48%;
  --y: 16%;
  --dx: -18px;
  --dy: -18px;
  --w: 170px;
  --h: 80px;
  --delay: 0.1s;
  --dur: 8.5s;
}
.athena-smoke span:nth-child(2) {
  --x: 58%;
  --y: 24%;
  --dx: 20px;
  --dy: -24px;
  --w: 135px;
  --h: 70px;
  --delay: 1.8s;
  --dur: 7.8s;
}
.athena-smoke span:nth-child(3) {
  --x: 42%;
  --y: 66%;
  --dx: -20px;
  --dy: -18px;
  --w: 145px;
  --h: 76px;
  --delay: 0.9s;
  --dur: 8.2s;
}
.athena-smoke span:nth-child(4) {
  --x: 58%;
  --y: 76%;
  --dx: 18px;
  --dy: -28px;
  --w: 160px;
  --h: 82px;
  --delay: 2.6s;
  --dur: 9s;
}
.athena-smoke span:nth-child(5) {
  --x: 50%;
  --y: 46%;
  --dx: 0px;
  --dy: -22px;
  --w: 125px;
  --h: 68px;
  --delay: 3.4s;
  --dur: 8.8s;
}
.athena-smoke span:nth-child(6) {
  --x: 36%;
  --y: 82%;
  --dx: -16px;
  --dy: -16px;
  --w: 120px;
  --h: 62px;
  --delay: 4.2s;
  --dur: 7.4s;
}
.athena-smoke span:nth-child(7) {
  --x: 64%;
  --y: 12%;
  --dx: 14px;
  --dy: -20px;
  --w: 118px;
  --h: 62px;
  --delay: 5s;
  --dur: 8.1s;
}
.athena-smoke span:nth-child(8) {
  --x: 46%;
  --y: 88%;
  --dx: 10px;
  --dy: -26px;
  --w: 140px;
  --h: 72px;
  --delay: 5.8s;
  --dur: 8.6s;
}
.intro-split .visual img.athena-glow-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  transform: translateY(-150px) translate(var(--px, 0), var(--py, 0));
  filter: brightness(1.08) drop-shadow(0 0 2px rgba(255, 244, 188, 0.95))
    drop-shadow(0 0 8px rgba(255, 185, 76, 0.95))
    drop-shadow(0 0 18px rgba(255, 153, 42, 0.7))
    drop-shadow(0 18px 42px rgba(0, 0, 0, 0.46));
  opacity: 0.85;
  z-index: -1;
  pointer-events: none;
  animation: athena-outline-glow 3.8s ease-in-out infinite alternate;
}
.intro-split .visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  transform: translateY(-150px) translate(var(--px, 0), var(--py, 0));
  pointer-events: none;
  image-rendering: auto;
}
.intro-split:hover .visual img {
  transition: none;
}

@keyframes intro-cloud-drift {
  0% {
    transform: translate(-53%, -75%) scale(0.98);
    opacity: 0.78;
  }
  50% {
    transform: translate(-47%, -77%) scale(1.05);
    opacity: 0.98;
  }
  100% {
    transform: translate(-51%, -73%) scale(1.01);
    opacity: 0.86;
  }
}

@keyframes intro-smoke-puff {
  0% {
    transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(0.86);
    opacity: 0;
  }
  20% {
    opacity: 0.62;
  }
  58% {
    opacity: 0.46;
  }
  100% {
    transform: translate(-50%, -50%) translate3d(var(--dx), var(--dy), 0)
      scale(1.18);
    opacity: 0;
  }
}

@keyframes athena-outline-glow {
  from {
    opacity: 0.68;
  }
  to {
    opacity: 0.95;
  }
}

@keyframes intro-halo-pulse {
  0% {
    transform: translate(-50%, -58%) scale(0.985);
    opacity: 0.55;
  }
  100% {
    transform: translate(-50%, -59%) scale(1.02);
    opacity: 0.86;
  }
}

@keyframes intro-particle {
  0% {
    transform: translate3d(0, 0, 0) scale(0.35);
    opacity: 0;
  }
  18% {
    opacity: 0.95;
  }
  52% {
    opacity: 0.75;
  }
  100% {
    transform: translate3d(var(--dx), var(--dy), 0) scale(1.1);
    opacity: 0;
  }
}

@media (max-width: 980px), (prefers-reduced-motion: reduce) {
  .intro-split .visual img {
    transform: translateY(-150px);
  }
}

.intro-split .copy {
  padding: clamp(20px, 3vw, 34px);
  background: linear-gradient(
    180deg,
    rgba(18, 32, 32, 0.72),
    rgba(9, 18, 18, 0.54)
  );
  border-left: 3px solid rgba(217, 164, 65, 0.78);
  box-shadow: inset 0 0 0 1px rgba(242, 214, 133, 0.1);
}
.intro-split .eyebrow {
  color: var(--accent2);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.intro-split .display {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.6vw, 3.65rem);
  line-height: 1.02;
  margin: 0 0 16px;
  color: #fff3cf;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.44);
}
.intro-split .copy .muted {
  font-size: 1.08rem;
  color: #d9cfb4;
}

@media (max-width: 980px) {
  .intro-split .split {
    grid-template-columns: 1fr;
  }
  .intro-split .visual {
    order: 1;
    max-width: 520px;
    margin: 0 auto;
  }
  .intro-split .copy {
    order: 2;
  }
}

.chars-spotlight {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0;
  overflow: hidden;
}
.chars-spotlight .bg-panel {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(9, 16, 16, 0.76), rgba(9, 16, 16, 0.8)), #0b1111;
  z-index: 0;
}
.chars-spotlight .wrap {
  position: relative;
  z-index: 1;
}

.chars-spotlight .spotlight {
  display: grid;
  grid-template-columns: minmax(320px, 640px) 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.chars-spotlight .visual {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
}
.chars-spotlight .keyart {
  position: absolute;
  left: -38%;
  bottom: -6%;
  height: 125%;
  width: auto;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 26px 60px rgba(0, 0, 0, 0.45));
  transform: translate(var(--px, 0), var(--py, 0));
  z-index: 4;
  transition:
    transform 0.5s ease-out,
    opacity 0.3s ease;
}

.chars-spotlight .keyart.swapping {
  opacity: 0;
}

.chars-spotlight .ingame-frame {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(420px, 38vw, 520px);
  aspect-ratio: 16 / 9;
  background: transparent;
  border: 1px solid rgba(217, 164, 65, 0.34);
  border-radius: 8px;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  z-index: 2;
  transition:
    transform 0.5s ease-out,
    opacity 0.3s ease;
}

.chars-spotlight .ingame-frame.swapping {
  opacity: 0;
}

.chars-spotlight .ingame-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.chars-spotlight .ingame-frame img.swap-out {
  animation: fadeOutScale 0.3s ease forwards;
}

.chars-spotlight .ingame-frame img.swap-in {
  animation: fadeInScale 0.3s ease forwards;
}

@keyframes fadeOutScale {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.95);
  }
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.chars-spotlight .copy {
  color: var(--text);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.36);
  padding: 24px 26px;
  background: linear-gradient(
    180deg,
    rgba(18, 32, 32, 0.72),
    rgba(9, 18, 18, 0.5)
  );
  border: 1px solid rgba(217, 164, 65, 0.2);
  border-radius: 8px;
}
.chars-spotlight .eyebrow {
  color: var(--accent2);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 8px;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.chars-spotlight .name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5.2vw, 4.25rem);
  line-height: 0.95;
  margin: 0 0 8px;
  color: #fff3cf;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.chars-spotlight .era {
  margin: 0 0 16px;
  color: #d9a441;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.chars-spotlight .desc {
  margin: 0;
  font-size: 1.05rem;
  color: #d8cfb5;
  max-width: 58ch;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.chars-spotlight .copy.fade-out > * {
  opacity: 0;
  transform: translateY(10px);
}
.chars-spotlight .copy.fade-in > * {
  animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.chars-spotlight .carousel {
  --bubble: 88px;
  --gap: 18px;
  --arrow: 38px;
  position: relative;
  display: grid;
  grid-template-columns: auto max-content auto;
  align-items: center;
  justify-content: center;
  column-gap: 12px;
  margin-top: 12px;
}
.chars-spotlight .carousel .nav {
  width: var(--arrow);
  height: var(--arrow);
  border-radius: 6px;
  border: 1px solid rgba(217, 164, 65, 0.34);
  background: rgba(34, 31, 23, 0.72);
  display: grid;
  place-items: center;
  cursor: pointer;
  user-select: none;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.chars-spotlight .carousel .nav:hover {
  transform: translateY(-1px);
  background: #274947;
  border-color: var(--accent2);
}
.chars-spotlight .carousel .nav.prev {
  grid-column: 1;
  justify-self: end;
}
.chars-spotlight .carousel .nav.next {
  grid-column: 3;
  justify-self: start;
}

.chars-spotlight .track {
  grid-column: 2;
  display: grid;
  grid-auto-flow: column;
  gap: var(--gap);
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 6px;
  border-radius: 8px;
}
.chars-spotlight .track::-webkit-scrollbar {
  display: none;
}
.chars-spotlight .thumb {
  width: var(--bubble);
  height: var(--bubble);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0b1111;
  border: 2px solid rgba(217, 164, 65, 0.28);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  overflow: hidden;
  padding: 0;
}
.chars-spotlight .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.6);
  transform-origin: 50% 50%;
}
.chars-spotlight .thumb:is(:hover, :focus-visible) {
  transform: translateY(-1px);
  border-color: rgba(242, 214, 133, 0.62);
}
.chars-spotlight .thumb.is-active {
  border-color: var(--accent2);
  box-shadow:
    0 0 0 3px rgba(217, 164, 65, 0.22),
    0 8px 28px rgba(0, 0, 0, 0.48);
}
.chars-spotlight .thumb.is-active img {
  transform: scale(1.7);
}
.chars-spotlight .thumb:hover img {
  transform: scale(1.65);
}

@media (min-width: 1025px) {
  .chars-spotlight .spotlight {
    --col-gap: clamp(24px, 4vw, 56px);
    gap: var(--col-gap);
  }
  .chars-spotlight .ingame-frame {
    right: calc(-1 * var(--col-gap) - 40px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
}

@media (min-width: 1400px) {
  .chars-spotlight .ingame-frame {
    right: calc(-1 * var(--col-gap) + 30px);
  }
}

@media (max-width: 1024px) {
  .chars-spotlight .spotlight {
    grid-template-columns: 1fr;
  }
  .chars-spotlight .visual {
    min-height: 480px;
  }
  .chars-spotlight .keyart {
    left: -2%;
    height: auto;
    width: 110%;
    bottom: -2%;
  }
  .chars-spotlight .ingame-frame {
    right: 4%;
    width: clamp(260px, 50%, 420px);
  }
}

@media (max-width: 640px) {
  .chars-spotlight .visual {
    min-height: 420px;
  }
  .chars-spotlight .ingame-frame {
    width: 70%;
    right: 6%;
  }
}

/* ── Gameplay Features ── */
.gameplay-features {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0;
  background:
    linear-gradient(180deg, #0b1111, #0e1a1a 48%, #080e0e),
    radial-gradient(
      circle at 50% 20%,
      rgba(217, 164, 65, 0.06),
      transparent 42%
    );
}

.features-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 28px;
}

@media (max-width: 700px) {
  .features-grid {
    grid-template-columns: 1fr !important;
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(217, 164, 65, 0.24);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  background: linear-gradient(
    180deg,
    rgba(18, 32, 32, 0.98),
    rgba(9, 17, 17, 0.98)
  );
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent2);
  box-shadow:
    0 0 0 2px rgba(217, 164, 65, 0.16),
    0 20px 48px rgba(0, 0, 0, 0.46);
}

.feature-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0e1818;
  overflow: hidden;
}

.feature-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  image-rendering: auto;
}

.feature-card:hover .feature-img-wrap img {
  transform: scale(1.05);
}

.feature-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 2vw, 1.46rem);
  margin: 0;
  color: #fff0c0;
  line-height: 1.25;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
  color: var(--accent2);
}

.feature-desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  flex: 1;
}

/* ── Gallery ── */
.gallery {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0;
}
.gallery .grid {
  grid-template-columns: repeat(4, 1fr);
}
.gallery .card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 164, 65, 0.22);
  border-radius: var(--radius);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.gallery .card img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  image-rendering: auto;
  height: 180px;
}
.gallery .card:hover {
  border-color: var(--accent2);
  box-shadow:
    0 0 0 3px rgba(217, 164, 65, 0.2),
    0 12px 28px rgba(0, 0, 0, 0.44);
}
.gallery .card:hover img {
  transform: scale(1.08);
}

@media (max-width: 1000px) {
  .gallery .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .gallery .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.community-section {
  padding: clamp(56px, 8vw, 96px) 0;
  position: relative;
}
.community-section .panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 40px);
  background:
    linear-gradient(180deg, rgba(18, 32, 32, 0.96), rgba(9, 17, 17, 0.98)),
    radial-gradient(
      circle at 12% 20%,
      rgba(217, 164, 65, 0.08),
      transparent 36%
    );
  border: 1px solid rgba(217, 164, 65, 0.28);
  border-radius: 8px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.44),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  max-width: var(--w);
  margin: 0 auto 28px;
  z-index: 1;
}
.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  justify-content: center;
}
.community-grid .right {
  max-width: 500px;
  width: 100%;
}

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

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 25px;
}
.social-icons .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(217, 164, 65, 0.3);
  border-radius: 6px;
  background: rgba(15, 15, 12, 0.28);
  transition: all 0.3s ease;
}
.social-icons img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
.social-icons .icon:hover {
  border-color: var(--accent2);
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(217, 164, 65, 0.24);
}
.social-icons .icon:hover img {
  filter: sepia(1) saturate(1.45) hue-rotate(350deg) brightness(1.1);
}

.nl-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 16px;
}
.nl-form input[type="email"] {
  flex: 1 1 420px;
  min-width: 320px;
  max-width: 560px;
  background: rgba(10, 10, 8, 0.42);
  border: 1px solid rgba(217, 164, 65, 0.34);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  color: var(--text);
  font-size: 1rem;
  height: 54px;
  box-shadow: inset 0 0 0 1px #00000033;
}
.btn-outline {
  height: 54px;
  padding: 0 1.2rem;
  background: linear-gradient(180deg, #6b511e, #443112);
  border: 1px solid rgba(242, 214, 133, 0.72);
  border-radius: 6px;
  color: #fff7dd;
  font-weight: 700;
  box-shadow: 0 0 0 1px #ffffff10 inset;
  transition:
    transform 0.12s ease,
    background 0.12s ease,
    border-color 0.12s;
}
.btn-outline:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #8c6824, #5a3e15);
  border-color: #fff0ac;
}
.nl-form .nl-consent,
.nl-form .nl-msg {
  flex-basis: 100%;
  margin: 8px 0 0;
}
.nl-form .nl-consent {
  font-size: 0.85rem;
  color: var(--muted);
}
.nl-form .nl-consent a {
  color: inherit;
  text-decoration: underline;
}
.nl-form .nl-msg.is-ok {
  color: #9bf0ff;
}
.nl-form .nl-msg.is-warn {
  color: #ffd36b;
}

footer {
  position: relative;
  z-index: 2;
  padding: 40px 0 72px;
  border-top: 1px solid rgba(217, 164, 65, 0.22);
  margin-top: 16px;
  background: #0b1111;
  max-width: 2000px;
  margin-left: auto;
  margin-right: auto;
}
footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-page {
  padding: clamp(48px, 8vw, 96px) 0;
}
.legal-wrap {
  max-width: 900px;
}
.legal-wrap h1,
.legal-wrap h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: #fff3cf;
  line-height: 1.15;
}
.legal-wrap h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0 0 8px;
}
.legal-wrap h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  margin: 34px 0 10px;
}
.legal-wrap p,
.legal-wrap li {
  color: #d9cfb4;
}
.legal-wrap ul {
  padding-left: 1.2rem;
}
.legal-wrap strong {
  color: #fff3cf;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  padding: 4vh 4vw;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.lightbox.open {
  display: grid;
  animation: fadeIn 0.4s ease forwards;
}
.lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  transform: scale(0.5);
  opacity: 0;
  transition:
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.7s ease;
}
.lightbox.open img {
  transform: scale(1);
  opacity: 1;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.lb-btn {
  position: absolute;
  background: #ffffff22;
  color: #fff;
  border: 1px solid #ffffff33;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    0.15s transform ease,
    0.15s background ease;
  backdrop-filter: blur(6px);
}
.lb-btn:hover {
  background: #ffffff33;
}
.lb-close {
  top: 20px;
  right: 20px;
}
.lb-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.lb-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
body.lb-lock {
  overflow: hidden;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.hero-video {
  opacity: 1 !important;
  transform: none !important;
}

.ambient-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 9998;
  overflow: hidden;
}

.ambient-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 244, 188, 0.95),
    rgba(217, 164, 65, 0.45) 45%,
    transparent 72%
  );
  animation: ambient-drift ease-in-out infinite;
}

@media (max-width: 768px) {
  /* Halve the animating count on mobile (build-time renders all of them). */
  .ambient-particle:nth-child(n + 15) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-particles {
    display: none;
  }

  /* Stop all decorative motion (loops + scroll-reveal) for users who ask. */
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@keyframes ambient-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(0.65);
    opacity: 0;
  }
  18% {
    opacity: 0.62;
  }
  56% {
    opacity: 0.38;
  }
  100% {
    transform: translate3d(var(--drift-x), var(--drift-y), 0) scale(1.15);
    opacity: 0;
  }
}

.roadmap {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0;
  background: #0b1111;
}

.timeline {
  position: relative;
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 60px 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 40px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--accent),
    rgba(217, 164, 65, 0.28),
    var(--accent2)
  );
}

.timeline-item {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.timeline-marker {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--panel);
  border: 3px solid #ffffff30;
  z-index: 2;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.timeline-marker.current {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(217, 164, 65, 0.48);
  animation: pulse 2s ease-in-out infinite;
}

.timeline-marker.future {
  background: var(--accent2);
  border-color: var(--accent2);
  box-shadow: 0 0 15px rgba(255, 211, 107, 0.5);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.timeline-content {
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(18, 32, 32, 0.98),
    rgba(9, 17, 17, 0.98)
  );
  border: 1px solid rgba(217, 164, 65, 0.24);
  border-radius: 8px;
  padding: 20px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.34),
    0 0 22px rgba(217, 164, 65, 0.16);
}

.timeline-date {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.timeline-item .timeline-marker.current ~ .timeline-content .timeline-date,
.timeline-item:has(.timeline-marker.current) .timeline-date {
  color: var(--accent);
}

.timeline-item .timeline-marker.future ~ .timeline-content .timeline-date,
.timeline-item:has(.timeline-marker.future) .timeline-date {
  color: var(--accent2);
}

.timeline-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  margin: 0 0 8px;
  color: var(--text);
  line-height: 1.3;
}

.timeline-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .timeline {
    flex-wrap: wrap;
    gap: 30px;
  }
  .timeline-item {
    flex: 0 0 calc(50% - 15px);
  }
  .timeline::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .timeline {
    flex-direction: column;
    padding: 20px 0;
  }
  .timeline-item {
    flex: 1;
    width: 100%;
  }
  .timeline::before {
    display: block;
    left: 50%;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
    background: linear-gradient(
      180deg,
      var(--accent),
      rgba(217, 164, 65, 0.28),
      var(--accent2)
    );
  }
  .timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }
  .timeline-content {
    margin-top: 40px;
  }
}
