/*
 * PAINTEDD | About — Identity Dossier
 * Full-page dossier layout. Left: artist portrait + ambient. Right: scroll-narrative content.
 * Mobile: single column, portrait leads, content follows.
 */

/* ── Local token extensions ───────────────────────────────────────────────── */
:root {
  --cyan: var(--pntd-c-turquoise);
  --red: var(--pntd-c-red);
  --fuchsia: var(--pntd-c-fuchsia);
  --gold: var(--pntd-c-yellow);
  --glow-cyan: var(--pntd-glow-turquoise);
  --glow-red: var(--pntd-glow-red);
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  background: var(--pntd-bg);
  color: #fff;
  font-family: var(--pntd-font);
  min-height: 100dvh;
  overflow-x: hidden;
}

/* ── Ambient background ───────────────────────────────────────────────────── */
.ab-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ab-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: orbDrift 18s ease-in-out infinite;
  will-change: transform, opacity;
}
.ab-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(217, 4, 41, 0.35) 0%,
    transparent 70%
  );
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}
.ab-orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 217, 191, 0.2) 0%,
    transparent 70%
  );
  bottom: -15%;
  right: -15%;
  animation-delay: -6s;
}
.ab-orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(231, 37, 231, 0.18) 0%,
    transparent 70%
  );
  top: 40%;
  left: 40%;
  animation-delay: -12s;
}

@keyframes orbDrift {
  0% {
    transform: translate(0px, 0px);
    opacity: 0.6;
  }
  33% {
    transform: translate(30px, -20px);
    opacity: 0.9;
  }
  66% {
    transform: translate(-20px, 30px);
    opacity: 0.7;
  }
  100% {
    transform: translate(0px, 0px);
    opacity: 0.6;
  }
}

.ab-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* ── Layout ───────────────────────────────────────────────────────────────── */
.ab-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 420px 1fr;
  grid-template-rows: 100dvh;
  min-height: 100dvh;
}

/* ── Left column — sticky portrait panel ─────────────────────────────────── */
.ab-portrait-col {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  gap: 28px;
  overflow: hidden;
}

/* Scanline overlay on portrait col */
.ab-portrait-col::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.04) 2px,
    rgba(0, 0, 0, 0.04) 4px
  );
  pointer-events: none;
  z-index: 0;
}

/* ── Portrait frame ───────────────────────────────────────────────────────── */
.ab-portrait-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
}

.ab-portrait-border {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--red),
    var(--fuchsia),
    var(--cyan),
    var(--gold),
    var(--red)
  );
  animation: borderSpin 8s linear infinite;
  filter: blur(1px);
}
@keyframes borderSpin {
  to {
    transform: rotate(360deg);
  }
}

.ab-portrait-border-inner {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: conic-gradient(
    from 180deg,
    var(--red),
    var(--fuchsia),
    var(--cyan),
    var(--gold),
    var(--red)
  );
  opacity: 0.3;
  animation: borderSpin 14s linear infinite reverse;
  filter: blur(6px);
}

.ab-portrait-img-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #0a0a0a;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.9);
}

.ab-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  filter: saturate(1.1) contrast(1.05);
}

/* Holographic sheen on portrait */
.ab-portrait-sheen {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 70%
  );
  background-size: 200% 200%;
  animation: sheenSweep 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
}
@keyframes sheenSweep {
  0% {
    background-position: 200% 200%;
  }
  50% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 200%;
  }
}

/* Status ring pulse */
.ab-status-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 217, 191, 0.3);
  animation: statusPulse 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes statusPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.03);
  }
}

/* ── Portrait labels ──────────────────────────────────────────────────────── */
.ab-identity-block {
  position: relative;
  z-index: 1;
  text-align: center;
}

.ab-name {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin: 0;
  background: linear-gradient(135deg, #fff 40%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.ab-tagline {
  margin-top: 8px;
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: var(--cyan);
  text-transform: uppercase;
  font-weight: 600;
}

/* ── Status badge ─────────────────────────────────────────────────────────── */
.ab-status-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.65rem;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: monospace;
  background: rgba(0, 217, 191, 0.08);
  border: 1px solid rgba(0, 217, 191, 0.3);
  color: var(--cyan);
}

.ab-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: statusPulse 2s ease-in-out infinite;
}

