/* Executive visual system — traditional, modern, board-ready
   Navy / graphite / soft gold — no carnival pink/violet */
:root {
  --bg: #070b12;
  --bg2: #0d1420;
  --card: rgba(16, 24, 38, 0.88);
  --text: #eef1f6;
  --muted: #8b96a8;
  --gold: #c4a35a;
  --gold-soft: rgba(196, 163, 90, 0.18);
  --line: rgba(196, 163, 90, 0.2);
  --accent: #3d7a8c;
  --accent-soft: rgba(61, 122, 140, 0.15);
  --max: 1100px;
  --radius: 14px;
  --pink: #c4a35a;
  --cyan: #5a9aab;
  --violet: #6b7c93;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Outfit", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); }
.wrap { width: min(var(--max), calc(100% - 2.25rem)); margin: 0 auto; }
.narrow { max-width: 720px; }
.center { text-align: center; }

.bg-fx {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 55% 40% at 12% 0%, rgba(61, 122, 140, 0.08), transparent 55%),
    radial-gradient(ellipse 45% 35% at 88% 10%, rgba(196, 163, 90, 0.06), transparent 50%),
    linear-gradient(180deg, #070b12 0%, #0a101a 50%, #070b12 100%);
}
#sparkCanvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.45;
}

.top {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 11, 18, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 0;
  gap: 1rem;
}
.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  text-transform: uppercase;
  color: var(--text);
}
.brand a {
  text-decoration: none;
  color: var(--text);
  letter-spacing: 0.06em;
}
.brand a:hover { color: var(--gold); }
.top nav { display: flex; gap: 0.85rem; flex-wrap: wrap; align-items: center; }
.top nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.top nav a:hover, .top nav a.active { color: var(--text); }
.nav-buy {
  background: var(--gold) !important;
  color: #0a0e14 !important;
  padding: 0.42rem 0.95rem;
  border-radius: 6px;
  font-weight: 700 !important;
  box-shadow: none !important;
  animation: none !important;
}
.nav-buy:hover { filter: brightness(1.08); }

.hub-hero { padding: 3rem 0 3.25rem; }
.hub-hero-grid {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: 2.75rem;
  align-items: center;
}
@media (max-width: 800px) {
  .hub-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hub-hero-grid .chips, .hub-hero-grid .buy-row { justify-content: center; }
  .hub-hero-grid .lead { margin-left: auto; margin-right: auto; }
  .hub-photo { max-width: 260px; margin: 0 auto; }
  .top nav a:not(.nav-buy):not(.nav-keep) { display: none; }
}

.hub-photo { position: relative; }
.hub-photo .portrait,
.hub-photo img.portrait {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  border: 1px solid rgba(196, 163, 90, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  display: block;
  background: #121820;
}
.hub-photo::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 14px;
  border: 1px solid rgba(196, 163, 90, 0.22);
  z-index: -1;
  background: transparent;
  filter: none;
  opacity: 1;
  animation: none;
}
.hub-photo .photo-badge {
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.38rem 0.8rem;
  border-radius: 4px;
  background: #0f1620;
  color: var(--gold);
  border: 1px solid rgba(196, 163, 90, 0.4);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  z-index: 2;
}
.mono-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 12px;
  border: 1px solid rgba(196, 163, 90, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, #121a26, #0a1018);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  position: relative;
}
.mono-photo::before { display: none; }
.mono-photo .initials {
  font-family: "Syne", sans-serif;
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.mono-photo .mono-label {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  border: 1px solid rgba(196, 163, 90, 0.3);
  background: rgba(196, 163, 90, 0.06);
}
.kicker .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: none;
  animation: none;
}

h1 {
  font-family: "Syne", "Outfit", sans-serif;
  font-size: clamp(2.1rem, 4.8vw, 3.2rem);
  line-height: 1.08;
  margin: 0 0 0.45rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
}
h1 .grad, h2 .grad, .grad {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--gold);
}
.subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 1rem;
  font-weight: 500;
}
.hook {
  font-size: 1.12rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: #fff;
  text-shadow: none;
}
.lead { color: var(--muted); margin: 0 0 1.35rem; max-width: 38rem; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.35rem;
}
.chips span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.32rem 0.65rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #b8c0ce;
}

.buy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.82rem 1.25rem;
  border-radius: 6px;
  transition: transform 0.15s ease, background 0.15s, border-color 0.15s;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--gold);
  color: #0a0e14;
  box-shadow: 0 8px 24px rgba(196, 163, 90, 0.2);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: none;
}
.buy-note { font-size: 0.84rem; color: var(--muted); margin: 0; }

