/* ─────────────────────────────────────────────────────────────────────────────
   guyleon.me — Editorial founder press kit
   Dark default · Mint accent · Fraunces display · Editorial restraint
   ───────────────────────────────────────────────────────────────────────────── */

/* ─── Self-hosted fonts (no Google CDN — eliminates Brave/Safari privacy warning) ─── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/inter-var.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/inter-italic-var.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/instrument-serif.woff2') format('woff2');
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/instrument-serif-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url('/fonts/jetbrains-mono-var.woff2') format('woff2-variations');
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body { overflow-x: clip; }

:root {
  --bg:           #fafaf7;
  --bg-soft:      #f4f4ef;
  --bg-card:      rgba(0, 0, 0, 0.025);
  --bg-card-hover:rgba(0, 0, 0, 0.04);
  --bg-elev:      #ffffff;

  --line:         rgba(10, 10, 15, 0.08);
  --line-strong:  rgba(10, 10, 15, 0.16);
  --line-accent:  rgba(13, 148, 136, 0.32);

  --ink:          #0a0a0f;
  --ink-2:        rgba(10, 10, 15, 0.78);
  --ink-3:        rgba(10, 10, 15, 0.56);
  --ink-faint:    rgba(10, 10, 15, 0.38);

  --mint:         #0d9488;
  --mint-deep:    #0f766e;
  --mint-soft:    rgba(13, 148, 136, 0.14);
  --mint-glow:    rgba(13, 148, 136, 0.28);

  --nav-bg:       rgba(250, 250, 247, 0);
  --nav-bg-scroll:rgba(250, 250, 247, 0.82);
}

html.dark {
  /* Surfaces */
  --bg:           #09090f;
  --bg-soft:      #0c0c14;
  --bg-card:      rgba(255, 255, 255, 0.025);
  --bg-card-hover:rgba(255, 255, 255, 0.04);
  --bg-elev:      #10101a;

  /* Borders */
  --line:         rgba(255, 255, 255, 0.08);
  --line-strong:  rgba(255, 255, 255, 0.16);
  --line-accent:  rgba(20, 184, 166, 0.32);

  /* Ink */
  --ink:          #fafafa;
  --ink-2:        rgba(255, 255, 255, 0.78);
  --ink-3:        rgba(255, 255, 255, 0.56);
  --ink-faint:    rgba(255, 255, 255, 0.38);

  /* Brand */
  --mint:         #14B8A6;
  --mint-deep:    #0d9488;
  --mint-soft:    rgba(20, 184, 166, 0.14);
  --mint-glow:    rgba(20, 184, 166, 0.28);
  --lav:          #A78BFA;
  --crimson:      #c1264d;

  /* Type */
  --serif-display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --display:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --sans:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:         'JetBrains Mono', ui-monospace, 'SF Mono', Consolas, monospace;

  /* Rhythm */
  --rule:         1px solid var(--line);
  --rule-strong:  1px solid var(--line-strong);

  /* Nav */
  --nav-bg:       rgba(9, 9, 15, 0);
  --nav-bg-scroll:rgba(9, 9, 15, 0.78);
}

/* ── Body, with mint glow + film grain ───────────────────────────────────── */
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  background:
    radial-gradient(ellipse 70% 60% at 0% 100%, rgba(20, 184, 166, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 55% 50% at 100% 0%, rgba(15, 118, 110, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(20, 184, 166, 0.05) 0%, transparent 75%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  isolation: isolate;
  min-height: 100vh;
}
/* Subtle film grain overlay — pure CSS, ~0.5% noise, gives premium feel */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: 0.06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/></svg>");
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ── Container ───────────────────────────────────────────────────────────── */
.wrap        { max-width: 1180px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }
.wrap-narrow { max-width:  780px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }
.section     { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-large { padding: 140px 0; }

@media (max-width: 720px) {
  .wrap, .wrap-narrow { padding: 0 20px; }
  .section { padding: 64px 0; }
  .section-large { padding: 88px 0; }
}

/* ── Typography ──────────────────────────────────────────────────────────── */
.kicker {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint);
  display: inline-flex; align-items: center; gap: 12px;
}
.kicker::before {
  content: '';
  width: 22px; height: 1px; background: var(--mint); opacity: 0.6;
}
.kicker.no-rule::before { display: none; }
.kicker.dim { color: var(--ink-3); }
.kicker.dim::before { background: var(--ink-3); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.025em;
}
h1 {
  font-size: clamp(38px, 5.6vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}
h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.015em;
}
h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 em, h2 em, h3 em {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 400;
  color: var(--mint);
  letter-spacing: -0.01em;
}

.lede {
  font-family: var(--sans);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
  color: var(--ink-2);
  font-weight: 400;
}
p { color: var(--ink-2); }
strong { color: var(--ink); font-weight: 600; }

/* ── Editorial rules + dots ──────────────────────────────────────────────── */
.rule       { height: 1px; background: var(--line); width: 100%; }
.rule-short { height: 1px; background: var(--line-strong); width: 64px; }
.rule-mint  { height: 1px; background: var(--mint); width: 48px; opacity: 0.8; }
.dot        { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); display: inline-block; box-shadow: 0 0 12px var(--mint-glow); }

/* ── Nav ─────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
  transform: translateZ(0);
}
.nav.is-scrolled {
  background: var(--nav-bg-scroll);
  border-color: var(--line);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 18px 28px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px;
}
.brand {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
  justify-self: center;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
  transition: color .15s;
  position: relative;
}
.nav-links a:hover, .nav-links a.is-active { color: var(--ink); }
.nav-links a.is-active::after {
  content: ''; position: absolute; bottom: -22px; left: 50%;
  transform: translateX(-50%); width: 4px; height: 4px;
  border-radius: 50%; background: var(--mint);
  box-shadow: 0 0 8px var(--mint-glow);
}
.nav-cta { display: flex; align-items: center; gap: 12px; justify-self: end; }

.theme-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: transparent; border: 1px solid var(--line);
  color: var(--ink-3);
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color .2s, color .2s, transform .2s;
}
.theme-btn:hover { color: var(--ink); border-color: var(--line-strong); transform: rotate(15deg); }
.icon-sun { display: block; } .icon-moon { display: none; }
html.light .icon-sun { display: none; } html.light .icon-moon { display: block; }

@media (max-width: 820px) {
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .2s, background .2s, border-color .2s, color .2s, box-shadow .2s;
  cursor: pointer; white-space: nowrap;
}
.btn-primary {
  background: var(--mint); color: #06121a;
  box-shadow: 0 12px 32px var(--mint-glow), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 44px var(--mint-glow), inset 0 1px 0 rgba(255,255,255,0.3); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--mint); color: var(--mint); transform: translateY(-1px); }
.btn-sm { padding: 10px 18px; font-size: 11px; letter-spacing: 0.16em; }

/* Inline text-link with mint arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-size: 14px; font-weight: 500;
  color: var(--mint);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color .2s, gap .2s;
}
.link-arrow:hover { border-color: var(--mint); gap: 12px; }

/* ── Hero (editorial, asymmetric) ────────────────────────────────────────── */
.hero {
  padding: 140px 0 80px;
  position: relative;
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1fr);
  gap: 48px; align-items: end;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin: 0 auto 36px;
  justify-content: center;
}
.hero h1 {
  max-width: 1100px;
  margin: 0 auto 28px;
  text-align: center;
}
.hero .lede {
  max-width: 620px;
  color: var(--ink-2);
  margin: 0 auto 36px;
  text-align: center;
}
.hero-meta {
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3);
}
.hero-meta a { color: var(--ink-2); border-bottom: 1px solid var(--line); padding-bottom: 2px; transition: color .15s, border-color .15s; }
.hero-meta a:hover { color: var(--mint); border-color: var(--mint); }