/* ── Social pills on portrait col ────────────────────────────────────────── */
.ab-socials {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.ab-social-pip {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.25s var(--pntd-ease-fast);
}
.ab-social-pip:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Colour-keyed hover tints */
.ab-social-pip[data-network="instagram"]:hover {
  color: #e4405f;
  border-color: #e4405f;
  box-shadow: 0 0 20px rgba(228, 64, 95, 0.3);
}
.ab-social-pip[data-network="tiktok"]:hover {
  color: #fff;
  border-color: #fff;
}
.ab-social-pip[data-network="youtube"]:hover {
  color: #ff0000;
  border-color: #ff0000;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}
.ab-social-pip[data-network="facebook"]:hover {
  color: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.3);
}
.ab-social-pip[data-network="whatsapp"]:hover {
  color: #25d366;
  border-color: #25d366;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}
.ab-social-pip[data-network="email"]:hover {
  color: var(--fuchsia);
  border-color: var(--fuchsia);
  box-shadow: 0 0 20px rgba(231, 37, 231, 0.3);
}

/* ── Right column — dossier scroll content ───────────────────────────────── */
.ab-content-col {
  overflow-y: auto;
  padding: 80px 60px 100px;
  display: flex;
  flex-direction: column;
  gap: 70px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}
.ab-content-col::-webkit-scrollbar {
  width: 4px;
}
.ab-content-col::-webkit-scrollbar-track {
  background: transparent;
}
.ab-content-col::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

/* ── Section base ─────────────────────────────────────────────────────────── */
.ab-section {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--pntd-ease-slow),
    transform 0.7s var(--pntd-ease-slow);
}
.ab-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.ab-section-label {
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  font-family: monospace;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ab-section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
}

/* ── Hero statement ───────────────────────────────────────────────────────── */
.ab-hero-statement {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.5px;
}

.ab-hero-statement .accent-red {
  color: var(--red);
}
.ab-hero-statement .accent-cyan {
  color: var(--cyan);
}
.ab-hero-statement .accent-fuchsia {
  color: var(--fuchsia);
}

.ab-hero-sub {
  margin: 20px 0 0;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  font-weight: 300;
}

/* ── Medium cards ─────────────────────────────────────────────────────────── */
.ab-medium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.ab-medium-card {
  padding: 18px 16px;
  border-radius: 14px;
  background: var(--pntd-glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: 0.3s var(--pntd-ease-fast);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.ab-medium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    var(--card-accent, rgba(0, 217, 191, 0.1)) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.ab-medium-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}
.ab-medium-card:hover::before {
  opacity: 1;
}

.ab-medium-icon {
  font-size: 1.3rem;
  color: var(--icon-color, var(--cyan));
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ab-medium-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}
.ab-medium-desc {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
}

/* ── Stats grid ───────────────────────────────────────────────────────────── */
.ab-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.ab-stat-card {
  padding: 22px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.ab-stat-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.ab-stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--stat-color, #fff);
  margin: 0;
  font-variant-numeric: tabular-nums;
}
.ab-stat-label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  margin-top: 6px;
  font-family: monospace;
}

/* Accent corner line */
.ab-stat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 2px;
  background: var(--stat-color, var(--cyan));
  opacity: 0.5;
  border-radius: 0 2px 0 0;
}

/* ── Manifesto / philosophy ───────────────────────────────────────────────── */
.ab-manifesto {
  padding: 32px 36px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid var(--red);
  position: relative;
  overflow: hidden;
}
.ab-manifesto::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 12rem;
  line-height: 1;
  color: rgba(217, 4, 41, 0.05);
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}

.ab-manifesto-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  font-weight: 300;
  margin: 0;
  position: relative;
  z-index: 1;
}
.ab-manifesto-text em {
  color: #fff;
  font-style: normal;
  font-weight: 600;
}

/* ── Discipline timeline ──────────────────────────────────────────────────── */
.ab-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ab-timeline-item {
  display: grid;
  grid-template-columns: 80px 1px 1fr;
  gap: 0 20px;
  min-height: 80px;
}

.ab-tl-year {
  text-align: right;
  font-family: monospace;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.3);
  padding-top: 4px;
  align-self: start;
}

.ab-tl-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.ab-tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--tl-color, var(--cyan));
  box-shadow: 0 0 10px var(--tl-color, var(--cyan));
  flex-shrink: 0;
  margin-top: 4px;
  z-index: 1;
}
.ab-tl-track {
  flex: 1;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent);
  margin-top: 4px;
}
.ab-timeline-item:last-child .ab-tl-track {
  display: none;
}

.ab-tl-content {
  padding-bottom: 32px;
}
.ab-tl-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  letter-spacing: 0.5px;
}
.ab-tl-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  margin: 0;
}

/* ── Inner Circle / Cipher section ───────────────────────────────────────── */
.ab-cipher-panel {
  border-radius: 20px;
  border: 1px solid rgba(217, 4, 41, 0.2);
  background: rgba(217, 4, 41, 0.03);
  overflow: hidden;
}

.ab-cipher-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(217, 4, 41, 0.12);
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}
.ab-cipher-header:hover {
  background: rgba(217, 4, 41, 0.06);
}

