:root {
  --bg: #070708;
  --bg-2: #101014;
  --bg-3: #17171c;
  --panel: rgba(22, 22, 26, 0.72);
  --ink: #f2efe8;
  --muted: #9a958c;
  --line: rgba(210, 210, 215, 0.16);
  --chrome: #d4cfc6;
  --chrome-2: #9a9186;
  --chrome-deep: #5a524a;
  --chrome-bright: #ece8e1;
  --leather: #1a1512;
  --leather-warm: #2a221c;
  --accent: #c4b8a5;
  --btn-steel: linear-gradient(145deg, #ebe6de 0%, #b8b0a4 38%, #f2eee8 58%, #8a8378 100%);
  --btn-steel-hover: linear-gradient(145deg, #f5f1ea 0%, #c9c2b6 38%, #fffaf4 58%, #9a9287 100%);
  --danger: #b85c4a;
  --radius: 2px;
  --font-display: "Cinzel", Georgia, serif;
  --font-body: "Syne", sans-serif;
  --header-h: 76px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 70% -10%, rgba(180, 170, 150, 0.12), transparent 55%),
    radial-gradient(900px 600px at 10% 20%, rgba(80, 70, 60, 0.28), transparent 50%),
    linear-gradient(180deg, #0a0a0c 0%, #09090b 40%, #0c0b0a 100%);
  overflow-x: hidden;
  line-height: 1.55;
}

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

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

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

ul,
ol {
  list-style: none;
}

.grain,
.smoke-layer,
#fxCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.grain {
  z-index: 40;
  opacity: 0.08;
  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='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 8s steps(8) infinite;
}

.smoke-layer {
  z-index: 1;
  background:
    radial-gradient(ellipse 40% 30% at 80% 20%, rgba(200, 200, 205, 0.06), transparent 60%),
    radial-gradient(ellipse 35% 25% at 20% 70%, rgba(160, 150, 140, 0.05), transparent 60%);
  animation: smokeDrift 18s ease-in-out infinite alternate;
}

#fxCanvas {
  z-index: 2;
  opacity: 0.55;
}

@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-1%, 1%); }
  50% { transform: translate(1%, -1%); }
  75% { transform: translate(-1%, -2%); }
}

@keyframes smokeDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-2%, 1.5%, 0) scale(1.05); }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(8, 8, 10, 0.82);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.45));
  animation: brandFloat 5s ease-in-out infinite;
}

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

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

.brand-text strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.brand-text em {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.nav a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--chrome), transparent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--ink);
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 0.65rem 1rem;
  border: 1px solid rgba(212, 207, 198, 0.45);
  background: var(--btn-steel);
  color: #141210 !important;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.nav-cta:hover {
  background: var(--btn-steel-hover);
  border-color: var(--chrome-bright);
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  position: relative;
  z-index: 2;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--chrome);
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }

.nav-toggle.open span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

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

.nav-toggle.open span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease, filter 0.25s ease;
}

.btn img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Brushed warm steel — matches jacket hardware */
.btn-chrome {
  color: #141210;
  background: var(--btn-steel);
  border-color: #ebe6de;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-chrome img {
  filter: brightness(0) saturate(100%) invert(8%) sepia(8%) saturate(600%) hue-rotate(350deg);
  opacity: 0.9;
}

.btn-chrome::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 250, 240, 0.5) 45%, transparent 70%);
  transform: translateX(-120%);
  animation: shineSweep 4.5s ease-in-out infinite;
}

.btn-chrome:hover {
  background: var(--btn-steel-hover);
  border-color: var(--chrome-bright);
}

