/**
 * WARDOGS.ARMY — Site-Specific Styles
 * Design tokens aligned to the WARDOGS Brand & Design System v1.0.
 * Scoped to .ics-site (added by mu-plugin to <body>).
 */

/* ─────────────────────────────────────────────
   WARDOGS DESIGN TOKENS (Brand System v1.0)
   ───────────────────────────────────────────── */
:root {
  /* Backgrounds — Dark Scale */
  --wd-bg:            #080807;
  --wd-bg-subtle:     #0d0d0b;
  --wd-bg-tertiary:   #111110;
  --wd-bg-card:       #181815;
  --wd-bg-elevated:   #282820;

  /* Accent Gold — Primary Brand Colour (sole accent) */
  --wd-gold:          #c9a84c;
  --wd-gold-dim:      #8a6b28;
  --wd-gold-dark:     #3a2c0f;
  --wd-gold-glow:     rgba(201, 168, 76, 0.15);

  /* Alert Red — Status & Warning States ONLY */
  --wd-red:           #b83428;
  --wd-red-bright:    #e04030;

  /* Text Scale */
  --wd-text:          #e6e2d6;
  --wd-text-muted:    #7a7670;
  --wd-text-dim:      #3a3830;

  /* Borders */
  --wd-border:        rgba(201, 168, 76, 0.14);
  --wd-border-strong: rgba(201, 168, 76, 0.4);

  /* Cards */
  --wd-card-bg:       var(--wd-bg-card);
  --wd-card-border:   var(--wd-border);

  /* Fonts — Brand System v1.0 */
  --wd-font-display:  'Bebas Neue', sans-serif;
  --wd-font-mono:     'Share Tech Mono', monospace;
  --wd-font-body:     'Barlow', sans-serif;
  --wd-font-cond:     'Barlow Condensed', sans-serif;
}


/* ─────────────────────────────────────────────
   GLOBAL BODY / PAGE
   ───────────────────────────────────────────── */
.ics-site {
  background-color: var(--wd-bg);
  color: var(--wd-text);
  font-family: var(--wd-font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Kill Flatsome page wrapper spacing — hero must touch the top */
.ics-site .page-wrapper .page,
.ics-site .page-wrapper > .page,
.ics-site .entry-content,
.ics-site .page-inner > .row {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Force black background on Flatsome wrappers and WooCommerce sticky bar */
.sticky-add-to-cart--active, #wrapper, #main, #main.dark {
  background-color: #000000;
}

/* Override ics-effects.css global cursor:none — restore default cursor everywhere except hero */
.ics-site *,
.ics-site *::before,
.ics-site *::after {
  cursor: auto !important;
}

.ics-site #wd-hero,
.ics-site #wd-hero * {
  cursor: none !important;
}

.ics-site h1,
.ics-site h2 {
  font-family: var(--wd-font-display);
  font-size: clamp(2.4rem, 5.5vw, 6.5rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 0.9;
}

/* Heading glow orb — follows cursor, only visible over h1/h2 */
.wd-heading-glow {
  position: fixed;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.25) 0%, rgba(201, 168, 76, 0.08) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease;
  mix-blend-mode: screen;
}

.ics-site h3,
.ics-site h4 {
  font-family: var(--wd-font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* ─────────────────────────────────────────────
   MILITARY LABEL COMPONENT
   Usage: <span class="wd-label">[CLASSIFIED // INTEL]</span>
   ───────────────────────────────────────────── */
.ics-site .wd-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--wd-font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--wd-gold);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 5;
}

.ics-site .wd-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--wd-gold);
}


/* ─────────────────────────────────────────────
   BLINKING RED SQUARE INDICATOR
   ───────────────────────────────────────────── */
.ics-site .wd-red-sq {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--wd-red);
  animation: wd-blink 4s ease-in-out infinite;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes wd-blink {
  0%   { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 1; }
}


/* ─────────────────────────────────────────────
   SECTION BASE STYLES
   ───────────────────────────────────────────── */
.ics-site .wd-section {
  position: relative;
  padding: clamp(64px, 10vh, 120px) clamp(16px, 4vw, 64px);
  max-width: 1400px;
  margin: 0 auto;
}

.ics-site .wd-section--full {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.ics-site .wd-section--dark {
  background-color: var(--wd-bg);
}

.ics-site .wd-section--subtle {
  background-color: var(--wd-bg-subtle);
}

.ics-site .wd-section {
  border-bottom: 1px solid var(--wd-border);
}


/* ─────────────────────────────────────────────
   PRELOADER
   ───────────────────────────────────────────── */
.wd-preloader {
  position: fixed;
  inset: 0;
  z-index: calc(var(--ics-z-modal) + 100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--wd-bg);
  pointer-events: all;
}

.wd-preloader__logo svg {
  width: clamp(120px, 20vw, 240px);
  height: auto;
}

.wd-preloader__logo svg path {
  fill: none;
  stroke: var(--wd-text);
  stroke-width: 2;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.wd-preloader__logo-img {
  width: clamp(120px, 20vw, 240px);
  height: auto;
  opacity: 0;
  animation: wd-logo-fade-in 1.5s ease-out forwards;
}

@keyframes wd-logo-fade-in {
  0%   { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

.wd-preloader__bar {
  width: clamp(120px, 20vw, 240px);
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 24px;
  overflow: hidden;
  border-radius: 1px;
}

.wd-preloader__bar-fill {
  width: 0%;
  height: 100%;
  background: var(--wd-gold);
  transition: width 0.3s ease-out;
}

.wd-preloader__percent {
  font-family: var(--wd-font-display);
  font-size: clamp(48px, 8vw, 80px);
  letter-spacing: 4px;
  color: var(--wd-text);
  margin-bottom: 16px;
}

.wd-preloader__text {
  font-family: var(--wd-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wd-text-muted);
  margin-top: 16px;
}


/* ─────────────────────────────────────────────
   HUD OVERLAY
   ───────────────────────────────────────────── */
.wd-hud {
  position: fixed;
  inset: 0;
  z-index: var(--ics-z-float);
  pointer-events: none;
  font-family: var(--wd-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wd-text-muted);
}

/* site-id removed from HUD — now in hero eyebrow */

.wd-hud__coords {
  position: absolute;
  top: clamp(56px, 8vh, 80px);
  right: clamp(16px, 2vw, 32px);
}

.wd-hud__scroll-label {
  position: absolute;
  right: clamp(16px, 2vw, 32px);
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
}

@media (hover: none) {
  .wd-hud { display: none; }
}


/* ─────────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────────── */
.ics-site #wd-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  clip-path: inset(0);
  cursor: none;
  margin-top: -1px;
}

/* Kill any Flatsome/WP wrapper padding above hero */
.ics-site #wd-hero:first-child,
.ics-site .wd-preloader + #wd-hero,
.ics-site [id^="wd-"] ~ #wd-hero {
  margin-top: 0;
}

.wd-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wd-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.wd-hero__bg-fallback {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 15% 75%, transparent 20%, rgba(8, 8, 7, 0.75) 65%, rgba(8, 8, 7, 0.97) 100%);
}

/* Hide fallback when video is present and playing */
.wd-hero__video + .wd-hero__bg-fallback {
  z-index: -1;
}

/* Grid overlay from design system (52px gold) */
.wd-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  z-index: 1;
}

