/* The Viking Bull — Norse Fjord Theme */

:root {
  --void: #050508;
  --stone: #0c0e14;
  --slate: #141820;
  --fjord: #1a2230;
  --norway-red: #ba0c2f;
  --norway-red-glow: rgba(186, 12, 47, 0.45);
  --norway-blue: #00205b;
  --norway-blue-glow: rgba(0, 32, 91, 0.5);
  --bronze: #c9a227;
  --bronze-light: #e8c84a;
  --bronze-dark: #8a6f1a;
  --ivory: #f2ebe0;
  --mist: rgba(200, 215, 235, 0.06);
  --nav-h: 76px;
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--void);
  color: var(--ivory);
  overflow-x: hidden;
  line-height: 1.7;
}

::selection {
  background: var(--bronze);
  color: var(--void);
}

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

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

/* ── Global overlays ── */
.noise-overlay {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.vignette {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9997;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(0, 0, 0, 0.65) 100%);
}

.aurora-layer {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.7;
  transition: background 0.1s linear;
}

/* ── Navigation ── */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.45s, box-shadow 0.45s, backdrop-filter 0.45s;
}

.main-nav.scrolled {
  background: rgba(5, 5, 8, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), inset 0 -1px 0 rgba(201, 162, 39, 0.15);
}

.nav-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.nav-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(201, 162, 39, 0.4);
  object-fit: cover;
}

.nav-brand span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--bronze-light);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-links a {
  padding: 0.5rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 235, 224, 0.75);
  border-radius: 4px;
  transition: color 0.25s, background 0.25s;
}

.nav-links a:hover {
  color: var(--bronze-light);
  background: rgba(201, 162, 39, 0.08);
}

.nav-cta-wrap {
  flex-shrink: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  background: linear-gradient(135deg, var(--norway-red), #8a0923);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.25s, box-shadow 0.25s;
}

.nav-cta img {
  width: 18px;
  height: 18px;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--norway-red-glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ivory);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.btn img {
  width: 20px;
  height: 20px;
}

.btn-primary {
  background: linear-gradient(145deg, var(--bronze-light), var(--bronze-dark));
  color: var(--void);
  border: 1px solid var(--bronze);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(201, 162, 39, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(201, 162, 39, 0.45);
}

.btn-outline:hover {
  background: rgba(201, 162, 39, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 32, 91, 0.3);
}

/* ── Hero ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0, 32, 91, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(186, 12, 47, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--void) 0%, var(--stone) 50%, var(--slate) 100%);
}

#hero.no-video .hero-video-wrap {
  opacity: 0;
  pointer-events: none;
}

.hero-bg-layers {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(5, 5, 8, 0.3) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 400' preserveAspectRatio='none'%3E%3Cpath fill='%23141820' d='M0,400 L0,280 L120,200 L240,260 L360,140 L480,220 L600,100 L720,180 L840,80 L960,160 L1080,60 L1200,140 L1320,90 L1440,170 L1440,400 Z'/%3E%3Cpath fill='%230c0e14' opacity='0.8' d='M0,400 L0,320 L200,250 L400,300 L600,200 L800,280 L1000,180 L1200,250 L1440,200 L1440,400 Z'/%3E%3C/svg%3E") bottom center / cover no-repeat;
  opacity: 0.7;
}

.hero-mist {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 40% at 50% 90%, rgba(200, 215, 235, 0.08) 0%, transparent 70%);
  animation: mistDrift 12s ease-in-out infinite alternate;
}

@keyframes mistDrift {
  0% { opacity: 0.5; transform: translateX(-2%); }
  100% { opacity: 0.9; transform: translateX(2%); }
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  transition: opacity 0.6s;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-wrap video.hidden {
  display: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 8, 0.75) 0%, rgba(5, 5, 8, 0.4) 40%, rgba(5, 5, 8, 0.85) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(5, 5, 8, 0.6) 100%);
}

#emberCanvas {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-runes {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  pointer-events: none;
  opacity: 0.12;
}

.rune-glyph {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--bronze);
  animation: runePulse 4s ease-in-out infinite;
}

@keyframes runePulse {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 0.8; transform: translateY(-6px); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 720px;
}

.hero-logo-ring {
  position: relative;
  width: clamp(140px, 22vw, 200px);
  margin: 0 auto 1.5rem;
}

.horn-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--norway-red-glow) 0%, transparent 70%);
  animation: hornPulse 3s ease-in-out infinite;
}

@keyframes hornPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 1; }
}

.hero-logo-ring img {
  position: relative;
  width: 100%;
  border-radius: 50%;
  border: 3px solid rgba(201, 162, 39, 0.5);
  box-shadow:
    0 0 40px rgba(186, 12, 47, 0.3),
    0 0 80px rgba(201, 162, 39, 0.15);
  animation: logoFloat 5s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--norway-red);
  margin-bottom: 0.5rem;
}

.hero-title {
  font-family: var(--font-display);
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.title-the {
  display: block;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.35em;
  color: rgba(242, 235, 224, 0.7);
  margin-bottom: 0.15rem;
}

.title-main {
  display: block;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, var(--bronze-light) 0%, var(--bronze) 40%, var(--bronze-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 12px rgba(201, 162, 39, 0.3));
  animation: titleShimmer 6s ease-in-out infinite;
}

@keyframes titleShimmer {
  0%, 100% { filter: drop-shadow(0 4px 12px rgba(201, 162, 39, 0.3)); }
  50% { filter: drop-shadow(0 4px 20px rgba(201, 162, 39, 0.55)); }
}

.hero-symbol {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--norway-red);
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.hero-tagline {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(242, 235, 224, 0.8);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-contract {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  background: rgba(20, 24, 32, 0.8);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 4px;
  font-size: 0.75rem;
  font-family: monospace;
  color: rgba(242, 235, 224, 0.65);
  word-break: break-all;
}

.contract-label {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bronze);
  flex-shrink: 0;
}

#copyContract {
  flex-shrink: 0;
  padding: 0.35rem 0.75rem;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 3px;
  color: var(--bronze-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
}

#copyContract:hover,
#copyContract.copied {
  background: rgba(201, 162, 39, 0.3);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242, 235, 224, 0.4);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--bronze), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* ── Sections ── */
section {
  position: relative;
  z-index: 5;
}

.section-wrap {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section-header {
  margin-bottom: 3rem;
}

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

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--norway-red);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: rgba(242, 235, 224, 0.65);
  max-width: 520px;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

.valknut-divider {
  margin-top: 1.25rem;
  color: var(--bronze);
  opacity: 0.7;
}

.valknut-divider svg {
  width: 120px;
  height: 24px;
  margin: 0 auto;
  display: block;
}

.section-header:not(.centered) .valknut-divider svg {
  margin: 0;
}

/* ── About ── */
#about {
  background:
    linear-gradient(180deg, var(--slate) 0%, var(--stone) 50%, var(--void) 100%);
  border-top: 1px solid rgba(201, 162, 39, 0.1);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.about-logo-frame {
  position: relative;
  padding: 1.5rem;
}

.frame-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: var(--bronze);
  border-style: solid;
}

.frame-corner.tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.frame-corner.tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.frame-corner.bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.frame-corner.br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

.about-logo-frame img {
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about-text p {
  font-size: 1.02rem;
  color: rgba(242, 235, 224, 0.82);
  margin-bottom: 2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-card {
  padding: 1.25rem 1rem;
  background: rgba(20, 24, 32, 0.7);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 4px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.stat-card:hover {
  border-color: rgba(201, 162, 39, 0.4);
  transform: translateY(-4px);
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--bronze-light);
  margin-bottom: 0.25rem;
}

.stat-card span {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(242, 235, 224, 0.5);
}

/* ── How to Buy ── */
#howtobuy {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 32, 91, 0.2) 0%, transparent 60%),
    var(--void);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.step-card {
  position: relative;
  padding: 2rem 1.25rem 1.5rem;
  background: linear-gradient(160deg, rgba(26, 34, 48, 0.9), rgba(12, 14, 20, 0.95));
  border: 1px solid rgba(201, 162, 39, 0.12);
  border-radius: 6px;
  text-align: center;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--norway-red), var(--bronze));
  opacity: 0;
  transition: opacity 0.35s;
}

.step-card:hover {
  border-color: rgba(201, 162, 39, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

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

.step-num {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: rgba(201, 162, 39, 0.35);
}

.step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.08);
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.step-icon img {
  width: 32px;
  height: 32px;
}

.step-icon img[src*="solana"],
.step-icon img[src*="x.svg"] {
  filter: brightness(0) invert(1);
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--bronze-light);
}

.step-card p {
  font-size: 0.82rem;
  color: rgba(242, 235, 224, 0.6);
  line-height: 1.55;
}

.buy-cta-wrap {
  text-align: center;
}

/* ── Chart ── */
#chart {
  background: var(--stone);
  border-top: 1px solid rgba(201, 162, 39, 0.08);
  border-bottom: 1px solid rgba(201, 162, 39, 0.08);
}