.section { padding: 3.75rem 0; }
.section.alt {
  background: linear-gradient(180deg, rgba(13, 20, 32, 0.95), rgba(7, 11, 18, 0.5));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  margin: 0 0 0.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
.section-lead { color: var(--muted); max-width: 40rem; margin: 0 0 1.5rem; }

.quote-box {
  margin: 1.5rem 0;
  padding: 1.25rem 1.35rem;
  border-radius: 8px;
  border: 1px solid rgba(196, 163, 90, 0.25);
  border-left: 3px solid var(--gold);
  background: rgba(196, 163, 90, 0.05);
  font-size: 1.02rem;
  font-weight: 500;
  color: #d8dde6;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin: 1.25rem 0;
}
@media (max-width: 700px) { .stat-row { grid-template-columns: 1fr 1fr; } }
.stat {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 1rem 0.75rem;
  text-align: center;
}
.stat b {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
  background: none;
  -webkit-text-fill-color: var(--gold);
}
.stat span { font-size: 0.76rem; color: var(--muted); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
  padding: 1.25rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s, transform 0.2s;
}
.feature:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 163, 90, 0.35);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}
.feature h3 {
  font-family: "Syne", sans-serif;
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 700;
}
.feature p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.feature a {
  display: inline-block;
  margin-top: 0.7rem;
  font-weight: 700;
  font-size: 0.84rem;
  text-decoration: none;
  color: var(--accent);
}

.timeline {
  margin: 1.25rem 0 1.5rem;
  border-left: 2px solid rgba(196, 163, 90, 0.35);
  padding-left: 1.15rem;
}
.tl-item { margin-bottom: 1rem; position: relative; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -1.42rem;
  top: 0.4rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.2);
}
.tl-item strong { color: var(--gold); font-size: 0.9rem; }
.tl-item p { margin: 0.2rem 0 0; color: var(--muted); font-size: 0.92rem; }

.cv-block { margin-bottom: 1.75rem; }
.cv-block h3, .co-title {
  font-family: "Syne", sans-serif;
  color: var(--gold) !important;
  font-size: 1.05rem !important;
  margin: 0 0 0.75rem !important;
  background: none !important;
  -webkit-text-fill-color: var(--gold);
}
.cv-list { list-style: none; padding: 0; margin: 0; }
.cv-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.94rem;
}
.cv-list li strong {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}

/* Company cards with logos */
.co-squares {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.35rem;
}
@media (max-width: 700px) { .co-squares { grid-template-columns: 1fr; } }
.co-square {
  display: flex;
  flex-direction: column;
  min-height: 200px;
  padding: 1.25rem 1.3rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(16, 24, 38, 0.75);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.co-square::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  opacity: 0.65;
}
.co-square:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 163, 90, 0.4);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}
.co-square .co-logo {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 0.85rem;
  filter: brightness(1.05);
}
.co-square .co-role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.co-square strong {
  font-family: "Syne", sans-serif;
  font-size: 1.12rem;
  color: #fff;
  margin-bottom: 0.45rem;
  display: block;
  line-height: 1.25;
}
.co-square p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  margin: 0 0 0.9rem;
  flex: 1;
}
.co-square em {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}
@media (max-width: 700px) { .card-grid { grid-template-columns: 1fr; } }
.hub-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.1rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--card);
  transition: transform 0.2s, border-color 0.2s;
}
.hub-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 163, 90, 0.35);
}
.hub-card img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  aspect-ratio: 2/3;
  object-fit: cover;
}
.hub-card h3 {
  font-family: "Syne", sans-serif;
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
  color: var(--gold);
}
.hub-card p { margin: 0 0 0.45rem; color: var(--muted); font-size: 0.88rem; }
.hub-card .linkish { font-size: 0.8rem; font-weight: 700; color: var(--accent); }

.sister-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}
.sister-links a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
}
.sister-links a:hover { color: var(--gold); border-color: rgba(196, 163, 90, 0.4); }

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}
.social-row a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.86rem;
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s, color 0.2s;
}
.social-row a:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: none;
}

.cta {
  padding: 3.5rem 0;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse 60% 70% at 50% 100%, rgba(61, 122, 140, 0.08), transparent 55%);
}
.cta p { color: var(--muted); margin: 0 0 1.25rem; }
.cta::before { display: none !important; }

.foot {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0 2rem;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}
.foot a { text-decoration: none; color: var(--muted); }
.foot a:hover { color: var(--gold); }
.foot .small { margin-top: 0.4rem; font-size: 0.82rem; }
.foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.15rem;
  justify-content: center;
  margin-bottom: 0.85rem;
}
.foot-nav a { font-weight: 600; font-size: 0.86rem; }