@media (max-width: 720px) {
  .hero { padding: 80px 0 56px; }
  .hero-eyebrow { margin-bottom: 24px; }
  .hero h1 { margin-bottom: 22px; }
}

/* ── Founder block — the centerpiece ─────────────────────────────────────── */
.founder {
  display: flex; flex-direction: column; align-items: center;
  gap: 56px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.founder-portrait {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-elev);
  aspect-ratio: 4 / 5;
  width: 240px;
  border: 1px solid var(--line);
  margin: 0 auto;
}
.founder-portrait img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%;
  filter: contrast(1.04) saturate(0.92);
  transition: transform .8s cubic-bezier(.22,1,.36,1);
}
.founder-portrait:hover img { transform: scale(1.04); }
.founder-portrait::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(9, 9, 15, 0.50) 100%);
  pointer-events: none;
}
.founder-portrait-tag {
  position: absolute; bottom: 18px; left: 20px; right: 20px;
  font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink); z-index: 1;
  display: flex; justify-content: space-between; align-items: center;
}

.founder-body { padding-top: 0; max-width: 640px; margin: 0 auto; text-align: center; }
.founder-label {
  font-family: var(--mono);
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mint);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
  justify-content: center;
}
.founder-label::before { content: ''; width: 24px; height: 1px; background: var(--mint); opacity: 0.6; }
.founder-name {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 16px;
}
.founder-title {
  font-family: var(--sans);
  font-size: 15.5px; line-height: 1.55; font-weight: 400;
  color: var(--ink-3);
  margin: 0 auto 36px;
  max-width: 560px;
  text-align: center;
}
.founder-bio { display: grid; gap: 18px; max-width: 580px; margin: 0 auto; text-align: center; }
.founder-bio p {
  font-family: var(--sans);
  font-size: 16.5px; line-height: 1.75; color: var(--ink-2);
}
/* drop cap disabled for centered layout */

/* Pull quote (italic serif, with giant quotemark) */
.founder-quote {
  margin: 56px auto 36px;
  padding: 36px 0 0;
  text-align: center;
  position: relative;
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 600px;
}
.founder-quote::before {
  content: '"';
  position: absolute; top: -38px; left: 50%; transform: translateX(-50%);
  font-family: var(--serif-display);
  font-size: 110px; line-height: 1;
  color: var(--mint);
  opacity: 0.65;
}
.founder-quote-attr {
  display: block;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11px; font-style: normal;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
}

/* Forbes credentials panel — sits below the bio, beautifully framed */
.credentials {
  margin: 48px auto 0;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding: 28px 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  max-width: 480px;
  text-align: center;
  transition: border-color .25s, background .25s, transform .25s;
}
.credentials::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  height: 3px; width: 60px; background: var(--mint);
  border-radius: 0 0 4px 4px;
}
.credentials:hover { border-color: var(--line-accent); background: var(--bg-card-hover); transform: translateY(-2px); }
.credentials-badge {
  flex-shrink: 0;
  width: 140px;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  margin: 0 auto 4px;
}
.credentials-badge img {
  width: 100%; height: auto; display: block;
  border-radius: 8px;
}
.credentials-body { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; }
.credentials-kicker {
  font-family: var(--mono);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 6px;
}
.credentials-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 8px;
}
.credentials-meta {
  font-family: var(--sans);
  font-size: 13px; color: var(--ink-3); line-height: 1.5;
  margin-bottom: 10px;
}
.credentials-link {
  font-family: var(--mono);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mint);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  margin-top: 8px;
  transition: border-color .2s;
}
.credentials-link:hover { border-color: var(--mint); }