.chart-frame-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  margin-bottom: 1.5rem;
  min-height: 480px;
  background: var(--slate);
}

.chart-frame-wrap iframe {
  display: none;
  width: 100%;
  height: 520px;
  border: none;
}

.chart-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 480px;
  padding: 2rem;
  text-align: center;
  color: rgba(242, 235, 224, 0.5);
}

.chart-placeholder img {
  width: 64px;
  opacity: 0.6;
}

.chart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ── Join Us ── */
#joinus {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(186, 12, 47, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, var(--void) 0%, var(--slate) 100%);
}

.joinus-mist {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 50% at 50% 80%, rgba(200, 215, 235, 0.05) 0%, transparent 70%);
  animation: mistDrift 15s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}

.joinus-banner-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(201, 162, 39, 0.3);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(186, 12, 47, 0.1);
  margin-bottom: 2.5rem;
}

.joinus-banner-wrap img {
  width: 100%;
  display: block;
}

.banner-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 60%
  );
  animation: bannerShine 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes bannerShine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.joinus-content {
  text-align: center;
}

.joinus-bio {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--bronze-light);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.4rem;
  background: rgba(20, 24, 32, 0.85);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.social-btn img {
  width: 20px;
  height: 20px;
}

.social-btn img[src*="x.svg"],
.social-btn img[src*="telegram"] {
  filter: brightness(0) invert(1);
}

.social-btn:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.5);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

/* ── Footer ── */
.site-footer {
  text-align: center;
  padding: 2.5rem 1.5rem 3rem;
  background: var(--void);
  border-top: 1px solid rgba(201, 162, 39, 0.1);
}

.footer-runes {
  font-size: 1rem;
  color: rgba(201, 162, 39, 0.25);
  letter-spacing: 0.5em;
  margin-bottom: 0.75rem;
}

.footer-symbol {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bronze);
  margin-bottom: 0.35rem;
}

.site-footer p:last-child {
  font-size: 0.78rem;
  color: rgba(242, 235, 224, 0.35);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-visual {
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta-wrap {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(5, 5, 8, 0.97);
    backdrop-filter: blur(16px);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    z-index: 999;
  }

  .nav-links.open a {
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
  }

  .hero-runes {
    display: none;
  }

  .hero-contract {
    flex-direction: column;
    text-align: center;
    max-width: 100%;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

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

  .social-row {
    flex-direction: column;
    align-items: stretch;
  }

  .social-btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}
