/* ============================================================
   DIGAMBER KUMAR — PERSONAL BRAND STYLESHEET
   Phase 1 | 2026
   Brand kit: Montserrat (headings) · Inter (body)
   Colors: Navy #0B1C2D · Teal #1BC6C6 · Lime #C7FF3F
   Background: Ice White #F4F7F9
   ============================================================ */

/* ─── VARIABLES ─────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:          #F4F7F9;
  --bg-white:    #ffffff;
  --bg-navy:     #0B1C2D;
  --bg-tint:     rgba(11, 28, 45, 0.04);

  /* Brand colors */
  --navy:        #0B1C2D;
  --teal:        #1BC6C6;
  --teal-dim:    rgba(27, 198, 198, 0.12);
  --teal-glow:   rgba(27, 198, 198, 0.22);
  --lime:        #C7FF3F;
  --lime-dim:    rgba(199, 255, 63, 0.18);

  /* Text */
  --text:        #1F1F1F;
  --text2:       #4a5568;
  --text3:       #8A939B;

  /* Borders */
  --border:      rgba(11, 28, 45, 0.12);
  --border2:     rgba(11, 28, 45, 0.06);

  /* Typography */
  --heading:     'Montserrat', sans-serif;
  --body:        'Inter', sans-serif;
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--body); }
ul { list-style: none; }

/* body padding when nav is present */
body.has-nav { padding-top: 68px; }

/* ─── PAGE FADE-IN (CSS fallback; GSAP fade-out on nav) ─────── */
@keyframes dk-body-in { from { opacity: 0; } to { opacity: 1; } }
body { animation: dk-body-in 0.45s cubic-bezier(0.16,1,0.3,1) both; }


/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); }
p { line-height: 1.75; color: var(--text2); }

/* ─── LAYOUT UTILITIES ───────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
section { padding: 96px 5%; }
.section-white { background: var(--bg-white); }
.section-tint  { background: var(--bg-tint); }
.section-navy  { background: var(--navy); }

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* ─── EYEBROW LABEL ─────────────────────────────────────────── */
.eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  flex-shrink: 0;
  border-radius: 1px;
}

/* ─── SECTION HEADER ─────────────────────────────────────────── */
.section-title {
  font-size: clamp(2.3rem, 4.8vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
}
.section-header { margin-bottom: 60px; }
.section-header .section-sub {
  font-size: clamp(1.05rem, 1.25vw, 1.22rem);
  color: var(--text2);
  max-width: 660px;
  line-height: 1.75;
  margin-top: 14px;
}
.section-header.centered { text-align: center; }
.section-header.centered .eyebrow { justify-content: center; }
.section-header.centered .section-sub { margin-left: auto; margin-right: auto; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 4px;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--teal-dim);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 4px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-secondary:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--navy);
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 4px;
  border: 2px solid var(--teal);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-teal:hover {
  background: #15aeae;
  border-color: #15aeae;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--teal-glow);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: gap 0.2s, color 0.2s;
}
.btn-text:hover { gap: 12px; color: var(--teal); }

.btn-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ─── NAVIGATION ─────────────────────────────────────────────── */
#pb-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(244, 247, 249, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border2);
  transition: box-shadow 0.3s, background 0.3s;
}
#pb-nav.scrolled {
  background: rgba(244, 247, 249, 0.97);
  box-shadow: 0 2px 24px rgba(11, 28, 45, 0.08);
}