.founder-cta-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin: 32px auto 0;
  justify-content: center;
}

@media (max-width: 880px) {
  .founder { grid-template-columns: 1fr; gap: 36px; max-width: 580px; }
  .founder-portrait { max-width: 280px; }
  .credentials { grid-template-columns: 1fr; }
  .credentials-badge { width: 100%; max-width: 280px; margin: 0 auto; }
  .credentials-body { text-align: center; align-items: center; }
}
@media (max-width: 720px) {
  .founder-portrait { aspect-ratio: 4/5; max-width: 100%; }
  .founder-bio p:first-child::first-letter { font-size: 2.6em; padding: 4px 8px 0 0; }
  .founder-quote { padding-left: 14px; font-size: 21px; }
  .founder-quote::before { font-size: 84px; top: -28px; left: -4px; }
}

/* ── Ventures — editorial numbered list (no cards) ───────────────────────── */
.ventures-list {
  max-width: 980px; margin: 0 auto;
  border-top: 1px solid var(--line);
}
.venture-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 44px 32px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  align-items: center; justify-items: center;
  transition: padding .35s cubic-bezier(.22,1,.36,1), background .25s;
  position: relative;
}
.venture-row::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--mint-soft), transparent 30%);
  opacity: 0; transition: opacity .35s;
  pointer-events: none;
}
.venture-row:hover::before { opacity: 0.5; }
.venture-row:hover { background: var(--bg-card); }
.venture-num {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint);
  position: relative; z-index: 1;
}
.venture-row:hover .venture-num { color: var(--mint); }
.venture-main { position: relative; z-index: 1; }
.venture-name {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
  display: inline-flex; align-items: baseline; gap: 12px;
  justify-content: center;
}
.venture-name .external {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
  transition: color .2s;
}
.venture-row:hover .venture-name .external { color: var(--mint); }
.venture-tagline {
  font-family: var(--sans);
  font-size: 15.5px; font-weight: 500;
  color: var(--ink-2);
  margin: 0 auto 12px;
  max-width: 580px;
}
.venture-desc {
  font-family: var(--sans);
  font-size: 14.5px; line-height: 1.65;
  color: var(--ink-3);
  max-width: 580px;
  margin: 0 auto;
}
.venture-meta {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-faint);
  text-align: center;
  position: relative; z-index: 1;
  padding-top: 14px;
  display: flex; gap: 14px; justify-content: center;
  line-height: 1.6;
  flex-wrap: wrap;
}
.venture-meta span { color: var(--ink-3); }
.venture-meta .dot { margin-left: 6px; }

@media (max-width: 820px) {
  .venture-row { padding: 32px 18px; }
}

/* ── Section heads (editorial) ───────────────────────────────────────────── */
.section-head {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  max-width: 760px; margin: 0 auto 56px;
  text-align: center;
}
.section-head .meta { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.section-head .kicker { justify-content: center; }
.section-head h2 { max-width: 760px; text-align: center; }
.section-head p.lede { max-width: 600px; margin: 18px auto 0; text-align: center; }

@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 36px; }
}

/* ── Cards (sophisticated) ───────────────────────────────────────────────── */
.card {
  position: relative; overflow: hidden;
  padding: 32px 30px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color .3s, background .3s, transform .3s, box-shadow .3s;
  display: block; color: inherit;
}
.card:hover {
  border-color: var(--line-accent);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.32), 0 0 0 1px var(--line-accent);
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--mint), transparent);
  opacity: 0; transition: opacity .3s;
}
.card:hover::before { opacity: 0.8; }

/* ── Press strip / Forbes hero ───────────────────────────────────────────── */
.press-strip {
  padding: 80px 0 56px;
  text-align: center;
}
.press-eyebrow {
  font-family: var(--mono);
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 14px;
}
.press-eyebrow::before, .press-eyebrow::after {
  content: ''; width: 32px; height: 1px; background: var(--line-strong);
}
.press-card {
  display: inline-grid; grid-template-columns: auto 1fr; gap: 24px;
  align-items: center;
  padding: 18px 24px 18px 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  max-width: 560px;
  text-align: left;
  transition: border-color .3s, transform .3s, background .3s;
}
.press-card:hover {
  border-color: var(--line-accent);
  transform: translateY(-2px);
  background: var(--bg-card-hover);
}
.press-card img {
  width: 220px; height: auto;
  border-radius: 8px;
  display: block;
}
.press-card-text {
  display: flex; flex-direction: column; gap: 6px;
}
.press-card-kicker {
  font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mint);
}
.press-card-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.2;
}
.press-card-meta {
  font-family: var(--sans);
  font-size: 13px; color: var(--ink-3);
}

@media (max-width: 720px) {
  .press-card { grid-template-columns: 1fr; padding: 18px; }
  .press-card img { width: 100%; max-width: 280px; margin: 0 auto; }
  .press-card-text { text-align: center; }
}

