:root {
  --void: #070604;
  --ink: #0c0906;
  --panel: #120e09;
  --panel-2: #1a140c;
  --gold: #d4af37;
  --gold-bright: #f0d78c;
  --gold-deep: #8a6a22;
  --gold-soft: rgba(212, 175, 55, 0.18);
  --cream: #f4ead4;
  --muted: #9a8c70;
  --line: rgba(212, 175, 55, 0.28);
  --script: "Meow Script", cursive;
  --display: "Cinzel", serif;
  --body: "Cormorant Garamond", serif;
  --ui: "Catamaran", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  background: var(--void);
  color: var(--cream);
  font-family: var(--body);
  min-height: 100%;
}

body {
  overflow-x: hidden;
  cursor: none;
}

body.menu-open {
  overflow: hidden;
}

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

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0a0805;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.grain,
.gold-dust,
.paw-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.grain {
  z-index: 40;
  opacity: 0.09;
  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");
  mix-blend-mode: overlay;
}

.gold-dust {
  z-index: 1;
}

.paw-field {
  z-index: 35;
}

.paw-field::before,
.paw-field::after {
  content: "";
  position: absolute;
  inset: -20% 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='%23d4af37'%3E%3Cellipse cx='58' cy='42' rx='10' ry='13'/%3E%3Cellipse cx='82' cy='32' rx='10' ry='13'/%3E%3Cellipse cx='106' cy='42' rx='10' ry='13'/%3E%3Cellipse cx='48' cy='66' rx='9' ry='12'/%3E%3Cellipse cx='82' cy='88' rx='22' ry='18'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 180px 180px;
  animation: pawdrift 48s linear infinite;
}

.paw-field::after {
  opacity: 0.03;
  background-size: 260px 260px;
  animation-duration: 70s;
  animation-direction: reverse;
}

.cursor-glow {
  position: fixed;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border: 1px solid rgba(240, 215, 140, 0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 80;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
  transition: transform 0.15s ease, opacity 0.2s ease;
  mix-blend-mode: screen;
}

.cursor-glow.is-down {
  transform: scale(0.7);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #050402;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.preloader.is-gone {
  opacity: 0;
  visibility: hidden;
}

.preloader-ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
  animation: spin 8s linear infinite;
}

.preloader-ring::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: var(--gold-bright);
  border-right-color: var(--gold);
}

.preloader-logo {
  width: 108px;
  height: 108px;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 0 24px rgba(212, 175, 55, 0.45));
}

.preloader-word {
  position: absolute;
  bottom: 18%;
  font-family: var(--script);
  font-size: 52px;
  color: var(--gold-bright);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.45);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 28px;
  background: linear-gradient(180deg, rgba(7, 6, 4, 0.88), rgba(7, 6, 4, 0.35) 70%, transparent);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.is-scrolled {
  background: rgba(7, 6, 4, 0.86);
  box-shadow: 0 1px 0 var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--gold), 0 0 18px rgba(212, 175, 55, 0.35);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-brand-text em {
  font-family: var(--script);
  font-style: normal;
  font-size: 28px;
  color: var(--gold-bright);
}

.nav-brand-text small {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
}

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

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--gold-bright);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(18, 14, 9, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.icon-btn img {
  width: 16px;
  filter: invert(86%) sepia(28%) saturate(700%) hue-rotate(6deg) brightness(105%);
}

.icon-btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.25);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--gold-bright);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.btn-gold {
  background: linear-gradient(180deg, #f0d78c, #c9a227);
  color: #1a1206;
  box-shadow: 0 0 0 1px #ead48a, 0 8px 24px rgba(212, 175, 55, 0.22);
}

.btn-gold img {
  filter: none;
}

.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(12, 9, 6, 0.55);
  color: var(--gold-bright);
}

.btn-ghost img {
  filter: brightness(1.2);
}

.btn-lg {
  min-height: 54px;
  padding: 0 22px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.32);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 28px 90px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.18;
  filter: blur(14px) saturate(1.15);
  transform: scale(1.12);
  pointer-events: none;
}

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

