:root {
  --void: #070605;
  --ink: #0e0b08;
  --panel: #14110c;
  --gold: #c9a227;
  --gold-bright: #f3e2a0;
  --gold-mid: #d4b45a;
  --gold-deep: #7a5c16;
  --ivory: #f3ead6;
  --muted: #b7a78a;
  --line: rgba(201, 162, 39, 0.28);
  --serif: "Cinzel", "Times New Roman", serif;
  --body: "Cormorant Garamond", Georgia, serif;
  --script: "Great Vibes", cursive;
  --ui: "Outfit", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  background: var(--void);
  color: var(--ivory);
}

body {
  font-family: var(--body);
  font-size: 1.15rem;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

::selection {
  background: var(--gold);
  color: #120f0a;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #090807;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  border-radius: 99px;
}

#gild {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.grain,
.vignette,
.gold-haze,
.vein-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.grain {
  z-index: 1;
  opacity: 0.09;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.vignette {
  z-index: 2;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 18%, transparent 82%, rgba(0, 0, 0, 0.7) 100%);
}

.gold-haze {
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(201, 162, 39, 0.16), transparent 58%),
    radial-gradient(ellipse 40% 30% at 90% 80%, rgba(201, 162, 39, 0.08), transparent 50%),
    radial-gradient(ellipse 35% 28% at 8% 70%, rgba(122, 92, 22, 0.12), transparent 50%);
  animation: haze-breathe 12s ease-in-out infinite;
}

.vein-field span {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243, 226, 160, 0.35), transparent);
  animation: vein-drift 18s linear infinite;
  opacity: 0.45;
}

.vein-field span:nth-child(1) {
  top: 22%;
  width: 48%;
  left: -10%;
  transform: rotate(-8deg);
}

.vein-field span:nth-child(2) {
  top: 58%;
  width: 62%;
  right: -14%;
  left: auto;
  animation-duration: 22s;
  animation-delay: -6s;
  transform: rotate(6deg);
}

.vein-field span:nth-child(3) {
  top: 86%;
  width: 40%;
  left: 20%;
  animation-duration: 26s;
  animation-delay: -11s;
  transform: rotate(-3deg);
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.7rem;
  background: #050403;
  text-align: center;
  animation: intro-out 0.9s ease 2.15s forwards;
}

.intro-seal {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(201, 162, 39, 0.12), 0 0 40px rgba(201, 162, 39, 0.28);
  animation: seal-in 0.8s ease both;
}

.intro-seal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.intro-kicker,
.sec-kicker,
.hero-kicker,
.seal-line {
  font-family: var(--ui);
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

.intro-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  animation: rise 0.7s ease 0.25s both;
}

.intro-script {
  font-family: var(--script);
  font-size: 2.4rem;
  color: var(--gold-bright);
  animation: rise 0.7s ease 0.4s both;
}

.intro-bar {
  width: 180px;
  height: 1px;
  background: rgba(201, 162, 39, 0.25);
  margin-top: 0.4rem;
  overflow: hidden;
}

.intro-bar i {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  animation: sweep 1.4s ease 0.3s infinite;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 2.2rem;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(8, 6, 4, 0.78);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--gold);
  box-shadow: 0 0 16px rgba(201, 162, 39, 0.28);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-copy small {
  font-family: var(--ui);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  font-family: var(--ui);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  color: var(--muted);
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold-bright);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--ivory);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.icon-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.icon-link img {
  width: 15px;
  height: 15px;
  filter: invert(86%) sepia(28%) saturate(600%) hue-rotate(6deg) brightness(102%);
}

.icon-link:hover {
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(201, 162, 39, 0.28);
  transform: translateY(-2px);
}

.buy-btn,
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.buy-btn {
  padding: 0.62rem 0.95rem;
  color: #140f07;
  background: linear-gradient(180deg, #f4e3ad 0%, #c9a227 48%, #8d6a16 100%);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.buy-btn img,
.btn-gold img {
  width: 16px;
  height: 16px;
}

.buy-btn:hover,
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 162, 39, 0.4);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  position: relative;
}

.menu-btn i {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1px;
  background: var(--gold-bright);
  transition: 0.25s ease;
}

.menu-btn i:nth-child(1) { top: 14px; }
.menu-btn i:nth-child(2) { top: 20px; }
.menu-btn i:nth-child(3) { top: 26px; }

.menu-btn.open i:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.menu-btn.open i:nth-child(2) {
  opacity: 0;
}