/* Scan-line overlay */
.wd-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.03) 3px,
    rgba(0, 0, 0, 0.03) 4px
  );
  pointer-events: none;
  z-index: 1;
}

/* Vignette */
.wd-hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 15% 75%, transparent 25%, rgba(8, 8, 7, 0.4) 60%, rgba(8, 8, 7, 0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Corner brackets */
.wd-corner {
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: var(--wd-red);
  border-style: solid;
  opacity: 0.6;
  z-index: 2;
  animation: wd-corner-pulse 4s ease-in-out infinite;
}
.wd-corner--tl { top: 100px; left: 48px; border-width: 1px 0 0 1px; }
.wd-corner--tr { top: 100px; right: 48px; border-width: 1px 1px 0 0; }
.wd-corner--bl { bottom: 48px; left: 48px; border-width: 0 0 1px 1px; }
.wd-corner--br { bottom: 48px; right: 48px; border-width: 0 1px 1px 0; }

@keyframes wd-corner-pulse {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 0.3; }
}

.wd-hero__content {
  position: absolute;
  bottom: 180px;
  left: 48px;
  right: 48px;
  z-index: 6;
}

.wd-hero__eyebrow {
  font-family: var(--wd-font-mono);
  font-size: 24px;
  letter-spacing: 4px;
  color: var(--wd-text);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wd-hero__eyebrow .wd-red-sq {
  background: var(--wd-red-bright);
  animation: wd-blink 1s linear infinite;
}

.wd-hero__title {
  font-family: var(--wd-font-display);
  font-size: clamp(80px, 12vw, 170px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 2px;
  color: var(--wd-text);
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.wd-hero__title .gold {
  color: var(--wd-gold);
}

.wd-hero__title .stroke {
  -webkit-text-stroke: 2px rgba(224, 64, 48, 1);
  color: rgba(224, 64, 48, 0.25);
  text-shadow: 0 0 40px rgba(224, 64, 48, 0.5), 0 0 80px rgba(224, 64, 48, 0.2);
  filter: drop-shadow(0 2px 12px rgba(224, 64, 48, 0.35));
}

.wd-hero__tagline {
  font-family: var(--wd-font-mono);
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--wd-gold);
  text-transform: uppercase;
  margin-top: clamp(16px, 3vh, 32px);
  display: flex;
  align-items: center;
  gap: 12px;
}

.wd-hero__tagline::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--wd-gold);
}

.wd-hero__subtitle {
  font-family: var(--wd-font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: var(--wd-text-muted);
  max-width: 420px;
  margin-top: clamp(12px, 2vh, 24px);
}

.wd-hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: clamp(24px, 4vh, 48px);
}

.wd-hero__scroll-hint {
  position: absolute;
  bottom: clamp(24px, 4vh, 48px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--wd-font-mono);
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wd-red);
  text-align: center;
}

.wd-hero__scroll-hint .wd-chevron {
  display: block;
  width: 32px;
  height: 18px;
  margin: 10px auto 0;
  animation: wd-bounce 2s ease-in-out infinite;
}

@keyframes wd-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}


/* Lightning flash overlay */
.wd-hero__lightning {
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: screen;
  background: radial-gradient(ellipse 120% 100% at 50% 20%,
    rgba(255, 255, 255, 1) 0%,
    rgba(210, 220, 255, 0.6) 30%,
    rgba(140, 160, 220, 0.2) 60%,
    transparent 100%);
}

/* Screen shake on hero container */
.wd-hero--shaking {
  animation: wd-screen-shake 0.08s linear infinite;
}

@keyframes wd-screen-shake {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-3px, 2px); }
  50%  { transform: translate(2px, -3px); }
  75%  { transform: translate(-2px, -1px); }
  100% { transform: translate(3px, 1px); }
}

/* ─────────────────────────────────────────────
   CTA BUTTONS
   ───────────────────────────────────────────── */
.ics-site .wd-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  font-family: var(--wd-font-mono);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.25s ease, color 0.25s ease;
}

.ics-site .wd-btn--primary {
  background: var(--wd-gold);
  color: var(--wd-bg);
}

.ics-site .wd-btn--primary:hover {
  background: var(--wd-text);
}