.page-hero { padding: 2.75rem 0 1.75rem; }
.page-hero h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin: 0 0 0.55rem;
}
.breadcrumb {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }

.author-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.25rem;
  align-items: start;
}
@media (max-width: 860px) {
  .author-grid { grid-template-columns: 1fr !important; text-align: center; }
  .author-photo { margin: 0 auto; max-width: 240px; }
}
.author-photo { position: relative; }
.author-photo img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(196, 163, 90, 0.35);
  object-fit: cover;
  aspect-ratio: 1;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.author-photo::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 14px;
  border: 1px solid rgba(196, 163, 90, 0.2);
  z-index: -1;
  background: transparent;
  animation: none;
  filter: none;
  opacity: 1;
}
.author-photo .badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  background: #0f1620;
  color: var(--gold);
  border: 1px solid rgba(196, 163, 90, 0.4);
}
.role-line { color: var(--gold); font-weight: 600; margin: 0 0 1rem; font-size: 0.95rem; }

/* book page extras */
.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,0.06);
  background: rgba(196, 163, 90, 0.04);
  padding: 0.65rem 0;
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.marquee-track span { white-space: nowrap; }
.marquee-track span::before { content: "· "; color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero { padding: 2rem 0 3rem; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-cover { max-width: 260px; margin: 0 auto; }
  .buy-row, .chips { justify-content: center; }
}
.hero-cover {
  position: relative;
  animation: none;
}
.hero-cover::before {
  content: "";
  position: absolute;
  inset: -8%;
  background: radial-gradient(ellipse at 50% 40%, rgba(196, 163, 90, 0.2), transparent 65%);
  border-radius: 16px;
  filter: blur(18px);
  opacity: 0.8;
  z-index: -1;
  animation: none;
}
.hero-cover img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(196, 163, 90, 0.25);
}

.chapters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 960px) { .chapters { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .chapters { grid-template-columns: 1fr; } }
.chap {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.45s ease, opacity 0.45s ease, border-color 0.2s;
  position: relative;
}
.chap.in { opacity: 1; transform: translateY(0); }
.chap:hover { border-color: rgba(196, 163, 90, 0.35); }
.chap .media { overflow: hidden; aspect-ratio: 1; }
.chap .media img, .chap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chap h3 {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  margin: 0.8rem 0.95rem 0.25rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.chap p {
  margin: 0 0.95rem 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  position: relative;
  z-index: 2;
}
.chap::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 45%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(7, 11, 18, 0.9));
  z-index: 1;
}

.co-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 700px) { .co-grid { grid-template-columns: 1fr; } }
.co-card {
  display: block;
  text-decoration: none;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}
.co-card:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 163, 90, 0.35);
}
.co-card strong {
  display: block;
  color: var(--gold);
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
  font-family: "Syne", sans-serif;
}
.co-card span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 0.4rem;
}
.co-card em {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
}

.book-row {
  display: grid;
  grid-template-columns: minmax(130px, 180px) 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.35rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--card);
  margin-bottom: 1.15rem;
}
@media (max-width: 600px) {
  .book-row { grid-template-columns: 1fr; }
  .book-row img { max-width: 160px; }
}
.book-row img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
}
.book-row h2 {
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
}
.book-row .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
}
.book-row p { color: var(--muted); margin: 0 0 0.9rem; }

.soon {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(196, 163, 90, 0.12);
  border: 1px solid rgba(196, 163, 90, 0.3);
  color: var(--gold);
  margin-left: 0.3rem;
}