/* Outline — silver hardware on leather */
.btn-outline {
  color: var(--chrome-bright);
  border-color: rgba(212, 207, 198, 0.42);
  background: linear-gradient(180deg, rgba(212, 207, 198, 0.08), rgba(26, 21, 18, 0.35));
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-outline img {
  filter: brightness(0) invert(0.9) sepia(0.18) saturate(0.45) hue-rotate(5deg);
}

.btn-ghost {
  color: var(--chrome-2);
  border-color: transparent;
  background: transparent;
}

.btn-ghost img {
  filter: brightness(0) invert(0.62) sepia(0.2) saturate(0.4) hue-rotate(5deg);
  opacity: 0.95;
}

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

.btn-outline:hover {
  color: var(--chrome-bright);
  border-color: var(--chrome);
  background: linear-gradient(180deg, rgba(212, 207, 198, 0.14), rgba(42, 34, 28, 0.45));
}

.btn-outline:hover img {
  filter: brightness(0) invert(0.95) sepia(0.12) saturate(0.35);
}

.btn-ghost:hover {
  color: var(--chrome-bright);
  border-color: rgba(212, 207, 198, 0.28);
}

.btn-ghost:hover img {
  filter: brightness(0) invert(0.92) sepia(0.12) saturate(0.35);
}

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

/* Hero */
.hero {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: calc(var(--header-h) + 2rem) clamp(1rem, 4vw, 3rem) 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-beams {
  position: absolute;
  inset: 0;
  background:
    conic-gradient(from 210deg at 78% 18%, transparent 0deg, rgba(220, 220, 225, 0.08) 18deg, transparent 42deg),
    linear-gradient(115deg, transparent 55%, rgba(180, 175, 165, 0.05) 70%, transparent 85%);
  mask-image: radial-gradient(ellipse at 75% 20%, black 10%, transparent 70%);
  animation: beamPulse 7s ease-in-out infinite;
  pointer-events: none;
}

.hero-ring {
  position: absolute;
  width: min(56vw, 560px);
  height: min(56vw, 560px);
  right: 4%;
  top: 18%;
  border: 1px solid rgba(210, 210, 215, 0.12);
  border-radius: 50%;
  pointer-events: none;
  animation: ringSpin 28s linear infinite;
}

.hero-ring::before,
.hero-ring::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(210, 210, 215, 0.1);
  border-radius: 50%;
}

.hero-ring::after {
  inset: 24%;
  border-style: solid;
  animation: ringSpin 18s linear infinite reverse;
}

@keyframes beamPulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

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

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.2rem;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.6rem;
  height: 1px;
  background: linear-gradient(90deg, var(--chrome), transparent);
}

.metal-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.metal-title span {
  display: block;
  background: linear-gradient(180deg, #ffffff 0%, #d8d8de 28%, #8d8d95 52%, #ececf0 72%, #6e6e76 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  animation: metalBreathe 6s ease-in-out infinite;
}

.metal-title span:nth-child(2) {
  animation-delay: 0.4s;
}

.metal-title-sm {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff 10%, #aeaeb6 50%, #fff 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes metalBreathe {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.12); }
}

.hero-lead,
.section-lead {
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.inline-link {
  color: var(--chrome-bright);
  border-bottom: 1px solid rgba(212, 207, 198, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.inline-link:hover {
  color: #fff;
  border-bottom-color: var(--chrome);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.75rem 0 1.4rem;
}

.ca-row {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  max-width: 100%;
}

.ca-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

#contractAddress {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--chrome);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: min(42vw, 280px);
}

.copy-btn {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(212, 207, 198, 0.4);
  color: var(--chrome-bright);
  background: rgba(212, 207, 198, 0.06);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.copy-btn:hover,
.copy-btn.copied {
  background: var(--btn-steel);
  border-color: var(--chrome-bright);
  color: #141210;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.jacket-stage {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
}

.jacket-glow {
  position: absolute;
  inset: 12%;
  background: radial-gradient(circle, rgba(200, 195, 185, 0.18), transparent 68%);
  filter: blur(18px);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.55; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

.jacket-img {
  position: relative;
  z-index: 2;
  width: 88%;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.65));
  animation: jacketIdle 7s ease-in-out infinite;
}

@keyframes jacketIdle {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1.5deg); }
}

.jacket-shadow {
  position: absolute;
  bottom: 8%;
  width: 55%;
  height: 28px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.55), transparent 70%);
  filter: blur(6px);
  animation: shadowPulse 7s ease-in-out infinite;
}