.spot {
  position: absolute;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.28;
}

.spot-a {
  right: -6%;
  top: 8%;
  background: radial-gradient(circle, #d4af37 0%, transparent 70%);
  animation: breathe 7s ease-in-out infinite;
}

.spot-b {
  left: -10%;
  bottom: 0;
  background: radial-gradient(circle, #8a6a22 0%, transparent 70%);
  animation: breathe 9s ease-in-out infinite reverse;
}

.light-rays {
  position: absolute;
  right: 4%;
  top: 8%;
  width: 48vw;
  height: 48vw;
  background: conic-gradient(from 0deg, transparent 0 18deg, rgba(240, 215, 140, 0.08) 18deg 22deg, transparent 22deg 40deg, rgba(212, 175, 55, 0.06) 40deg 43deg, transparent 43deg);
  animation: spin 28s linear infinite;
  mask-image: radial-gradient(circle, black 10%, transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.crest,
.divider {
  display: flex;
  align-items: center;
  gap: 14px;
}

.crest-line,
.divider i {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.crest-mark {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.divider {
  width: min(280px, 70%);
  margin: 12px auto 18px;
}

.divider em {
  width: 7px;
  height: 7px;
  rotate: 45deg;
  border: 1px solid var(--gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.eyebrow {
  margin-top: 22px;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
}

.script-title {
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(92px, 14vw, 168px);
  line-height: 0.85;
  color: transparent;
  background: linear-gradient(180deg, #fff4c8 0%, #f0d78c 28%, #d4af37 62%, #8a6a22 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 10px 24px rgba(212, 175, 55, 0.25));
  animation: shimmer 5s linear infinite;
  background-size: 180% 180%;
}

.script-title.small {
  font-size: clamp(64px, 9vw, 110px);
}

.symbol-chip {
  display: inline-flex;
  margin: 10px 0 18px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--display);
  letter-spacing: 0.2em;
  color: var(--gold-bright);
}

.lede {
  max-width: 540px;
  font-size: 24px;
  line-height: 1.45;
  color: #e8dcc0;
}

.ca-pill {
  margin: 28px 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(18, 14, 9, 0.72);
  backdrop-filter: blur(8px);
}

.ca-label {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
}

#ca-text {
  font-family: var(--ui);
  font-size: 13px;
  color: var(--cream);
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#ca-copy {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--gold-soft);
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

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

.hero-portrait {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
}

.halo {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(240, 215, 140, 0.28);
  animation: pulse 5s ease-in-out infinite;
}

.halo-1 { width: 78%; height: 78%; }
.halo-2 { width: 92%; height: 92%; animation-delay: 0.8s; }
.halo-3 { width: 108%; height: 108%; animation-delay: 1.6s; opacity: 0.5; }

.portrait-frame {
  position: relative;
  width: min(430px, 86%);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 8px;
  background:
    radial-gradient(circle at 50% 40%, rgba(240, 215, 140, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(240, 215, 140, 0.4), rgba(138, 106, 34, 0.2));
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.45),
    0 0 80px rgba(212, 175, 55, 0.22);
  animation: floaty 6s ease-in-out infinite;
}

.portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
  filter: contrast(1.05) saturate(1.08);
}

.reel-card {
  position: absolute;
  z-index: 3;
  width: min(168px, 32%);
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(240, 215, 140, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 24px rgba(212, 175, 55, 0.18);
  background: #0a0805;
}

.reel-card-a {
  left: 0;
  bottom: 8%;
  transform: rotate(-8deg);
  animation: cardtilt 7s ease-in-out infinite;
}

.reel-card-b {
  right: 0;
  top: 6%;
  transform: rotate(7deg);
  animation: cardtilt 8s ease-in-out infinite reverse;
}

.orbit {
  position: absolute;
  inset: 6%;
  animation: spin 22s linear infinite;
}

.orbit span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px var(--gold);
}

.orbit span:nth-child(1) { top: 8%; left: 50%; }
.orbit span:nth-child(2) { bottom: 12%; right: 16%; }
.orbit span:nth-child(3) { left: 10%; top: 48%; }
.orbit span:nth-child(4) { right: 8%; top: 22%; width: 5px; height: 5px; }

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-hint i {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: drip 1.8s ease-in-out infinite;
}

.marquee {
  border-block: 1px solid var(--line);
  background: #0a0805;
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: ticker 28s linear infinite;
  font-family: var(--display);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold);
}

.marquee-track b {
  width: 6px;
  height: 6px;
  rotate: 45deg;
  border: 1px solid var(--gold);
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-ornament {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.06), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05), transparent 28%);
  pointer-events: none;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.roman {
  font-family: var(--display);
  letter-spacing: 0.4em;
  color: var(--gold);
}

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.section-kicker {
  margin-top: 12px;
  font-size: 22px;
  color: var(--muted);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
}

.about-story {
  padding: 36px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(26, 20, 12, 0.7), rgba(12, 9, 6, 0.7));
  box-shadow: inset 0 0 40px rgba(212, 175, 55, 0.04);
}

.about-story h3 {
  font-family: var(--display);
  font-size: 26px;
  margin-bottom: 16px;
}

.about-story p + p {
  margin-top: 16px;
}

.about-story p,
.step-body p,
.trait-card p,
.footer-note {
  font-size: 21px;
  line-height: 1.6;
  color: #ddd0b4;
}

.trait-grid {
  display: grid;
  gap: 16px;
}

.trait-card,
.step,
.chart-frame {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 14, 9, 0.88), rgba(10, 8, 5, 0.92));
}

.trait-card {
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 118px 1fr;
  min-height: 148px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.trait-media {
  min-height: 148px;
}

.trait-media video {
  object-position: center 20%;
}

.film-track figure:hover,
.howto-reels figure:hover,
.reel-card:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 22px rgba(212, 175, 55, 0.28);
}

.trait-copy {
  padding: 20px 20px 20px 18px;
}

.trait-card:hover,
.step:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 215, 140, 0.5);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28), 0 0 24px rgba(212, 175, 55, 0.12);
}

