/* ═══════════════════════════════════════════════════════════
   Tunic Games — indie game studio site
   Bold display type (Anton) · dark base · amber accent
   Inspired by Omero / Gamico studio-theme structures
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #0b0c10;
  --bg-2: #121318;
  --card: #16171d;
  --card-2: #1b1d24;

  --ink: #f2f3f7;
  --sub: #a3a9b8;
  --faint: #626879;

  --border: rgba(255, 255, 255, 0.09);
  --border-soft: rgba(255, 255, 255, 0.06);

  --amber-100: #ffe9be;
  --amber-300: #f9dca0;
  --amber-500: #f2b84b;
  --amber-600: #e8992d;
  --amber-700: #c97b1e;

  --grad-gold: linear-gradient(98deg, var(--amber-100) 0%, var(--amber-500) 48%, var(--amber-600) 100%);

  --green: #35d07f;
  --blue: #5b8cff;
  --purple: #a78bfa;

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --radius: 18px;
  --radius-lg: 28px;
  --container: 1200px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

::selection {
  background: rgba(242, 184, 75, 0.3);
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #23252e;
  border-radius: 8px;
  border: 2px solid var(--bg);
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.container-narrow {
  max-width: 780px;
}

/* ═══════════ Typography ═══════════ */

.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1.04;
}

h1.display {
  font-size: clamp(3rem, 7vw, 5.6rem);
}

h2.display {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
}

h3.display {
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
}

h3,
h4 {
  font-weight: 600;
}

.grad {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--sub);
  max-width: 50ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sub);
}

.eyebrow .spark {
  color: var(--amber-500);
}

.eyebrow-dark {
  color: #5a5040;
}

.section-sub {
  color: var(--sub);
  max-width: 54ch;
  margin-top: 16px;
}

/* ═══════════ Buttons ═══════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.92rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s, border-color 0.25s;
  white-space: nowrap;
}

.btn-amber {
  background: var(--grad-gold);
  color: #221302;
  box-shadow: 0 8px 26px -8px rgba(242, 184, 75, 0.55);
}

.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -8px rgba(242, 184, 75, 0.65);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
  border-color: rgba(242, 184, 75, 0.5);
  transform: translateY(-2px);
}

.btn-dark {
  background: #16130a;
  color: var(--amber-300);
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.5);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 17px 34px;
  font-size: 1rem;
}

/* ═══════════ Nav ═══════════ */

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(11, 12, 16, 0.8);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-name em {
  font-style: normal;
  color: var(--amber-500);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links > a:not(.btn) {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--sub);
  transition: color 0.2s;
}

.nav-links > a:not(.btn):hover {
  color: var(--amber-300);
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 110;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  margin-inline: auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out);
}

body.nav-open .nav-burger span:first-child {
  transform: translateY(4px) rotate(45deg);
}

body.nav-open .nav-burger span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* ═══════════ Hero ═══════════ */

.hero {
  position: relative;
  min-height: min(92svh, 860px);
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
}

.hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-art img {
  position: absolute;
  right: -16%;
  top: 50%;
  transform: translateY(-50%);
  width: min(920px, 78%);
  opacity: 0.85;
  -webkit-mask-image: radial-gradient(60% 60% at 50% 50%, #000 35%, transparent 78%);
  mask-image: radial-gradient(60% 60% at 50% 50%, #000 35%, transparent 78%);
  animation: heroFloat 9s ease-in-out infinite;
}

@keyframes heroFloat {
  50% {
    transform: translateY(calc(-50% - 14px));
  }
}

.hero-inner {
  position: relative;
}

.hero .eyebrow {
  margin-bottom: 24px;
}

.hero .lead {
  margin-top: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.side-label {
  display: none;
  position: absolute;
  left: 30px;
  bottom: 120px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--faint);
}

@media (min-width: 1440px) {
  .side-label {
    display: block;
  }
}

/* ═══════════ Ticker ═══════════ */

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--border-soft);
  background: var(--bg-2);
  padding: 16px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 40s linear infinite;
}

.ticker-track span {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(249, 220, 160, 0.5);
  white-space: nowrap;
  padding-right: 14px;
}

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

/* ═══════════ Sections ═══════════ */

.section {
  padding: 110px 0;
}

.section-tight {
  padding: 0 0 110px;
}

.section-head {
  margin-bottom: 48px;
}