.menu-btn.open i:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.rail {
  position: fixed;
  left: 1.1rem;
  top: 50%;
  z-index: 12;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  font-family: var(--ui);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(201, 162, 39, 0.55);
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}

.ribbon {
  position: relative;
  z-index: 5;
  margin-top: 76px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(12, 10, 7, 0.72);
}

.ribbon-track {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  width: max-content;
  padding: 0.55rem 0;
  font-family: var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-mid);
  animation: marquee 32s linear infinite;
}

.ribbon-track i {
  width: 5px;
  height: 5px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  flex: 0 0 auto;
}

.hero {
  position: relative;
  z-index: 3;
  min-height: calc(100vh - 118px);
  padding: 3.2rem 7vw 5.5rem;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: saturate(0.7) contrast(1.1);
  pointer-events: none;
}

.hero-video.is-live {
  opacity: 0.22;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 6, 5, 0.92) 0%, rgba(7, 6, 5, 0.72) 48%, rgba(7, 6, 5, 0.55) 100%),
    radial-gradient(circle at 72% 48%, rgba(201, 162, 39, 0.16), transparent 42%);
}

.hero-rays {
  position: absolute;
  inset: -20%;
  background: repeating-conic-gradient(from 0deg at 72% 45%, rgba(243, 226, 160, 0.045) 0 4deg, transparent 4deg 18deg);
  animation: ray-spin 48s linear infinite;
  mask-image: radial-gradient(circle at 72% 45%, black 0%, transparent 52%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.9fr);
  gap: 3.5rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.seal-line {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-bottom: 0.85rem;
}

.seal-line img {
  width: 16px;
  height: 16px;
  filter: invert(79%) sepia(38%) saturate(650%) hue-rotate(6deg);
}

.hero-kicker {
  margin-bottom: 0.7rem;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 800;
  line-height: 0.92;
  font-size: clamp(3.1rem, 7.2vw, 6.4rem);
}

.hero h1 .line {
  display: block;
}

.gold-foil {
  background: linear-gradient(180deg, #fff6c8 0%, #e8c65a 28%, #9a7318 52%, #f0d78c 74%, #c9a227 100%);
  background-size: 100% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: foil 5.5s ease-in-out infinite;
}

.hero-script {
  font-family: var(--script);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--gold-bright);
  margin: 0.55rem 0 0.2rem;
  text-shadow: 0 0 24px rgba(243, 226, 160, 0.25);
}

.hero-lead {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 1rem;
}

.hero-body {
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.22rem;
}

.ca-plate {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem 1rem;
  align-items: center;
  max-width: 34rem;
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, rgba(24, 20, 12, 0.9), rgba(12, 10, 7, 0.92));
  border: 1px solid var(--line);
  box-shadow: inset 0 0 0 1px rgba(201, 162, 39, 0.08), 0 18px 40px rgba(0, 0, 0, 0.35);
}

.ca-meta {
  display: flex;
  flex-direction: column;
  font-family: var(--ui);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.ca-meta b {
  color: var(--gold);
  letter-spacing: 0.22em;
}

#caText {
  font-family: var(--ui);
  font-size: 0.78rem;
  color: var(--ivory);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-btn {
  font-family: var(--ui);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  transition: background 0.25s ease, color 0.25s ease;
}

.copy-btn:hover,
.copy-btn.copied {
  background: var(--gold);
  color: #140f07;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.btn {
  padding: 0.92rem 1.2rem;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  color: #140f07;
  background: linear-gradient(180deg, #f4e3ad 0%, #c9a227 48%, #8d6a16 100%);
}

.btn-gold::after,
.buy-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.38) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: shine 3.8s ease infinite;
}

.btn-ghost {
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  background: rgba(201, 162, 39, 0.06);
}

.btn-ghost:hover {
  background: rgba(201, 162, 39, 0.16);
}

.hero-portrait {
  position: relative;
  justify-self: center;
  width: min(100%, 460px);
}

.hero-portrait img {
  position: relative;
  z-index: 2;
  width: 100%;
  border: 1px solid rgba(243, 226, 160, 0.35);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  animation: portrait-float 7s ease-in-out infinite;
}

.frame-glow {
  position: absolute;
  inset: -8%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.32), transparent 62%);
  filter: blur(18px);
  animation: glow-pulse 4.8s ease-in-out infinite;
}