.trait-index {
  font-family: var(--display);
  color: var(--gold);
  letter-spacing: 0.16em;
}

.trait-card h3,
.step-body h3 {
  font-family: var(--display);
  font-size: 22px;
  margin: 8px 0 10px;
}

.film-reel {
  margin-top: 56px;
  padding: 18px 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 14, 9, 0.4), rgba(7, 6, 4, 0.8));
}

.film-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: ticker 70s linear infinite;
  padding: 0 14px;
}

.film-reel:hover .film-track {
  animation-play-state: paused;
}

.film-track figure {
  width: 150px;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  flex: 0 0 auto;
}

.howto-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.howto-reels {
  display: grid;
  gap: 14px;
}

.howto-reels figure {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 9 / 14;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.howto-reels-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.howto-reels-row figure {
  aspect-ratio: 9 / 16;
}

.steps {
  list-style: none;
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 22px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.step-rail {
  position: absolute;
  left: 59px;
  top: 92px;
  bottom: -18px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

.step:last-child .step-rail {
  display: none;
}

.step-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #16110a;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.12);
}

.step-badge img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.step:nth-child(2) .step-badge img {
  width: 48px;
}

.step-body span {
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--ui);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border-bottom: 1px solid transparent;
}

.text-link:hover {
  border-bottom-color: var(--gold);
}

.chart-frame {
  padding: 16px;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.08), 0 30px 80px rgba(0, 0, 0, 0.35);
}

.chart-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px 16px;
}

.chart-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ui);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
}

.chart-brand img {
  width: 18px;
  height: 18px;
}

.chart-embed {
  height: min(720px, 78vh);
  border: 1px solid var(--line);
  background: #0b0b0b;
  overflow: hidden;
}

.chart-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

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

.banner-art {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  animation: kenburns 22s ease-in-out infinite alternate;
  filter: saturate(1.05) contrast(1.04);
}