.nav-logo {
  font-family: var(--heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links li { list-style: none; }
.nav-links a {
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text2);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  border-radius: 1px;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-links a.active::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-contact-btn {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 20px;
  background: var(--navy);
  color: #fff;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-contact-btn:hover {
  background: var(--teal);
  color: var(--navy);
}

.nav-lang {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-lang-btn {
  background: none;
  border: none;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text3);
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.06em;
}
.nav-lang-btn.active {
  color: var(--navy);
  font-weight: 700;
  background: rgba(11, 28, 45, 0.07);
}
.nav-lang-sep { font-size: 0.65rem; color: var(--border); padding: 0 1px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px 4px;
  width: 32px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.25s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
#nav-mobile {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 20px 5% 28px;
  z-index: 999;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(11, 28, 45, 0.1);
}
#nav-mobile.open { display: flex; }
#nav-mobile a {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border2);
  transition: color 0.2s, padding-left 0.2s;
}
#nav-mobile a:last-of-type { border-bottom: none; }
#nav-mobile a:hover, #nav-mobile a.active {
  color: var(--teal);
  padding-left: 6px;
}
.mobile-contact-btn {
  display: block;
  text-align: center;
  padding: 13px 20px;
  background: var(--navy);
  color: #fff !important;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 16px;
  transition: background 0.2s !important;
}
.mobile-contact-btn:hover { background: var(--teal) !important; color: var(--navy) !important; padding-left: 0 !important; }
.mobile-lang {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border2);
}
.mobile-lang button {
  background: none;
  border: 1px solid var(--border);
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text2);
  cursor: pointer;
  padding: 5px 12px;
  border-radius: 3px;
  letter-spacing: 0.08em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.mobile-lang button.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* ─── STATS STRIP ─────────────────────────────────────────────── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--border);
  gap: 1px;
}
.stat-item {
  background: var(--bg-white);
  padding: 36px 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-num .accent { color: var(--teal); }
.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text3);
}

/* ─── PILLAR / FEATURE CARDS ────────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 30px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.pillar-card:hover {
  border-color: rgba(27, 198, 198, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(27, 198, 198, 0.1);
}
.pillar-card:hover::before { transform: scaleX(1); }

.pillar-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.pillar-card:hover .pillar-icon { background: rgba(27, 198, 198, 0.2); }
.pillar-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pillar-title {
  font-family: var(--heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
.pillar-desc {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.7;
  flex: 1;
}
.pillar-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.pillar-card:hover .pillar-link { gap: 10px; }

/* ─── FEATURED WORK / SPLIT LAYOUT ──────────────────────────── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }
.feature-visual {
  background: var(--bg-tint);
  border: 1px solid var(--border);
  border-radius: 8px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.feature-visual img { width: 100%; height: 100%; object-fit: cover; }
.feature-placeholder {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text3);
}
.feature-text { display: flex; flex-direction: column; gap: 16px; }
.feature-text h2, .feature-text h3 { color: var(--navy); }

/* ─── ARTICLE CARDS ─────────────────────────────────────────── */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  background: var(--bg-white);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 28px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  border-color: var(--border);
  box-shadow: 0 6px 24px rgba(11, 28, 45, 0.07);
  transform: translateY(-3px);
}

/* ── Coming soon (shared) ─────────────────────── */
.cs-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); background: var(--teal-dim);
  padding: 8px 16px; border-radius: 100px;
}
.cs-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); animation: csPulse 1.8s ease-in-out infinite; }
@keyframes csPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.35; transform: scale(0.62); } }
.coming-soon-panel {
  grid-column: 1 / -1;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px;
  padding: 72px 32px;
  background: var(--bg-white);
  border: 1px dashed var(--border);
  border-radius: 20px;
}
.coming-soon-panel h3 { font-family: var(--heading); font-size: 1.55rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin: 0; }
.coming-soon-panel p { max-width: 460px; font-size: 1rem; line-height: 1.7; color: var(--text2); margin: 0; }
@media (prefers-reduced-motion: reduce) { .cs-dot { animation: none; } }

.article-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-dim);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.article-title {
  font-family: var(--heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
  flex: 1;
}
.article-teaser {
  font-size: 0.84rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 18px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--text3);
  font-weight: 500;
}
.article-meta .dot { opacity: 0.4; }