/* ── Writing page hero ───────────────────────────────────────────────────── */
.writing-hero {
  padding: 120px 0 64px;
  display: flex; flex-direction: column; align-items: center;
  gap: 48px;
  max-width: 1180px; margin: 0 auto;
  padding-left: 28px; padding-right: 28px;
  text-align: center;
}
.writing-hero-meta {
  display: flex; gap: 48px; align-items: center; flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  justify-content: center;
  width: 100%; max-width: 720px;
}
.writing-hero-stat {
  font-family: var(--display);
  font-weight: 300;
  font-size: 32px;
  color: var(--ink);
  line-height: 1;
}
.writing-hero-stat-label {
  display: block;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 6px;
  font-style: normal;
}
.writing-hero-badge {
  display: block;
  max-width: 200px;
  border-radius: 10px;
  border: 1px solid var(--line);
  overflow: hidden;
  margin: 0 auto;
  transition: border-color .3s, transform .3s;
}
.writing-hero-badge:hover {
  border-color: var(--line-accent);
  transform: translateY(-2px);
}
.writing-hero-badge img { width: 100%; display: block; }

@media (max-width: 720px) {
  .writing-hero { padding: 64px 20px 40px; gap: 36px; }
  .writing-hero-meta { gap: 24px; padding-top: 18px; }
  .writing-hero-stat { font-size: 28px; }
  .writing-hero-badge { margin: 0 auto; max-width: 280px; }
}

/* ── Writing list (editorial press list) ─────────────────────────────────── */
.press-list { max-width: 980px; margin: 0 auto; padding: 0 28px 80px; }
.press-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: padding .3s, background .3s;
  position: relative;
}
.press-item:first-child { border-top: 1px solid var(--line); }
.press-item:hover { padding-left: 16px; padding-right: 16px; background: var(--bg-card); }
.press-item-date {
  font-family: var(--mono);
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3);
}
.press-item:hover .press-item-date { color: var(--mint); }
.press-item-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.press-item-meta {
  display: flex; align-items: center; gap: 16px;
}
.press-item-kind {
  font-family: var(--mono);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-faint);
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.press-item-arrow {
  font-family: var(--mono);
  color: var(--ink-faint);
  font-size: 18px; line-height: 1;
  transition: transform .3s, color .3s;
}
.press-item:hover .press-item-arrow { color: var(--mint); transform: translateX(6px); }

@media (max-width: 720px) {
  .press-list { padding: 0 20px 56px; }
  .press-item { grid-template-columns: 1fr; gap: 10px; padding: 22px 0; }
  .press-item-meta { justify-content: flex-start; }
  .press-item:hover { padding-left: 10px; padding-right: 10px; }
}

/* ── Pack list (Contact & Speaking) ──────────────────────────────────────── */
.pack {
  max-width: 880px; margin: 0 auto;
  display: grid; gap: 14px;
}
.pack-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 28px; align-items: center;
  padding: 26px 30px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color .3s, background .3s, transform .3s;
}
.pack-item:hover {
  border-color: var(--line-accent);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.pack-num {
  font-family: var(--display);
  font-weight: 300;
  font-size: 32px; line-height: 1;
  color: var(--mint);
}
.pack-body h3 { font-family: var(--display); font-weight: 400; font-size: 19px; margin-bottom: 6px; }
.pack-body p { font-size: 14.5px; color: var(--ink-3); line-height: 1.55; }

@media (max-width: 720px) {
  .pack-item { grid-template-columns: 1fr; gap: 14px; padding: 22px; text-align: center; }
  .pack-num { font-size: 36px; }
}

/* ── Timeline (speaking format) ──────────────────────────────────────────── */
.numlist { display: grid; gap: 18px; max-width: 720px; margin: 0 auto; }
.numlist .nl {
  display: grid; grid-template-columns: 64px 1fr; gap: 22px; align-items: start;
  padding: 22px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color .3s, background .3s;
}
.numlist .nl:hover { border-color: var(--line-accent); background: var(--bg-card-hover); }
.numlist .nl-num {
  font-family: var(--display);
  font-weight: 300;
  font-size: 24px; color: var(--mint); line-height: 1;
}
.numlist .nl h4 { font-family: var(--display); font-weight: 500; font-size: 17px; margin-bottom: 6px; color: var(--ink); }
.numlist .nl p { font-size: 14.5px; color: var(--ink-3); line-height: 1.6; }

/* ── Final CTA / banner ──────────────────────────────────────────────────── */
.cta-banner {
  max-width: 880px; margin: 0 auto;
  padding: 64px 56px;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, var(--mint-soft), transparent 70%),
    var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 24px;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 1px; background: var(--mint);
}
.cta-banner h2 { font-style: italic; }
.cta-banner p { max-width: 520px; margin: 16px auto 32px; color: var(--ink-3); }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 720px) {
  .cta-banner { padding: 44px 28px; border-radius: 18px; }
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer {
  margin-top: 80px;
  padding: 64px 0 40px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  position: relative; z-index: 2;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  max-width: 1180px; margin: 0 auto;
  padding: 0 28px 48px;
}
.footer-brand { max-width: 360px; }
.footer-brand .brand { font-size: 28px; display: block; margin-bottom: 14px; }
.footer-brand p { font-family: var(--sans); font-size: 14.5px; color: var(--ink-3); line-height: 1.6; }
.footer-col h4 {
  font-family: var(--mono);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-family: var(--sans);
  font-size: 14.5px; color: var(--ink-2);
  margin-bottom: 10px;
  transition: color .15s;
}
.footer-col a:hover { color: var(--mint); }
.footer-copy {
  max-width: 1180px; margin: 0 auto;
  padding: 28px 28px 0;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-faint);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
}

@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-copy { flex-direction: column; gap: 8px; text-align: left; }
}