.banner-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 48px 40px;
  background: linear-gradient(180deg, transparent, rgba(7, 6, 4, 0.88) 45%, rgba(7, 6, 4, 0.96));
}

.banner-overlay p {
  max-width: 520px;
  margin: 0 0 22px;
  font-size: 22px;
  color: #e8dcc0;
}

.join-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  padding: 48px 0 28px;
  border-top: 1px solid var(--line);
  background: #080705;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--gold);
}

.footer-brand em {
  display: block;
  font-family: var(--script);
  font-style: normal;
  font-size: 32px;
  color: var(--gold-bright);
  line-height: 0.9;
}

.footer-brand strong {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-socials a img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(1.15);
}

.footer-socials a img[src*="x.svg"],
.btn-ghost img[src*="x.svg"] {
  filter: invert(86%) sepia(28%) saturate(700%) hue-rotate(6deg) brightness(105%);
}

.footer-socials a:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.25);
}

.copyright {
  margin-top: 28px;
  text-align: center;
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.reveal.is-in {
  animation-play-state: running;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }

.click-paw {
  position: fixed;
  width: 22px;
  height: 22px;
  pointer-events: none;
  z-index: 36;
  opacity: 0.8;
  animation: pawfade 1.1s ease forwards;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cellipse cx='18' cy='16' rx='8' ry='10' fill='%23d4af37'/%3E%3Cellipse cx='32' cy='10' rx='8' ry='10' fill='%23d4af37'/%3E%3Cellipse cx='46' cy='16' rx='8' ry='10' fill='%23d4af37'/%3E%3Cellipse cx='12' cy='30' rx='7' ry='9' fill='%23d4af37'/%3E%3Cellipse cx='32' cy='44' rx='16' ry='14' fill='%23d4af37'/%3E%3C/svg%3E") center/contain no-repeat;
}

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

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.24; }
  50% { transform: scale(1.12); opacity: 0.36; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.45; }
  50% { transform: scale(1.04); opacity: 0.85; }
}

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

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 180% 50%; }
}

@keyframes drip {
  0% { transform: scaleY(0.3); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

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

@keyframes rise {
  to { opacity: 1; transform: none; }
}

@keyframes kenburns {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.12) translateY(-2%); }
}

@keyframes pawfade {
  0% { transform: scale(0.4) rotate(-12deg); opacity: 0.9; }
  100% { transform: scale(1.4) rotate(8deg); opacity: 0; }
}

@keyframes pawdrift {
  from { transform: translateY(0); }
  to { transform: translateY(20%); }
}

@keyframes cardtilt {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

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

::-webkit-scrollbar-track {
  background: #0a0805;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #f0d78c, #8a6a22);
  border-radius: 99px;
}

@media (max-width: 980px) {
  body {
    cursor: auto;
  }

  .cursor-glow {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: 78px 16px auto;
    display: none;
    flex-direction: column;
    padding: 22px;
    background: rgba(12, 9, 6, 0.96);
    border: 1px solid var(--line);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-toggle {
    display: grid;
  }

  .hero-grid,
  .about-layout,
  .howto-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-portrait {
    min-height: 460px;
    order: -1;
  }

  .reel-card {
    width: 112px;
  }

  .banner-stage,
  .banner-art {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 12px 14px;
  }

  .btn span {
    display: none;
  }

  .btn-lg span {
    display: inline;
  }

  .nav-actions .btn span {
    display: none;
  }

  .script-title {
    font-size: 86px;
  }

  .lede,
  .about-story p,
  .step-body p {
    font-size: 18px;
  }

  .step {
    grid-template-columns: 64px 1fr;
    padding: 20px;
  }

  .step-badge {
    width: 56px;
    height: 56px;
  }

  .step-rail {
    left: 47px;
  }

  .banner-overlay {
    padding: 28px 18px;
  }

  .chart-embed {
    height: 560px;
  }

  .trait-card {
    grid-template-columns: 96px 1fr;
  }

  .film-track figure {
    width: 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

  body {
    cursor: auto;
  }

  .cursor-glow {
    display: none;
  }
}
