/* $BRODIE — angular neon-paw theme from logo */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@400;500;600;700;800&family=Share+Tech+Mono&display=swap");

:root {
  --bg-deep: #120c08;
  --bg: #1a100c;
  --bg-panel: #241610;
  --bg-raised: #2e1c12;
  --bg-edge: #3a2418;
  --line: #4a3220;
  --line-bright: #6a4a2a;
  --neon: #d4ff00;
  --neon-hot: #e8ff4a;
  --neon-dim: #9fc400;
  --neon-glow: rgba(212, 255, 0, 0.45);
  --cream: #f5ebe0;
  --cream-soft: #d9cfc2;
  --muted: #a89888;
  --ink: #0a0604;
  --tongue: #e85a5a;
  --forest: #2a4a28;
  --radius: 0;
  --clip-frame: polygon(0 12px, 12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px));
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-mono: "Share Tech Mono", ui-monospace, monospace;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--cream);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.55;
}

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

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

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

:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
}

/* —— Paw pattern + atmosphere —— */
.paw-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='%23d4ff00'%3E%3Cellipse cx='42' cy='38' rx='9' ry='12' transform='rotate(-18 42 38)'/%3E%3Cellipse cx='58' cy='28' rx='8' ry='11'/%3E%3Cellipse cx='74' cy='32' rx='8' ry='11' transform='rotate(12 74 32)'/%3E%3Cellipse cx='86' cy='46' rx='7' ry='10' transform='rotate(28 86 46)'/%3E%3Cellipse cx='62' cy='58' rx='16' ry='14'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 140px 140px;
  animation: paw-drift 80s linear infinite;
}

@keyframes paw-drift {
  from { background-position: 0 0; }
  to { background-position: 280px 280px; }
}

.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 900px 500px at 12% -8%, rgba(212, 255, 0, 0.14), transparent 55%),
    radial-gradient(ellipse 700px 480px at 92% 8%, rgba(212, 255, 0, 0.08), transparent 50%),
    radial-gradient(ellipse 600px 400px at 50% 100%, rgba(42, 74, 40, 0.35), transparent 60%),
    linear-gradient(165deg, #1a100c 0%, #120c08 45%, #1c140e 100%);
}

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.35) 2px,
    rgba(0, 0, 0, 0.35) 4px
  );
}

.site {
  position: relative;
  z-index: 2;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* —— Floating decorative paws —— */
.float-paws {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.float-paw {
  position: absolute;
  width: 28px;
  height: 28px;
  opacity: 0.18;
  color: var(--neon);
  animation: float-paw 9s ease-in-out infinite;
  filter: drop-shadow(0 0 6px var(--neon-glow));
}

.float-paw:nth-child(1) { top: 12%; left: 6%; animation-delay: 0s; }
.float-paw:nth-child(2) { top: 28%; right: 8%; animation-delay: 1.4s; width: 36px; height: 36px; }
.float-paw:nth-child(3) { top: 62%; left: 10%; animation-delay: 2.8s; }
.float-paw:nth-child(4) { bottom: 18%; right: 14%; animation-delay: 0.7s; width: 22px; height: 22px; }
.float-paw:nth-child(5) { top: 45%; left: 48%; animation-delay: 3.5s; opacity: 0.1; }

@keyframes float-paw {
  0%, 100% { transform: translateY(0) rotate(-8deg); opacity: 0.12; }
  50% { transform: translateY(-18px) rotate(8deg); opacity: 0.28; }
}

.paw-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.12em;
  fill: currentColor;
}

/* —— Ticker —— */
.ticker {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--neon);
  color: var(--ink);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
  animation: ticker-scroll 28s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ticker-item .mark {
  color: var(--forest);
  font-size: 10px;
}

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

/* —— Nav —— */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0 8px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.06em;
  line-height: 1;
}

