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

:root {
  --purple: #8c51eb;
  --purple-hover: #7a3ed4;
  --purple-subtle: rgba(140, 81, 235, 0.08);
  --black: #0a0a0a;
  --dark-grey: #464646;
  --white: #ffffff;
  --grey: #ececf1;
  --grey-mid: #d4d4dc;
  --grey-text: #888;
  --font-brand: 'Gochi Hand', cursive;
  --font-body: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.br { color: var(--purple); }

/* ====== NAV ====== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
nav.scrolled { padding: 0.75rem 3rem; box-shadow: 0 1px 16px rgba(0,0,0,0.06); }
.nav-logo {
  font-family: var(--font-brand); font-size: 1.5rem;
  color: var(--black); text-decoration: none;
}
.nav-links { display: flex; gap: 2.2rem; align-items: center; list-style: none; }
.nav-links a {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500;
  color: var(--dark-grey); text-decoration: none; letter-spacing: 0.04em;
  text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover { color: var(--purple); }
.nav-cta {
  background: var(--black) !important; color: var(--white) !important;
  padding: 0.5rem 1.3rem; border-radius: 6px;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--purple) !important; transform: translateY(-1px); }

/* ====== HERO ====== */
.hero { padding-top: 64px; background: var(--white); }
.hero-illustration { width: auto; max-width: 100%; max-height: 350px; display: block; margin: 0 auto; border-bottom: 3px solid var(--black); object-fit: contain; }
.hero-content {
  max-width: 820px; margin: 0 auto; padding: 3.5rem 2rem 4.5rem; text-align: center;
}
.hero-tagline {
  font-family: var(--font-brand);
  font-size: clamp(2.2rem, 6.5vw, 5rem);
  color: var(--black); line-height: 1.15; margin-bottom: 1.3rem;
  opacity: 0; animation: fadeUp 0.8s ease forwards; animation-delay: 0.15s;
  white-space: nowrap;
  overflow: hidden;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  font-weight: 400; line-height: 1.75; color: var(--dark-grey);
  max-width: 580px; margin: 0 auto 2.2rem;
  opacity: 0; animation: fadeUp 0.8s ease forwards; animation-delay: 0.35s;
}
.hero-ctas {
  display: flex; gap: 1.2rem; justify-content: center; align-items: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s ease forwards; animation-delay: 0.5s;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 500;
  background: var(--black); color: var(--white); text-decoration: none;
  padding: 0.65rem 1.6rem; border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--purple); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 500;
  color: var(--dark-grey); text-decoration: none;
  padding: 0.65rem 0; border-bottom: 1.5px solid var(--grey-mid);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--purple); border-color: var(--purple); }
.btn-ghost svg { width: 16px; height: 16px; }

/* ====== MANIFESTO ====== */
.manifesto { background: var(--black); color: var(--white); padding: 6rem 3rem; }
.manifesto-inner { max-width: 780px; margin: 0 auto; }
.section-eyebrow {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--purple);
  margin-bottom: 2.5rem;
}
.manifesto-statement {
  font-family: var(--font-brand);
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  line-height: 1.55; margin-bottom: 1.6rem;
  color: rgba(255,255,255,0.6);
}
.manifesto-statement strong { color: var(--white); font-weight: 400; }
.manifesto-divider { width: 40px; height: 3px; background: var(--purple); margin: 2.5rem 0; }

/* ====== PROCESS (Tabbed) ====== */
.process { background: var(--white); padding: 6.5rem 3rem; }
.process-inner { max-width: 1000px; margin: 0 auto; }
.section-title {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--black); line-height: 1.2; margin-bottom: 0.6rem;
}
.section-subtitle {
  font-family: var(--font-body); font-size: 0.95rem;
  color: var(--dark-grey); font-weight: 400; line-height: 1.6;
  max-width: 520px; margin-bottom: 3.5rem;
}

.process-tabs {
  display: grid; grid-template-columns: 300px 1fr; gap: 0;
  min-height: 460px;
  border: 2px solid var(--grey); border-radius: 16px;
  overflow: hidden;
}

/* Left tab nav */
.process-nav {
  background: var(--grey); display: flex; flex-direction: column;
  position: relative;
}
/* Vertical connector line between step numbers */
.process-nav::before {
  content: '';
  position: absolute;
  left: 33px; top: 42px; bottom: 42px;
  width: 2px;
  background: var(--grey-mid);
  z-index: 1;
}
.process-tab {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.4rem 1.5rem;
  cursor: pointer; border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background 0.3s, border-color 0.3s;
  position: relative;
  border-left: 3px solid transparent;
  flex: 1;
}
.process-tab:last-child { border-bottom: none; }
.process-tab:hover { background: rgba(255,255,255,0.5); }
.process-tab.active {
  background: var(--white);
  border-left-color: var(--purple);
}
.process-tab-num {
  font-family: var(--font-brand); font-size: 1rem;
  width: 32px; height: 32px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--grey-text);
  border: 2px solid var(--grey-mid);
  transition: all 0.3s;
  position: relative; z-index: 2;
}
.process-tab > div {
  position: relative; z-index: 2;
}
.process-tab.active .process-tab-num {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}
.process-tab-label {
  font-family: var(--font-brand); font-size: 1.15rem;
  color: var(--dark-grey); transition: color 0.25s;
}
.process-tab.active .process-tab-label { color: var(--black); }
.process-tab-question {
  font-size: 0.72rem; color: var(--grey-text); font-style: italic;
  margin-top: 0.15rem;
}

