/* ===========================
   ABOUT PAGE STYLES
   =========================== */

/* Nav link additions */
.nav-brand { text-decoration: none; color: rgba(255,255,255,0.6); }
.nav-links  { display: flex; align-items: center; gap: 24px; }
.nav-link   { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.nav-link:hover       { color: var(--white); }
.nav-link-active      { color: var(--pink); }

/* ===========================
   ABOUT HERO
   =========================== */
.about-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
  background: linear-gradient(145deg,
    #06030e 0%, #0d0920 20%,
    #1a0640 40%, #3b1270 60%,
    #6d28d9 80%, #a21caf 100%
  );
}
.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  opacity: 0.4;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: start;
}

/* Photo */
.about-photo-wrap { flex-shrink: 0; }

.about-photo-frame {
  width: 280px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    -6px 6px 0 rgba(244,114,182,0.3),
    0 32px 80px rgba(0,0,0,0.6);
  margin-bottom: 16px;
  position: relative;
}
.about-photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6,3,14,0.4) 100%);
  z-index: 1;
  pointer-events: none;
}
.about-photo-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.about-photo-stat-row {
  display: flex;
  gap: 16px;
}

.about-stat {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 12px 14px;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  display: block;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.3;
  letter-spacing: 0.02em;
}

/* Intro text */
.about-name {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  margin-bottom: 8px;
}

.about-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.about-lead {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: 560px;
}
.about-lead a {
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.about-lead a:hover { color: var(--white); }

.about-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ===========================
   CREDENTIALS STRIP
   =========================== */
.credentials {
  background: var(--black);
  border-bottom: 1px solid var(--line);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.credential-item {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  transition: background 0.2s;
}
.credential-item:last-child { border-right: none; }
.credential-item:hover { background: rgba(255,255,255,0.02); }

.credential-number {
  display: block;
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.credential-title {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.credential-detail {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===========================
   BIO
   =========================== */
.about-bio {
  background: var(--bg);
  padding: 100px 0;
}

.about-bio-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

.bio-heading {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-bottom: 0;
}

.bio-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  margin-bottom: 18px;
}
.bio-text p:last-child { margin-bottom: 0; }

.bio-text a {
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.bio-text a:hover { color: var(--white); }

.bio-text em { color: rgba(255,255,255,0.85); font-style: italic; }

/* Pull quote + book CTA */
.bio-pull { display: flex; flex-direction: column; gap: 32px; }

.bio-blockquote {
  padding: 32px;
  border: 1px solid var(--line);
  position: relative;
  margin: 0;
}
.bio-blockquote::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--magenta));
}
.bio-blockquote p {
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 14px;
}
.bio-blockquote cite {
  font-size: 0.78rem;
  font-style: normal;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

/* Book CTA card */
.about-book-cta {
  display: block;
  border: 1px solid var(--line);
  transition: border-color 0.2s, background 0.2s;
}
.about-book-cta:hover {
  border-color: rgba(244,114,182,0.4);
  background: rgba(255,255,255,0.02);
}
.about-book-cta-inner {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px;
}
.about-book-thumb {
  flex-shrink: 0;
  width: 64px;
  height: 88px;
}
.thumb-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #06030e, #3b1270, #c026d3);
  border-radius: 2px;
  padding: 6px 5px;
  display: flex;
  flex-direction: column;
}
.thumb-pre {
  font-family: var(--display);
  font-size: 5px;
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1px;
}
.thumb-title {
  font-family: var(--display);
  font-size: 7px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: white;
  margin-bottom: 3px;
}
.thumb-rule {
  width: 14px; height: 1px;
  background: rgba(244,114,182,0.8);
  margin-bottom: 4px;
}
.thumb-author {
  font-size: 4px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: auto;
}
.about-book-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-book-cta-text strong {
  font-size: 0.85rem;
  color: var(--white);
  line-height: 1.3;
}
.about-book-cta-text span {
  font-size: 0.78rem;
  color: var(--pink);
}

/* ===========================
   ARTICLES
   =========================== */
.articles {
  background: var(--black);
  padding: 100px 0;
  border-top: 1px solid var(--line);
}

.articles-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.articles-title {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-bottom: 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.article-card {
  background: var(--black);
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.article-card:hover { background: rgba(255,255,255,0.03); }
.article-card:hover .article-cta { color: var(--white); }

.article-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(145deg, #1a0640, #5b21b6);
  position: relative;
  transition: filter 0.3s ease;
}

/* Large faded topic watermark */
.article-cover::before {
  content: attr(data-topic);
  position: absolute;
  bottom: -8px;
  right: 12px;
  font-family: var(--display);
  font-size: 3.8rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.14);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* Subtle noise texture overlay */
.article-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.5;
  pointer-events: none;
}

/* Image sits above gradient fallback & pseudo-elements */
.article-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  z-index: 2;
}
.article-card:hover .article-cover img { transform: scale(1.04); }

/* Hover: gently lighten */
.article-card:hover .article-cover { filter: brightness(1.1); }

/* — Cover theme gradients — */
.cover-1  { background: linear-gradient(135deg, #1a0640 0%, #5b21b6 45%, #8b5cf6 100%); }
.cover-2  { background: linear-gradient(135deg, #0f1f3d 0%, #1d4ed8 45%, #60a5fa 100%); }
.cover-3  { background: linear-gradient(135deg, #1a0640 0%, #7c3aed 45%, #a78bfa 100%); }
.cover-4  { background: linear-gradient(135deg, #150030 0%, #9333ea 45%, #ec4899 100%); }
.cover-5  { background: linear-gradient(135deg, #150030 0%, #7e22ce 45%, #d946ef 100%); }
.cover-6  { background: linear-gradient(135deg, #0c2340 0%, #0369a1 45%, #38bdf8 100%); }
.cover-7  { background: linear-gradient(135deg, #0c1a3d 0%, #1d4ed8 45%, #93c5fd 100%); }
.cover-8  { background: linear-gradient(135deg, #1a003a 0%, #a21caf 45%, #f472b6 100%); }
.cover-9  { background: linear-gradient(135deg, #0a1a10 0%, #047857 45%, #34d399 100%); }

.article-body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--pink);
  padding: 3px 8px;
  border-radius: 2px;
}

.article-read-time {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.article-title {
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
  margin: 0;
}

.article-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  flex: 1;
}

.article-cta {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pink);
  letter-spacing: 0.03em;
  margin-top: 4px;
  transition: color 0.15s;
}

.articles-footer {
  text-align: center;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 960px) {
  .about-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-wrap { display: flex; gap: 20px; align-items: flex-start; }
  .about-photo-frame { width: 160px; flex-shrink: 0; margin-bottom: 0; }
  .about-photo-stat-row { flex-direction: column; flex: 1; }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .credential-item:nth-child(2) { border-right: none; }
  .credential-item:nth-child(3), .credential-item:nth-child(4) { border-top: 1px solid var(--line); }
  .about-bio-inner { grid-template-columns: 1fr; }
  .bio-pull { flex-direction: row; flex-wrap: wrap; }
  .bio-blockquote, .about-book-cta { flex: 1; min-width: 260px; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .nav-links .nav-link { display: none; }
}

@media (max-width: 600px) {
  .about-photo-wrap { flex-direction: column; }
  .about-photo-frame { width: 100%; max-width: 280px; }
  .about-photo-stat-row { flex-direction: row; }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: 1fr; }
}