.ics-site .wd-btn--outline {
  background: transparent;
  color: var(--wd-gold);
  border: 1px solid var(--wd-gold);
  clip-path: none;
  border-radius: 6px;
  padding: 14px 32px;
  font-weight: 700;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.ics-site .wd-btn--outline:hover {
  background: var(--wd-gold);
  color: var(--wd-bg);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.ics-site .wd-btn--gold {
  background: transparent;
  color: var(--wd-gold);
  outline: 1px solid var(--wd-gold);
}

.ics-site .wd-btn--gold:hover {
  background: var(--wd-gold);
  color: var(--wd-bg);
}


/* ─────────────────────────────────────────────
   TICKER STRIP — Statement + scrolling pill rows
   ───────────────────────────────────────────── */
.wd-ticker-strip {
  background: var(--wd-bg);
  padding: clamp(60px, 10vh, 120px) 0 0;
  overflow: hidden;
}

.wd-ticker-strip__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 6vh, 72px);
  padding: 0 24px;
}

.wd-ticker-strip__header h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  margin-bottom: clamp(12px, 2vh, 24px);
  line-height: 1.1;
}

.wd-ticker-strip__header p {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.6;
  color: var(--wd-text-muted);
  margin: 0;
}

/* Gold spotlight in center */
.wd-ticker-strip__rows {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: clamp(40px, 6vh, 72px);
}

.wd-ticker-strip__rows::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 30% 60% at 50% 50%, rgba(201, 168, 76, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.wd-ticker-strip__track {
  display: flex;
  gap: 12px;
  width: max-content;
}

/* Pill cards — dark glass style */
.wd-ticker-strip__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 16px 30px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 2px 8px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--wd-font-body);
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  font-weight: 600;
  color: var(--wd-text);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}


/* ─────────────────────────────────────────────
   MANIFESTO (pinned text + stacked side images)
   ───────────────────────────────────────────── */
.ics-site #wd-manifesto {
  position: relative;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--wd-bg);
  overflow: hidden;
}

/* Tile pattern background */
.wd-manifesto__pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(201,168,76,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Stage: 30% / 40% / 30% flex layout */
.wd-manifesto__stage {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 100%;
}

/* Side columns — stacked absolute images */
.wd-manifesto__col {
  position: relative;
  overflow: hidden;
}

.wd-manifesto__col--left {
  flex: 0 0 30%;
  aspect-ratio: 4 / 5;
  max-height: 70vh;
}

.wd-manifesto__col--center {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.wd-manifesto__col--right {
  flex: 0 0 30%;
  aspect-ratio: 4 / 5;
  max-height: 70vh;
}

/* Stacked images — all absolute, opacity toggled by JS */
.wd-manifesto__stacked-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  will-change: opacity;
  border-radius: 6px;
}

/* Fade overlays on inner edges */
.wd-manifesto__col--left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 35%, var(--wd-bg) 100%);
  pointer-events: none;
  z-index: 2;
}

.wd-manifesto__col--right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, transparent 35%, var(--wd-bg) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Text lines */
.wd-manifesto__lines {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vh, 32px);
}

.wd-manifesto__line {
  font-size: clamp(1.8rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--wd-text);
  margin: 0;
  opacity: 0;
}

@media (max-width: 768px) {
  .wd-manifesto__col--left,
  .wd-manifesto__col--right {
    flex: 0 0 25%;
    max-height: 50vh;
  }

  .wd-manifesto__col--center {
    flex: 0 0 50%;
  }

  .wd-manifesto__line {
    font-size: clamp(1.2rem, 5.5vw, 2rem);
  }
}

@media (max-width: 480px) {
  .wd-manifesto__col--left,
  .wd-manifesto__col--right {
    flex: 0 0 20%;
  }

  .wd-manifesto__col--center {
    flex: 0 0 60%;
  }

  .wd-manifesto__line {
    font-size: clamp(1rem, 5vw, 1.6rem);
  }
}


/* ─────────────────────────────────────────────
   ABOUT / INTEL BRIEFING — Boot Sequence + Video
   ───────────────────────────────────────────── */
.wd-about-scrub {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: var(--wd-bg);
}

.wd-about-scrub__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark vignette */
.wd-about-scrub__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse 70% 60% at 50% 50%,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.55) 60%,
    rgba(0,0,0,0.85) 100%
  );
  pointer-events: none;
}

/* Censored / pixelation layer */
.wd-about-scrub__censor {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(40px) saturate(0.2) brightness(0.4);
  -webkit-backdrop-filter: blur(40px) saturate(0.2) brightness(0.4);
  pointer-events: none;
}

/* Boot sequence container */
.wd-about-scrub__boot {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wd-about-scrub__terminal {
  text-align: center;
  max-width: 600px;
  padding: 0 24px;
}

/* Typewriter */
.wd-about-scrub__typewriter {
  font-family: var(--wd-font-mono);
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  color: var(--wd-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  min-height: 1.6em;
  margin-bottom: 2.5rem;
}

.wd-about-scrub__typewriter .wd-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--wd-gold);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: wd-blink 0.6s step-end infinite;
}

@keyframes wd-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* Loading bar */
.wd-about-scrub__loader {
  width: 240px;
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  margin: 0 auto 2rem;
  overflow: hidden;
  opacity: 0;
}

.wd-about-scrub__loader-bar {
  width: 0%;
  height: 100%;
  background: var(--wd-gold);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--wd-gold-glow);
}

/* Status text */
.wd-about-scrub__status {
  font-family: var(--wd-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wd-text-muted);
  opacity: 0;
  min-height: 1.4em;
}

/* ACCESS GRANTED */
.wd-about-scrub__access {
  font-family: var(--wd-font-display);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--wd-gold);
  letter-spacing: 0.06em;
  text-shadow: 0 0 30px rgba(201,168,76,0.5), 0 0 60px rgba(201,168,76,0.2);
  opacity: 0;
  margin-top: 1.5rem;
}

.wd-about-scrub__access.is-flashing {
  animation: wd-access-flash 1s ease-in-out infinite;
}

@keyframes wd-access-flash {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.25; }
}

/* Scroll message (post-boot) */
.wd-about-scrub__scroll-msg {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 clamp(24px, 5vw, 80px);
  opacity: 0;
  pointer-events: none;
}

