:root {
  --bg-gradient: radial-gradient(circle at 12% 20%, rgba(80, 0, 26, 0.28) 0%, transparent 42%),
    radial-gradient(circle at 78% 12%, rgba(38, 0, 90, 0.3) 0%, transparent 54%),
    linear-gradient(135deg, #010005 0%, #04000b 45%, #030008 72%, #000001 100%);
  --bg-grid: rgba(255, 45, 140, 0.07);
  --text-primary: #f6e9ff;
  --text-secondary: #cab2ff;
  --panel: rgba(15, 6, 34, 0.86);
  --panel-border: rgba(178, 120, 255, 0.35);
  --shadow-intense: 0 38px 120px rgba(0, 0, 0, 0.85);
  --accent-1: #ff2d75;
  --accent-2: #38d0ff;
  --accent-3: #ff9f1c;
  --accent-4: #a341ff;
  --glow: drop-shadow(0 0 18px rgba(255, 60, 150, 0.55));
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Unbounded", system-ui, sans-serif;
  color: var(--text-primary);
  background: var(--bg-gradient);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background: radial-gradient(circle at 20% 30%, rgba(255, 30, 110, 0.22), rgba(10, 0, 20, 0) 52%),
    radial-gradient(circle at 75% 18%, rgba(54, 0, 120, 0.26), rgba(5, 0, 12, 0) 56%),
    conic-gradient(from 120deg, rgba(255, 90, 200, 0.12), rgba(60, 0, 120, 0.12), rgba(0, 255, 240, 0.08), rgba(255, 90, 200, 0.12));
  mix-blend-mode: screen;
  filter: blur(160px);
  opacity: 0.4;
}

body::after {
  background: repeating-conic-gradient(from 0deg, rgba(255, 60, 150, 0.06) 0deg, rgba(255, 60, 150, 0.06) 5deg, transparent 5deg, transparent 12deg);
  mix-blend-mode: overlay;
  opacity: 0.35;
  filter: blur(0.4px);
}

.bg-sun {
  position: fixed;
  width: 60vw;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle, rgba(230, 22, 90, 0.28) 0%, rgba(0, 0, 0, 0) 68%);
  top: -20vw;
  left: 55%;
  transform: translateX(-50%);
  filter: blur(46px);
  pointer-events: none;
  z-index: 0;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(var(--bg-grid) 1px, transparent 1px), linear-gradient(90deg, var(--bg-grid) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.16;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
  animation: grid-spin 38s linear infinite;
}

.bg-noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='1.05' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.1'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

@keyframes grid-spin {
  from {
    transform: rotate(0deg) scale(1);
  }
  to {
    transform: rotate(360deg) scale(1.05);
  }
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

.masthead {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 32px clamp(20px, 5vw, 70px);
  text-transform: lowercase;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 1px;
}

.brand-pill {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(255, 40, 150, 0.35), inset 0 -8px 14px rgba(255, 255, 255, 0.45);
  background: radial-gradient(circle at 35% 25%, rgba(255, 70, 160, 0.6), rgba(50, 0, 90, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-6deg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand-pill:hover {
  transform: rotate(-2deg) scale(1.03);
  box-shadow: 0 20px 45px rgba(206, 95, 255, 0.45), inset 0 -6px 16px rgba(255, 255, 255, 0.6);
}

.brand-pill__svg {
  width: 90%;
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(140, 40, 200, 0.25));
}

.brand-name {
  font-family: "Cinzel", "Unbounded", serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: #f9e9ff;
  text-shadow: 0 8px 30px rgba(255, 60, 150, 0.5);
}

.brand-tag {
  font-size: 0.9rem;
  background: rgba(64, 20, 70, 0.6);
  padding: 6px 12px;
  border-radius: 999px;
  color: #f6e8ff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
  color: #fff;
  position: relative;
  padding: 8px 4px;
  font-size: 1rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent-3));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

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

.btn {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
  font-family: "Nunito", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.1s ease, box-shadow 0.2s ease;
}

.btn:active {
  transform: translateY(3px);
}

.btn-outline {
  background: rgba(46, 16, 60, 0.8);
  color: #f6e8ff;
  border: 3px solid rgba(124, 80, 210, 0.6);
  box-shadow: 0 8px 0 rgba(40, 0, 64, 0.55);
}

.btn-solid {
  background: linear-gradient(120deg, #3d0038, var(--accent-1));
  color: #ffe9ff;
  border: 3px solid rgba(255, 80, 150, 0.5);
  box-shadow: 0 12px 0 rgba(24, 0, 40, 0.6);
}

.btn-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(120deg, var(--accent-2), var(--accent-1));
  border: 3px solid rgba(38, 10, 60, 0.6);
  color: #0c0012;
  box-shadow: 0 12px 28px rgba(54, 220, 255, 0.4);
}

.btn-ghost {
  background: rgba(44, 16, 52, 0.7);
  border: 3px dashed rgba(255, 90, 170, 0.65);
  color: #ffe9ff;
  font-weight: 700;
}

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

.btn-ghost:hover {
  box-shadow: 0 12px 0 rgba(255, 60, 150, 0.35);
}

@keyframes burst {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

.hero {
  display: grid;
  gap: clamp(30px, 6vw, 70px);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  padding: 40px clamp(20px, 6vw, 90px) 80px;
}

.hero-holo {
  position: relative;
  width: clamp(260px, 45vw, 420px);
  aspect-ratio: 1/1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 32%, rgba(255, 50, 150, 0.35), rgba(14, 0, 32, 0.92) 68%, rgba(4, 0, 12, 1));
  box-shadow: 0 36px 110px rgba(255, 50, 140, 0.35), inset 0 0 60px rgba(68, 0, 140, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transform-style: preserve-3d;
}

.hero-holo::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 7px dashed rgba(255, 77, 166, 0.55);
  opacity: 0.9;
  animation: glow-ring 9s linear infinite;
}

.hero-holo::after {
  content: "";
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60, 255, 255, 0.22), rgba(0, 0, 0, 0) 70%);
  filter: blur(18px);
  opacity: 0.75;
  pointer-events: none;
}

@keyframes glow-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hero-discord {
  width: 78%;
  height: auto;
  border-radius: 32px;
  box-shadow: 0 24px 55px rgba(58, 0, 120, 0.55), inset 0 -10px 28px rgba(255, 255, 255, 0.45);
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-holo.is-tilting {
  box-shadow: 0 40px 100px rgba(143, 65, 255, 0.45), inset 0 0 50px rgba(255, 255, 255, 0.55);
}

.hero-copy {
  background: rgba(14, 4, 28, 0.88);
  border-radius: 32px;
  padding: clamp(24px, 5vw, 45px);
  border: 2px solid rgba(186, 90, 255, 0.4);
  box-shadow: 0 24px 65px rgba(8, 0, 24, 0.6);
}

.hero-kicker {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 132, 210, 0.9);
  margin-bottom: 18px;
  font-size: 0.85rem;
  text-shadow: 0 0 12px rgba(255, 70, 180, 0.55);
}

.hero h1 {
  font-family: "Cinzel", "Unbounded", serif;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  margin: 0 0 20px;
  line-height: 1.05;
  color: #f9eaff;
  text-shadow: 0 0 18px rgba(255, 48, 160, 0.4), 0 0 42px rgba(68, 0, 120, 0.55), 0 0 72px rgba(56, 240, 255, 0.25);
}

.text-swirl {
  position: relative;
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 2px var(--accent-1);
}

.text-swirl::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ff3d9b, #3bdeff 35%, #ffc741 65%, #ff3d9b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: text-shift 3.5s ease-in-out infinite;
}

