@font-face {
  font-family: "RubikDoodleShadow";
  src: url("../fonts/RubikDoodleShadow-Regular-subset.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

html {
  min-height: 100%;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #010005;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; border: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Header ── */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(54,55,57,0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-social {
  display: flex;
  gap: 8px;
  align-items: center;
}

.header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(54,55,57,0.04);
  border-radius: 50%;
  transition: background .15s;
}

.header-social a:hover { background: rgba(54,55,57,0.15); }

.header-social img {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

/* Logo */
.site-logo {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.logo-ivan { color: #7b0741; }
.logo-skula { color: #d00057; }
.logo-com { color: rgba(54,55,57,0.40); }

.site-logo--hidden { visibility: hidden; }

.site-creds {
  color: rgba(54,55,57,0.50);
  font-weight: 400;
  font-size: 12px;
  margin-left: 6px;
}

.site-nav ul {
  list-style: none;
  display: flex;
}

.site-nav ul li a {
  font-size: 14px;
  color: rgba(54,55,57,0.50);
  padding: 4px 14px;
  display: block;
  transition: color .15s;
}

.site-nav ul li a:hover { color: #010005; }

.site-nav ul li.active a {
  color: #010005;
  border-bottom: 2px solid #7b0741;
}

/* ── Main ── */
.site-main {
  padding: 32px 0 30px;
  background: linear-gradient(to bottom, rgba(54,55,57,0.05) 0%, #ffffff 620px);
  flex: 1;
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 24px;
  padding: 0 0 0;
}

.hero-photo {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: rgba(54,55,57,0.07);
  box-shadow: 0 8px 32px rgba(1,0,5,0.12);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-headline {
  font-size: 34px;
  font-weight: 600;
  color: #010005;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -.01em;
}

.hero-rule {
  width: 52px;
  height: 3px;
  background: #7b0741;
  border-radius: 2px;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 19px;
  color: #363739;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.5;
}

.hero-bio {
  font-size: 15px;
  color: #363739;
  line-height: 1.85;
}

.hero-bio + .hero-bio { margin-top: 14px; }

/* ── Stats bar ── */
.mid-section {
  background: rgba(54,55,57,0.05);
  border-top: 1px solid rgba(54,55,57,0.15);
  border-bottom: 1px solid rgba(54,55,57,0.15);
  margin: 0 -32px 40px;
  padding: 28px 32px 32px;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #ffffff;
  border: 1px solid rgba(54,55,57,0.18);
  border-radius: 10px;
  padding: 22px 24px;
  margin-bottom: 32px;
  gap: 0;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 4px 16px;
  border-right: 1px solid rgba(54,55,57,0.18);
}

.stat-item:last-child { border-right: none; }

.stat-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

.stat-text {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 20px;
  font-weight: 600;
  color: #010005;
  line-height: 1.2;
}

.stat-label {
  font-size: 11px;
  color: rgba(54,55,57,0.50);
}

/* ── Expertise section ── */
.expertise-section {
  margin-bottom: 0;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 700;
  color: #010005;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
  margin-bottom: 26px;
}

.section-heading::before,
.section-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(54,55,57,0.15);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.expertise-card {
  padding: 4px 6px;
}

.expertise-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.expertise-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.expertise-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(54,55,57,0.07);
  border-radius: 50%;
  flex-shrink: 0;
  color: #7b0741;
}

.expertise-icon svg {
  width: 30px;
  height: 30px;
}

.expertise-title {
  font-size: 14px;
  font-weight: 600;
  color: #010005;
  line-height: 1.3;
}

.expertise-desc {
  font-size: 12px;
  font-weight: 400;
  color: rgba(54,55,57,0.60);
  line-height: 1.4;
}

/* ── Posts sections (shared) ── */
.posts-section {
  margin-bottom: 52px;
}

.section-bar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(54,55,57,0.15);
}

.section-bar-heading {
  font-size: 13px;
  font-weight: 700;
  color: #010005;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.section-bar-url {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: #7b0741;
  transition: color .15s;
}

.section-bar-url:hover { color: #7b0741; }

.section-bar-domain { color: #7b0741; }
.section-bar-url:hover .section-bar-domain { color: #7b0741; }

.section-bar-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.section-refresh-btn {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(123,7,65,0.22);
  border-radius: 50%;
  background: #ffffff;
  color: #7b0741;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color .15s, border-color .15s, background .15s;
}

.section-refresh-btn:hover {
  border-color: #7b0741;
  background: rgba(123,7,65,0.06);
  color: #d00057;
}

.section-refresh-btn:disabled {
  cursor: default;
  opacity: .7;
}

.section-refresh-btn svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-refresh-btn.is-refreshing svg {
  animation: refresh-spin .8s linear infinite;
}

@keyframes refresh-spin {
  to { transform: rotate(360deg); }
}

.section-bar-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  color: #d00057;
}

/* Article cards (LTF) — image on top */
.article-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.article-card {
  background: #ffffff;
  border: 1px solid rgba(54,55,57,0.18);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s;
}

.article-card:hover {
  border-color: #7b0741;
  box-shadow: 0 4px 16px rgba(123,7,65,0.07);
}

.article-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(54,55,57,0.07);
}

.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.article-card:hover .article-thumb img { transform: scale(1.04); }

.article-thumb-date {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 10px;
  color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.45);
  padding: 2px 7px;
  border-radius: 4px;
}

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

.article-title {
  font-size: 14px;
  font-weight: 600;
  color: #010005;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-readtime {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  padding-top: 8px;
  font-size: 11px;
  color: rgba(54,55,57,0.40);
}

.article-readtime svg {
  width: 13px;
  height: 13px;
}

/* Awareness cards (WFL) — square image with text overlay */
.awareness-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.awareness-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: block;
  text-decoration: none;
  background: #010005;
}

.awareness-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.awareness-card:hover img { transform: scale(1.04); }

.awareness-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 12px 12px;
  background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,0) 100%);
}

.awareness-title {
  font-family: "RubikDoodleShadow", cursive;
  font-size: 17px;
  font-weight: normal;
  color: #ffffff;
  line-height: 1.3;
}

.awareness-date {
  position: absolute;
  top: 9px;
  right: 10px;
  font-size: 10px;
  color: rgba(255,255,255,.6);
  background: rgba(0,0,0,.35);
  padding: 2px 7px;
  border-radius: 4px;
}

.post-date {
  font-size: 11px;
  color: rgba(54,55,57,0.40);
}

/* ── One Thought section ── */
.thought-section {
  background: rgba(54,55,57,0.05);
  border-radius: 10px;
  padding: 26px 84px 26px 48px;
  margin-bottom: 11px;
  position: relative;
}

.thought-inner {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  width: 100%;
}

.thought-mark {
  flex-shrink: 0;
  margin-top: 2px;
  line-height: 0;
}

.thought-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 2px solid rgba(54,55,57,0.18);
  padding-left: 28px;
  flex: 1;
  min-width: 0;
}

.thought-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #7b0741;
  margin-bottom: 2px;
}