.wd-about-scrub__scroll-msg h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--wd-text);
  margin: 0;
  line-height: 1.15;
  text-shadow: 0 2px 30px rgba(0,0,0,0.6);
}


/* ─────────────────────────────────────────────
   TOKENOMICS — Video Background
   ───────────────────────────────────────────── */
.ics-site #wd-tokenomics {
  position: relative;
  overflow: hidden;
}

.wd-tokenomics__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.wd-tokenomics__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 7, 0.75);
  z-index: 1;
}

.ics-site #wd-tokenomics > *:not(.wd-tokenomics__bg-video):not(.wd-tokenomics__bg-overlay) {
  position: relative;
  z-index: 2;
}


/* ─────────────────────────────────────────────
   TOKENOMICS — Narrative Layout
   ───────────────────────────────────────────── */
.wd-tokenomics__narrative {
  max-width: 680px;
  margin: 0 auto clamp(32px, 5vh, 56px);
  text-align: center;
}

.wd-tokenomics__narrative p {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: var(--wd-text-muted);
  margin: 0 0 1rem;
}

.wd-tokenomics__narrative strong {
  color: var(--wd-text);
  font-weight: 600;
}

/* Fact cards row */
.wd-tokenomics__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 100%;
  margin: 0 auto clamp(32px, 5vh, 48px);
}

.wd-tokenomics__fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}

.wd-tokenomics__fact-value {
  font-family: var(--wd-font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--wd-gold);
  letter-spacing: 0.02em;
}

.wd-tokenomics__fact-label {
  font-family: var(--wd-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wd-text-muted);
}

/* Glass pie chart rings */
.wd-tokenomics__pies {
  display: flex;
  justify-content: center;
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: clamp(32px, 5vh, 56px);
}

.wd-tokenomics__pie-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.wd-tokenomics__pie-ring {
  position: relative;
  width: 120px;
  height: 120px;
}

.wd-tokenomics__pie-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.wd-pie-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 8;
}

.wd-pie-fill {
  fill: none;
  stroke: var(--wd-gold);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 326.73;
  stroke-dashoffset: 326.73;
  filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.3));
}

/* Percent-based offsets: offset = 326.73 * (1 - percent/100) */
.wd-pie-fill[data-percent="97"] { animation: wd-pie-97 1.5s ease-out 0.3s forwards; }
.wd-pie-fill[data-percent="3"]  { animation: wd-pie-3 1.5s ease-out 0.5s forwards; }
.wd-pie-fill[data-percent="0"]  { stroke-dashoffset: 326.73; }

@keyframes wd-pie-97 { to { stroke-dashoffset: 9.8; } }
@keyframes wd-pie-3  { to { stroke-dashoffset: 316.93; } }

.wd-tokenomics__pie-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wd-font-display);
  font-size: 1.6rem;
  color: var(--wd-text);
  font-weight: 700;
}

.wd-tokenomics__pie-label {
  font-family: var(--wd-font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--wd-text-muted);
  text-transform: uppercase;
  font-weight: 500;
}

/* Whitepaper button */
.wd-tokenomics__wp {
  text-align: center;
  margin-bottom: clamp(24px, 4vh, 40px);
}

.wd-wp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 42px;
  font-family: var(--wd-font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--wd-bg);
  background: var(--wd-gold);
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.25), 0 0 40px rgba(201, 168, 76, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: wd-wp-glow 3s ease-in-out infinite;
}

@keyframes wd-wp-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(201, 168, 76, 0.25), 0 0 40px rgba(201, 168, 76, 0.1); }
  50%      { box-shadow: 0 0 30px rgba(201, 168, 76, 0.4), 0 0 60px rgba(201, 168, 76, 0.2); }
}

.wd-wp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
  color: var(--wd-bg);
}

.wd-wp-meta {
  margin-top: 12px;
  font-family: var(--wd-font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--wd-text-muted);
  text-transform: uppercase;
}

.wd-status-burned,
.wd-status-renounced {
  color: var(--wd-gold);
  font-weight: 700;
}

@media (max-width: 768px) {
  .wd-tokenomics__pies {
    gap: 24px;
  }
  .wd-tokenomics__pie-ring {
    width: 90px;
    height: 90px;
  }
  .wd-tokenomics__pie-value {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .wd-tokenomics__pies {
    flex-direction: column;
    align-items: center;
  }
}

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

@media (max-width: 480px) {
  .wd-tokenomics__facts {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .wd-tokenomics__fact {
    padding: 16px 10px;
  }
}

/* Contract address bar */
.wd-contract-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: clamp(32px, 4vh, 48px);
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
  padding: 20px 24px;
  background: var(--wd-card-bg);
  border: 1px solid var(--wd-card-border);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.15), 0 0 24px rgba(201, 168, 76, 0.08);
  animation: wd-contract-glow 3s ease-in-out infinite;
}

/* Contract bar header */
.wd-contract-bar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 4px;
}

.wd-contract-bar__title {
  font-family: var(--wd-font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wd-text);
}

.wd-contract-bar__status {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* LED lights — sequential pulse */
.wd-contract-leds {
  display: flex;
  gap: 4px;
}

.wd-led {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
}

.wd-led:nth-child(1) { animation: wd-led-seq 2.5s ease-in-out infinite; animation-delay: 0s; }
.wd-led:nth-child(2) { animation: wd-led-seq 2.5s ease-in-out infinite; animation-delay: 0.3s; }
.wd-led:nth-child(3) { animation: wd-led-seq 2.5s ease-in-out infinite; animation-delay: 0.6s; }
.wd-led:nth-child(4) { animation: wd-led-seq 2.5s ease-in-out infinite; animation-delay: 0.9s; }
.wd-led:nth-child(5) { animation: wd-led-seq 2.5s ease-in-out infinite; animation-delay: 1.2s; }

@keyframes wd-led-seq {
  0%, 60%  { background: var(--wd-gold); box-shadow: 0 0 4px var(--wd-gold); }
  80%, 100% { background: rgba(201, 168, 76, 0.15); box-shadow: none; }
}

.wd-contract-armed {
  font-family: var(--wd-font-mono);
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--wd-gold);
  font-weight: 700;
  animation: wd-armed-flash 1s ease-in-out infinite;
}