@keyframes text-shift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(222, 194, 255, 0.9);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.chant {
  font-family: "Chewy", cursive;
  font-size: 1.4rem;
  background: rgba(28, 8, 42, 0.85);
  border-radius: 20px;
  padding: 18px 22px;
  border: 2px solid rgba(190, 110, 255, 0.35);
  color: #fbe8ff;
  box-shadow: 0 14px 32px rgba(8, 0, 28, 0.55);
}

.chant.chant-glow {
  animation: chant 0.6s ease;
}

@keyframes chant {
  0% {
    transform: scale(1);
    text-shadow: none;
  }
  50% {
    transform: scale(1.04);
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.9);
  }
  100% {
    transform: scale(1);
    text-shadow: none;
  }
}

.ticker {
  overflow: hidden;
  margin: 0 auto;
  padding: 12px 0;
  background: rgba(20, 5, 32, 0.8);
  border-top: 2px solid rgba(152, 98, 255, 0.35);
  border-bottom: 2px solid rgba(152, 98, 255, 0.35);
}

.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  gap: 60px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  animation: ticker 16s linear infinite;
  color: rgba(230, 210, 255, 0.78);
}

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

.dossier {
  position: relative;
  margin: 90px clamp(20px, 6vw, 100px) 110px;
  padding: clamp(40px, 6vw, 70px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 5vw, 60px);
  border-radius: 42px;
  background: radial-gradient(circle at 20% 10%, rgba(255, 220, 255, 0.28), rgba(25, 0, 48, 0.92));
  box-shadow: 0 60px 120px rgba(12, 0, 32, 0.6);
  backdrop-filter: blur(22px);
  overflow: hidden;
}