/* ─── PATENT CARDS ───────────────────────────────────────────── */
.patents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.patent-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.patent-card:hover, .patent-card.expanded {
  border-color: rgba(11, 28, 45, 0.25);
  box-shadow: 0 4px 20px rgba(11, 28, 45, 0.08);
}
.patent-field {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 6px;
}
.patent-name {
  font-family: var(--heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}
.patent-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.patent-year { font-size: 0.75rem; color: var(--text3); }
.patent-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.patent-status.filed   { background: rgba(27, 198, 198, 0.1); color: var(--teal); }
.patent-status.granted { background: rgba(34, 197, 94, 0.1);  color: #16a34a; }
.patent-status.pending { background: rgba(251, 191, 36, 0.12); color: #d97706; }
.patent-desc {
  font-size: 0.82rem;
  color: var(--text2);
  line-height: 1.7;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border2);
  display: none;
}
.patent-card.expanded .patent-desc { display: block; }

/* Filter tabs */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-tab {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text2);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  letter-spacing: 0.04em;
}
.filter-tab:hover, .filter-tab.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* ─── COMPANY CARDS ──────────────────────────────────────────── */
.companies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.company-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.company-card:hover {
  border-color: rgba(11, 28, 45, 0.22);
  box-shadow: 0 8px 32px rgba(11, 28, 45, 0.08);
}
.company-logo-wrap {
  width: 80px;
  height: 48px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--text3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
/* [PLACEHOLDER] Replace .company-logo-wrap with actual logo <img> */
.company-name {
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.company-desc { font-size: 0.9rem; color: var(--text2); line-height: 1.75; }
.company-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #16a34a;
}
.company-status::before {
  content: '';
  width: 7px; height: 7px;
  background: #16a34a;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.company-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  transition: gap 0.2s;
  margin-top: auto;
}
.company-link:hover { gap: 10px; }

/* ─── TIMELINE ───────────────────────────────────────────────── */
.timeline {
  position: relative;
  max-width: 640px;
  padding-left: 52px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 18px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), rgba(11, 28, 45, 0.2), transparent);
  border-radius: 1px;
}
.timeline-item {
  position: relative;
  padding-bottom: 40px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -52px;
  top: 4px;
  width: 36px;
  height: 36px;
  background: var(--bg-white);
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-dot::after {
  content: '';
  width: 10px; height: 10px;
  background: var(--teal);
  border-radius: 50%;
}
.timeline-year {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}
.timeline-title {
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.timeline-desc { font-size: 0.85rem; color: var(--text2); line-height: 1.7; }

/* ─── SPEAKING TOPIC CARDS ───────────────────────────────────── */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.topic-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 34px 30px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.topic-card:hover {
  border-color: rgba(27, 198, 198, 0.4);
  box-shadow: 0 10px 36px rgba(27, 198, 198, 0.1);
  transform: translateY(-4px);
}
.topic-title {
  font-family: var(--heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}
.topic-audience {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}
.topic-takeaways {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.topic-takeaways li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text2);
  line-height: 1.5;
}
.topic-takeaways li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.topic-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text3);
  border: 1.5px solid var(--border);
  padding: 5px 12px;
  border-radius: 3px;
  margin-top: 4px;
  align-self: flex-start;
}

/* ─── TESTIMONIAL ────────────────────────────────────────────── */
.testimonial-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-quote {
  font-family: var(--heading);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 28px;
  position: relative;
  padding-top: 20px;
}
.testimonial-quote::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--teal);
  opacity: 0.25;
  position: absolute;
  top: -28px; left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}
.testimonial-author {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}
.testimonial-role {
  font-size: 0.78rem;
  color: var(--text3);
  margin-top: 4px;
}

/* ─── BOOKING / CONTACT FORM ─────────────────────────────────── */
.booking-form {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text2);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 5px;
  padding: 13px 16px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(27, 198, 198, 0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A939B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

/* ─── VIDEO PLACEHOLDER ──────────────────────────────────────── */
.video-wrap {
  aspect-ratio: 16 / 9;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 840px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.video-wrap iframe { width: 100%; height: 100%; border: none; }
.video-play-btn {
  width: 76px; height: 76px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
}
.video-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 48px var(--teal-glow);
}
.video-play-btn svg { width: 28px; height: 28px; fill: var(--navy); margin-left: 4px; }

/* ─── LOGO GRID ──────────────────────────────────────────────── */
.logo-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.logo-placeholder {
  width: 130px; height: 54px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ─── PHOTO PLACEHOLDER ──────────────────────────────────────── */
.photo-placeholder {
  background: linear-gradient(135deg, var(--bg-tint), rgba(27, 198, 198, 0.06));
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text3);
  overflow: hidden;
  position: relative;
}
.photo-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}