.section-head .eyebrow {
  margin-bottom: 14px;
}

.section-head.centered {
  text-align: center;
}

/* ═══════════ Game banners ═══════════ */

.banner-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
}

.banner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 184, 75, 0.4);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}

.banner-bg {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-inline: 30px;
  background: radial-gradient(70% 90% at 50% 100%, rgba(242, 184, 75, 0.13), transparent 62%),
    radial-gradient(120% 140% at 50% 0%, #181b26, #0e1018 70%);
  transition: transform 0.6s var(--ease-out);
  overflow: hidden;
}

.banner-card:hover .banner-bg {
  transform: scale(1.03);
}

.banner-bg img {
  height: 85%;
  width: auto;
  margin-inline: -24px;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.55));
}

.banner-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11, 12, 16, 0.08) 35%, rgba(11, 12, 16, 0.88) 90%),
    linear-gradient(100deg, rgba(11, 12, 16, 0.5), transparent 45%);
}

.banner-status {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 2;
}

.banner-body {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 34px;
}

.banner-text h3 {
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  margin: 10px 0 8px;
}

.banner-text p {
  color: var(--sub);
  max-width: 52ch;
}

.game-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(11, 12, 16, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.tag-status {
  color: #7ee2a8;
  border-color: rgba(126, 226, 168, 0.4);
  background: rgba(18, 60, 38, 0.55);
}

.banner-platforms {
  display: flex;
  gap: 10px;
  flex: none;
}

.platform-dot {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(11, 12, 16, 0.6);
  color: var(--ink);
}

.platform-dot svg {
  width: 18px;
  height: 18px;
}

/* Mystery banner */

.banner-card.mystery {
  min-height: 240px;
  margin-top: 20px;
  background: radial-gradient(120% 160% at 50% 0%, #171923, var(--bg-2) 60%);
  cursor: default;
}

.banner-card.mystery:hover {
  transform: none;
  border-color: var(--border);
  box-shadow: none;
}

.mystery-glyph {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 5rem;
  color: rgba(242, 184, 75, 0.16);
  text-shadow: 0 0 40px rgba(242, 184, 75, 0.2);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

.redacted {
  color: transparent;
  background: repeating-linear-gradient(90deg, #262a35 0 16px, #1c1f28 16px 19px);
  border-radius: 8px;
}

/* ═══════════ Stats ═══════════ */

.stats-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: linear-gradient(120deg, #191307, #121318 55%);
  border: 1px solid rgba(242, 184, 75, 0.2);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-num {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sub);
}

/* ═══════════ Panels ═══════════ */

.panel-wrap {
  padding: 0 0 110px;
}

.panel {
  width: min(1360px, calc(100% - 24px));
  margin-inline: auto;
  border-radius: 34px;
  overflow: hidden;
}

.panel-light {
  background: #f3f0e9;
  color: #17130a;
}

.panel-amber {
  background: linear-gradient(115deg, var(--amber-300), var(--amber-500) 55%, var(--amber-600));
  color: #221302;
}

/* Studio / craft panel */

.panel-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-block: 84px;
}

.craft-copy h2 {
  color: #17130a;
  margin-bottom: 0;
}

.craft-sub {
  color: #5f584a;
  max-width: 50ch;
  margin-top: 16px;
}

.craft-list {
  list-style: none;
  margin-top: 40px;
  display: grid;
  gap: 22px;
}

.craft-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(23, 19, 10, 0.1);
}

.craft-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.craft-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--amber-600);
  line-height: 1.1;
  min-width: 52px;
}

.craft-list h3 {
  font-size: 1.05rem;
  color: #17130a;
  margin-bottom: 4px;
}

.craft-list p {
  color: #5f584a;
  font-size: 0.92rem;
}

/* Craft art */