@keyframes wd-armed-flash {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.2; }
}

/* Contract bar body — label above, input + button row below */
.wd-contract-bar__body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 12px;
  width: 100%;
}

.wd-contract-bar__body .wd-label {
  width: 100%;
  margin-bottom: 0;
  flex-shrink: 0;
}

.wd-contract-bar code {
  flex: 1;
  font-family: var(--wd-font-mono);
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  color: var(--wd-text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
}

.ics-site .wd-btn--copy {
  padding: 14px 20px;
  font-size: 0.8rem;
}

@keyframes wd-contract-glow {
  0%, 100% {
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.15), 0 0 24px rgba(201, 168, 76, 0.08);
    border-color: var(--wd-card-border);
  }
  50% {
    box-shadow: 0 0 18px rgba(201, 168, 76, 0.3), 0 0 36px rgba(201, 168, 76, 0.12);
    border-color: var(--wd-gold-dim);
  }
}

/* old contract code styles removed — see .wd-contract-bar__body code above */

/* Copy button — yellow accent */
.ics-site .wd-btn--copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-family: var(--wd-font-mono);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: var(--wd-gold);
  color: var(--wd-bg);
  border-radius: 4px;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.ics-site .wd-btn--copy:hover {
  background: var(--wd-text);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.4);
}

.ics-site .wd-btn--copy svg {
  flex-shrink: 0;
}


/* ─────────────────────────────────────────────
   HOW TO BUY — horizontal scroll panels
   ───────────────────────────────────────────── */
.wd-step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vw, 80px);
}

.wd-step__num {
  font-family: var(--wd-font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 400;
  color: rgba(201, 168, 76, 0.12);
  line-height: 1;
  margin-bottom: 16px;
}

.wd-step h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.wd-step p {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  line-height: 1.6;
  color: var(--wd-text-muted);
  max-width: 480px;
}


/* ─────────────────────────────────────────────
   COMMUNITY / THE PACK
   ───────────────────────────────────────────── */
.wd-social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(32px, 5vh, 56px);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

@media (max-width: 480px) {
  .wd-social-grid {
    grid-template-columns: 1fr;
  }
}

.wd-social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  text-decoration: none;
  color: var(--wd-text);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.wd-social-card:hover {
  border-color: var(--wd-gold);
  background: rgba(201, 168, 76, 0.06);
  transform: translateY(-2px);
  color: var(--wd-text);
}

/* Community video card */
.wd-community__video-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  max-width: 900px;
  margin: clamp(24px, 4vh, 40px) auto;
  aspect-ratio: 16 / 9;
}

.wd-community__video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wd-community__video-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--wd-bg) 0%, transparent 100%);
  pointer-events: none;
}

/* Social grid — 3 equal cards */
.wd-social-grid {
  margin-top: clamp(16px, 3vh, 32px) !important;
}

.wd-social-card__icon-wrap {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wd-gold);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.wd-social-card:hover .wd-social-card__icon-wrap {
  opacity: 1;
}

.wd-social-card__icon-wrap svg {
  width: 100%;
  height: 100%;
}

.wd-social-card__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 0;
}

.wd-social-card__platform {
  font-family: var(--wd-font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.wd-social-card__handle {
  font-size: 0.7rem;
  color: var(--wd-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* ─────────────────────────────────────────────
   FAQ ACCORDION
   ───────────────────────────────────────────── */
.wd-faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.wd-faq__item {
  border-bottom: 1px solid var(--wd-card-border);
}

.wd-faq__item.is-active {
  border-left: 2px solid var(--wd-gold);
  padding-left: 16px;
}

.wd-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--wd-text);
  font-family: var(--wd-font-mono);
  font-size: clamp(0.85rem, 1vw, 1rem);
  text-align: left;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.wd-faq__question:hover {
  color: var(--wd-gold);
}

.wd-faq__chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.wd-faq__item.is-active .wd-faq__chevron {
  transform: rotate(180deg);
}

.wd-faq__answer {
  height: 0;
  overflow: hidden;
}

.wd-faq__answer p {
  padding: 0 0 20px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--wd-text-muted);
}


/* ─────────────────────────────────────────────
   DONUT CHART
   ───────────────────────────────────────────── */
.wd-donut {
  position: relative;
  display: inline-block;
}

.wd-donut__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.wd-donut__center-value {
  font-family: var(--wd-font-mono);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 700;
  color: var(--wd-text);
}

.wd-donut__center-label {
  font-family: var(--wd-font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wd-text-muted);
}

.wd-donut__legend {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.wd-donut__legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--wd-font-mono);
  font-size: 0.75rem;
  color: var(--wd-text-muted);
}

.wd-donut__legend-swatch {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}


/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
.ics-site #wd-footer {
  padding: clamp(40px, 6vh, 80px) clamp(16px, 4vw, 64px);
  text-align: center;
  border-top: 1px solid var(--wd-card-border);
}

.wd-footer__disclaimer-title {
  font-family: var(--wd-font-display);
  font-size: 1.4rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--wd-text-muted);
  margin: 32px 0 8px;
}

.wd-footer__disclaimer {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--wd-text-muted);
  max-width: 600px;
  margin: 8px auto 0;
}


/* ─────────────────────────────────────────────
   ROADMAP TOKEN OVERRIDES
   Switch accent from gold to WARDOGS red
   ───────────────────────────────────────────── */
.ics-site .ics-roadmap {
  --rm-bg:      var(--wd-bg);
  --rm-accent:  var(--wd-gold);
  --rm-text:    var(--wd-text);
  --rm-muted:   var(--wd-text-muted);
}