.brand-mark {
  width: 52px;
  height: 52px;
  object-fit: cover;
  clip-path: var(--clip-frame);
  box-shadow:
    0 0 0 2px var(--neon),
    0 0 28px var(--neon-glow),
    0 0 56px rgba(212, 255, 0, 0.2);
  animation: brand-pulse 3.2s ease-in-out infinite;
}

@keyframes brand-pulse {
  0%, 100% { box-shadow: 0 0 0 2px var(--neon), 0 0 24px var(--neon-glow), 0 0 48px rgba(212, 255, 0, 0.18); }
  50% { box-shadow: 0 0 0 3px var(--neon-hot), 0 0 36px var(--neon-glow), 0 0 72px rgba(212, 255, 0, 0.32); }
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text small {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--neon);
  text-transform: uppercase;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 16px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: color 0.15s, border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.nav-links a:hover {
  color: var(--neon);
  border-color: var(--neon);
  background: rgba(212, 255, 0, 0.06);
  box-shadow: 0 0 18px rgba(212, 255, 0, 0.15);
}

@media (max-width: 700px) {
  .nav-links { display: none; }
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: calc(100vh - 110px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding: 48px 0 72px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8% -4% auto auto;
  width: 48%;
  height: 70%;
  background: radial-gradient(circle, rgba(212, 255, 0, 0.16), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--neon);
  padding: 8px 14px;
  margin-bottom: 22px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  box-shadow: 4px 4px 0 var(--neon-dim), 0 0 24px var(--neon-glow);
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  background: var(--ink);
  box-shadow: 0 0 8px var(--ink);
  animation: blink 1.5s steps(2) infinite;
}

@keyframes blink {
  50% { opacity: 0.25; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 104px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  text-shadow:
    0 0 40px rgba(212, 255, 0, 0.25),
    3px 3px 0 rgba(0, 0, 0, 0.55);
}

.hero h1 .accent {
  color: var(--neon);
  text-shadow:
    0 0 20px var(--neon-glow),
    0 0 60px rgba(212, 255, 0, 0.35),
    3px 3px 0 rgba(0, 0, 0, 0.55);
}

.lede {
  color: var(--cream-soft);
  font-size: 17px;
  max-width: 460px;
  margin-bottom: 28px;
  line-height: 1.65;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: transform 0.12s, box-shadow 0.12s, background 0.12s, color 0.12s;
}

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

.btn-primary {
  background: var(--neon);
  color: var(--ink);
  box-shadow:
    5px 5px 0 var(--neon-dim),
    0 0 28px var(--neon-glow);
}

.btn-primary:hover {
  box-shadow:
    7px 7px 0 var(--neon-dim),
    0 0 40px var(--neon-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--line-bright);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.35);
}

.btn-ghost:hover {
  border-color: var(--neon);
  color: var(--neon);
  box-shadow: 4px 4px 0 rgba(212, 255, 0, 0.2);
}

.ticket {
  background: linear-gradient(145deg, var(--bg-raised), var(--bg-panel));
  border: 1.5px solid var(--line-bright);
  max-width: 480px;
  padding: 16px 18px;
  clip-path: var(--clip-frame);
  position: relative;
  box-shadow:
    inset 0 0 40px rgba(212, 255, 0, 0.04),
    0 0 0 1px rgba(212, 255, 0, 0.08);
}

.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid var(--neon);
  opacity: 0.7;
}

.ticket::before {
  top: 8px;
  left: 8px;
  border-right: none;
  border-bottom: none;
}

.ticket::after {
  bottom: 8px;
  right: 8px;
  border-left: none;
  border-top: none;
}

.ticket-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.ticket-label .chain {
  color: var(--neon);
}

.ticket-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ca-text {
  font-family: var(--font-mono);
  font-size: 12px;
  flex: 1;
  overflow-x: auto;
  white-space: nowrap;
  color: var(--cream);
  padding-bottom: 2px;
}

.copy-btn {
  flex-shrink: 0;
  min-height: 44px;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--bg-edge);
  border: 1px solid var(--line);
  color: var(--cream);
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  transition: all 0.15s;
}