.dossier::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 160, 255, 0.25), transparent 70%);
  transform: rotate(-8deg);
  pointer-events: none;
}

.dossier::after {
  content: "";
  position: absolute;
  inset: auto -20% -25% auto;
  width: 55%;
  height: 55%;
  background: radial-gradient(circle, rgba(120, 203, 255, 0.2), transparent 70%);
  transform: rotate(6deg);
  pointer-events: none;
}

.dossier-column {
  position: relative;
  z-index: 1;
  background: rgba(12, 4, 38, 0.65);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 42px);
  border: 1px solid rgba(158, 104, 240, 0.35);
  box-shadow: inset 0 0 50px rgba(132, 70, 220, 0.25), 0 20px 55px rgba(8, 0, 30, 0.45);
  backdrop-filter: blur(14px);
}

.dossier-origin h2,
.dossier-offering h3 {
  margin: 0 0 16px;
  font-family: "Cinzel", "Unbounded", serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #fcecff;
}

.dossier-origin {
  background: linear-gradient(160deg, rgba(28, 12, 62, 0.95), rgba(15, 4, 36, 0.92));
  border: 1px solid rgba(192, 152, 255, 0.28);
  box-shadow: inset 0 0 90px rgba(118, 70, 210, 0.22), 0 28px 60px rgba(8, 0, 30, 0.6);
  position: relative;
  overflow: hidden;
}

.dossier-origin::before,
.dossier-origin::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.dossier-origin::before {
  inset: -35% auto auto -30%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(255, 160, 255, 0.25), transparent 72%);
  transform: rotate(-18deg);
}

.dossier-origin::after {
  inset: auto -25% -30% 15%;
  width: 55%;
  height: 55%;
  background: radial-gradient(circle, rgba(102, 220, 255, 0.18), transparent 70%);
  transform: rotate(24deg);
}

.dossier-lede,
.dossier-column p {
  color: rgba(242, 228, 255, 0.86);
  line-height: 1.6;
  margin-bottom: 24px;
}

.dossier-ledger {
  display: grid;
  gap: 18px;
  margin: 0 0 32px;
}

.dossier-ledger div {
  position: relative;
  padding: 18px 24px;
  border-radius: 22px;
  background: rgba(17, 5, 42, 0.85);
  border: 1px solid rgba(182, 140, 255, 0.32);
  box-shadow: inset 0 0 35px rgba(108, 62, 196, 0.18), 0 16px 28px rgba(5, 0, 26, 0.55);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dossier-ledger div::before {
  content: "";
  position: absolute;
  inset: -50% 55% auto -25%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 70%);
  transform: rotate(22deg);
  opacity: 0.5;
}

.dossier-ledger div::after {
  content: "";
  position: absolute;
  inset: auto -40% -60% 40%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(111, 240, 255, 0.18), transparent 70%);
  transform: rotate(-18deg);
  opacity: 0.4;
}

.dossier-ledger div:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: inset 0 0 38px rgba(125, 235, 255, 0.2), 0 20px 34px rgba(4, 0, 20, 0.6);
}

.mitsubishi-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 2.6vw, 28px) clamp(28px, 4vw, 42px);
  margin-bottom: 24px;
  border-radius: 26px;
  background: linear-gradient(115deg, rgba(255, 143, 255, 0.35), rgba(137, 86, 255, 0.35), rgba(76, 240, 255, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 22px 45px rgba(66, 11, 112, 0.45), inset 0 0 35px rgba(255, 255, 255, 0.14);
  position: relative;
  overflow: hidden;
  max-width: clamp(320px, 42vw, 520px);
  min-height: clamp(96px, 12vw, 150px);
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mitsubishi-card::before {
  content: "";
  position: absolute;
  inset: -120% -40%;
  background: conic-gradient(from 0deg, rgba(255, 255, 255, 0.4), rgba(255, 120, 255, 0.15), rgba(76, 240, 255, 0.2), rgba(255, 255, 255, 0.4));
  animation: foil-pan 6s linear infinite;
  mix-blend-mode: screen;
  opacity: 0.35;
}

.mitsubishi-card::after {
  content: "";
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 65%);
  transform: rotate(-8deg);
  opacity: 0.4;
  pointer-events: none;
}

.mitsubishi-card img {
  position: relative;
  width: clamp(220px, 36vw, 420px);
  height: clamp(52px, 6vw, 96px);
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(40, 5, 70, 0.45));
  z-index: 1;
}