/* ── Subtle animations on load ───────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeIn .9s cubic-bezier(.22,1,.36,1) forwards;
}
.fade-in.d1 { animation-delay: .1s; }
.fade-in.d2 { animation-delay: .22s; }
.fade-in.d3 { animation-delay: .34s; }
.fade-in.d4 { animation-delay: .46s; }
.fade-in.d5 { animation-delay: .58s; }
@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .fade-in { animation: none; opacity: 1; transform: none; }
}

/* ── Speaking topic grid ─────────────────────────────────────────────────── */
.topics {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px; max-width: 1000px; margin: 0 auto;
}
.topic {
  padding: 32px 30px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color .3s, background .3s, transform .3s;
}
.topic:hover { border-color: var(--line-accent); background: var(--bg-card-hover); transform: translateY(-3px); }
.topic-num {
  font-family: var(--display);
  font-weight: 300;
  font-size: 28px; color: var(--mint); line-height: 1;
  margin-bottom: 16px;
}
.topic h3 { font-family: var(--display); font-weight: 400; font-size: 19px; margin-bottom: 8px; }
.topic p { font-size: 14.5px; color: var(--ink-3); line-height: 1.6; }
@media (max-width: 720px) { .topics { grid-template-columns: 1fr; max-width: 520px; } }

/* ─── Home cards (one-screen executive card layout) ─── */
.home-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px; margin: 0 auto;
}
.home-card {
  padding: 28px 26px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color .25s, background .25s, transform .25s;
}
.home-card:hover { border-color: var(--line-accent); background: var(--bg-card-hover); }
.home-card-label {
  font-family: var(--mono);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.home-card-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.home-card-list li { margin: 0; }
.home-card-list a {
  display: grid; grid-template-columns: 1fr auto; gap: 6px 12px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .2s, color .2s;
}
.home-card-list li:last-child a { border-bottom: none; }
.home-card-list a strong {
  font-family: var(--display); font-weight: 500;
  font-size: 15.5px; color: var(--ink);
  grid-column: 1 / 2;
}
.home-card-list a span:not(.ext) {
  font-family: var(--sans);
  font-size: 13px; color: var(--ink-3);
  grid-column: 1 / 2;
  margin-top: 2px;
  line-height: 1.4;
}
.home-card-list a .ext {
  font-family: var(--mono);
  font-size: 14px; color: var(--ink-faint);
  grid-column: 2 / 3; grid-row: 1 / 3;
  align-self: center;
  transition: transform .2s, color .2s;
}
.home-card-list a:hover { padding-left: 6px; }
.home-card-list a:hover strong { color: var(--mint); }
.home-card-list a:hover .ext { color: var(--mint); transform: translateX(3px); }

@media (max-width: 880px) {
  .home-cards { grid-template-columns: 1fr; max-width: 480px; }
}

/* ─── How I Help — service lanes ─── */
.lane {
  display: grid; grid-template-columns: 1fr;
  gap: 18px;
  padding: 36px 36px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 22px;
  margin-bottom: 18px;
  transition: border-color .3s, background .3s;
}
.lane:hover { border-color: var(--line-accent); background: var(--bg-card-hover); }
.lane-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.lane-title { font-family: var(--display); font-weight: 400; font-size: 26px; color: var(--ink); }
.lane-tag {
  font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mint);
  padding: 6px 12px;
  border: 1px solid var(--line-accent);
  border-radius: 999px;
}
.lane-body { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; }
.lane-body p { font-size: 15.5px; line-height: 1.7; color: var(--ink-2); margin-bottom: 12px; }
.lane-meta { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); display: grid; gap: 8px; align-content: start; }
.lane-meta strong { color: var(--mint); font-weight: 500; font-family: var(--mono); }
.lane-cta { padding-top: 14px; border-top: 1px solid var(--line); margin-top: 6px; }

@media (max-width: 720px) {
  .lane { padding: 28px 22px; }
  .lane-body { grid-template-columns: 1fr; gap: 18px; }
  .lane-title { font-size: 22px; }
}


/* ─── Credentialed portrait (Forbes circle badge attached) ─── */
.cred-portrait {
  position: relative;
  width: 240px;
  margin: 0 auto;
}
.cred-portrait .founder-portrait { width: 100%; margin: 0; }
.cred-portrait .forbes-stamp {
  position: absolute;
  bottom: -18px; right: -22px;
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--bg);
  padding: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 1px var(--line-accent);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.cred-portrait:hover .forbes-stamp { transform: rotate(8deg) scale(1.06); }
.cred-portrait .forbes-stamp img {
  width: 100%; height: 100%; object-fit: contain;
  border-radius: 50%;
}
/* Tiny "Forbes Agency Council" tag below the portrait */
.cred-portrait-tag {
  text-align: center;
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3);
}
.cred-portrait-tag strong { color: var(--mint); font-weight: 500; font-family: var(--mono); }

