:root {
  --bg: #e9eef4;
  --bg-2: #f5f7fa;
  --bg-3: #dde5ee;
  --panel: rgba(255, 255, 255, 0.72);
  --ink: #12161c;
  --muted: #5a6574;
  --line: rgba(18, 22, 28, 0.1);
  --red: #e11d2e;
  --red-deep: #b01220;
  --red-bright: #ff3b4a;
  --steel: #2f4a66;
  --ice: #7eb6d9;
  --ice-soft: #c5dff0;
  --chrome: #1a222c;
  --chrome-2: #4a5563;
  --chrome-bright: #ffffff;
  --accent: var(--red);
  --btn-fill: linear-gradient(145deg, #ff4a57 0%, #e11d2e 42%, #ff6b76 58%, #b01220 100%);
  --btn-fill-hover: linear-gradient(145deg, #ff6b76 0%, #f02838 42%, #ff8a92 58%, #c91828 100%);
  --radius: 4px;
  --font-display: "Oswald", Impact, sans-serif;
  --font-body: "Sora", 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(1000px 580px at 85% -5%, rgba(225, 29, 46, 0.12), transparent 55%),
    radial-gradient(900px 520px at 5% 15%, rgba(126, 182, 217, 0.28), transparent 50%),
    radial-gradient(700px 400px at 50% 100%, rgba(47, 74, 102, 0.08), transparent 55%),
    linear-gradient(180deg, #eef3f8 0%, #e6ecf3 45%, #dfe7f0 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.045;
  mix-blend-mode: multiply;
  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 42% 28% at 80% 16%, rgba(225, 29, 46, 0.06), transparent 60%),
    radial-gradient(ellipse 36% 26% at 16% 70%, rgba(126, 182, 217, 0.12), transparent 60%);
  animation: smokeDrift 18s ease-in-out infinite alternate;
}

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

@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, box-shadow 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(245, 247, 250, 0.9);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgba(18, 22, 28, 0.06);
}

.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 14px rgba(18, 22, 28, 0.18));
  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: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-text em {
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.nav a {
  font-size: 0.8rem;
  font-weight: 600;
  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: 2px;
  background: linear-gradient(90deg, transparent, var(--red), 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 var(--red-deep);
  background: var(--btn-fill);
  color: #fff !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-fill-hover);
  border-color: var(--red);
  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(--ink);
  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.8rem;
  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, box-shadow 0.25s ease;
}

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

.btn-chrome {
  color: #fff;
  background: var(--btn-fill);
  border-color: var(--red-deep);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  box-shadow: 0 10px 24px rgba(225, 29, 46, 0.28);
}

.btn-chrome img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

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

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

.btn-outline {
  color: var(--ink);
  border-color: rgba(18, 22, 28, 0.22);
  background: rgba(255, 255, 255, 0.65);
  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) saturate(100%);
  opacity: 0.8;
}

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

.btn-ghost img {
  filter: brightness(0) saturate(100%) invert(28%) sepia(18%) saturate(900%) hue-rotate(175deg);
  opacity: 0.9;
}

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

.btn-outline:hover {
  color: var(--red-deep);
  border-color: rgba(225, 29, 46, 0.45);
  background: #fff;
}

.btn-ghost:hover {
  color: var(--red);
  border-color: rgba(225, 29, 46, 0.2);
  background: rgba(255, 255, 255, 0.5);
}

@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-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.06);
  animation: bannerDrift 20s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(233, 238, 244, 0.96) 0%, rgba(233, 238, 244, 0.88) 38%, rgba(233, 238, 244, 0.55) 68%, rgba(233, 238, 244, 0.78) 100%),
    linear-gradient(180deg, rgba(233, 238, 244, 0.55) 0%, transparent 38%, rgba(233, 238, 244, 0.92) 100%),
    radial-gradient(ellipse at 78% 35%, rgba(225, 29, 46, 0.12), transparent 50%);
}