/* ─────────────────────────────────────────────
   CROSSHAIR SCOPE SYSTEM
   ───────────────────────────────────────────── */
.wd-scope {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}

.wd-scope__h-laser {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(232, 60, 50, 0.15) 20%, rgba(232, 60, 50, 0.5) 48%, rgba(232, 60, 50, 0.8) 50%, rgba(232, 60, 50, 0.5) 52%, rgba(232, 60, 50, 0.15) 80%, transparent 100%);
  pointer-events: none;
}

.wd-scope__v-laser {
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(232, 60, 50, 0.15) 20%, rgba(232, 60, 50, 0.5) 48%, rgba(232, 60, 50, 0.8) 50%, rgba(232, 60, 50, 0.5) 52%, rgba(232, 60, 50, 0.15) 80%, transparent 100%);
  pointer-events: none;
}

.wd-scope__dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e04030;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px 2px rgba(224, 64, 48, 0.6), 0 0 20px 4px rgba(224, 64, 48, 0.2);
  animation: wd-dot-pulse 0.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes wd-dot-pulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1; transform: translate(-50%, -50%) scale(1.6); }
}

.wd-scope__glow {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 64, 48, 0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.04;
  transition: opacity 0.3s ease;
}

@media (hover: none) {
  .wd-scope,
  .wd-scope-hud { display: none; }
}


/* ─────────────────────────────────────────────
   SCOPE HUD PANEL
   ───────────────────────────────────────────── */
.wd-scope-hud {
  position: relative;
  pointer-events: none;
  font-family: var(--wd-font-mono);
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: scale(0.95);
  transform-origin: bottom left;
}

.wd-scope-hud__row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wd-scope-hud__label {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--wd-red-bright);
  text-transform: uppercase;
  min-width: 70px;
}

.wd-scope-hud__val {
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--wd-text);
  font-variant-numeric: tabular-nums;
}

/* Wind meter */
.wd-scope-hud__wind {
  width: 120px;
  height: 6px;
  background: var(--wd-bg-elevated);
  overflow: hidden;
  border-radius: 2px;
}

.wd-scope-hud__wind-fill {
  height: 100%;
  width: 0%;
  background: var(--wd-red-bright);
  transition: width 0.15s ease-out;
}

/* Equalizer bars */
.wd-scope-hud__eq {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 32px;
}

.wd-scope-hud__eq span {
  width: 6px;
  height: 3px;
  min-height: 3px;
  background: var(--wd-red-bright);
  transition: height 0.1s ease-out;
}


/* ─────────────────────────────────────────────
   CARDS GALLERY SECTION
   ───────────────────────────────────────────── */
#wd-puppy-cards {
  position: relative;
  padding: clamp(40px, 6vh, 80px) 0;
  overflow: hidden;
  background: var(--wd-bg);
}

/* Flowing ambient background */
.wd-cards__downlight {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(ellipse 40% 50% at 30% 40%, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 35% 45% at 70% 60%, rgba(201, 168, 76, 0.03) 0%, transparent 60%);
  animation: wd-cards-flow 20s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes wd-cards-flow {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(3%, -2%); }
  100% { transform: translate(-1%, 1%); }
}

/* Fade edges — cards vanish at viewport edges */
#wd-puppy-cards::before,
#wd-puppy-cards::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12%;
  z-index: 20;
  pointer-events: none;
}

#wd-puppy-cards::before {
  left: 0;
  background: linear-gradient(90deg, var(--wd-bg) 0%, transparent 100%);
}

#wd-puppy-cards::after {
  right: 0;
  background: linear-gradient(270deg, var(--wd-bg) 0%, transparent 100%);
}

/* Card rows — horizontal conveyors */
.wd-cards__row {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  will-change: transform;
  z-index: 5;
  padding: 12px 0;
}

.wd-cards__row--top {
  margin-bottom: 24px;
}

/* Individual card — frosted glass, doubled size */
.wd-cards__card {
  flex-shrink: 0;
  width: 380px;
  height: 480px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 12px 4px rgba(201, 168, 76, 0.04),
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  will-change: transform;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
}

.wd-cards__card:hover {
  box-shadow:
    0 0 24px 10px rgba(201, 168, 76, 0.1),
    0 16px 48px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

/* Top edge glow line */
.wd-cards__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
  z-index: 2;
}

/* Card image — larger */
.wd-cards__card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 20px 20px 0 0;
}

/* Card text */
.wd-cards__card-text {
  flex: 1;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.wd-cards__card-name {
  font-family: var(--wd-font-cond);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--wd-text);
}

.wd-cards__card-quote {
  font-family: var(--wd-font-body);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.5;
  color: var(--wd-text-muted);
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* Force-field cursor bubble */
.wd-cards__forcefield {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.08);
  background: radial-gradient(circle, rgba(201, 168, 76, 0.03) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 15;
  opacity: 0;
  transition: opacity 0.2s ease;
}

@media (max-width: 768px) {
  .wd-cards__card {
    width: 260px;
    height: 360px;
  }
  .wd-cards__card-img { height: 220px; }
  .wd-cards__card-name { font-size: 14px; }
  .wd-cards__card-quote { font-size: 11px; }
  .wd-cards__row { gap: 16px; }
  .wd-cards__forcefield { display: none; }
}


/* ─────────────────────────────────────────────
   TRANSMISSIONS FEED
   ───────────────────────────────────────────── */
.wd-transmissions {
  position: absolute;
  top: 100px;
  right: 40px;
  bottom: 35%;
  width: 380px;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 85%, transparent 100%);
}