.craft-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.craft-blob {
  position: absolute;
  width: min(430px, 90%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff7e6, #f0d9a8 70%);
  box-shadow: inset 0 0 0 1px rgba(23, 19, 10, 0.06);
}

.craft-hero {
  position: relative;
  width: min(380px, 82%);
  filter: drop-shadow(0 30px 40px rgba(23, 19, 10, 0.35));
  animation: heroSway 8s ease-in-out infinite;
}

@keyframes heroSway {
  50% {
    transform: translateY(-12px);
  }
}

.float-item {
  position: absolute;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 30px -12px rgba(23, 19, 10, 0.35);
  animation: floaty 6s ease-in-out infinite;
}

.float-item img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.fi-1 {
  left: 4%;
  top: 12%;
}

.fi-2 {
  right: 3%;
  top: 32%;
  animation-delay: -2s;
}

.fi-3 {
  left: 10%;
  bottom: 8%;
  animation-delay: -4s;
}

@keyframes floaty {
  50% {
    transform: translateY(-14px) rotate(3deg);
  }
}

/* ═══════════ Valerion ═══════════ */

.valerion-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.valerion-logo {
  width: min(300px, 66%);
  margin-left: -10px;
  filter: drop-shadow(0 10px 36px rgba(242, 184, 75, 0.28));
}

.valerion-copy h2 {
  margin-top: 22px;
}

.features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  margin-top: 34px;
}

.features li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.feat-icon {
  flex: 0 0 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--amber-500);
  background: rgba(242, 184, 75, 0.09);
  border: 1px solid rgba(242, 184, 75, 0.22);
}

.feat-icon svg {
  width: 20px;
  height: 20px;
}

.features h4 {
  font-size: 0.97rem;
  margin-bottom: 3px;
}

.features p {
  color: var(--sub);
  font-size: 0.87rem;
  line-height: 1.5;
}

.valerion-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}

.store-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--faint);
  padding: 12px 18px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  cursor: default;
}

.store-pill svg {
  width: 14px;
  height: 14px;
  opacity: 0.75;
}

/* Phones */

.valerion-phones {
  display: grid;
  place-items: center;
}

.phones {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 580px;
}

.phone {
  position: absolute;
  width: 238px;
  aspect-ratio: 393 / 852;
  padding: 9px;
  border-radius: 38px;
  background: linear-gradient(160deg, #23293a, #0c0f16 60%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 40px 80px -24px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.phone-front {
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  z-index: 3;
}

.phone-back-l {
  left: 2%;
  top: 76px;
  transform: rotate(-8deg) scale(0.87);
  z-index: 1;
  opacity: 0.9;
}

.phone-back-r {
  right: 2%;
  top: 84px;
  transform: rotate(8deg) scale(0.87);
  z-index: 2;
  opacity: 0.95;
}

.phones-glow {
  position: absolute;
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%);
  width: 80%;
  height: 110px;
  background: radial-gradient(50% 100% at 50% 100%, rgba(242, 184, 75, 0.22), transparent 70%);
  filter: blur(28px);
}

/* Armory */

.armory {
  margin-top: 84px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
}

.armory-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 24px;
  margin-bottom: 24px;
}

.armory-head p {
  color: var(--sub);
  font-size: 0.93rem;
}

.armory-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.armory-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--bg-2);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 20px 12px 15px;
  transition: transform 0.25s var(--ease-out), border-color 0.25s, box-shadow 0.25s;
}

.armory-tile img {
  width: min(96px, 72%);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.5));
}

.armory-tile figcaption {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.armory-tile:hover {
  transform: translateY(-5px);
}

.t-common:hover { border-color: rgba(163, 169, 184, 0.5); }
.t-uncommon:hover { border-color: rgba(53, 208, 127, 0.5); box-shadow: 0 10px 30px -12px rgba(53, 208, 127, 0.3); }
.t-rare:hover { border-color: rgba(91, 140, 255, 0.5); box-shadow: 0 10px 30px -12px rgba(91, 140, 255, 0.3); }
.t-epic:hover { border-color: rgba(167, 139, 250, 0.55); box-shadow: 0 10px 30px -12px rgba(167, 139, 250, 0.3); }
.t-legendary:hover { border-color: rgba(242, 184, 75, 0.55); box-shadow: 0 10px 30px -12px rgba(242, 184, 75, 0.35); }

.r-common { color: var(--sub); }
.r-uncommon { color: var(--green); }
.r-rare { color: var(--blue); }
.r-epic { color: var(--purple); }
.r-legendary { color: var(--amber-500); }

/* ═══════════ Heroes marquee ═══════════ */

.heroes-band {
  padding: 0 0 110px;
  overflow: hidden;
}

.heroes-band-head {
  margin-bottom: 40px;
}

.heroes-band-head .eyebrow {
  margin-bottom: 12px;
}

.heroes-marquee {
  position: relative;
  border-block: 1px solid var(--border-soft);
  background: var(--bg-2);
  padding: 30px 0 10px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.heroes-track {
  display: flex;
  align-items: flex-end;
  gap: 34px;
  width: max-content;
  animation: ticker 60s linear infinite;
}

.heroes-track img {
  height: 210px;
  width: auto;
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.55));
  transition: transform 0.3s var(--ease-out);
}