/* Homepage hero portrait variant (smaller, centered above headline) */
.hero-portrait {
  width: 132px; height: 132px;
  border-radius: 50%;
  margin: 0 auto 24px;
  position: relative;
  overflow: visible;
}
.hero-portrait {
  background: radial-gradient(circle at 50% 40%, #2DD4BF 0%, #14B8A6 70%, #0D9488 100%);
}
.hero-portrait img {
  width: 100%; height: 100%; border-radius: 50%;
  object-fit: cover; object-position: 50% 18%;
  border: 1px solid var(--line);
  background: transparent;
}
.hero-portrait .forbes-stamp {
  position: absolute;
  bottom: -10px; right: -14px;
  width: 68px; height: 68px;
  border-radius: 50%;
  background: #ffffff;
  padding: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 0 2px var(--mint), 0 0 0 5px rgba(20, 184, 166, 0.18);
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-portrait:hover .forbes-stamp { box-shadow: 0 14px 38px rgba(0,0,0,0.7), 0 0 0 2px var(--mint), 0 0 0 7px rgba(20, 184, 166, 0.28); }
.hero-portrait:hover .forbes-stamp { transform: rotate(8deg) scale(1.08); }
.hero-portrait .forbes-stamp img {
  width: 100%; height: 100%; border: none;
  border-radius: 50%; object-fit: cover;
  display: block;
}

@media (max-width: 720px) {
  .cred-portrait { width: 200px; }
  .cred-portrait .forbes-stamp { width: 64px; height: 64px; bottom: -12px; right: -12px; }
  .hero-portrait { width: 112px; height: 112px; margin-bottom: 22px; }
  .hero-portrait .forbes-stamp { width: 52px; height: 52px; bottom: -8px; right: -10px; }
}

/* ─── One-page sections ─── */

/* Ventures — clean list, centered */
.onepage-ventures {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 580px; margin: 0 auto;
}
.onepage-venture {
  padding: 22px 20px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
  transition: border-color .25s, background .25s, transform .25s;
  display: flex; flex-direction: column; gap: 6px;
}
.onepage-venture:hover { border-color: var(--line-accent); background: var(--bg-card-hover); transform: translateY(-2px); }
.onepage-venture-name {
  font-family: var(--display);
  font-weight: 400; font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.onepage-venture-tag {
  font-family: var(--sans);
  font-size: 13.5px; color: var(--ink-3);
  line-height: 1.4;
}
.onepage-venture-role {
  font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mint);
  margin-top: 4px;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.onepage-venture .ext { color: var(--ink-faint); transition: color .2s, transform .2s; }
.onepage-venture:hover .ext { color: var(--mint); transform: translateX(2px); }

@media (max-width: 580px) {
  .onepage-ventures { grid-template-columns: 1fr; }
}

/* Articles — clean editorial list */
.onepage-article {
  display: grid; grid-template-columns: 100px 1fr auto;
  gap: 18px; align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: padding .25s, background .25s;
  text-align: left;
}
.onepage-article:first-child { border-top: 1px solid var(--line); }
.onepage-article:hover { padding-left: 12px; padding-right: 12px; background: var(--bg-card); }
.onepage-article-date {
  font-family: var(--mono);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
}
.onepage-article:hover .onepage-article-date { color: var(--mint); }
.onepage-article-title {
  font-family: var(--display);
  font-weight: 400; font-size: 15px;
  line-height: 1.4;
  color: var(--ink);
}
.onepage-article-arrow {
  font-family: var(--mono);
  color: var(--ink-faint);
  font-size: 16px; line-height: 1;
  transition: transform .25s, color .25s;
}
.onepage-article:hover .onepage-article-arrow { color: var(--mint); transform: translateX(4px); }

@media (max-width: 620px) {
  .onepage-article { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
  .onepage-article-arrow { display: none; }
  .onepage-article-title { font-size: 14.5px; }
}

/* Contact — clean rows, all centered */
.onepage-contact {
  display: grid; gap: 10px;
  max-width: 520px; margin: 0 auto;
}
.onepage-contact-row {
  display: grid; grid-template-columns: 1fr auto;
  gap: 18px; align-items: center;
  padding: 18px 22px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: left;
  transition: border-color .25s, background .25s, transform .25s;
}
.onepage-contact-row:hover { border-color: var(--line-accent); background: var(--bg-card-hover); transform: translateY(-1px); }
.onepage-contact-label {
  font-family: var(--display);
  font-weight: 500; font-size: 15px;
  color: var(--ink);
}
.onepage-contact-email {
  font-family: var(--mono);
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: lowercase;
  color: var(--mint);
}

@media (max-width: 520px) {
  .onepage-contact-row { grid-template-columns: 1fr; gap: 4px; padding: 16px 18px; text-align: left; }
}


/* ─── LinkedIn pill (site colors, no animation) ─── */
.li-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px 9px 14px;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: border-color .2s, background .2s, color .2s, transform .2s;
}
.li-pill:hover {
  border-color: var(--line-accent);
  background: var(--bg-card-hover);
  color: var(--ink);
  transform: translateY(-1px);
}
.li-pill svg { color: var(--mint); flex-shrink: 0; }
.li-pill .li-pill-arrow {
  font-size: 14px; letter-spacing: 0; color: var(--ink-faint);
  transition: transform .2s, color .2s;
}
.li-pill:hover .li-pill-arrow { color: var(--mint); transform: translate(2px, -2px); }

/* ─── Forbes circle badge — theme-aware swap so it reads on both backgrounds ─── */
.hero-portrait .forbes-stamp { background: var(--bg-elev); }
html.light .hero-portrait .forbes-stamp {
  background: #0a0a0f;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18), 0 0 0 2px var(--mint), 0 0 0 5px rgba(13, 148, 136, 0.14);
}


/* ─── Bare nav (theme toggle only, top-right) ─── */
.nav-bare .nav-inner {
  display: flex; justify-content: flex-end;
  padding: 18px 24px;
}


/* ─── Mobile: center all primary content ─── */
@media (max-width: 720px) {
  .wrap, .wrap-narrow,
  .hero, .hero .wrap, .hero-inner,
  section .wrap, section .wrap-narrow {
    text-align: center;
  }
  .hero h1, .hero .lede, .hero-meta { text-align: center; }
  /* Bio paragraphs: keep left-aligned for readability of long-form text */
  section#about > div > div p { text-align: left; }
  /* Section heads and kicker badges center */
  section h2, section .kicker, section .lede,
  section p, section .link-arrow { text-align: center; }
  /* Card grids: center cards within column */
  .onepage-ventures, .onepage-contact { margin-left: auto; margin-right: auto; }
  .onepage-article { text-align: center; grid-template-columns: 1fr; }
  .onepage-article-meta, .press-item-meta { justify-content: center; }
  /* Footer copy */
  .footer-copy { justify-content: center; text-align: center; flex-direction: column; }
}

/* ─── i18n: RTL + language-specific typography ─── */
html[dir="rtl"] body { direction: rtl; text-align: right; }
html[dir="rtl"] .hero,
html[dir="rtl"] .hero-meta,
html[dir="rtl"] section { direction: rtl; }
/* In RTL, only the inline arrow GLYPHS get mirrored, not the whole text link */
html[dir="rtl"] .onepage-article-arrow,
html[dir="rtl"] .li-pill .li-pill-arrow,
html[dir="rtl"] .onepage-venture .ext { display: inline-block; transform: scaleX(-1); }
/* Do NOT mirror the whole .link-arrow text — it reverses the words */
/* Press list dates / titles stay LTR-friendly */
html[dir="rtl"] .onepage-article { grid-template-columns: auto 1fr auto; }

/* Hebrew typography */
body.lang-he, body.lang-he * {
  font-family: 'Heebo', 'Rubik', 'Assistant', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
body.lang-he h1, body.lang-he h2 em,
body.lang-he .founder-name,
body.lang-he .onepage-venture-name {
  font-family: 'Heebo', sans-serif;
  font-weight: 300;
}
body.lang-he h1 em, body.lang-he h2 em {
  font-family: 'Heebo', sans-serif;
  font-style: normal;
  color: var(--mint);
}

/* Arabic typography */
body.lang-ar, body.lang-ar * {
  font-family: 'Cairo', 'Tajawal', 'Noto Sans Arabic', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
body.lang-ar h1, body.lang-ar h2 em {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-weight: 400;
}
body.lang-ar h1 em, body.lang-ar h2 em {
  font-family: 'Cairo', sans-serif;
  font-style: normal;
  color: var(--mint);
}

/* Japanese typography */
body.lang-ja, body.lang-ja * {
  font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', 'Yu Gothic', 'Meiryo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
body.lang-ja h1, body.lang-ja h2 {
  font-weight: 300;
  letter-spacing: 0.01em;
}
body.lang-ja h1 em, body.lang-ja h2 em {
  font-style: normal;
  color: var(--mint);
}

/* Language switcher in footer */
.lang-switch {
  display: flex; justify-content: center; align-items: center; gap: 14px;
  flex-wrap: wrap;
  padding: 0 28px 28px;
  font-family: var(--mono);
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3);
}
.lang-switch a {
  color: var(--ink-3);
  transition: color .2s;
  padding: 4px 6px;
  border-radius: 4px;
}
.lang-switch a:hover { color: var(--mint); }
.lang-switch a.is-active {
  color: var(--mint);
  font-weight: 600;
}
.lang-sep { color: var(--ink-faint); }


/* ─── In-nav language switcher (top-right, beside theme toggle) ─── */
.nav-bare .nav-inner { gap: 14px; align-items: center; }
.nav-lang {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11.5px; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink-3);
}
.nav-lang a {
  color: var(--ink-3);
  padding: 6px 8px; border-radius: 6px;
  transition: color .15s, background .15s;
}
.nav-lang a:hover { color: var(--mint); background: var(--bg-card); }
.nav-lang span { color: var(--ink-faint); }
/* Highlight current language */
html[lang="en"] .nav-lang a[hreflang="en"],
html[lang="he"] .nav-lang a[hreflang="he"],
html[lang="ar"] .nav-lang a[hreflang="ar"],
html[lang="ja"] .nav-lang a[hreflang="ja"] {
  color: var(--mint); background: var(--bg-card);
}


/* ─── "What I bring" bullet list ─── */
.bring-list {
  list-style: none; padding: 0; margin: 0;
  max-width: 620px; margin-left: auto; margin-right: auto;
  display: grid; gap: 16px;
  text-align: left;
}
.bring-list li {
  font-size: 15.5px; line-height: 1.7; color: var(--ink-2);
  padding: 18px 22px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  position: relative;
  padding-left: 38px;
  transition: border-color .25s, background .25s;
}
.bring-list li::before {
  content: '·';
  position: absolute; left: 16px; top: 16px;
  color: var(--mint);
  font-size: 28px; line-height: 1; font-weight: 800;
}
.bring-list li:hover { border-color: var(--line-accent); background: var(--bg-card-hover); }
.bring-list li strong { color: var(--ink); font-weight: 500; }
html[dir="rtl"] .bring-list li { padding-left: 22px; padding-right: 38px; }
html[dir="rtl"] .bring-list li::before { left: auto; right: 16px; }


/* RTL fine-tuning */
html[dir="rtl"] .hero-meta { direction: rtl; }
html[dir="rtl"] .onepage-venture-role { direction: rtl; }
html[dir="rtl"] .lang-switch { direction: ltr; }
/* Force the bring-list dot positioning to be consistent per direction */
html[dir="rtl"] body.lang-he .bring-list li,
html[dir="rtl"] body.lang-ar .bring-list li { text-align: right; }


/* When scrolled, hide language switcher — only theme toggle remains */
.nav-bare .nav-inner { justify-content: space-between; }
.nav-bare .nav-lang { transition: opacity .25s, transform .25s, max-width .35s, padding .25s; transform-origin: right center; }
.nav-bare.is-scrolled .nav-lang {
  opacity: 0; pointer-events: none;
  transform: translateX(8px) scale(0.92);
  max-width: 0; padding: 0; overflow: hidden;
}
/* In RTL, mirror the collapse direction */
html[dir="rtl"] .nav-bare .nav-lang { transform-origin: left center; }
html[dir="rtl"] .nav-bare.is-scrolled .nav-lang { transform: translateX(-8px) scale(0.92); }


/* ─── Forbes credential chip (replaces portrait stamp) ─── */
.forbes-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--line-accent);
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: border-color .2s, background .2s, transform .2s;
}
.forbes-chip:hover {
  border-color: var(--mint);
  background: var(--bg-card-hover);
  transform: translateY(-1px);
}
.forbes-chip-mark {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic; font-weight: 400;
  font-size: 17px; letter-spacing: -0.5px;
  text-transform: none;
  color: var(--ink);
  line-height: 1;
}
.forbes-chip-sub, .forbes-chip-meta { color: var(--ink-3); }
.forbes-chip-dot { color: var(--ink-faint); }
.forbes-chip-arrow {
  font-size: 13px; letter-spacing: 0;
  color: var(--mint);
  transition: transform .2s;
}
.forbes-chip:hover .forbes-chip-arrow { transform: translate(2px, -2px); }
html[dir="rtl"] .forbes-chip-arrow { transform: scaleX(-1); }
html[dir="rtl"] .forbes-chip:hover .forbes-chip-arrow { transform: scaleX(-1) translate(2px, -2px); }
@media (max-width: 480px) {
  .forbes-chip { font-size: 10px; padding: 7px 12px 7px 10px; gap: 8px; }
  .forbes-chip-mark { font-size: 15px; }
}


/* Dark mode body — richer mint glow on the deep navy */
html.dark body {
  background:
    radial-gradient(ellipse 70% 60% at 0% 100%, rgba(20, 184, 166, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 55% 50% at 100% 0%, rgba(15, 118, 110, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(20, 184, 166, 0.05) 0%, transparent 75%),
    var(--bg);
}
/* In dark mode, the gray text inside the Forbes chip becomes near-white for legibility */
html.dark .forbes-chip-sub,
html.dark .forbes-chip-meta { color: var(--ink); }
html.dark .forbes-chip { background: rgba(255,255,255,0.04); }
/* LIGHT mirror so the chip pops same way */
.forbes-chip-sub, .forbes-chip-meta { color: var(--ink); }
.forbes-chip { background: rgba(0,0,0,0.04); }





/* ─── Remove arrow icons from Forbes chip + LinkedIn pill (cleaner credentials) ─── */
.forbes-chip-arrow, .li-pill .li-pill-arrow { display: none !important; }
.forbes-chip { padding: 8px 18px; }
.li-pill { padding: 9px 18px; }

/* ─── Light-mode chip parity with dark — same visual weight ─── */
:root .forbes-chip {
  background: rgba(10, 10, 15, 0.05);
  border-color: rgba(10, 10, 15, 0.12);
}
:root .li-pill {
  background: rgba(10, 10, 15, 0.04);
  border-color: rgba(10, 10, 15, 0.10);
}
:root .forbes-chip:hover, :root .li-pill:hover {
  border-color: var(--mint);
  background: rgba(13, 148, 136, 0.06);
}


/* ─── ABSOLUTE font parity between light and dark (last-rule-wins) ─── */
/* Pin every font property identically across both modes so browsers cannot
   render them differently due to background-color heuristics or default antialiasing. */
html, html.dark, html.light,
body, html.dark body, html.light body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-rendering: optimizeLegibility !important;
  font-synthesis: none !important;
  font-feature-settings: "kern", "liga", "calt" !important;
}
/* Ensure h1/h2/h3 + named display elements use identical weight in both modes */
h1, html.dark h1, html.light h1,
h2, html.dark h2, html.light h2,
h3, html.dark h3, html.light h3,
h4, html.dark h4, html.light h4 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-weight: 300 !important;
}
.founder-name, html.dark .founder-name, html.light .founder-name,
.onepage-venture-name, html.dark .onepage-venture-name, html.light .onepage-venture-name,
.press-item-title, html.dark .press-item-title, html.light .press-item-title,
.writing-hero-stat, html.dark .writing-hero-stat, html.light .writing-hero-stat {
  font-family: 'Inter', sans-serif !important;
  font-weight: 300 !important;
}
/* Em italic accents — same Instrument Serif italic in both modes */
h1 em, h2 em, h3 em, html.dark h1 em, html.light h1 em,
html.dark h2 em, html.light h2 em, html.dark h3 em, html.light h3 em {
  font-family: 'Instrument Serif', Georgia, 'Times New Roman', serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
}
/* Body copy — identical weight everywhere */
p, .lede, li, html.dark p, html.light p, html.dark .lede, html.light .lede {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400 !important;
}
/* Mono kickers + labels — identical weight everywhere */
.kicker, html.dark .kicker, html.light .kicker,
.li-pill, html.dark .li-pill, html.light .li-pill,
.nav-lang, html.dark .nav-lang, html.light .nav-lang,
.hero-meta a, html.dark .hero-meta a, html.light .hero-meta a {
  font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Consolas, monospace !important;
  font-weight: 500 !important;
}