.mitsubishi-card:hover {
  transform: perspective(900px) rotateX(6deg) rotateY(-8deg) scale(1.03);
  box-shadow: 0 32px 65px rgba(66, 11, 112, 0.6), inset 0 0 45px rgba(255, 255, 255, 0.18);
}

.mitsubishi-card:hover::before {
  opacity: 0.6;
}

@keyframes foil-pan {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.dossier-ledger dt {
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 242, 255, 0.7);
  margin-bottom: 6px;
}

.dossier-ledger dd {
  margin: 6px 0 0;
  font-weight: 650;
  color: rgba(245, 236, 255, 0.95);
  font-size: 1rem;
}

.dossier-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 240, 255, 0.45);
  color: #fee4ff;
  background: linear-gradient(120deg, rgba(255, 118, 226, 0.35), rgba(138, 69, 255, 0.35));
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.7rem;
  position: relative;
  overflow: hidden;
}

.dossier-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.45), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dossier-badge:hover::before {
  opacity: 0.9;
}

.dossier-offering a {
  color: #f6d9ff;
  text-decoration: underline;
}

.roadmap {
  position: relative;
  --roadmap-progress: 0.5;
  background: linear-gradient(135deg, rgba(20, 7, 48, 0.82), rgba(9, 3, 28, 0.92));
  border-radius: 30px;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(164, 120, 255, 0.28);
  box-shadow: inset 0 0 60px rgba(110, 52, 190, 0.28), 0 22px 55px rgba(12, 0, 35, 0.5);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.roadmap::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -20%;
  width: 68%;
  height: 68%;
  background: radial-gradient(circle at center, rgba(255, 140, 255, 0.22), transparent 72%);
  transform: rotate(-12deg);
  pointer-events: none;
}

.roadmap::after {
  content: "";
  position: absolute;
  inset: clamp(58px, 9vw, 92px) clamp(18px, 4vw, 38px);
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(125, 235, 255, 0.7), rgba(255, 255, 255, 0.05));
  transform-origin: left;
  transform: scaleX(calc(var(--roadmap-progress, 0.5)));
  filter: drop-shadow(0 0 18px rgba(125, 235, 255, 0.8));
  pointer-events: none;
}

.roadmap-nodes {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(18px, 4vw, 28px);
  z-index: 1;
  margin-bottom: clamp(26px, 5vw, 36px);
}

.roadmap-nodes::before {
  content: "";
  position: absolute;
  top: clamp(48px, 8vw, 74px);
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(145, 109, 255, 0.3), rgba(255, 255, 255, 0.03));
  pointer-events: none;
}

.roadmap-node {
  position: relative;
  border: none;
  border-radius: 24px;
  padding: clamp(20px, 4vw, 26px) clamp(16px, 4vw, 22px);
  background: rgba(18, 6, 58, 0.75);
  color: rgba(236, 222, 255, 0.8);
  text-align: left;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  box-shadow: inset 0 0 24px rgba(88, 46, 165, 0.22), 0 12px 24px rgba(10, 0, 32, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  min-height: 140px;
}

.roadmap-node::before {
  content: "";
  position: absolute;
  top: -32px;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff84ff, #5df3ff);
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(125, 235, 255, 0.9);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.roadmap-node::after {
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  opacity: 0.6;
  transition: opacity 0.25s ease;
}

.roadmap-node span {
  display: block;
}

.node-year {
  font-size: 0.7rem;
  color: rgba(255, 242, 255, 0.6);
}

.node-label {
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.16em;
  color: rgba(249, 227, 255, 0.95);
  margin-top: 10px;
}

.roadmap-node.is-active,
.roadmap-node:focus-visible {
  outline: none;
  transform: translateY(-4px) scale(1.02);
  box-shadow: inset 0 0 32px rgba(125, 235, 255, 0.2), 0 16px 32px rgba(18, 10, 52, 0.55);
  color: rgba(248, 240, 255, 0.9);
  border: 1px solid rgba(125, 235, 255, 0.45);
}

.roadmap-node.is-active::before,
.roadmap-node:focus-visible::before {
  transform: translateX(-50%) scale(1.2);
  box-shadow: 0 0 28px rgba(125, 235, 255, 1);
}

.roadmap-node.is-active::after,
.roadmap-node:focus-visible::after {
  opacity: 1;
}

.roadmap-detail {
  position: relative;
  z-index: 1;
  background: rgba(12, 3, 40, 0.72);
  border-radius: 24px;
  border: 1px solid rgba(150, 108, 240, 0.3);
  padding: clamp(22px, 4vw, 32px);
  box-shadow: inset 0 0 40px rgba(94, 42, 168, 0.22);
}

.roadmap-detail::before {
  content: "";
  position: absolute;
  inset: -20% -40% auto auto;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(124, 224, 255, 0.18), transparent 70%);
  transform: rotate(22deg);
  pointer-events: none;
}

.roadmap-detail h4 {
  margin: 0;
  font-family: "Cinzel", "Unbounded", serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 1.05rem;
  color: rgba(249, 227, 255, 0.95);
}

.roadmap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.roadmap-tags span {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(95, 250, 255, 0.3), rgba(255, 140, 255, 0.38));
  color: rgba(249, 240, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.roadmap-detail p {
  margin: 0;
  color: rgba(235, 220, 255, 0.8);
  line-height: 1.6;
}

.mint-perks h3 {
  margin-top: 0;
  color: var(--accent-4);
}

.lore {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 6vw, 70px);
  padding: 70px clamp(20px, 6vw, 90px);
  align-items: start;
}

.lore-panel {
  background: rgba(20, 6, 38, 0.85);
  border-radius: 30px;
  padding: 34px;
  border: 2px solid rgba(172, 118, 255, 0.32);
  box-shadow: 0 26px 65px rgba(5, 0, 20, 0.6);
  color: rgba(239, 224, 255, 0.88);
}

.timeline {
  display: grid;
  gap: 20px;
}

.timeline-item {
  background: rgba(28, 9, 52, 0.8);
  border-radius: 28px;
  padding: 26px;
  border: 1px solid rgba(160, 118, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.timeline-item::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 90deg, rgba(255, 60, 199, 0.18), rgba(134, 67, 255, 0.2), rgba(35, 246, 255, 0.16), rgba(255, 196, 37, 0.28));
  transform: rotate(12deg);
  z-index: 0;
}

.timeline-item > * {
  position: relative;
  z-index: 1;
}

.bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(200, 80, 255, 0.35);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: rgba(250, 242, 255, 0.8);
}