.copy-btn:hover,
.copy-btn.copied {
  background: var(--neon);
  color: var(--ink);
  border-color: var(--neon);
  box-shadow: 0 0 18px var(--neon-glow);
}

.hero-art {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(100%, 440px);
}

.hero-art .glow {
  position: absolute;
  inset: -12%;
  background: radial-gradient(circle, rgba(212, 255, 0, 0.35), transparent 62%);
  filter: blur(18px);
  animation: glow-breathe 4s ease-in-out infinite;
}

@keyframes glow-breathe {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

.hero-frame {
  position: relative;
  clip-path: var(--clip-frame);
  border: 2px solid var(--neon);
  box-shadow:
    0 0 0 6px rgba(212, 255, 0, 0.12),
    0 0 50px var(--neon-glow),
    12px 12px 0 rgba(0, 0, 0, 0.45);
  overflow: hidden;
  background: var(--bg-panel);
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  animation: float-y 5.5s ease-in-out infinite;
}

@keyframes float-y {
  0%, 100% { transform: translateY(0) scale(1.02); }
  50% { transform: translateY(-12px) scale(1.02); }
}

.hero-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  background: rgba(18, 12, 8, 0.82);
  border: 1px solid var(--neon);
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.hero-badge strong {
  color: var(--neon);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding-top: 28px;
  }
  .hero-art { order: -1; max-width: 300px; }
  .lede { margin-inline: auto; }
  .cta-row { justify-content: center; }
  .ticket { margin-inline: auto; }
  .hero h1 { font-size: clamp(48px, 14vw, 72px); }
}

/* —— Diagonal divider —— */
.slash {
  height: 48px;
  background:
    linear-gradient(135deg, transparent 48%, var(--neon) 48%, var(--neon) 52%, transparent 52%),
    linear-gradient(135deg, var(--bg-deep) 49.5%, var(--bg-panel) 50.5%);
  opacity: 0.9;
}

.slash.flip {
  transform: scaleX(-1);
  background:
    linear-gradient(135deg, transparent 48%, var(--neon) 48%, var(--neon) 52%, transparent 52%),
    linear-gradient(135deg, var(--bg-panel) 49.5%, var(--bg-deep) 50.5%);
}

/* —— Banner —— */
.banner {
  position: relative;
  border-top: 2px solid var(--neon);
  border-bottom: 2px solid var(--neon);
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: clamp(200px, 28vw, 360px);
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(1.1) contrast(1.05);
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 12, 8, 0.55), transparent 30%, transparent 70%, rgba(18, 12, 8, 0.55)),
    linear-gradient(0deg, rgba(18, 12, 8, 0.35), transparent 40%);
  pointer-events: none;
}

.banner-label {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  letter-spacing: 0.08em;
  color: var(--neon);
  text-shadow: 0 0 24px var(--neon-glow), 2px 2px 0 #000;
}

/* —— Sections —— */
.section {
  padding: 80px 0;
  position: relative;
}

.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 12px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 0.03em;
  line-height: 0.95;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--muted);
  font-size: 16px;
}

.lore {
  background: var(--bg-panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 40px 80px rgba(0, 0, 0, 0.25);
}

.lore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 880px) {
  .lore-grid { grid-template-columns: 1fr; }
}

.lore-card {
  background: linear-gradient(160deg, var(--bg-raised), var(--bg));
  border: 1.5px solid var(--line);
  padding: 28px 22px;
  clip-path: var(--clip-frame);
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.lore-card:hover {
  border-color: var(--neon);
  box-shadow: 0 0 32px rgba(212, 255, 0, 0.12), 6px 6px 0 rgba(0, 0, 0, 0.35);
  transform: translate(-2px, -2px);
}

.lore-card .tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  background: var(--neon);
  padding: 5px 10px;
  margin-bottom: 16px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}