.thought-quote {
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: #010005;
  line-height: 1.55;
}

.thought-date {
  font-size: 12px;
  color: rgba(54,55,57,0.40);
  margin-top: 2px;
}

.thought-controls {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: flex;
  gap: 6px;
}

.thought-arrow {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(123,7,65,0.25);
  border-radius: 50%;
  background: #ffffff;
  color: #7b0741;
  font-size: 19px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
}

.thought-arrow:hover {
  border-color: #7b0741;
  background: rgba(123,7,65,0.06);
  color: #d00057;
}

/* ── Footer ── */
.site-footer {
  background: #010005;
  padding: 28px 0;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  transition: color .15s;
}

.footer-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: .8;
}

a.footer-item:hover { color: #ffffff; }

.copyright {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 14px;
}

/* ── Inner pages ── */
.content-section { padding-bottom: 8px; }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.content-card {
  background: #ffffff;
  border: 1px solid rgba(54,55,57,0.15);
  border-radius: 8px;
  padding: 24px 22px;
}

.content-card-title {
  font-size: 15px;
  font-weight: 500;
  color: #010005;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(54,55,57,0.05);
}

.content-intro {
  font-size: 14px;
  color: #363739;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Timeline */
.timeline { display: flex; flex-direction: column; gap: 20px; }

.timeline-item { padding-bottom: 20px; border-bottom: 1px solid rgba(54,55,57,0.05); }
.timeline-item:last-child { border-bottom: none; padding-bottom: 0; }

.timeline-org {
  font-size: 15px;
  font-weight: 500;
  color: #010005;
  margin-bottom: 10px;
}

.timeline-roles { display: flex; flex-direction: column; gap: 6px; }

.timeline-role {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.timeline-role-title { font-size: 14px; color: #7b0741; font-weight: 500; }
.timeline-years { font-size: 11px; color: rgba(54,55,57,0.40); white-space: nowrap; }

.timeline-desc {
  font-size: 13px;
  color: rgba(54,55,57,0.50);
  line-height: 1.6;
  margin: 4px 0 8px;
}

/* Education */
.edu-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 4px; }

.edu-item { display: flex; gap: 14px; }

.edu-meta { min-width: 80px; }
.edu-years { font-size: 11px; color: rgba(54,55,57,0.40); }

.edu-degree { font-size: 14px; font-weight: 500; color: #010005; margin-bottom: 2px; }
.edu-school { font-size: 11px; color: #7b0741; margin-bottom: 2px; }
.edu-school a { color: #7b0741; }
.edu-note { font-size: 11px; color: rgba(54,55,57,0.50); }

/* Certifications */
.cert-list { display: flex; flex-direction: column; gap: 12px; }

.cert-item { display: flex; gap: 12px; align-items: flex-start; }

.cert-badge {
  background: rgba(54,55,57,0.07);
  color: #7b0741;
  font-size: 10px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  margin-top: 1px;
}

.cert-name { font-size: 12px; color: #010005; margin-bottom: 2px; }
.cert-name a { color: #7b0741; }
.cert-issuer { font-size: 11px; color: rgba(54,55,57,0.40); }

/* Skill bars */
.skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.skill-bars { display: flex; flex-direction: column; gap: 10px; }

.skill-bar { display: flex; align-items: center; gap: 10px; }
.skill-label { font-size: 13px; color: #363739; min-width: 140px; }
.skill-track { flex: 1; height: 4px; background: rgba(54,55,57,0.05); border-radius: 2px; }
.skill-fill { height: 100%; background: #7b0741; border-radius: 2px; }

/* Verticals */
.verticals-list { display: flex; flex-direction: column; gap: 10px; }

.vertical-item { display: flex; align-items: center; gap: 8px; }
.vertical-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.vertical-label { font-size: 13px; color: #363739; min-width: 90px; }
.vertical-track { flex: 1; height: 4px; background: rgba(54,55,57,0.05); border-radius: 2px; }
.vertical-fill { height: 100%; border-radius: 2px; }

/* Research page */
.res-page { width: 100%; }

.res-heading { margin-bottom: 28px; }
.res-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}
.res-title-main { font-size: 28px; font-weight: 700; color: #010005; }
.res-subtitle { font-size: 14px; color: rgba(54,55,57,0.65); line-height: 1.6; max-width: 620px; }

.res-profile-links { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.res-profile-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 7px;
  opacity: 0.45;
  transition: opacity .15s;
  text-decoration: none;
}
.res-profile-link:hover { opacity: 1; }
.res-profile-link img { width: 22px; height: 22px; object-fit: contain; }

.res-list { display: flex; flex-direction: column; gap: 0; }

.res-type-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.res-type-icon svg { width: 17px; height: 17px; }
.res-type-icon--thesis    { background: rgba(123,7,65,0.08); color: #7b0741; }
.res-type-icon--article   { background: rgba(54,55,57,0.07); color: #363739; }
.res-type-icon--conference { background: rgba(54,55,57,0.07); color: #363739; }
.res-type-icon--chapter   { background: rgba(54,55,57,0.07); color: #363739; }

.res-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(54,55,57,0.10);
}
.res-legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(54,55,57,0.55);
}
.res-legend-item .res-type-icon {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  margin-top: 0;
}
.res-legend-item .res-type-icon svg { width: 13px; height: 13px; }

.res-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid rgba(54,55,57,0.10);
  border-radius: 8px;
  margin-bottom: 8px;
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s;
}
.res-item:hover { border-color: rgba(123,7,65,0.25); box-shadow: 0 2px 8px rgba(54,55,57,0.07); }

.res-year {
  flex-shrink: 0;
  width: 58px;
  padding: 8px 4px;
  background: rgba(54,55,57,0.06);
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #7b0741;
}

.res-content { flex: 1; min-width: 0; }
.res-pub-title { font-size: 14px; font-weight: 600; color: #010005; margin-bottom: 4px; line-height: 1.4; }
.res-pub-title a { color: #010005; text-decoration: none; }
.res-pub-title a:hover { color: #7b0741; }
.res-meta { font-size: 12px; color: rgba(54,55,57,0.50); margin-bottom: 6px; line-height: 1.5; }
.res-desc { font-size: 13px; color: rgba(54,55,57,0.70); line-height: 1.55; }

.res-actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: stretch;
}
.res-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border: 1px solid rgba(54,55,57,0.15);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 500;
  color: #363739;
  background: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .15s, color .15s, background .15s;
}
.res-action-btn:hover { border-color: #7b0741; color: #7b0741; }
.res-action-btn svg { width: 12px; height: 12px; flex-shrink: 0; }
.res-action-btn--disabled {
  color: rgba(54,55,57,0.35);
  cursor: default;
  pointer-events: none;
  background: rgba(54,55,57,0.03);
}

/* Contact form */
.contact-section {
  min-height: 100%;
  display: flex;
  align-items: flex-start;
}

.contact-card {
  width: 100%;
  border-color: rgba(123,7,65,0.16);
  box-shadow: 0 14px 36px rgba(1,0,5,0.06);
}

.contact-card .content-card-title {
  color: #7b0741;
  border-bottom-color: rgba(123,7,65,0.14);
}

.contact-card .content-intro {
  color: rgba(54,55,57,0.72);
}

.contact-form { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }

.form-row { display: flex; flex-direction: column; gap: 6px; }

.form-row label {
  font-size: 12px;
  font-weight: 600;
  color: #7b0741;
}

.form-row input,
.form-row textarea {
  font-family: inherit;
  font-size: 14px;
  color: #010005;
  background: rgba(123,7,65,0.025);
  border: 1px solid rgba(123,7,65,0.16);
  border-radius: 6px;
  padding: 10px 12px;
  transition: border-color .15s, box-shadow .15s, background .15s;
  resize: vertical;
}

.form-row textarea {
  min-height: 190px;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #7b0741;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(123,7,65,0.08);
}

.form-row--submit { align-items: flex-start; }

.form-row--submit button {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: #7b0741;
  border: none;
  border-radius: 6px;
  padding: 11px 24px;
  cursor: pointer;
  transition: background .15s, opacity .15s;
}

.form-row--submit button:hover { background: #d00057; }

.form-row--submit button:disabled {
  cursor: default;
  opacity: .65;
}

#message_info_div { font-size: 13px; color: #363739; }

.alert {
  border-radius: 6px;
  padding: 11px 13px;
  margin-bottom: 16px;
  border: 1px solid rgba(54,55,57,0.15);
  background: rgba(54,55,57,0.04);
  color: #363739;
}

.alert-success {
  border-color: rgba(123,7,65,0.22);
  background: rgba(123,7,65,0.06);
  color: #010005;
}

.alert-danger {
  border-color: rgba(208,0,87,0.25);
  background: rgba(208,0,87,0.06);
  color: #7b0741;
}

.alert-info {
  border-color: rgba(123,7,65,0.18);
  background: rgba(123,7,65,0.04);
  color: #7b0741;
}

/* ── Experience page ── */
.exp-layout {
  display: grid;
  grid-template-columns: 252px 1fr;
  gap: 32px;
  align-items: start;
}

.exp-sidebar {
  position: sticky;
  top: 76px;
}

.exp-profile {
  background: #ffffff;
  border: 1px solid rgba(54,55,57,0.15);
  border-radius: 12px;
  overflow: hidden;
}

.exp-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  display: block;
}

.exp-profile-info {
  padding: 22px 22px 24px;
}

.exp-name {
  font-size: 21px;
  font-weight: 700;
  color: #010005;
  margin-bottom: 7px;
}

.exp-name-creds {
  font-size: 18px;
  font-weight: 600;
  color: rgba(1,0,5,0.65);
}

.exp-job-title {
  font-size: 13px;
  font-weight: 600;
  color: #7b0741;
  line-height: 1.45;
  margin-bottom: 16px;
}

.exp-meta {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 0;
}

.exp-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #363739;
}

.exp-meta-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: .5;
}

.exp-rule {
  width: 36px;
  height: 3px;
  background: #7b0741;
  border-radius: 2px;
  margin: 18px 0;
}

.exp-bio {
  font-size: 12.5px;
  color: #363739;
  line-height: 1.7;
  margin-bottom: 18px;
}

.exp-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 14px;
  background: #7b0741;
  color: #ffffff;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s;
}

.btn-primary:hover { background: #d00057; color: #ffffff; }

.btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1px solid rgba(54,55,57,0.20);
  color: #010005;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color .15s, color .15s;
  background: #ffffff;
}

.btn-outline:hover { border-color: #7b0741; color: #7b0741; }

.btn-outline svg, .btn-primary svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Main content area */
.exp-main { display: flex; flex-direction: column; }

.exp-section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: #363739;
  margin: 0 0 14px;
}

.exp-section-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(54,55,57,0.15);
}

.exp-section { margin-bottom: 28px; }

.exp-company-card {
  background: #ffffff;
  border: 1px solid rgba(54,55,57,0.15);
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 10px;
}

.exp-company-header {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(54,55,57,0.07);
  margin: -18px -22px 0;
  padding: 8px 22px;
  border-radius: 10px 10px 0 0;
  border-bottom: 1px solid rgba(54,55,57,0.12);
}

.exp-logo-badge {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.exp-logo-badge img[alt="Z.L.D."] {
  width: 75%;
  height: 75%;
  object-fit: contain;
}

.exp-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.exp-company-name {
  flex: 1;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #010005;
}

.exp-company-dates {
  font-size: 12px;
  color: rgba(54,55,57,0.50);
  white-space: nowrap;
}

.exp-toggle-btn {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  color: #7b0741;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.exp-timeline {
  margin-top: 18px;
}

.exp-timeline.hidden { display: none; }

.exp-role {
  position: relative;
  padding: 0 0 18px 20px;
}

.exp-role:last-child { padding-bottom: 0; }

.exp-role::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7b0741;
}

.exp-role-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}

.exp-role-header:hover .exp-role-title { color: #7b0741; }

.exp-role-info { flex: 1; }

.exp-role-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #010005;
  display: block;
  margin-bottom: 4px;
  line-height: 1.35;
  transition: color .15s;
}

.exp-role-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(54,55,57,0.50);
}

.exp-meta-sep {
  color: #010005;
  font-weight: 600;
}

.exp-role-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: rgba(54,55,57,0.40);
  margin-top: 2px;
  transition: transform .2s;
}

.exp-role-chevron.open { transform: rotate(180deg); }

.exp-role-body {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(54,55,57,0.08);
}

.exp-role-body.hidden { display: none; }

.exp-role-desc {
  font-size: 12.5px;
  color: #363739;
  line-height: 1.7;
}

/* Education card */
.exp-edu-card {
  background: #ffffff;
  border: 1px solid rgba(54,55,57,0.15);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.exp-edu-header {
  display: flex;
  gap: 16px;
  align-items: center;
  background: rgba(54,55,57,0.07);
  padding: 8px 22px;
  border-bottom: 1px solid rgba(54,55,57,0.12);
}

.exp-edu-body {
  padding: 16px 22px 18px;
}

.exp-edu-logo {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.exp-edu-logo img { width: 100%; height: 100%; object-fit: cover; }

.exp-edu-body { flex: 1; }

.exp-edu-header > div {
  flex: 1;
  text-align: center;
}

.exp-edu-school {
  font-size: 14px;
  font-weight: 600;
  color: #010005;
  display: block;
  margin-bottom: 2px;
}

.exp-edu-school-sub {
  font-size: 12px;
  color: rgba(54,55,57,0.50);
  display: block;
  margin-bottom: 14px;
}

.exp-edu-timeline {
  padding-left: 0;
}

.exp-edu-degree-item {
  position: relative;
  padding: 0 0 14px 20px;
}

.exp-edu-degree-item:last-child { padding-bottom: 0; }

.exp-edu-degree-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7b0741;
}

.exp-edu-degree {
  font-size: 13.5px;
  font-weight: 600;
  color: #7b0741;
  display: block;
}

.exp-edu-years {
  font-size: 12px;
  color: rgba(54,55,57,0.50);
}

.exp-edu-note {
  font-size: 11.5px;
  color: rgba(54,55,57,0.50);
  margin-top: 2px;
  display: block;
}

/* Certifications */
.exp-cert-card {
  background: #ffffff;
  border: 1px solid rgba(54,55,57,0.15);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.exp-cert-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(54,55,57,0.08);
}

.exp-cert-item:last-child { border-bottom: none; }

.exp-cert-badge {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  object-fit: contain;
}

.exp-cert-badge-text {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(54,55,57,0.06);
  border: 1px solid rgba(54,55,57,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #363739;
}

.exp-cert-name {
  flex: 1;
  font-size: 13.5px;
  font-weight: 500;
  color: #010005;
}

a.exp-cert-name:hover { color: #7b0741; }

.exp-cert-since {
  font-size: 12px;
  color: #7b0741;
  font-weight: 500;
  white-space: nowrap;
}

.exp-cert-dash {
  font-size: 14px;
  color: rgba(54,55,57,0.30);
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .site-header .container { min-height: 64px; }
  .site-logo { font-size: 32px; }
  .hero { grid-template-columns: 260px 1fr; gap: 32px; }
  .expertise-grid,
  .article-cards,
  .awareness-cards { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 16px; }
  .stat-item { justify-content: flex-start; padding: 10px 16px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(54,55,57,0.15); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(54,55,57,0.15); }
}

@media (max-width: 600px) {
  .site-header .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .site-nav ul li a { padding: 4px 10px; }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px 0 20px;
  }

  .hero-photo {
    width: 140px;
    aspect-ratio: 3 / 4;
  }

  .hero-headline { font-size: 26px; }
  .hero-sub { font-size: 15px; }

  .expertise-grid,
  .article-cards,
  .awareness-cards { grid-template-columns: 1fr; }

  .stats-bar { grid-template-columns: 1fr 1fr; border-radius: 8px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { padding: 8px 6px; }

  .thought-section { padding: 28px 24px 64px; }
  .thought-mark { font-size: 52px; }
  .thought-quote { font-size: 16px; }

  .site-footer .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
  }

  .content-grid { grid-template-columns: 1fr; }
  .skills-grid  { grid-template-columns: 1fr; }
}