/* Right content panel */
.process-panel-area {
  background: var(--white); padding: 0; position: relative;
  display: flex; flex-direction: column;
}
.process-panel {
  display: none;
  animation: panelFade 0.35s ease;
  height: 100%;
  flex-direction: column;
}
.process-panel.active { display: flex; }
@keyframes panelFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.process-panel-body {
  padding: 1.5rem 2.5rem 2rem;
}
.process-panel-body p {
  font-size: 0.92rem; line-height: 1.7; color: var(--dark-grey);
  margin-bottom: 1rem;
}
.process-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.tag {
  font-family: 'Courier New', monospace; font-size: 0.65rem;
  padding: 0.2rem 0.55rem; border-radius: 3px; font-weight: 500;
}
.tag-ai { background: var(--purple-subtle); color: var(--purple); }
.tag-human { background: rgba(10, 10, 10, 0.05); color: #666; }

/* Panel visual -- video hero */
.process-visual {
  background: var(--black);
  height: 280px; display: flex; align-items: center; justify-content: center;
  color: var(--grey-text); font-size: 0.8rem; font-style: italic;
  overflow: hidden;
  position: relative;
}
.process-visual video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(100%) contrast(1.1);
}

/* ====== INLINE CTA ====== */
.inline-cta {
  text-align: center; padding: 4rem 3rem;
  background: var(--grey);
}
.inline-cta-text {
  font-family: var(--font-brand);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--dark-grey); margin-bottom: 1.2rem;
}
.inline-cta .btn-primary { display: inline-flex; }