@keyframes shadowPulse {
  0%, 100% { transform: scaleX(1); opacity: 0.7; }
  50% { transform: scaleX(0.85); opacity: 0.45; }
}

.ticker-chip {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  background: rgba(12, 12, 14, 0.65);
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.ticker-chip .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--chrome);
  box-shadow: 0 0 0 0 rgba(215, 215, 219, 0.5);
  animation: livePulse 2s ease-out infinite;
}

.ticker-chip .sep {
  opacity: 0.35;
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(215, 215, 219, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(215, 215, 219, 0); }
  100% { box-shadow: 0 0 0 0 rgba(215, 215, 219, 0); }
}

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, var(--chrome), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% { transform: scaleY(0.3); opacity: 0; transform-origin: top; }
  40% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; transform-origin: bottom; }
}

/* Zipper divider */
.zipper-divider {
  position: relative;
  z-index: 3;
  height: 48px;
  display: grid;
  place-items: center;
}

.zipper-track {
  width: min(90%, 720px);
  height: 2px;
  background:
    repeating-linear-gradient(90deg, var(--chrome-2) 0 8px, transparent 8px 14px);
  opacity: 0.55;
}

.zipper-pull {
  position: absolute;
  width: 18px;
  height: 28px;
  background: linear-gradient(180deg, #eee 0%, #888 100%);
  clip-path: polygon(20% 0, 80% 0, 100% 30%, 70% 100%, 30% 100%, 0 30%);
  animation: zipperRide 6s ease-in-out infinite;
}

@keyframes zipperRide {
  0%, 100% { left: calc(50% - 360px); }
  50% { left: calc(50% + 340px); }
}

/* Sections */
.section {
  position: relative;
  z-index: 3;
  padding: clamp(4rem, 10vw, 7rem) clamp(1rem, 4vw, 3rem);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 0.85rem;
}

/* About */
.about {
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.015), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.frame-chrome {
  position: relative;
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(230, 230, 235, 0.12), rgba(40, 40, 45, 0.4));
  border: 1px solid var(--line);
  overflow: hidden;
}

.frame-chrome::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(210, 210, 215, 0.18);
  pointer-events: none;
}

.frame-chrome img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 40%, #1c1c20, #0b0b0d 70%);
}

.frame-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.12) 48%, transparent 62%);
  transform: translateX(-100%);
  animation: frameShine 5.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes frameShine {
  0%, 40% { transform: translateX(-100%); }
  70%, 100% { transform: translateX(100%); }
}

.about-copy p + p {
  margin-top: 1rem;
}

.about-copy > p {
  color: var(--muted);
}

.trait-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.trait-list li {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.trait-list li:hover {
  border-color: var(--chrome-2);
  transform: translateY(-3px);
}

.trait-list strong {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.trait-list span {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

/* How to buy */
.buy-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.buy-step {
  position: relative;
  padding: 1.4rem 1.2rem 1.5rem;
  min-height: 210px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.buy-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--chrome), transparent);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.buy-step:hover {
  transform: translateY(-6px);
  border-color: rgba(210, 210, 215, 0.35);
}

.buy-step:hover::before {
  transform: scaleX(1);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--chrome-2);
  margin-bottom: 1rem;
  background: linear-gradient(180deg, #fff, #777);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.buy-step h3 {
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.55rem;
}

.buy-step p {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.link-tile {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(212, 207, 198, 0.18);
  background: linear-gradient(145deg, rgba(42, 34, 28, 0.55), rgba(10, 10, 12, 0.7));
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.link-tile img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  filter: brightness(0) invert(0.82) sepia(0.22) saturate(0.45) hue-rotate(5deg);
  transition: filter 0.25s ease;
}

.link-tile strong {
  display: block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--chrome-bright);
}

.link-tile span {
  color: var(--muted);
  font-size: 0.82rem;
}

.link-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 207, 198, 0.45);
  background: linear-gradient(145deg, rgba(58, 48, 40, 0.65), rgba(18, 16, 14, 0.75));
}