.ab-cipher-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ab-cipher-lock-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(217, 4, 41, 0.1);
  border: 1px solid rgba(217, 4, 41, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--red);
}
.ab-cipher-title {
  font-size: 0.8rem;
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: monospace;
  color: rgba(255, 255, 255, 0.7);
}
.ab-cipher-sub {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
  margin-top: 2px;
}
.ab-cipher-chevron {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
  transition: transform 0.3s var(--pntd-ease-fast);
}
.ab-cipher-panel.open .ab-cipher-chevron {
  transform: rotate(180deg);
}

/* Cipher body — collapsible */
.ab-cipher-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ab-cipher-panel.open .ab-cipher-body {
  max-height: 600px;
}

.ab-cipher-inner {
  padding: 28px;
}

/* State switch */
.ab-cipher-state {
  display: none;
}
.ab-cipher-state.active {
  display: block;
}

/* Locked state */
.ab-cipher-display {
  background: #000;
  border: 1px solid rgba(217, 4, 41, 0.25);
  border-radius: 10px;
  padding: 16px;
  font-family: monospace;
  font-size: 1.4rem;
  text-align: center;
  color: var(--red);
  letter-spacing: 6px;
  margin-bottom: 24px;
  box-shadow: inset 0 0 20px rgba(217, 4, 41, 0.1);
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ab-keypad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 280px;
  margin: 0 auto;
}

.ab-key {
  aspect-ratio: 1;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.12s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ab-key:active,
.ab-key:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.ab-key:active {
  transform: scale(0.94);
}
.ab-key-clear {
  color: var(--red);
  border-color: rgba(217, 4, 41, 0.25);
}
.ab-key-enter {
  color: var(--cyan);
  border-color: rgba(0, 217, 191, 0.25);
}

.ab-cipher-hint {
  text-align: center;
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.65rem;
  letter-spacing: 1px;
  margin-top: 20px;
  font-style: italic;
}

/* Unlocked state */
.ab-unlocked-body {
  text-align: center;
}

.ab-unlocked-title {
  font-size: 0.6rem;
  letter-spacing: 6px;
  color: var(--red);
  text-transform: uppercase;
  font-family: monospace;
  margin: 0 0 20px;
}

.ab-uid-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(217, 4, 41, 0.3);
  background: rgba(217, 4, 41, 0.06);
  font-family: monospace;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}
.ab-uid-val {
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}

.ab-sigil-wrap {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  color: var(--red);
  filter: drop-shadow(0 0 12px rgba(217, 4, 41, 0.5));
}
.ab-sigil-wrap svg {
  width: 100%;
  height: 100%;
}

.ab-terminal {
  font-family: monospace;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: left;
  border-left: 2px solid rgba(217, 4, 41, 0.3);
  padding-left: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.ab-terminal .hl {
  color: #fff;
  font-weight: 700;
}

.ab-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.25s;
}
.ab-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}
.ab-toggle-btn.active {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0, 217, 191, 0.08);
}
.ab-toggle-btn.active:hover {
  background: rgba(0, 217, 191, 0.14);
}

/* ── CTA footer strip ─────────────────────────────────────────────────────── */
.ab-cta-strip {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ab-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 14px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.25s var(--pntd-ease-fast);
  border: none;
}

.ab-cta-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 24px rgba(217, 4, 41, 0.35);
}
.ab-cta-primary:hover {
  background: #f0052d;
  box-shadow: 0 10px 32px rgba(217, 4, 41, 0.55);
  transform: translateY(-2px);
}

.ab-cta-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.7);
}
.ab-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25) !important;
  color: #fff;
  transform: translateY(-2px);
}

/* ── Noise texture ────────────────────────────────────────────────────────── */
/* .pntd-noise is from global.css */

#ab-cipher-panel {
    display: none;
}

/* ── Mobile ───────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .ab-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .ab-portrait-col {
    position: relative;
    height: auto;
    padding: 100px 30px 50px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .ab-portrait-frame {
    max-width: 220px;
  }

  .ab-content-col {
    padding: 50px 24px 80px;
    gap: 52px;
  }

  .ab-hero-statement {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  .ab-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-medium-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-timeline-item {
    grid-template-columns: 56px 1px 1fr;
    gap: 0 14px;
  }
}

@media (max-width: 480px) {
  .ab-name {
    font-size: 1.7rem;
    letter-spacing: 4px;
  }

  .ab-content-col {
    padding: 40px 18px 80px;
    gap: 44px;
  }

  .ab-manifesto {
    padding: 22px 22px;
  }
  .ab-manifesto-text {
    font-size: 0.95rem;
  }

  .ab-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .ab-medium-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-cta-strip {
    flex-direction: column;
  }
  .ab-cta-btn {
    justify-content: center;
  }
}

#hour-counter {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 2rem;
  color: #0ff;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.7);
  font-variant-numeric: tabular-nums;
}