.wd-transmissions__line {
  font-family: var(--wd-font-mono);
  font-size: 15px;
  letter-spacing: 2px;
  font-weight: 300;
  color: rgba(230, 226, 214, 0.5);
  line-height: 1.8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1024px) {
  .wd-transmissions {
    width: 260px;
    right: 20px;
  }
  .wd-transmissions__line {
    font-size: 12px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 768px) {
  .wd-transmissions {
    position: absolute;
    top: auto;
    bottom: 80px;
    left: 20px;
    right: 20px;
    width: auto;
    height: auto;
    max-height: 80px;
    justify-content: flex-end;
  }
  .wd-transmissions__line {
    font-size: 10px;
    opacity: 0.5;
  }
}

@media (max-width: 480px) {
  .wd-transmissions { display: none; }
}


/* ─────────────────────────────────────────────
   PIXEL MORPH SCROLL TRANSITION
   ───────────────────────────────────────────── */
.wd-pixelmorph {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 8;
  pointer-events: none;
  display: flex;
  flex-wrap: wrap;
}

.wd-pixelmorph__cell {
  background: var(--wd-bg);
  opacity: 0;
  transform: scale(0);
}


/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Hero mobile */
  .ics-site #wd-hero {
    height: 100svh;
  }

  .wd-hero__title {
    font-size: clamp(40px, 11vw, 64px);
    line-height: 0.92;
  }

  .wd-hero__title .stroke {
    -webkit-text-stroke: 1.5px rgba(224, 64, 48, 1);
  }

  .wd-hero__content {
    bottom: 140px;
    left: 20px;
    right: 20px;
  }

  .wd-hero__eyebrow {
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 12px;
  }

  .wd-hero__subtitle {
    font-size: 12px;
    max-width: 100%;
    line-height: 1.6;
  }

  .wd-hero__ctas {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    justify-content: stretch;
  }

  .wd-hero__ctas .wd-btn {
    text-align: center;
    justify-content: center;
    padding: 14px 20px;
    font-size: 9px;
  }

  .wd-corner {
    width: 20px;
    height: 20px;
  }
  .wd-corner--tl { top: 16px; left: 16px; }
  .wd-corner--tr { top: 16px; right: 16px; }
  .wd-corner--bl { bottom: 16px; left: 16px; }
  .wd-corner--br { bottom: 16px; right: 16px; }

  .wd-hero__scroll-hint {
    bottom: 16px;
  }

  /* Vignette — lighter on mobile so video shows through */
  .wd-hero__vignette {
    background: radial-gradient(ellipse 90% 90% at 30% 60%, transparent 20%, rgba(8, 8, 7, 0.35) 55%, rgba(8, 8, 7, 0.65) 100%);
  }

  /* Scope HUD — smaller on mobile but still visible */
  .wd-scope-hud {
    bottom: 20px;
    left: 20px;
    gap: 8px;
  }
  .wd-scope-hud__label { font-size: 9px; min-width: 40px; }
  .wd-scope-hud__val { font-size: 12px; }
  .wd-scope-hud__wind { width: 60px; height: 3px; }
  .wd-scope-hud__eq { height: 16px; gap: 2px; }
  .wd-scope-hud__eq span { width: 3px; }

  /* Pixel morph — fewer cells on mobile */
  .wd-pixelmorph {
    height: 30%;
  }

  /* ── Ticker strip mobile ── */
  .wd-ticker-strip {
    padding: clamp(40px, 8vh, 72px) 0 0;
  }

  .wd-ticker-strip__header {
    padding: 0 20px;
  }

  .wd-ticker-strip__header h2 {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .wd-ticker-strip__rows {
    gap: 10px;
    padding-bottom: clamp(32px, 5vh, 48px);
  }

  .wd-ticker-strip__pill {
    padding: 10px 18px;
    font-size: 0.8rem;
  }

  /* ── Manifesto mobile — stack vertically ── */
  .ics-site #wd-manifesto {
    height: auto;
    min-height: 100svh;
    padding: clamp(40px, 8vh, 72px) 0;
  }

  .wd-manifesto__stage {
    flex-direction: column;
    gap: clamp(24px, 4vh, 40px);
  }

  .wd-manifesto__col--left,
  .wd-manifesto__col--right {
    display: none;
  }

  .wd-manifesto__col--center {
    flex: 1;
    width: 100%;
    padding: 0 20px;
  }

  .wd-manifesto__line {
    font-size: clamp(1.4rem, 7vw, 2.2rem);
  }

  /* ── Whitepaper button fix ── */
  .wd-wp-btn {
    flex-direction: row;
    flex-wrap: nowrap;
    white-space: nowrap;
    padding: 12px 24px;
    font-size: 11px;
    gap: 8px;
  }

  .wd-wp-btn svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
  }

  /* ── Chart scale on mobile ── */
  .ics-site .wd-live-chart__frame {
    transform: scale(0.85);
    transform-origin: top center;
  }

  /* ── Outline buttons — ensure icon+text aligned ── */
  .ics-site .wd-btn--outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 11px;
    padding: 12px 24px;
  }

  /* ── About / boot sequence mobile ── */
  .wd-about-scrub {
    height: 100svh;
  }

  .wd-about-scrub__censor {
    backdrop-filter: blur(20px) saturate(0.3) brightness(0.4);
    -webkit-backdrop-filter: blur(20px) saturate(0.3) brightness(0.4);
  }

  .wd-about-scrub__terminal {
    padding: 0 20px;
  }

  .wd-about-scrub__typewriter {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
  }

  .wd-about-scrub__loader {
    width: 180px;
  }

  .wd-about-scrub__access {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  .wd-about-scrub__scroll-msg h2 {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
    padding: 0 20px;
  }

  /* ── Social cards mobile ── */
  .wd-social-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 20px;
  }

  .wd-social-card {
    flex-direction: column;
    text-align: center;
    padding: 20px 12px;
    gap: 8px;
  }

  .wd-social-card__icon-wrap {
    width: 28px;
    height: 28px;
  }

  .wd-social-card__info {
    align-items: center;
  }

  .wd-social-card__platform {
    font-size: 0.85rem;
  }

  .wd-social-card__handle {
    font-size: 0.6rem;
  }

  /* Sections mobile padding */
  .ics-site .wd-section {
    padding: clamp(40px, 8vh, 72px) 24px;
  }
}