.hero-beams {
  position: absolute;
  inset: 0;
  background:
    conic-gradient(from 210deg at 78% 18%, transparent 0deg, rgba(126, 182, 217, 0.22) 18deg, transparent 42deg),
    linear-gradient(115deg, transparent 55%, rgba(225, 29, 46, 0.08) 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;
}

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

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

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

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

.metal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 11vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.metal-title span {
  display: block;
  color: var(--ink);
  text-shadow: 0 10px 30px rgba(18, 22, 28, 0.08);
  animation: metalBreathe 6s ease-in-out infinite;
}

.metal-title span:nth-child(2) {
  animation-delay: 0.4s;
  background: linear-gradient(180deg, #ff5a66 0%, #e11d2e 45%, #8f101c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.metal-title-sm {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

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

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

.inline-link {
  color: var(--red-deep);
  border-bottom: 1px solid rgba(225, 29, 46, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.inline-link:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}

.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.7);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(18, 22, 28, 0.04);
  max-width: 100%;
}

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

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

.copy-btn {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(225, 29, 46, 0.35);
  color: var(--red-deep);
  background: rgba(225, 29, 46, 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-fill);
  border-color: var(--red-deep);
  color: #fff;
}

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

.jacket-stage {
  position: relative;
  width: min(100%, 420px);
  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(225, 29, 46, 0.28), rgba(126, 182, 217, 0.18) 48%, 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 28px 36px rgba(18, 22, 28, 0.28));
  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(18, 22, 28, 0.28), 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(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 28px rgba(18, 22, 28, 0.06);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

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

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

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(225, 29, 46, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(225, 29, 46, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 29, 46, 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;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, var(--red), 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; }
}

/* 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(--red) 0 8px, transparent 8px 14px);
  opacity: 0.45;
}

.zipper-pull {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--red);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: zipperRide 6s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(225, 29, 46, 0.35));
}

@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(2.3rem, 4.8vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

/* About */
.about {
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.55), 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(255, 255, 255, 0.95), rgba(197, 223, 240, 0.45));
  border: 1px solid var(--line);
  box-shadow: 0 24px 50px rgba(18, 22, 28, 0.08);
  overflow: hidden;
}

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

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

.frame-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.45) 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.72);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.trait-list li:hover {
  border-color: rgba(225, 29, 46, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(18, 22, 28, 0.06);
}

.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.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* 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.9), rgba(255, 255, 255, 0.55));
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.buy-step:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 29, 46, 0.3);
  box-shadow: 0 18px 36px rgba(18, 22, 28, 0.08);
}

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

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--red);
}

.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 var(--line);
  background: rgba(255, 255, 255, 0.8);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.link-tile img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%);
  opacity: 0.75;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

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

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

.link-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 29, 46, 0.35);
  background: #fff;
  box-shadow: 0 14px 30px rgba(18, 22, 28, 0.08);
}

.link-tile:hover img {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(18%) sepia(90%) saturate(2500%) hue-rotate(340deg);
}

/* Watch / Video */
.watch {
  background:
    radial-gradient(800px 420px at 50% 0%, rgba(225, 29, 46, 0.08), transparent 60%),
    radial-gradient(600px 300px at 80% 80%, rgba(126, 182, 217, 0.16), transparent 55%);
}

.video-stage {
  max-width: 960px;
  margin: 0 auto;
}

.video-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.video-stars-bottom {
  margin-top: 1rem;
  margin-bottom: 0;
}

.video-stars span {
  width: 10px;
  height: 10px;
  background: var(--red);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: 0.85;
  animation: starTwinkle 2.8s ease-in-out infinite;
}

.video-stars span:nth-child(2) { animation-delay: 0.2s; background: var(--steel); }
.video-stars span:nth-child(3) { animation-delay: 0.4s; }
.video-stars span:nth-child(4) { animation-delay: 0.6s; background: var(--steel); }
.video-stars span:nth-child(5) { animation-delay: 0.8s; }

@keyframes starTwinkle {
  0%, 100% { opacity: 0.45; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.15); }
}

.video-frame {
  border: 1px solid rgba(18, 22, 28, 0.12);
  background: #0f141b;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(225, 29, 46, 0.12),
    0 28px 70px rgba(18, 22, 28, 0.18);
}

.video-chrome-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(225, 29, 46, 0.9), #1a2430 42%, #243447);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
}

.video-chrome-bar .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: livePulse 2s ease-out infinite;
  flex-shrink: 0;
}

.video-chrome-bar span:nth-child(2) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.video-chrome-bar a {
  margin-left: auto;
  flex-shrink: 0;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  padding: 0.3rem 0.65rem;
  font-weight: 700;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.video-chrome-bar a:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.22);
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* 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;
}

.join-banner-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(233, 238, 244, 0.15) 0%, rgba(233, 238, 244, 0.35) 45%, rgba(233, 238, 244, 0.96) 100%),
    linear-gradient(90deg, rgba(233, 238, 244, 0.45), transparent 35%, transparent 70%, rgba(233, 238, 244, 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(255, 255, 255, 0.55);
}

.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: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.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 var(--line);
  background: rgba(255, 255, 255, 0.8);
  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) saturate(100%);
  opacity: 0.75;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.footer-socials a:hover {
  border-color: rgba(225, 29, 46, 0.4);
  background: #fff;
  transform: translateY(-2px);
}

.footer-socials a:hover img {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(18%) sepia(90%) saturate(2500%) hue-rotate(340deg);
}

/* 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%, 320px);
  }

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

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

  .scroll-hint {
    display: none;
  }

  .hero-veil {
    background:
      linear-gradient(180deg, rgba(233, 238, 244, 0.82) 0%, rgba(233, 238, 244, 0.7) 40%, rgba(233, 238, 244, 0.95) 100%),
      linear-gradient(90deg, rgba(233, 238, 244, 0.75), rgba(233, 238, 244, 0.5));
  }
}

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

  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    background: rgba(245, 247, 250, 0.97);
    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%);
  }

  .video-chrome-bar span:nth-child(2) {
    max-width: 42vw;
  }
}

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

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