.rituals {
  padding: 70px clamp(20px, 6vw, 90px);
  text-align: center;
}

.rituals h2 {
  font-size: 2.6rem;
  color: #fff;
  text-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.ritual-card {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 26px;
  padding: 22px;
  border: 3px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 40px rgba(16, 0, 30, 0.38);
  backdrop-filter: blur(6px);
}

.chaos {
  padding: 70px clamp(20px, 6vw, 90px) 90px;
}

.chaos details {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  padding: 18px 24px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  box-shadow: 0 16px 32px rgba(21, 0, 40, 0.25);
  font-weight: 700;
}

.chaos summary {
  cursor: pointer;
  font-size: 1.1rem;
}

.footer {
  padding: 40px 20px 60px;
  text-align: center;
  color: rgba(246, 230, 255, 0.75);
  background: rgba(16, 4, 28, 0.9);
  border-top: 2px solid rgba(176, 118, 255, 0.35);
  backdrop-filter: blur(12px);
  box-shadow: 0 -18px 45px rgba(0, 0, 0, 0.55);
}

.footer-links {
  margin: 18px 0;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer-links a {
  color: rgba(249, 236, 255, 0.85);
  font-weight: 700;
  text-decoration: none;
  background: rgba(44, 12, 58, 0.8);
  padding: 8px 18px;
  border-radius: 18px;
  border: 1px solid rgba(182, 126, 255, 0.4);
  box-shadow: 0 12px 24px rgba(6, 0, 20, 0.55);
}

.footer-note {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(247, 232, 255, 0.75);
}

body.theme-overdrive {
  --bg-gradient: radial-gradient(circle at 10% 10%, #fff 0%, transparent 25%),
    radial-gradient(circle at 90% 20%, #fff 0%, transparent 30%),
    linear-gradient(115deg, #ff1178 0%, #fffb7d 30%, #0ff0fc 60%, #7eff00 100%);
}

a {
  color: var(--accent-2);
}

a:hover {
  color: var(--accent-1);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Cinzel", "Unbounded", serif;
}

@media (max-width: 768px) {
  .masthead {
    justify-content: center;
  }

  .nav {
    justify-content: center;
  }

  .cta-cluster {
    justify-content: center;
  }

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

  .hero-actions {
    justify-content: center;
  }

  .roadmap::after {
    inset: clamp(70px, 18vw, 120px) clamp(18px, 4vw, 32px);
  }

  .roadmap-nodes::before {
    top: clamp(60px, 20vw, 110px);
  }
}

@media (max-width: 520px) {
  .brand {
    width: 100%;
    justify-content: center;
  }

  .nav {
    font-size: 0.9rem;
    gap: 12px;
  }
}