.frame-ring {
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  animation: ring-spin 18s linear infinite;
  mask-image: conic-gradient(#000 0 18%, transparent 18% 32%, #000 32% 58%, transparent 58% 70%, #000 70% 100%);
}

.hero-portrait figcaption {
  position: relative;
  z-index: 2;
  margin-top: 0.85rem;
  text-align: center;
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

.scroll-cue {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--ui);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

.scroll-cue b {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, var(--gold-bright), transparent);
  animation: cue 1.6s ease-in-out infinite;
}

section {
  position: relative;
  z-index: 3;
  padding: 5.5rem 7vw;
}

.section-head {
  display: flex;
  align-items: flex-end;
  gap: 1.2rem;
  max-width: 1280px;
  margin: 0 auto 2.6rem;
}

.sec-index {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}

.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
}

.about-grid,
.path,
.chart-frame,
.proclamation,
.channels,
.footer {
  max-width: 1280px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
}

.script-mark {
  font-family: var(--script);
  font-size: 2.3rem;
  color: var(--gold-bright);
  margin-bottom: 0.35rem;
}

.about-manifesto h3 {
  font-family: var(--serif);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-manifesto p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.about-manifesto blockquote {
  margin-top: 1.4rem;
  padding: 1.1rem 1.2rem;
  border-left: 2px solid var(--gold);
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.08), transparent);
  font-style: italic;
  color: var(--ivory);
}

.crests {
  display: grid;
  gap: 1rem;
}

.crest {
  padding: 1.2rem 1.25rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(28, 23, 14, 0.7), rgba(12, 10, 7, 0.7));
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  opacity: 0;
  transform: translateY(22px);
}

.crest:nth-child(2).in-view { transition-delay: 0.12s; }
.crest:nth-child(3).in-view { transition-delay: 0.24s; }

.crest.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.crest.in-view:hover {
  transform: translateX(8px);
}

.step:nth-child(2).in-view { transition-delay: 0.1s; }
.step:nth-child(3).in-view { transition-delay: 0.2s; }
.step:nth-child(4).in-view { transition-delay: 0.3s; }

.channel:nth-child(2).in-view { transition-delay: 0.1s; }
.channel:nth-child(3).in-view { transition-delay: 0.2s; }

.crest:hover {
  transform: translateX(8px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.crest span {
  font-family: var(--serif);
  color: var(--gold);
  letter-spacing: 0.2em;
}

.crest h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin: 0.2rem 0 0.35rem;
}

.crest p {
  color: var(--muted);
  font-size: 1.05rem;
}

.path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}

.path::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.35;
}

.step {
  position: relative;
  padding: 1.4rem 1.2rem 1.5rem;
  border: 1px solid var(--line);
  background: rgba(14, 11, 8, 0.72);
  min-height: 100%;
  opacity: 0;
  transform: translateY(24px);
}

.step.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease, border-color 0.35s ease;
}

.step:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.step-num {
  font-family: var(--serif);
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-bottom: 0.9rem;
}

.step-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #120f0a;
}

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

.step-icon.sol img,
.step-icon.dex img {
  filter: invert(86%) sepia(28%) saturate(600%) hue-rotate(6deg) brightness(102%);
}

.step h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 1rem;
}

.step a,
.text-link {
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.step a:hover,
.text-link:hover {
  color: var(--ivory);
}

.text-link {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding-bottom: 0.45rem;
}

.text-link img {
  width: 14px;
  height: 14px;
  filter: invert(86%) sepia(28%) saturate(600%) hue-rotate(6deg) brightness(102%);
}

.chart-frame {
  position: relative;
  padding: 12px;
  border: 1px solid var(--line);
  background: #0b0907;
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.08), 0 30px 80px rgba(0, 0, 0, 0.35);
}

.chart-frame iframe {
  width: 100%;
  height: 640px;
  border: 0;
  background: #0b0907;
  display: block;
}

.ornament {
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.ornament::before,
.ornament::after {
  content: "";
  position: absolute;
  background: var(--gold);
}

.ornament::before {
  width: 18px;
  height: 1px;
}

.ornament::after {
  width: 1px;
  height: 18px;
}

.ornament.tl { top: 6px; left: 6px; }
.ornament.tr { top: 6px; right: 6px; }
.ornament.tr::before { right: 0; }
.ornament.tr::after { right: 0; }
.ornament.bl { bottom: 6px; left: 6px; }
.ornament.bl::before { bottom: 0; }
.ornament.bl::after { bottom: 0; }
.ornament.br { bottom: 6px; right: 6px; }
.ornament.br::before { right: 0; bottom: 0; }
.ornament.br::after { right: 0; bottom: 0; }

.proclamation {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.proclamation img {
  width: 100%;
  height: auto;
  display: block;
  animation: banner-shift 22s ease-in-out infinite alternate;
}

.banner-sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 40%, rgba(243, 226, 160, 0.16) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: shine 6.5s ease 1.2s infinite;
  z-index: 1;
  pointer-events: none;
}

.proclamation figcaption {
  position: relative;
  padding: 1.4rem 1.5rem 1.6rem;
  background: linear-gradient(180deg, rgba(10, 8, 6, 0.2), rgba(10, 8, 6, 0.96));
  text-align: center;
}

.proclamation figcaption p:last-child {
  color: var(--muted);
}

.channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.4rem;
}