.lore-card .tag.red {
  background: var(--tongue);
  color: #2a0300;
}

.lore-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.lore-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}

.tweet-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

@media (max-width: 700px) {
  .tweet-row { grid-template-columns: 1fr; }
}

.tweet {
  display: block;
  border: 1.5px solid var(--line);
  background: #000;
  overflow: hidden;
  clip-path: var(--clip-frame);
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.tweet:hover {
  border-color: var(--neon);
  transform: translate(-2px, -2px);
  box-shadow: 0 0 28px rgba(212, 255, 0, 0.15);
}

.tweet img {
  width: 100%;
  height: auto;
}

.pull-quote {
  margin-top: 48px;
  padding: 28px 30px;
  background: rgba(212, 255, 0, 0.05);
  border-left: 4px solid var(--neon);
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 0.02em;
  line-height: 1.25;
  box-shadow: inset 0 0 40px rgba(212, 255, 0, 0.04);
}

.pull-quote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.vibe-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
  background: var(--bg-raised);
  border: 1.5px solid var(--line-bright);
  clip-path: var(--clip-frame);
  padding: 8px;
  box-shadow: 0 0 40px rgba(212, 255, 0, 0.06);
}

.vibe-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 22px 16px;
  position: relative;
}

.vibe-item + .vibe-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(transparent, var(--neon), transparent);
  opacity: 0.35;
}

.vibe-item .num {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--neon);
  letter-spacing: 0.04em;
  text-shadow: 0 0 24px var(--neon-glow);
  line-height: 1;
}

.vibe-item .lbl {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* —— Gallery —— */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 880px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

.meme-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1.5px solid var(--line);
  clip-path: var(--clip-frame);
  background: var(--bg-panel);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.meme-card:hover {
  border-color: var(--neon);
  box-shadow: 0 0 30px rgba(212, 255, 0, 0.18);
}

.meme-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.meme-card:hover img {
  transform: scale(1.07);
}

.meme-card .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--cream);
  background: linear-gradient(transparent, rgba(10, 6, 4, 0.92));
}

.meme-card .paw-corner {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
  color: var(--neon);
  opacity: 0.75;
  filter: drop-shadow(0 0 6px var(--neon-glow));
}

/* —— Final CTA —— */
.final-cta {
  text-align: center;
  padding: 100px 24px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 700px 320px at 50% 0%, rgba(212, 255, 0, 0.16), transparent 65%),
    var(--bg-deep);
  position: relative;
  overflow: hidden;
}

.final-cta .logo-halo {
  width: 110px;
  height: 110px;
  margin: 0 auto 28px;
  object-fit: cover;
  clip-path: var(--clip-frame);
  box-shadow: 0 0 0 3px var(--neon), 0 0 50px var(--neon-glow);
  animation: brand-pulse 3.2s ease-in-out infinite;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: 0.03em;
  line-height: 0.95;
  margin-bottom: 16px;
}

.final-cta p {
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 32px;
  font-size: 16px;
}

.final-cta .cta-row {
  justify-content: center;
}

/* —— Footer —— */
.footer {
  border-top: 2px solid var(--line);
  padding: 36px 0 28px;
  background: var(--bg);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.footer-ca {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  word-break: break-all;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--neon);
}

.disclaimer {
  text-align: center;
  margin-top: 22px;
  font-size: 11px;
  color: var(--muted);
  opacity: 0.7;
  max-width: 720px;
  margin-inline: auto;
}

/* —— Cursor paw trail —— */
.paw-trail {
  position: fixed;
  width: 16px;
  height: 16px;
  pointer-events: none;
  z-index: 100;
  color: var(--neon);
  opacity: 0;
  transition: opacity 0.4s;
  filter: drop-shadow(0 0 4px var(--neon-glow));
}

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .paw-field { animation: none; }
}