/* ─── BOOK COVER PLACEHOLDER ─────────────────────────────────── */
.book-cover-placeholder {
  width: 240px;
  aspect-ratio: 2/3;
  background: linear-gradient(145deg, #0B1C2D 0%, #1a2e44 60%, #0B1C2D 100%);
  border-radius: 4px 10px 10px 4px;
  box-shadow: 8px 8px 40px rgba(11, 28, 45, 0.3), -2px 0 0 rgba(27, 198, 198, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.book-cover-placeholder::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 12px;
  background: linear-gradient(to right, rgba(0,0,0,0.4), transparent);
}
.book-spine-label {
  writing-mode: vertical-rl;
  font-family: var(--heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.8;
}

/* ─── PULL QUOTE / HIGHLIGHT BLOCK ──────────────────────────── */
.pull-quote {
  border-left: 4px solid var(--teal);
  padding: 20px 28px;
  background: rgba(27, 198, 198, 0.06);
  border-radius: 0 6px 6px 0;
}
.pull-quote p {
  font-family: var(--heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
}

/* ─── CTA BLOCK ──────────────────────────────────────────────── */
.cta-block {
  background: var(--navy);
  border-radius: 10px;
  padding: 60px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(27, 198, 198, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-block h2 { color: #fff; }
.cta-block p { color: rgba(255,255,255,0.65); margin-top: 12px; }

/* ─── LIME ACCENT UTILITIES ──────────────────────────────────── */
.highlight-lime {
  background: var(--lime);
  color: var(--navy);
  padding: 1px 7px;
  border-radius: 3px;
  font-weight: 700;
}
.lime-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--lime);
  padding: 4px 10px;
  border-radius: 3px;
}

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  /* Promote to its own layer so the entrance can't judder mid-scroll */
  will-change: opacity, transform;
  backface-visibility: hidden;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── ICON MICRO-INTERACTIONS ────────────────────────────────── */
.stat-icon, .pillar-icon, .booking-detail-icon {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              color 0.3s, background 0.3s;
}
.stat-item:hover .stat-icon,
.pillar-card:hover .pillar-icon {
  transform: translateY(-5px) scale(1.09);
}
.stat-icon svg, .pillar-icon svg, .booking-detail-icon svg {
  transition: stroke 0.3s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* Arrow-bearing links nudge on hover */
.btn-text svg, .product-link svg, .wr-card-link svg, .hero-cta-text svg {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-text:hover svg, .wr-card-link:hover svg { transform: translateX(4px); }

@media (prefers-reduced-motion: reduce) {
  .reveal { transition-duration: 0.01ms; will-change: auto; }
  .stat-icon, .pillar-icon, .booking-detail-icon,
  .btn-text svg, .product-link svg, .wr-card-link svg { transition: none; }
}

/* ─── FOOTER (light-theme override) ─────────────────────────── */
footer {
  background: var(--navy);
  border-top: none !important;
  padding: 44px 5%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
footer .footer-brand {
  font-family: var(--heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}
footer .footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
footer .footer-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
footer .footer-links a:hover { color: var(--teal); }
footer .footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  width: 100%;
}

/* ─── HERO — SHARED BASE ─────────────────────────────────────── */
.page-hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 96px 5% 72px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg-circle {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 198, 198, 0.07) 0%, transparent 70%);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-strip       { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid      { grid-template-columns: 1fr 1fr; }
  .article-grid      { grid-template-columns: 1fr 1fr; }
  .companies-grid    { grid-template-columns: 1fr; }
  .topics-grid       { grid-template-columns: 1fr; }
  .feature-split     { grid-template-columns: 1fr; gap: 40px; }
  .feature-split.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  section { padding: 68px 5%; }
  .page-hero { padding: 100px 5% 60px; min-height: 80vh; }
  .nav-links, .nav-lang, .nav-contact-btn { display: none; }
  .nav-hamburger { display: flex; }
  .pillars-grid   { grid-template-columns: 1fr; }
  .article-grid   { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }

  /* Buttons: stack full-width so edges line up instead of staggering */
  .btn-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }
  .btn-actions .btn-primary,
  .btn-actions .btn-secondary,
  .btn-actions .btn-teal,
  .btn-actions .btn-outline-white,
  .btn-actions .btn-text {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  /* Comfortable tap targets (Apple/Google guidance is ~44px) */
  .btn-primary, .btn-secondary, .btn-teal, .btn-outline-white {
    min-height: 46px;
    align-items: center;
  }

  /* 16px minimum stops iOS from auto-zooming when a field is focused */
  input, select, textarea { font-size: 16px; }

  /* Nothing should be able to push the page sideways */
  img, svg, canvas, video, iframe { max-width: 100%; }
  p, li, h1, h2, h3, h4, blockquote { overflow-wrap: break-word; }
  a { overflow-wrap: break-word; }

  /* Footer reads better stacked than justified on a narrow screen */
  footer { flex-direction: column; align-items: flex-start; gap: 18px; padding: 40px 5%; }
  footer .footer-links { gap: 14px 18px; }
}

@media (max-width: 576px) {
  section { padding: 56px 5%; }
  .section-header { margin-bottom: 38px; }
  .stats-strip { grid-template-columns: 1fr; }
  .section-header .section-sub { font-size: 1rem; }
  /* Stop oversized display type from overflowing narrow screens */
  .section-title { font-size: clamp(1.9rem, 8.5vw, 2.5rem); }
}

@media (max-width: 576px) {
  .stats-strip    { grid-template-columns: 1fr 1fr; }
  .companies-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .btn-actions { flex-direction: column; align-items: flex-start; }
  .btn-actions .btn-primary,
  .btn-actions .btn-secondary { width: 100%; justify-content: center; }
}

/* ─── STATS: ICON + LINK (index.html #numbers) ───────────────── */
.stat-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: var(--teal);
}
.stat-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stat-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.stat-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(27,198,198,0.1);
}
/* stat-val: non-numeric value (no count-up) */
.stat-val {
  font-family: var(--heading);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
/* stats-strip 3-col variant for new layout */
#numbers .stats-strip {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  #numbers .stats-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  #numbers .stats-strip { grid-template-columns: 1fr; }
}

/* ─── PILLAR PRODUCTS LIST (index.html #pillars) ─────────────── */
.pillar-products {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.product-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: opacity 0.2s;
}
.product-link:hover { opacity: 0.75; text-decoration: underline; }
.product-link-placeholder { opacity: 0.6; }

/* ─── TESTIMONIALS GRID (index.html #testimonials) ───────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.testi-quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--teal);
  opacity: 0.3;
  line-height: 0;
  margin-bottom: 20px;
  display: block;
}
.testi-quote-text {
  font-size: 0.95rem;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
  flex: 1;
}
.testi-person { margin-top: auto; }
.testi-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}
.testi-org {
  font-size: 0.75rem;
  color: var(--text3);
  margin-top: 2px;
}

/* ─── PATENT ID + ABSTRACT TOGGLE (work.html #patents) ──────── */
.patent-id {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 6px;
}
.patent-abstract-wrap {
  margin-top: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.abstract-preview {
  font-size: 0.84rem;
  color: var(--text2);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.abstract-preview.expanded {
  display: block;
  overflow: visible;
}
.abstract-full {
  font-size: 0.84rem;
  color: var(--text2);
  line-height: 1.65;
  margin-top: 8px;
}
.abstract-toggle {
  background: none;
  border: none;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
  margin-top: 6px;
  display: block;
  font-family: var(--body);
  transition: opacity 0.2s;
}
.abstract-toggle:hover { opacity: 0.75; }

/* ─── 3D SPINNING BOOK ───────────────────────────────────────── */
.book3d-stage {
  width: 200px; height: 300px;
  perspective: 1500px;
  margin: 0 auto;
  flex-shrink: 0;
}
.book3d {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d;
  transform: rotateX(-6deg) rotateY(-25deg);   /* static — cover + a hint of spine */
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.book3d-stage:hover .book3d { transform: rotateX(-6deg) rotateY(-12deg); }
.book3d__face { position: absolute; top: 50%; left: 50%; }
.book3d__front, .book3d__back { width: 200px; height: 300px; }
.book3d__front {
  transform: translate(-50%, -50%) translateZ(20px);
  background-color: #0B1C2D;
  background-size: cover; background-position: center;
  border-radius: 2px 6px 6px 2px;
  box-shadow: inset -10px 0 20px rgba(0,0,0,0.35), inset 0 0 40px rgba(0,0,0,0.12);
}
.book3d__back {
  transform: translate(-50%, -50%) rotateY(180deg) translateZ(20px);
  background-color: #0a1726;
  background-size: cover; background-position: center;
  border-radius: 6px 2px 2px 6px;
}
.book3d__spine {
  width: 40px; height: 300px;
  transform: translate(-50%, -50%) rotateY(-90deg) translateZ(100px);
  background: linear-gradient(90deg, #08111d, #0B1C2D 50%, #08111d);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.book3d__spine span {
  writing-mode: vertical-rl; white-space: nowrap;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}
.book3d__pages {
  width: 40px; height: 300px;
  transform: translate(-50%, -50%) rotateY(90deg) translateZ(100px);
  background: repeating-linear-gradient(90deg, #f6f5ef 0, #f6f5ef 1px, #dcdbd0 2px, #f6f5ef 3px);
}
.book3d__edge-top, .book3d__edge-bottom { width: 200px; height: 40px; background: #eceadf; }
.book3d__edge-top    { transform: translate(-50%, -50%) rotateX(90deg) translateZ(150px); }
.book3d__edge-bottom { transform: translate(-50%, -50%) rotateX(-90deg) translateZ(150px); }
@media (prefers-reduced-motion: reduce) {
  .book3d { animation: none; transform: rotateX(-8deg) rotateY(-28deg); }
}
@media (max-width: 768px) {
  .book3d-stage { transform: scale(0.8); }
}

/* ─── PAST EVENTS LIST (speaking.html #past-events) ─────────── */
.past-events-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 860px;
  margin: 48px auto 0;
}
.past-event-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 36px;
}
.past-event-header {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.past-event-role {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.role-speaker {
  background: rgba(27,198,198,0.12);
  color: var(--teal);
}
.role-panel {
  background: rgba(27,198,198,0.12);
  color: var(--teal);
}
.past-event-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}
.past-event-meta {
  font-size: 0.78rem;
  color: var(--text3);
  margin-left: auto;
}
.conference-snapshot {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 18px;
  overflow: hidden;
  height: 320px;
  background-color: var(--border);   /* shows as a thin divider through the gap */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.conference-snapshot .cs-half {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.snapshot-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text3);
  font-size: 0.8rem;
  text-align: center;
}
.past-event-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
}
.past-event-link:hover { text-decoration: underline; }
.past-event-desc {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 14px;
}
.desc-highlight {
  background: rgba(27,198,198,0.12);
  color: var(--teal);
  border-radius: 3px;
  padding: 0 3px;
  font-style: italic;
}
.past-event-type-note {
  font-size: 0.72rem;
  color: var(--text3);
  font-style: italic;
}

@media (max-width: 768px) {
  .past-event-card { padding: 24px 20px; }
  .past-event-meta { margin-left: 0; width: 100%; }
}