/* chapter image motions — subtle */
.chap-01 img { animation: chRise 18s ease-in-out infinite alternate; }
.chap-02 img { animation: chSlither 16s ease-in-out infinite alternate; }
.chap-03 img { animation: chBreath 14s ease-in-out infinite alternate; }
.chap-04 img { animation: chLift 16s ease-in-out infinite alternate; }
.chap-05 img { animation: chReveal 18s ease-in-out infinite alternate; }
.chap-06 img { animation: chPull 16s ease-in-out infinite alternate; }
.chap-07 img { animation: chOrbit 22s ease-in-out infinite alternate; }
.chap-08 img { animation: chPath 17s ease-in-out infinite alternate; }
.chap-09 img { animation: chHorizon 20s ease-in-out infinite alternate; }
@keyframes chRise {
  from { transform: scale(1.05) translateY(2%); }
  to { transform: scale(1.1) translateY(-3%); }
}
@keyframes chSlither {
  from { transform: scale(1.1) translateX(-3%); }
  to { transform: scale(1.1) translateX(3%); }
}
@keyframes chBreath {
  from { transform: scale(1.04); }
  to { transform: scale(1.09); }
}
@keyframes chLift {
  from { transform: scale(1.06) translateY(2%); }
  to { transform: scale(1.1) translateY(-2%); }
}
@keyframes chReveal {
  from { transform: scale(1.08) translateY(-2%); }
  to { transform: scale(1.08) translateY(2%); }
}
@keyframes chPull {
  from { transform: scale(1.05) translateY(-1%); }
  to { transform: scale(1.1) translateY(3%); }
}
@keyframes chOrbit {
  from { transform: scale(1.1) rotate(-0.8deg); }
  to { transform: scale(1.1) rotate(0.8deg); }
}
@keyframes chPath {
  from { transform: scale(1.1) translate(-1.5%, 1.5%); }
  to { transform: scale(1.1) translate(1.5%, -1.5%); }
}
@keyframes chHorizon {
  from { transform: scale(1.12); }
  to { transform: scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track, .chap img, .hub-photo .portrait { animation: none !important; }
}

.director-accent-marcella .bg-fx,
.director-accent-daniel .bg-fx,
.director-accent-steve .bg-fx,
.director-accent-filipe .bg-fx {
  background:
    radial-gradient(ellipse 55% 40% at 12% 0%, rgba(61, 122, 140, 0.08), transparent 55%),
    radial-gradient(ellipse 45% 35% at 88% 10%, rgba(196, 163, 90, 0.05), transparent 50%),
    linear-gradient(180deg, #070b12 0%, #0a101a 50%, #070b12 100%);
}


/* ===== WOW LAYER — competitive professional motion ===== */
#scrollProgress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  z-index: 100;
  background: linear-gradient(90deg, var(--gold), #e8d5a3, var(--accent));
  box-shadow: 0 0 12px rgba(196, 163, 90, 0.45);
  pointer-events: none;
  transition: width 0.05s linear;
}
#cursorGlow {
  position: fixed;
  top: 0; left: 0;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,163,90,0.09) 0%, rgba(61,122,140,0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.35s;
  mix-blend-mode: screen;
}
#cursorGlow.on { opacity: 1; }
.top.scrolled {
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  border-bottom-color: rgba(196,163,90,0.15);
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.hub-photo .portrait {
  transition: transform 0.25s ease-out;
  will-change: transform;
}
.hub-photo {
  position: relative;
  overflow: visible;
}
.hub-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
  background-size: 220% 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
}
.hub-photo:hover::after {
  opacity: 1;
  animation: sheen 1.1s ease;
}
@keyframes sheen {
  from { background-position: 100% 0; }
  to { background-position: -100% 0; }
}
.co-square {
  will-change: transform;
  transition: transform 0.2s ease-out, border-color 0.2s, box-shadow 0.2s !important;
}
.btn-primary {
  transition: transform 0.15s ease-out, filter 0.15s, box-shadow 0.15s !important;
}
.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(196,163,90,0.35) !important;
}

/* Network strip — wow footer band */
.network-strip {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(13,20,32,0.9), rgba(7,11,18,0.5));
}
.network-strip h2 {
  text-align: center;
  margin-bottom: 0.35rem;
}
.network-strip .section-lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.network-people {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
  margin: 1.5rem 0 1.75rem;
}
@media (max-width: 900px) {
  .network-people { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .network-people { grid-template-columns: repeat(2, 1fr); }
}
.network-person {
  text-decoration: none;
  color: inherit;
  text-align: center;
  padding: 0.85rem 0.5rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.network-person:hover {
  transform: translateY(-5px);
  border-color: rgba(196,163,90,0.4);
  box-shadow: 0 16px 36px rgba(0,0,0,0.3);
}
.network-person img,
.network-person .np-mono {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin: 0 auto 0.65rem;
  border: 2px solid rgba(196,163,90,0.4);
  display: block;
  background: #121820;
}
.network-person .np-mono {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--gold);
}
.network-person strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.15rem;
}
.network-person span {
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.3;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
}
.logo-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0.45rem 0.9rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.logo-row a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}
.logo-row img {
  height: 32px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}
.logo-row .logo-text {
  font-family: "Syne", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  color: #0a0e14;
  letter-spacing: 0.02em;
}

/* Hero entrance */
.hub-hero .hub-photo {
  animation: heroIn 0.9s cubic-bezier(0.22,1,0.36,1) both;
}
.hub-hero .hub-hero-grid > div:last-child {
  animation: heroIn 0.9s 0.12s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .hub-hero .hub-photo, .hub-hero .hub-hero-grid > div:last-child {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  #cursorGlow, #scrollProgress { display: none !important; }
}
/* net-daniel-fix */
.network-person img[src*="net-daniel"] {
  object-fit: cover;
  object-position: 50% 20%;
}