.channel {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--line);
  background: rgba(14, 11, 8, 0.8);
  opacity: 0;
  transform: translateY(20px);
}

.channel.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.channel:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.channel img {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.channel:nth-child(1) img,
.channel:nth-child(2) img {
  filter: invert(86%) sepia(28%) saturate(600%) hue-rotate(6deg) brightness(102%);
}

.channel strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.channel span {
  font-family: var(--ui);
  font-size: 0.78rem;
  color: var(--muted);
}

.footer {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.55rem;
  padding: 3rem 7vw 4.2rem;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 1px solid var(--gold);
}

.footer-brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 0.95rem;
}

.footer-brand span,
.footer-note {
  font-family: var(--ui);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.footer-script {
  font-family: var(--script);
  font-size: 2rem;
  color: var(--gold-bright);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.4rem;
  transform: translate(-50%, 20px);
  z-index: 60;
  padding: 0.7rem 1.1rem;
  font-family: var(--ui);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #140f07;
  background: var(--gold-bright);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.cursor-ring {
  position: fixed;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201, 162, 39, 0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 70;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  mix-blend-mode: difference;
  opacity: 0;
}

.cursor-ring.hot {
  width: 64px;
  height: 64px;
  background: rgba(201, 162, 39, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s ease forwards;
}

.hero-copy .reveal:nth-child(1) { animation-delay: 2.25s; }
.hero-copy .reveal:nth-child(2) { animation-delay: 2.35s; }
.hero-copy .reveal:nth-child(3) { animation-delay: 2.45s; }
.hero-copy .reveal:nth-child(4) { animation-delay: 2.55s; }
.hero-copy .reveal:nth-child(5) { animation-delay: 2.65s; }
.hero-copy .reveal:nth-child(6) { animation-delay: 2.75s; }
.hero-copy .reveal:nth-child(7) { animation-delay: 2.85s; }
.hero-copy .reveal:nth-child(8) { animation-delay: 2.95s; }
.hero-portrait.reveal { animation-delay: 2.5s; }

@keyframes haze-breathe {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes vein-drift {
  0% { transform: translateX(-8%) rotate(var(--r, -6deg)); }
  100% { transform: translateX(12%) rotate(var(--r, -6deg)); }
}

@keyframes intro-out {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes seal-in {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes sweep {
  from { transform: translateX(-120%); }
  to { transform: translateX(280%); }
}

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

@keyframes foil {
  0%, 100% { background-position: 0 0; }
  50% { background-position: 0 100%; }
}

@keyframes shine {
  0%, 55% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

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

@keyframes glow-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

@keyframes ray-spin {
  to { transform: rotate(360deg); }
}

@keyframes cue {
  0%, 100% { transform: scaleY(0.45); opacity: 0.35; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

@keyframes banner-shift {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}

@media (max-width: 1080px) {
  .rail { display: none; }
  .hero-layout,
  .about-grid,
  .path,
  .channels {
    grid-template-columns: 1fr;
  }
  .path::before { display: none; }
  .hero-portrait { order: -1; width: min(100%, 380px); }
  .ca-plate {
    grid-template-columns: 1fr auto;
  }
  .ca-meta { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  .nav {
    padding: 0.75rem 1rem;
  }
  .nav-links,
  .nav-actions .icon-link,
  .brand-copy strong {
    display: none;
  }
  .brand-copy small { display: block; }
  .menu-btn { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(8, 6, 4, 0.96);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 0 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.85rem 1.2rem;
  }
  .hero,
  section {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }
  .hero { padding-top: 1.5rem; }
  .chart-frame iframe { height: 460px; }
  .buy-btn span { display: none; }
  .text-link { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .intro { display: none; }
  .reveal,
  .crest,
  .step,
  .channel { opacity: 1; transform: none; }
}