.heroes-track img:hover {
  transform: translateY(-8px) scale(1.04);
}

/* ═══════════ FAQ ═══════════ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  position: relative;
  flex: none;
  width: 18px;
  height: 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  background: var(--amber-500);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out);
}

.faq-icon::before {
  width: 12px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
}

.faq-item[open] .faq-icon::after {
  transform: rotate(90deg);
}

.faq-body {
  padding: 0 22px 20px;
  color: var(--sub);
  font-size: 0.94rem;
}

.faq-body a {
  color: var(--amber-500);
  font-weight: 600;
}

.faq-body a:hover {
  text-decoration: underline;
}

/* ═══════════ CTA panel ═══════════ */

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding-block: 64px;
}

.panel-amber h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  margin-bottom: 6px;
}

.panel-amber p {
  color: rgba(34, 19, 2, 0.75);
  font-weight: 500;
}

/* ═══════════ Footer ═══════════ */

.footer {
  position: relative;
  border-top: 1px solid var(--border-soft);
  background: var(--bg-2);
  padding-top: 64px;
  overflow: hidden;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  z-index: 1;
}

.footer-brand p {
  color: var(--sub);
  font-size: 0.93rem;
  margin-top: 16px;
  max-width: 30ch;
}

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

.footer-col h5 {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 6px;
}

.footer-col a {
  color: var(--sub);
  font-size: 0.93rem;
  width: fit-content;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--amber-300);
}

.footer-soon {
  color: var(--faint);
  font-size: 0.93rem;
}

.footer-bottom {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-block: 22px 140px;
  border-top: 1px solid var(--border-soft);
  color: var(--faint);
  font-size: 0.85rem;
  z-index: 1;
}

.footer-watermark {
  position: absolute;
  left: 50%;
  bottom: -0.24em;
  transform: translateX(-50%);
  font-size: clamp(4rem, 13vw, 11.5rem);
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 184, 75, 0.14);
  pointer-events: none;
}

/* ═══════════ Reveal ═══════════ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
  transition-delay: var(--d, 0s);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ═══════════ Responsive ═══════════ */

@media (max-width: 1020px) {
  .hero {
    min-height: 0;
  }

  .hero-art img {
    right: -30%;
    opacity: 0.4;
  }

  .valerion-grid,
  .panel-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .craft-art {
    min-height: 460px;
  }

  .stats-panel {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }

  .banner-bg .hide-m {
    display: none;
  }
}

@media (max-width: 820px) {
  .nav-burger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: rgba(11, 12, 16, 0.96);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 105;
  }

  body.nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-links > a:not(.btn) {
    font-size: 1.3rem;
    color: var(--ink);
  }

  .section {
    padding: 80px 0;
  }

  .panel-wrap,
  .section-tight,
  .heroes-band {
    padding-bottom: 80px;
  }

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

  .banner-card {
    min-height: 480px;
  }

  .banner-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

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

  .heroes-track img {
    height: 160px;
  }

  .panel-inner {
    padding-block: 64px;
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 40px);
  }

  .hero {
    padding-top: 130px;
  }

  .hero-art img {
    right: -55%;
    width: 130%;
    opacity: 0.3;
  }

  .hero-actions .btn {
    flex: 1;
  }

  .stats-panel {
    padding: 32px 26px;
  }

  .banner-bg img {
    margin-inline: -18px;
  }

  .banner-bg img:nth-child(n + 4) {
    display: none;
  }

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

  .craft-art {
    min-height: 400px;
  }

  .float-item {
    width: 64px;
    height: 64px;
  }

  .phones {
    height: 480px;
  }

  .phone {
    width: 196px;
  }

  .phone-back-l {
    left: -6%;
  }

  .phone-back-r {
    right: -6%;
  }

  .heroes-track img {
    height: 130px;
  }

  .cta-inner {
    padding-block: 48px;
  }

  .cta-inner .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    padding-bottom: 90px;
  }
}