/* ====== ENGINE ====== */
.engine { background: var(--white); padding: 6rem 3rem; }
.engine-inner { max-width: 820px; margin: 0 auto; }
.engine-body p {
  font-size: 1rem; line-height: 1.75; color: var(--dark-grey); margin-bottom: 1.2rem;
}
.engine-body strong { color: var(--black); font-weight: 600; }
.engine-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin-top: 2.5rem; padding-top: 2rem; border-top: 2px solid rgba(0,0,0,0.06);
}
.stat { text-align: center; }
.stat-value {
  font-family: var(--font-brand); font-size: 2.2rem;
  color: var(--black); line-height: 1; margin-bottom: 0.3rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.stat-label {
  font-size: 0.75rem; color: var(--grey-text); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* ====== VENTURES ====== */
.ventures { background: var(--grey); padding: 6.5rem 3rem; }
.ventures-inner { max-width: 900px; margin: 0 auto; }
.ventures-carousel { position: relative; margin-top: 3rem; overflow: hidden; }
.ventures-track {
  display: flex; gap: 1.8rem;
  transition: transform 0.4s ease;
}
.ventures-track .venture-card { flex: 0 0 calc((100% - 1.8rem) / 2); }
.ventures-carousel-nav {
  display: flex; justify-content: center; gap: 0.6rem; align-items: center; margin-top: 1.4rem;
}
.ventures-nav-btn {
  width: 36px; height: 36px; border-radius: 50%; border: 2px solid rgba(0,0,0,0.1);
  background: var(--white); cursor: pointer; display: flex; align-items: center;
  justify-content: center; transition: border-color 0.2s, background 0.2s;
}
.ventures-nav-btn:hover { border-color: var(--purple); background: rgba(140,81,235,0.05); }
.ventures-nav-btn svg { color: var(--dark-grey); }
.ventures-nav-btn:disabled { opacity: 0.3; cursor: default; }
.ventures-nav-btn:disabled:hover { border-color: rgba(0,0,0,0.1); background: var(--white); }
.ventures-dots {
  display: flex; gap: 0.4rem; align-items: center;
}
.ventures-dot {
  width: 7px; height: 7px; border-radius: 50%; border: none; padding: 0;
  background: rgba(0,0,0,0.15); cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.ventures-dot.active { background: var(--purple); transform: scale(1.3); }
.venture-logo-text {
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 2.4rem;
  color: var(--black); letter-spacing: -0.02em;
}
a.venture-card { text-decoration: none; color: inherit; display: block; }
.venture-card {
  border: 2px solid rgba(0,0,0,0.06); border-radius: 14px;
  height: 280px; position: relative; overflow: hidden; cursor: pointer;
  transition: border-color 0.3s, transform 0.25s;
  background: var(--white);
}
.venture-card:hover { border-color: var(--purple); transform: translateY(-3px); }
.venture-logo-layer {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; transition: opacity 0.35s ease;
}
.venture-card:hover .venture-logo-layer { opacity: 0; }
.venture-logo-large {
  width: 180px; height: auto;
}
.venture-logo-img {
  width: 300px; max-width: 85%;
}
.venture-logo-status {
  position: absolute; top: 0.8rem; right: 0.8rem; z-index: 2;
  font-family: 'Courier New', monospace; font-size: 0.62rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.2rem 0.55rem; border-radius: 20px;
}
.venture-detail-layer {
  position: absolute; inset: 0; padding: 2rem;
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0; transition: opacity 0.35s ease; background: var(--white);
}
.venture-card:hover .venture-detail-layer { opacity: 1; }
.venture-detail-layer h3 { font-family: var(--font-brand); font-size: 1.4rem; margin-bottom: 0.3rem; }
.venture-detail-url {
  font-family: 'Courier New', monospace; font-size: 0.8rem;
  color: var(--purple); margin-bottom: 0.8rem;
  display: inline-block;
}
.venture-detail-layer p { font-size: 0.88rem; line-height: 1.6; color: var(--dark-grey); }
.venture-detail-sector {
  font-size: 0.7rem; font-weight: 600; color: var(--grey-text);
  text-transform: uppercase; letter-spacing: 0.06em; margin-top: auto; padding-top: 0.8rem;
}
.status-live { background: rgba(34, 197, 94, 0.12); color: #16a34a; }
.status-building { background: rgba(140, 81, 235, 0.1); color: var(--purple); }

/* Ventures CTA */
.ventures-cta {
  text-align: center; margin-top: 2.5rem;
}
.ventures-cta .btn-ghost { display: inline-flex; }

/* ====== TEAM ====== */
.team { background: var(--white); color: var(--black); padding: 6rem 3rem; }
.team-inner { max-width: 820px; margin: 0 auto; }
.team-sub {
  font-size: 0.92rem; color: var(--dark-grey); margin-bottom: 2.5rem; font-weight: 400;
}
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.team-member {
  padding: 1.8rem; background: var(--grey);
  border-radius: 10px; transition: box-shadow 0.3s;
}
.team-member:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.team-member-name { font-family: var(--font-brand); font-size: 1.25rem; margin-bottom: 0.15rem; display: block; }
a.team-member-name { color: inherit; text-decoration: none; }
a.team-member-name:hover { color: var(--purple); }
.team-member-role { font-size: 0.8rem; color: var(--purple); font-weight: 600; margin-bottom: 0.7rem; }
.team-member-bio { font-size: 0.85rem; color: var(--dark-grey); line-height: 1.6; }
.team-member.open {
  border: 2px dashed var(--grey-mid); background: transparent; opacity: 0.55;
}

/* ====== FOOTER ====== */
.footer-wrap { background: var(--white); padding: 0 1.5rem; }
.footer {
  background: var(--black); color: var(--white);
  padding: 3.5rem 3.5rem 0;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  max-width: 1200px; margin: 0 auto;
}

/* Footer CTA */
.footer-cta {
  display: flex; justify-content: space-between; align-items: center;
  gap: 3rem; margin-bottom: 2.5rem;
}
.footer-cta-text { flex: 1; max-width: 480px; }
.footer-cta-heading {
  font-family: var(--font-brand);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white); line-height: 1.3; margin-bottom: 0.6rem;
}
.footer-cta-sub {
  font-size: 0.88rem; color: rgba(255,255,255,0.4); line-height: 1.6;
}
.footer-cta-actions {
  display: flex; gap: 0.7rem; align-items: center; flex-shrink: 0; flex-wrap: wrap;
}
.footer-btn {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  text-decoration: none; padding: 0.65rem 1.4rem; border-radius: 8px;
  transition: background 0.2s, transform 0.15s, border-color 0.2s;
  white-space: nowrap;
}
.footer-btn:hover { transform: translateY(-1px); }
.footer-btn-purple { background: var(--purple); color: var(--white); }
.footer-btn-purple:hover { background: var(--purple-hover); }
.footer-btn-white { background: var(--white); color: var(--black); }
.footer-btn-white:hover { background: var(--grey); }
.footer-btn-ghost {
  background: transparent; color: rgba(255,255,255,0.5);
  border: 1.5px solid rgba(255,255,255,0.12);
}
.footer-btn-ghost:hover { border-color: var(--purple); color: var(--white); }

/* Newsletter */
.footer-newsletter {
  margin-bottom: 2.5rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-newsletter-row {
  display: flex; gap: 0.6rem; align-items: center; max-width: 440px;
}
.footer-newsletter label {
  font-family: var(--font-brand); font-size: 1rem;
  color: rgba(255,255,255,0.7); margin-bottom: 0.6rem; display: block;
}
.footer-newsletter input {
  flex: 1; background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 0.6rem 1rem;
  font-family: var(--font-body); font-size: 0.85rem;
  color: var(--white); outline: none;
  transition: border-color 0.2s;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.25); }
.footer-newsletter input:focus { border-color: var(--purple); }
.footer-newsletter button {
  background: var(--white); color: var(--black);
  border: none; border-radius: 8px; padding: 0.65rem 1.2rem;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.footer-newsletter button:hover { background: var(--grey); transform: translateY(-1px); }

/* Footer divider */
.footer-divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 1.5rem; }

/* Footer links row */
.footer-links-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 2rem;
}
.footer-socials { display: flex; gap: 1.8rem; align-items: center; }
.footer-socials a {
  display: flex; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 0.82rem; font-weight: 600; transition: color 0.2s;
}
.footer-socials a:hover { color: var(--white); }
.footer-nav-links { display: flex; gap: 2rem; }
.footer-nav-links a {
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 0.82rem; font-weight: 500; transition: color 0.2s;
}
.footer-nav-links a:hover { color: var(--white); }

/* Giant wordmark */
.footer-wordmark {
  font-family: var(--font-brand);
  font-size: clamp(7rem, 20vw, 16rem);
  color: var(--white);
  line-height: 0.75;
  text-align: center;
  padding: 1rem 0 0;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
}
.footer-wordmark .br { color: var(--purple); }

/* Copyright */
.footer-copyright {
  font-size: 0.68rem; color: rgba(255,255,255,0.2);
  text-align: right; padding: 0.8rem 0 1.5rem;
}
.footer-copyright .br { color: rgba(140,81,235,0.4); }

/* ====== HAMBURGER ====== */
.nav-hamburger {
  display: none; border: none; cursor: pointer;
  width: 40px; height: 40px; position: relative; z-index: 200;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 6px; padding: 0;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.nav-hamburger span {
  display: block; width: 20px; height: 2px; background: var(--black);
  border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease;
  flex-shrink: 0;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ====== SCOREBOARD FLIP ====== */
.flip-wrap {
  display: inline-block; overflow: hidden; vertical-align: bottom;
  height: 1.15em; position: relative;
}
.flip-wrap .flip-word {
  display: block;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.flip-wrap .flip-word.out {
  transform: translateY(-100%); opacity: 0;
}
.flip-wrap .flip-word.in {
  transform: translateY(0); opacity: 1;
}
.flip-wrap .flip-word.waiting {
  transform: translateY(100%); opacity: 0;
  transition: none;
}

/* stat flip - same idea, smaller context */
.stat-value { overflow: hidden; }
.stat-flip {
  display: block;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.stat-flip.out { transform: translateY(-100%); opacity: 0; }
.stat-flip.in { transform: translateY(0); opacity: 1; }
.stat-flip.waiting { transform: translateY(100%); opacity: 0; transition: none; }

/* ====== ANIMATIONS ====== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .process-tabs { grid-template-columns: 240px 1fr; }
  .process-tab { padding: 1.1rem 1.2rem; }
  .process-tab-num { font-size: 0.85rem; width: 28px; height: 28px; }
  .process-tab-label { font-size: 1rem; }
  .process-nav::before { left: 25px; top: 36px; bottom: 36px; }
  .process-visual { height: 240px; }
}
@media (max-width: 768px) {
  nav { padding: 0.9rem 1.5rem; }
  /* Full-screen menu overlay */
  nav.menu-open {
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    backdrop-filter: none; -webkit-backdrop-filter: none;
    border-bottom: none; box-shadow: none;
    flex-direction: column; align-items: stretch;
    padding: 0;
  }
  nav.menu-open .nav-logo { display: none; }
  nav.menu-open .nav-hamburger {
    position: absolute; top: 1rem; right: 1.5rem;
    background: none; box-shadow: none;
  }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 2rem;
    width: 100%; flex: 1;
    padding: 2rem;
  }
  .nav-links.mobile-open { display: flex; }
  .nav-links li { list-style: none; text-align: center; width: 100%; }
  .nav-links a {
    font-size: 1.4rem; color: var(--black); display: block;
    padding: 0.7rem 0; text-transform: none; letter-spacing: 0;
    font-family: var(--font-brand);
  }
  .nav-links a:hover { color: var(--purple); }
  .nav-cta {
    font-size: 1.1rem !important; padding: 0.8rem 2rem !important;
    margin-top: 1rem;
  }
  .hero-content { padding: 2.5rem 1.5rem 3.5rem; }
  .manifesto { padding: 4rem 1.5rem; }
  .process { padding: 4.5rem 1.5rem; }
  .process-tabs { grid-template-columns: 1fr; min-height: auto; }
  .process-nav {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    flex-direction: initial; overflow-x: visible;
  }
  .process-nav::before { display: none; }
  .process-tab {
    padding: 0.8rem 0.7rem; border-bottom: none; border-left: none !important;
    border-right: none; flex-shrink: initial;
    white-space: normal; text-align: center;
    justify-content: center; gap: 0.5rem;
    border: 1px solid rgba(0,0,0,0.05);
  }
  .process-tab.active {
    border-bottom: 3px solid var(--purple) !important;
    background: var(--white);
  }
  .process-tab.active .process-tab-num {
    width: 24px; height: 24px; font-size: 0.75rem;
  }
  .process-tab-question { display: none; }
  .process-tab-label { font-size: 0.85rem; }
  .process-tab-num { font-size: 0.75rem; width: 24px; height: 24px; }
  .process-panel-area { padding: 0; }
  .process-panel-body { padding: 1.2rem 1.5rem 1.5rem; }
  .process-visual { height: 200px; }
  .inline-cta { padding: 3rem 1.5rem; }
  .engine { padding: 4.5rem 1.5rem; }
  .engine-stats { grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
  .stat-value { font-size: 1.6rem; }
  .ventures { padding: 4.5rem 1.5rem; }
  .ventures-track .venture-card { flex: 0 0 100%; }
  .venture-card { height: auto; min-height: 200px; }
  /* Show detail layer by default on mobile since hover doesn't work well */
  .venture-card .venture-logo-layer { position: relative; padding: 1.5rem 1.5rem 0; }
  .venture-card .venture-logo-large { width: 140px; }
  .venture-card .venture-logo-img { width: 240px; }
  .venture-card .venture-detail-layer {
    position: relative; opacity: 1; padding: 1.2rem 1.5rem 1.5rem;
  }
  .team { padding: 4.5rem 1.5rem; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-wrap { padding: 0; }
  .footer { padding: 2.5rem 1.5rem 0; border-radius: 16px 16px 0 0; }
  .footer-cta { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .footer-cta-actions { width: 100%; flex-direction: column; }
  .footer-btn { text-align: center; width: 100%; }
  .footer-newsletter-row { max-width: 100%; }
  .footer-links-row { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .footer-wordmark { font-size: clamp(4rem, 18vw, 7rem); }
}

/* ====================================================================
   BLOG STYLES
   ==================================================================== */

/* --- Reading progress bar --- */
.reading-progress {
  position: fixed; top: 0; left: 0; z-index: 200;
  width: 0%; height: 3px;
  background: var(--purple);
  transition: width 0.1s linear;
}

/* --- Blog page wrapper --- */
.blog-page { padding-top: 80px; }

/* --- Blog hero / header --- */
.blog-header {
  max-width: 1100px; margin: 0 auto;
  padding: 3rem 2rem 2rem;
}
.blog-header-title {
  font-family: var(--font-brand);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--black); line-height: 1.15;
  margin-bottom: 0.5rem;
}
.blog-header-sub {
  font-size: 1.05rem; color: var(--dark-grey);
  line-height: 1.6; max-width: 540px;
}

/* --- Category pills --- */
.blog-filters {
  max-width: 1100px; margin: 0 auto;
  padding: 0 2rem 2.5rem;
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.blog-filter-pill {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 500;
  padding: 0.4rem 1rem; border-radius: 100px;
  border: 1.5px solid var(--grey-mid);
  background: transparent; color: var(--dark-grey);
  cursor: pointer; transition: all 0.2s;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.blog-filter-pill:hover { border-color: var(--purple); color: var(--purple); }
.blog-filter-pill.active {
  background: var(--black); color: var(--white);
  border-color: var(--black);
}

/* --- Featured post (hero card) --- */
.blog-featured {
  max-width: 1100px; margin: 0 auto;
  padding: 0 2rem 3rem;
}
.blog-featured-card {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: 16px; overflow: hidden;
  border: 2px solid rgba(0,0,0,0.06);
  transition: border-color 0.3s, transform 0.25s;
  text-decoration: none; color: inherit;
}
.blog-featured-card:hover { border-color: var(--purple); transform: translateY(-3px); }
.blog-featured-img {
  background: var(--grey); min-height: 340px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.blog-featured-img-placeholder {
  font-size: 0.8rem; color: var(--grey-text); font-style: italic;
}
.blog-featured-img img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.blog-featured-body {
  padding: 2.5rem; display: flex; flex-direction: column;
  justify-content: center;
}
.blog-featured-meta {
  display: flex; gap: 0.8rem; align-items: center;
  margin-bottom: 1rem;
}
.blog-cat-tag {
  font-family: 'Courier New', monospace; font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem; border-radius: 3px;
  background: var(--purple-subtle); color: var(--purple);
}
.blog-date {
  font-size: 0.78rem; color: var(--grey-text); font-weight: 500;
}
.blog-reading-time {
  font-size: 0.78rem; color: var(--grey-text); font-weight: 400;
}
.blog-views {
  font-size: 0.78rem; color: var(--grey-text); font-weight: 400;
  display: inline-flex; align-items: center; gap: 0.25rem;
}
.blog-views svg { opacity: 0.5; }
.blog-featured-title {
  font-family: var(--font-brand);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--black); line-height: 1.25;
  margin-bottom: 0.8rem;
}
.blog-featured-excerpt {
  font-size: 0.92rem; color: var(--dark-grey);
  line-height: 1.65; margin-bottom: 1.2rem;
}
.blog-read-more {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  color: var(--purple); display: inline-flex; align-items: center; gap: 0.3rem;
  transition: gap 0.2s;
}
.blog-featured-card:hover .blog-read-more { gap: 0.6rem; }

/* --- Post card grid --- */
.blog-grid-section {
  max-width: 1100px; margin: 0 auto;
  padding: 0 2rem 4rem;
}
.blog-grid-label {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--grey-text);
  margin-bottom: 1.5rem;
}
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.blog-card {
  border: 2px solid rgba(0,0,0,0.06); border-radius: 14px;
  overflow: hidden; transition: border-color 0.3s, transform 0.25s;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.blog-card:hover { border-color: var(--purple); transform: translateY(-3px); }
.blog-card-img {
  background: var(--grey); height: 180px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.blog-card-img-placeholder {
  font-size: 0.75rem; color: var(--grey-text); font-style: italic;
}
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  display: flex; gap: 0.6rem; align-items: center;
  margin-bottom: 0.8rem;
}
.blog-card-title {
  font-family: var(--font-brand); font-size: 1.2rem;
  color: var(--black); line-height: 1.3;
  margin-bottom: 0.6rem;
}
.blog-card-excerpt {
  font-size: 0.85rem; color: var(--dark-grey);
  line-height: 1.6; flex: 1;
}
.blog-card-read {
  font-size: 0.78rem; font-weight: 600; color: var(--purple);
  margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.3rem;
  transition: gap 0.2s;
}
.blog-card:hover .blog-card-read { gap: 0.6rem; }

/* --- Blog post article page --- */
.article-hero {
  max-width: 780px; margin: 0 auto;
  padding: 3rem 2rem 2rem;
  text-align: center;
}
.article-back {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.82rem; font-weight: 500; color: var(--dark-grey);
  text-decoration: none; margin-bottom: 2rem;
  transition: color 0.2s;
}
.article-back:hover { color: var(--purple); }
.article-meta {
  display: flex; gap: 0.8rem; align-items: center;
  justify-content: center; margin-bottom: 1.2rem;
}
.article-title {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--black); line-height: 1.15;
  margin-bottom: 1rem;
}
.article-subtitle {
  font-size: 1.1rem; color: var(--dark-grey);
  line-height: 1.6; max-width: 600px; margin: 0 auto 1.5rem;
}
.article-hero-img {
  max-width: 900px; margin: 0 auto;
  padding: 0 2rem 2rem;
}
.article-hero-img-inner {
  background: var(--grey); border-radius: 12px;
  height: 400px; display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.article-hero-img-inner img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.article-hero-img-placeholder {
  font-size: 0.8rem; color: var(--grey-text); font-style: italic;
}

/* Article body typography */
.article-body {
  max-width: 720px; margin: 0 auto;
  padding: 1rem 2rem 4rem;
}
.article-body h2 {
  font-family: var(--font-brand);
  font-size: 1.8rem; color: var(--black);
  line-height: 1.25; margin: 2.5rem 0 0.8rem;
}
.article-body h3 {
  font-family: var(--font-brand);
  font-size: 1.35rem; color: var(--black);
  line-height: 1.3; margin: 2rem 0 0.6rem;
}
.article-body p {
  font-size: 1.05rem; line-height: 1.8; color: var(--dark-grey);
  margin-bottom: 1.4rem;
}
.article-body strong { color: var(--black); font-weight: 600; }
.article-body ul, .article-body ol {
  padding-left: 1.5rem; margin-bottom: 1.4rem;
}
.article-body li {
  font-size: 1.05rem; line-height: 1.8; color: var(--dark-grey);
  margin-bottom: 0.4rem;
}
.article-body blockquote {
  border-left: 3px solid var(--purple);
  padding: 0.2rem 0 0.2rem 1.5rem;
  margin: 2rem 0;
}
.article-body blockquote p {
  font-family: var(--font-brand);
  font-size: 1.3rem; line-height: 1.5;
  color: var(--black);
}
.article-body code {
  font-family: 'Courier New', monospace;
  font-size: 0.9em; background: var(--grey);
  padding: 0.15rem 0.4rem; border-radius: 4px;
}
.article-body pre {
  background: var(--black); color: #ccc;
  padding: 1.5rem; border-radius: 10px;
  overflow-x: auto; margin-bottom: 1.4rem;
}
.article-body pre code {
  background: none; padding: 0; font-size: 0.88rem;
  color: inherit;
}

/* Article divider */
.article-divider {
  width: 40px; height: 3px; background: var(--purple);
  margin: 3rem auto;
}

/* Author bio */
.article-author {
  max-width: 720px; margin: 0 auto;
  padding: 0 2rem 2rem;
}
.article-author-card {
  display: flex; gap: 1.2rem; align-items: center;
  padding: 1.5rem; background: var(--grey);
  border-radius: 12px;
}
.article-author-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--purple-subtle);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-brand); font-size: 1.3rem;
  color: var(--purple); flex-shrink: 0;
}
.article-author-info { flex: 1; }
.article-author-name {
  font-family: var(--font-brand); font-size: 1.1rem;
  color: var(--black); margin-bottom: 0.1rem;
}
a.article-author-name { text-decoration: none; }
a.article-author-name:hover { color: var(--purple); }
a.article-author-avatar { text-decoration: none; color: inherit; }
.article-author-role {
  font-size: 0.78rem; color: var(--purple); font-weight: 600;
  margin-bottom: 0.3rem;
}
.article-author-bio {
  font-size: 0.85rem; color: var(--dark-grey); line-height: 1.5;
}

/* Share buttons */
.article-share {
  max-width: 720px; margin: 0 auto;
  padding: 0 2rem 3rem;
  display: flex; gap: 0.6rem; align-items: center;
}
.article-share-label {
  font-size: 0.78rem; color: var(--grey-text); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-right: 0.4rem;
}
.article-share-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  border: 1.5px solid var(--grey-mid); background: transparent;
  color: var(--dark-grey); cursor: pointer;
  transition: all 0.2s; text-decoration: none;
}
.article-share-btn:hover {
  border-color: var(--purple); color: var(--purple);
}

/* Post navigation */
.article-nav {
  max-width: 720px; margin: 0 auto;
  padding: 0 2rem 4rem;
  display: flex; justify-content: space-between; gap: 1rem;
}
.article-nav-link {
  text-decoration: none; color: inherit;
  padding: 1.2rem; border: 2px solid rgba(0,0,0,0.06);
  border-radius: 12px; transition: border-color 0.2s;
  flex: 1;
}
.article-nav-link:hover { border-color: var(--purple); }
.article-nav-link--next { text-align: right; }
.article-nav-dir {
  font-size: 0.72rem; color: var(--grey-text); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}
.article-nav-title {
  font-family: var(--font-brand); font-size: 1rem;
  color: var(--black); line-height: 1.3;
}

/* ====== CONTACT MODAL ====== */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); border-radius: 16px;
  width: 100%; max-width: 520px;
  padding: 2.5rem; position: relative;
  animation: modalIn 0.25s ease;
  max-height: 90vh; overflow-y: auto;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute; top: 1rem; right: 1.2rem;
  background: none; border: none; font-size: 1.5rem;
  color: var(--grey-text); cursor: pointer;
  transition: color 0.2s; line-height: 1;
}
.modal-close:hover { color: var(--black); }
.modal-title {
  font-family: var(--font-brand);
  font-size: 1.8rem; color: var(--black);
  margin-bottom: 0.3rem;
}
.modal-sub {
  font-size: 0.9rem; color: var(--dark-grey);
  line-height: 1.5; margin-bottom: 1.5rem;
}
.modal-form { display: flex; flex-direction: column; gap: 1rem; }
.modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.modal-field { display: flex; flex-direction: column; gap: 0.3rem; }
.modal-field label {
  font-size: 0.75rem; font-weight: 600; color: var(--dark-grey);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.modal-field input,
.modal-field select,
.modal-field textarea {
  font-family: var(--font-body); font-size: 0.9rem;
  padding: 0.65rem 0.9rem; border-radius: 8px;
  border: 1.5px solid var(--grey-mid); background: var(--white);
  color: var(--black); outline: none; transition: border-color 0.2s;
  width: 100%;
}
.modal-field input:focus,
.modal-field select:focus,
.modal-field textarea:focus { border-color: var(--purple); }
.modal-field textarea { resize: vertical; min-height: 80px; }
.modal-field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.2rem; }
.modal-submit {
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 600;
  background: var(--black); color: var(--white);
  border: none; border-radius: 8px; padding: 0.75rem 1.5rem;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}
.modal-submit:hover { background: var(--purple); transform: translateY(-1px); }
.modal-legal {
  font-size: 0.72rem; color: var(--grey-text); margin-top: 0.75rem; text-align: center; line-height: 1.4;
}
.modal-legal a { color: var(--grey-text); text-decoration: underline; }
.modal-legal a:hover { color: var(--purple); }
.cf-turnstile { margin-bottom: 0.5rem; }
.modal-success {
  text-align: center; padding: 2rem 0;
}
.modal-success-icon {
  font-size: 2.5rem; margin-bottom: 0.8rem;
}
.modal-success h3 {
  font-family: var(--font-brand); font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.modal-success p {
  font-size: 0.9rem; color: var(--dark-grey);
}
@media (max-width: 480px) {
  .modal { padding: 1.8rem 1.2rem; }
  .modal-row { grid-template-columns: 1fr; }
  .modal-title { font-size: 1.5rem; }
}

/* --- Blog responsive --- */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .blog-header { padding: 2rem 1.5rem 1.5rem; }
  .blog-filters { padding: 0 1.5rem 2rem; }
  .blog-featured { padding: 0 1.5rem 2.5rem; }
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 200px; }
  .blog-featured-body { padding: 1.5rem; }
  .blog-grid-section { padding: 0 1.5rem 3rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-img { height: 160px; }
  .article-hero { padding: 2rem 1.5rem 1.5rem; }
  .article-hero-img { padding: 0 1.5rem 1.5rem; }
  .article-hero-img-inner { height: 240px; }
  .article-body { padding: 0.5rem 1.5rem 3rem; }
  .article-body h2 { font-size: 1.5rem; }
  .article-body h3 { font-size: 1.15rem; }
  .article-body p, .article-body li { font-size: 0.98rem; }
  .article-author { padding: 0 1.5rem 1.5rem; }
  .article-author-card { flex-direction: column; text-align: center; }
  .article-share { padding: 0 1.5rem 2rem; justify-content: center; }
  .article-nav { padding: 0 1.5rem 3rem; flex-direction: column; }
  .article-nav-link--next { text-align: left; }
  .article-body blockquote p { font-size: 1.1rem; }
  .article-meta { flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
  .blog-featured-meta { flex-wrap: wrap; gap: 0.5rem; }
  .blog-card-meta { flex-wrap: wrap; gap: 0.4rem; }
  .blog-page { padding-top: 64px; }
}

/* --- Extra-small screens (480px) --- */
@media (max-width: 480px) {
  nav { padding: 0.8rem 1rem; }
  nav.scrolled { padding: 0.6rem 1rem; }
  .hero-content { padding: 2rem 1rem 3rem; }
  .hero-tagline { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .hero-sub { font-size: 0.9rem; }
  .hero-ctas { gap: 0.8rem; }
  .manifesto { padding: 3rem 1rem; }
  .manifesto-statement { font-size: clamp(1.1rem, 3.5vw, 1.3rem); }
  .process { padding: 3.5rem 1rem; }
  .process-tab { padding: 0.6rem 0.5rem; }
  .process-tab-label { font-size: 0.75rem; }
  .process-visual { height: 160px; }
  .process-panel-body { padding: 1rem 1rem 1.2rem; }
  .process-panel-body p { font-size: 0.85rem; }
  .process-tags { gap: 0.25rem; }
  .tag { font-size: 0.58rem; padding: 0.15rem 0.4rem; }
  .inline-cta { padding: 2.5rem 1rem; }
  .inline-cta-text { font-size: clamp(1rem, 4vw, 1.3rem); }
  .engine { padding: 3.5rem 1rem; }
  .engine-stats { gap: 0.5rem; }
  .stat-value { font-size: 1.3rem; }
  .stat-label { font-size: 0.65rem; }
  .ventures { padding: 3.5rem 1rem; }
  .venture-card .venture-detail-layer { padding: 1rem; }
  .venture-detail-layer p { font-size: 0.82rem; }
  .team { padding: 3.5rem 1rem; }
  .team-member { padding: 1.3rem; }
  .team-member-bio { font-size: 0.82rem; }
  .footer { padding: 2rem 1rem 0; border-radius: 12px 12px 0 0; }
  .footer-cta-heading { font-size: clamp(1.2rem, 5vw, 1.6rem); }
  .footer-cta-sub { font-size: 0.82rem; }
  .footer-btn { font-size: 0.78rem; padding: 0.55rem 1rem; }
  .footer-newsletter label { font-size: 0.9rem; }
  .footer-newsletter input { font-size: 0.8rem; padding: 0.5rem 0.8rem; }
  .footer-newsletter button { font-size: 0.78rem; padding: 0.55rem 1rem; }
  .footer-nav-links { gap: 1rem; flex-wrap: wrap; }
  .footer-nav-links a { font-size: 0.75rem; }
  .footer-wordmark { font-size: clamp(3rem, 16vw, 5rem); }
  /* Blog */
  .blog-header { padding: 1.5rem 1rem 1rem; }
  .blog-header-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .blog-header-sub { font-size: 0.92rem; }
  .blog-filters { padding: 0 1rem 1.5rem; gap: 0.4rem; }
  .blog-filter-pill { font-size: 0.7rem; padding: 0.3rem 0.7rem; }
  .blog-featured { padding: 0 1rem 2rem; }
  .blog-featured-img { min-height: 160px; }
  .blog-featured-body { padding: 1.2rem; }
  .blog-featured-title { font-size: 1.3rem; }
  .blog-featured-excerpt { font-size: 0.85rem; }
  .blog-grid-section { padding: 0 1rem 2.5rem; }
  .blog-card-img { height: 140px; }
  .blog-card-body { padding: 1.2rem; }
  .blog-card-title { font-size: 1.05rem; }
  .blog-card-excerpt { font-size: 0.8rem; }
  .article-hero { padding: 1.5rem 1rem 1rem; }
  .article-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .article-subtitle { font-size: 0.95rem; }
  .article-hero-img { padding: 0 1rem 1rem; }
  .article-hero-img-inner { height: 180px; }
  .article-body { padding: 0.5rem 1rem 2.5rem; }
  .article-body h2 { font-size: 1.3rem; margin: 2rem 0 0.6rem; }
  .article-body h3 { font-size: 1.05rem; }
  .article-body p, .article-body li { font-size: 0.92rem; line-height: 1.7; }
  .article-body blockquote { margin: 1.5rem 0; }
  .article-body blockquote p { font-size: 1rem; }
  .article-author { padding: 0 1rem 1.5rem; }
  .article-author-card { padding: 1.2rem; }
  .article-share { padding: 0 1rem 1.5rem; }
  .article-nav { padding: 0 1rem 2.5rem; }
  .article-nav-link { padding: 1rem; }
  .article-nav-title { font-size: 0.9rem; }
}