@media (max-width: 480px) {
  .wd-hero__title {
    font-size: clamp(36px, 10vw, 52px);
  }

  .wd-hero__content {
    bottom: 70px;
    left: 16px;
    right: 16px;
  }

  .wd-corner { display: none; }

  .wd-scope-hud { display: none; }

  .wd-social-grid {
    grid-template-columns: 1fr;
  }

  .wd-about-scrub__access {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }

  .wd-ticker-strip__pill {
    padding: 8px 14px;
    font-size: 0.75rem;
  }
}


/* ─────────────────────────────────────────────
   MARKET TICKER — Live price strip
   ───────────────────────────────────────────── */
.ics-site .wd-market-ticker {
  position: relative;
  background: var(--wd-bg);
  border-top: 1px solid var(--wd-border);
  border-bottom: 1px solid var(--wd-border);
  padding: 24px 0 32px;
  overflow: hidden;
}

/* Centered pill-style title */
.ics-site .wd-market-ticker__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 0 14px;
  font-family: var(--wd-font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--wd-text-muted);
}

.ics-site .wd-market-ticker__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px 4px 10px;
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 20px;
  background: rgba(34, 197, 94, 0.06);
  color: #22c55e;
  font-size: 10px;
  letter-spacing: 2px;
}

.ics-site .wd-market-ticker__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: wd-live-pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes wd-live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50%      { opacity: 0.6; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.ics-site .wd-market-ticker__widget {
  width: 100%;
  min-height: auto;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Override TradingView widget text to match brand */
.ics-site .wd-market-ticker .tradingview-widget-container {
  font-family: var(--wd-font-mono) !important;
}

/* Fade edges on market ticker strip */
.ics-site .wd-market-ticker__widget::before,
.ics-site .wd-market-ticker__widget::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.ics-site .wd-market-ticker__widget::before {
  left: 0;
  background: linear-gradient(90deg, var(--wd-bg), transparent);
}

.ics-site .wd-market-ticker__widget::after {
  right: 0;
  background: linear-gradient(270deg, var(--wd-bg), transparent);
}

.ics-site .wd-market-ticker__widget {
  position: relative;
}

/* ─────────────────────────────────────────────
   TOP HOLDERS — Scrolling glass cards
   ───────────────────────────────────────────── */
.wd-holders {
  background: var(--wd-bg);
  border-top: 1px solid var(--wd-border);
  padding: 20px 0 24px;
  overflow: hidden;
  position: relative;
}

.wd-holders__header {
  text-align: center;
  margin-bottom: 16px;
}

.wd-holders__track {
  display: flex;
  gap: 16px;
  width: max-content;
}

#wd-holders-cards,
#wd-holders-cards + div {
  display: flex;
  gap: 16px;
}

/* Glass card */
.wd-holder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 28px;
  min-width: 160px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  flex-shrink: 0;
}

.wd-holder-card__rank {
  font-family: var(--wd-font-display);
  font-size: 1.1rem;
  color: var(--wd-gold);
  letter-spacing: 1px;
}

.wd-holder-card__addr {
  font-family: var(--wd-font-mono);
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--wd-text-muted);
}

.wd-holder-card__amount {
  font-family: var(--wd-font-display);
  font-size: 1.4rem;
  color: var(--wd-text);
  font-weight: 700;
}

.wd-holder-card__pct {
  font-family: var(--wd-font-mono);
  font-size: 0.8rem;
  color: var(--wd-gold-dim);
  letter-spacing: 1px;
}

/* Fade edges */
.wd-holders::before,
.wd-holders::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.wd-holders::before {
  left: 0;
  background: linear-gradient(90deg, var(--wd-bg), transparent);
}

.wd-holders::after {
  right: 0;
  background: linear-gradient(270deg, var(--wd-bg), transparent);
}

/* ─────────────────────────────────────────────
   LIVE CHART — DexScreener / GeckoTerminal embed
   ───────────────────────────────────────────── */
.ics-site .wd-live-chart {
  position: relative;
  background: var(--wd-bg-subtle);
  border: 1px solid var(--wd-border);
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto;
  max-width: 1200px;
}

.ics-site .wd-live-chart__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--wd-border);
  background: var(--wd-bg-card);
}

.ics-site .wd-live-chart__frame {
  position: relative;
  width: 100%;
  background: var(--wd-bg);
}

.ics-site .wd-live-chart__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Placeholder state (no pair address yet) */
.ics-site .wd-live-chart--placeholder {
  border-style: dashed;
}

.ics-site .wd-live-chart__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  gap: 8px;
  text-align: center;
  padding: 40px 20px;
}

.ics-site .wd-live-chart__empty p {
  font-family: var(--wd-font-body);
  color: var(--wd-text-muted);
  font-size: 0.85rem;
  margin: 0;
}

/* Corner bracket accents on chart container */
.ics-site .wd-live-chart__frame::before,
.ics-site .wd-live-chart__frame::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--wd-gold-dim);
  border-style: solid;
  z-index: 2;
  pointer-events: none;
}

.ics-site .wd-live-chart__frame::before {
  top: 8px;
  left: 8px;
  border-width: 1px 0 0 1px;
}

.ics-site .wd-live-chart__frame::after {
  bottom: 8px;
  right: 8px;
  border-width: 0 1px 1px 0;
}

/* ─── Market section responsive ─── */
@media (max-width: 768px) {
  .ics-site .wd-market-ticker__label {
    display: none;
  }

  .ics-site .wd-live-chart__frame {
    height: 450px !important;
  }
}

@media (max-width: 480px) {
  .ics-site .wd-live-chart__frame {
    height: 350px !important;
  }

  .ics-site .wd-live-chart {
    border-radius: 8px;
  }
}