.link-tile:hover img {
  filter: brightness(0) invert(0.92) sepia(0.14) saturate(0.35);
}

/* Chart */
.chart {
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(180, 175, 165, 0.06), transparent 60%);
}

.chart-frame {
  border: 1px solid var(--line);
  background: #0a0a0c;
  overflow: hidden;
}

.chart-chrome-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

.chart-chrome-bar .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--chrome);
  animation: livePulse 2s ease-out infinite;
}

.chart-chrome-bar a {
  margin-left: auto;
  color: #141210;
  border: 1px solid rgba(212, 207, 198, 0.5);
  background: var(--btn-steel);
  padding: 0.3rem 0.65rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.chart-chrome-bar a:hover {
  border-color: var(--chrome-bright);
  background: var(--btn-steel-hover);
}

.chart-frame iframe {
  width: 100%;
  height: min(70vh, 620px);
  border: 0;
  display: block;
  background: #0a0a0c;
}

/* Join */
.join {
  padding-top: 0;
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.join-banner-wrap {
  position: relative;
  width: 100%;
  max-height: min(58vh, 520px);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.join-banner {
  width: 100%;
  height: min(58vh, 520px);
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: bannerDrift 18s ease-in-out infinite alternate;
}

@keyframes bannerDrift {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.08) translateY(-1.5%); }
}

.join-banner-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 8, 0.15) 0%, rgba(7, 7, 8, 0.35) 45%, rgba(7, 7, 8, 0.92) 100%),
    linear-gradient(90deg, rgba(7, 7, 8, 0.45), transparent 35%, transparent 70%, rgba(7, 7, 8, 0.25));
  pointer-events: none;
}

.join-content {
  position: relative;
  z-index: 2;
}

.join-copy {
  max-width: 42rem;
}

.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--line);
  padding: 2rem clamp(1rem, 4vw, 3rem) 2.5rem;
  background: rgba(0, 0, 0, 0.35);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.brand-footer .brand-mark {
  width: 36px;
  height: 36px;
}

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

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

.brand-footer em {
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.disclaimer {
  color: var(--muted);
  font-size: 0.8rem;
  max-width: 34rem;
}

.footer-socials {
  display: flex;
  gap: 0.65rem;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 207, 198, 0.22);
  background: rgba(212, 207, 198, 0.04);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.footer-socials a img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(0.78) sepia(0.2) saturate(0.4) hue-rotate(5deg);
  transition: filter 0.2s ease;
}

.footer-socials a:hover {
  border-color: var(--chrome);
  background: rgba(212, 207, 198, 0.12);
  transform: translateY(-2px);
}

.footer-socials a:hover img {
  filter: brightness(0) invert(0.93) sepia(0.12) saturate(0.3);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--header-h) + 1.5rem);
    padding-bottom: 5rem;
  }

  .hero-visual {
    order: -1;
  }

  .jacket-stage {
    width: min(100%, 360px);
  }

  .about-grid,
  .buy-steps,
  .buy-links,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .buy-step {
    min-height: 0;
  }

  .scroll-hint {
    display: none;
  }

  .hero-ring {
    opacity: 0.35;
  }
}

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

  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    background: rgba(6, 6, 8, 0.96);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

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

  .nav a {
    font-size: 1.1rem;
  }

  .trait-list {
    grid-template-columns: 1fr;
  }

  .zipper-pull {
    animation: none;
    left: 50%;
    transform: translateX(-50%);
  }
}

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

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