/* ============================================
   jagmindersingh.com — About Page Styles
   Bio split, values, skills bento, dual practitioner
   ============================================ */

/* --- About Hero --- */
.about-hero {
  padding: calc(var(--nav-h) + var(--sp-9)) 0 var(--sp-9);
}

.about-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: var(--sp-6);
}

@media (max-width: 1024px) and (min-width: 769px) {
  .about-hero__grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .about-hero__canvas {
    max-width: 480px;
    justify-self: center;
  }
  .about-hero__text .reveal[style*="display:flex"] {
    justify-content: center;
  }
}

.about-hero__text {
  min-width: 0;
}

.about-hero__label {
  margin-bottom: var(--sp-4);
}

.about-hero__title {
  max-width: 700px;
}

.about-hero__canvas {
  position: relative;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 1;
  pointer-events: auto;
  justify-self: end;
  will-change: transform;
}

.about-hero__canvas canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.about-hero__sphere-tooltip {
  position: absolute;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.15s ease;
  background: rgba(15,14,13,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.9);
  max-width: 200px;
  line-height: 1.4;
  white-space: normal;
}

.about-hero__sphere-tooltip.visible {
  opacity: 1;
}

.about-hero__sphere-legend {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1.25rem;
  align-items: center;
  pointer-events: none;
}

.about-hero__sphere-legend-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.625rem;
  color: rgba(15,14,13,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-hero__sphere-legend-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .about-hero__grid {
    grid-template-columns: 1fr;
  }
  .about-hero__canvas {
    max-width: 100%;
    width: 100%;
    justify-self: center;
  }
  .about-hero__sphere-legend {
    gap: 0.75rem;
  }
  .about-hero__sphere-legend-item {
    font-size: 0.5625rem;
  }
}

@media (max-width: 480px) {
  .about-hero__sphere-legend {
    gap: 0.5rem;
  }
}

/* --- Bio Split --- */
.bio {
  padding: var(--sp-9) 0;
}

.bio__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-8);
  align-items: start;
}

.bio__sticky {
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-6));
}

.bio__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bio__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bio__photo:hover .bio__photo-img {
  transform: scale(1.03);
}

.bio__content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.bio__content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.bio__content p strong {
  color: var(--text);
  font-weight: 500;
}

.bio__content .bio__highlight {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .bio__grid {
    grid-template-columns: 1fr;
  }
  .bio__sticky {
    position: static;
  }
  .bio__photo {
    aspect-ratio: 1;
    max-width: 300px;
  }
}

/* --- Values Arena --- */
.values {
  padding: var(--sp-9) 0;
}

.values__header {
  margin-bottom: var(--sp-8);
}

.values__arena {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  align-items: start;
}

/* ── FEATURED PANEL ── */
.values__featured {
  position: sticky;
  top: calc(var(--nav-h, 72px) + var(--sp-5));
  background: #0d0b09;
  border-radius: 20px;
  padding: var(--sp-8);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.values__featured:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.values__featured::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212,98,42,0.15) 0%, transparent 70%);
  top: -80px;
  right: -80px;
  pointer-events: none;
  border-radius: 50%;
}

.values__featured-inner {
  position: relative;
  z-index: 1;
  flex: 1;
}

.values__featured--transitioning .values__featured-inner {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.values__featured:not(.values__featured--transitioning) .values__featured-inner {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.values__featured-icon {
  font-size: 2rem;
  margin-bottom: var(--sp-4);
  color: #d4622a;
  line-height: 1;
}

.values__featured-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}

.values__featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  color: white;
  line-height: 1.2;
  margin-bottom: var(--sp-4);
  letter-spacing: -0.02em;
}

.values__featured-body {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--sp-5);
}

.values__featured-proof {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #d4622a;
  letter-spacing: 0.04em;
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Progress bar */
.values__featured-progress {
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  margin-top: var(--sp-5);
  overflow: hidden;
  flex-shrink: 0;
}

.values__featured-progress-bar {
  height: 100%;
  width: 0%;
  background: #d4622a;
  border-radius: 2px;
}

/* ── GRID CARDS ── */
.values__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.values__card {
  padding: var(--sp-5);
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border, rgba(15,14,13,0.06));
  border-radius: 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 280ms ease,
              border-color 280ms ease,
              background 280ms ease;
}

.values__card--active {
  border-color: rgba(212,98,42,0.35);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 20px rgba(212,98,42,0.08);
}

.values__card--active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #d4622a;
  border-radius: 3px 0 0 3px;
}

.values__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
  border-color: rgba(212,98,42,0.3);
  background: rgba(255,255,255,0.95);
}

.values__card-icon {
  font-size: 1.125rem;
  margin-bottom: var(--sp-3);
  color: var(--text-muted);
  transition: color 280ms ease, transform 280ms ease;
}

.values__card:hover .values__card-icon,
.values__card--active .values__card-icon {
  color: #d4622a;
  transform: scale(1.15);
}

.values__card-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: var(--sp-2);
}

.values__card-preview {
  font-size: 0.75rem;
  color: rgba(15,14,13,0.42);
  line-height: 1.55;
  margin-top: 0.375rem;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 250ms ease;
}

.values__card:hover .values__card-preview,
.values__card--active .values__card-preview {
  color: rgba(15,14,13,0.62);
}

.values__card-hover-line {
  font-size: 0.6875rem;
  color: #d4622a;
  font-weight: 500;
  letter-spacing: 0.02em;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 300ms ease,
              opacity 250ms ease 50ms;
  line-height: 1.4;
}

.values__card:hover .values__card-hover-line,
.values__card--active .values__card-hover-line {
  max-height: 60px;
  opacity: 1;
}

/* Mobile — stack layout */
@media (max-width: 768px) {
  .values__arena {
    grid-template-columns: 1fr;
  }
  .values__featured {
    position: static;
    min-height: 300px;
  }
  .values__grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

/* --- Capabilities Section --- */
.skills {
  padding: var(--sp-9) 0;
}

.skills__header {
  margin-bottom: var(--sp-7);
}

/* Filter tabs */
.skills__filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: var(--sp-7);
}

.skills__filter {
  padding: 0.5rem 1.125rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--border, rgba(15,14,13,0.08));
  border-radius: 100px;
  cursor: pointer;
  transition: all 220ms cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.skills__filter:hover {
  background: rgba(255,255,255,0.9);
  border-color: rgba(15,14,13,0.15);
  color: var(--text);
}

.skills__filter--active {
  background: #0f0e0d;
  border-color: #0f0e0d;
  color: white;
}

.skills__filter--active:hover {
  background: #1a1918;
  border-color: #1a1918;
  color: white;
}

.skills__filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  margin-left: 0.375rem;
  font-size: 0.625rem;
  font-weight: 600;
  border-radius: 100px;
  background: rgba(15,14,13,0.08);
  color: rgba(15,14,13,0.5);
  transition: background 220ms ease, color 220ms ease;
  line-height: 1;
}

.skills__filter--active .skills__filter-count {
  background: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}

.skills__filter:hover:not(.skills__filter--active) .skills__filter-count {
  background: rgba(15,14,13,0.12);
  color: rgba(15,14,13,0.7);
}

/* Bento grid */
.skills__bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  align-items: start;
}

/* Individual card */
.skills__item {
  padding: var(--sp-5);
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border, rgba(15,14,13,0.06));
  border-radius: 16px;
  cursor: default;
  position: relative;
  overflow: hidden;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 280ms ease,
              border-color 280ms ease,
              opacity 300ms ease,
              background 280ms ease;
}

.skills__item[data-size="wide"] {
  grid-column: span 2;
}

.skills__item[data-size="tall"] {
  grid-row: span 2;
}

/* Dimmed state when a filter is active */
.skills__item--dimmed {
  opacity: 0.2;
  transform: scale(0.98);
}

/* Highlighted state */
.skills__item--highlighted {
  border-color: rgba(212,98,42,0.2);
}

/* Hover */
.skills__item:not(.skills__item--dimmed):hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.07);
  border-color: rgba(212,98,42,0.3);
  background: rgba(255,255,255,0.95);
}

.skills__item:not(.skills__item--dimmed):hover::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #d4622a;
  border-radius: 3px 0 0 3px;
}

/* Chevron arrow appears bottom-right on hover */
.skills__item::after {
  content: '\2192';
  position: absolute;
  bottom: var(--sp-4, 1.25rem);
  right: var(--sp-4, 1.25rem);
  font-size: 0.75rem;
  color: #d4622a;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 220ms ease,
              transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.skills__item:not(.skills__item--dimmed):hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Card content */
.skills__item-top {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.skills__item-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #d4622a;
  text-transform: uppercase;
}

.skills__item-name {
  font-family: var(--font-display, 'Clash Display', sans-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
  display: block;
}

.skills__item-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0.25rem 0 0;
}

/* Proof line — hidden at rest, slides up on hover */
.skills__item-proof {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.875rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(15,14,13,0.06);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 300ms ease,
              opacity 250ms ease 50ms,
              margin-top 300ms ease,
              padding-top 300ms ease;
}

.skills__item:not(.skills__item--dimmed):hover .skills__item-proof {
  max-height: 40px;
  opacity: 1;
}

.skills__item-metric {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  color: rgba(15,14,13,0.5);
  line-height: 1.4;
}

.skills__item-stat {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #d4622a;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Mobile */
@media (max-width: 900px) {
  .skills__bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .skills__item[data-size="wide"] {
    grid-column: span 2;
  }
}

@media (max-width: 580px) {
  .skills__bento {
    grid-template-columns: 1fr;
  }
  .skills__item[data-size="wide"],
  .skills__item[data-size="tall"] {
    grid-column: span 1;
    grid-row: span 1;
  }
  .skills__filters {
    gap: 0.375rem;
  }
  .skills__filter {
    font-size: 0.75rem;
    padding: 0.4rem 0.875rem;
  }
}

/* --- Dual Role (Flip Cards) --- */
.dual {
  padding: var(--sp-9) 0;
}

.dual__header-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

.dual__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
}

/* Flip container */
.dual__flip {
  perspective: 1200px;
  cursor: pointer;
  min-height: 420px;
}

.dual__flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.dual__flip:hover .dual__flip-inner,
.dual__flip:focus .dual__flip-inner {
  transform: rotateY(180deg);
}

/* Both faces */
.dual__face {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 20px;
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
}

/* Front faces */
.dual__face--front {
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border, rgba(15,14,13,0.07));
  backdrop-filter: blur(12px);
}

.dual__face--cto {
  border-top: 3px solid #d4622a;
}

.dual__face--founder {
  border-top: 3px solid #d4622a;
}

/* Back faces */
.dual__face--back {
  transform: rotateY(180deg);
}

.dual__face--cto-back {
  background: linear-gradient(135deg, #1a1410 0%, #0d0b09 100%);
  border: 1px solid rgba(212,98,42,0.2);
}

.dual__face--founder-back {
  background: linear-gradient(135deg, #160f44 0%, #0d0b09 100%);
  border: 1px solid rgba(212,98,42,0.2);
}

/* Face content */
.dual__face-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-4);
}

.dual__face-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.dual__face-hint {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  color: rgba(15,14,13,0.35);
  font-style: italic;
  transition: opacity 200ms ease;
}

.dual__flip:hover .dual__face-hint {
  opacity: 0;
}

.dual__face-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: var(--sp-3);
  letter-spacing: -0.02em;
}

.dual__face-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
}

.dual__face-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.dual__face-list li {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}

.dual__face-list li::before {
  content: '\00B7';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Back face content */
.dual__face-impact-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-top: var(--sp-5);
  flex: 1;
}

.dual__impact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.dual__impact-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #d4622a;
  line-height: 1;
  flex-shrink: 0;
  min-width: 3.5rem;
}

.dual__impact-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  padding-top: 0.2rem;
}

/* Shared metrics bar */
.dual__metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  padding: var(--sp-6);
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--border, rgba(15,14,13,0.06));
  border-radius: 16px;
  backdrop-filter: blur(12px);
  flex-wrap: wrap;
}

.dual__metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}

.dual__metric-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
}

.dual__metric-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.dual__metric-sep {
  width: 1px;
  height: 40px;
  background: var(--border, rgba(15,14,13,0.08));
  flex-shrink: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .dual__grid {
    grid-template-columns: 1fr;
  }

  .dual__flip,
  .dual__flip-inner {
    min-height: 480px;
  }

  .dual__flip:hover .dual__flip-inner {
    transform: none;
  }

  .dual__flip.is-flipped .dual__flip-inner {
    transform: rotateY(180deg);
  }

  .dual__face-hint {
    display: none;
  }

  .dual__metric-sep {
    display: none;
  }

  .dual__metrics {
    gap: var(--sp-5);
  }
}

/* --- Career Arc Timeline --- */
.timeline-arc {
  padding: var(--sp-10) 0;
  overflow: visible;
}

.timeline-arc__track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  max-width: 900px;
  margin: 0 auto;
  overflow: visible;
}

.timeline-arc__track::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, var(--border) 10%, var(--border) 90%, transparent 100%);
  transform: translateX(-50%);
}

.timeline-arc__item {
  position: relative;
  width: 45%;
  padding: var(--sp-6);
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  border-left: 3px solid transparent;
  overflow: visible;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
              background 280ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 280ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 280ms cubic-bezier(0.16, 1, 0.3, 1),
              border-left-color 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-arc__item[data-side="left"] {
  align-self: flex-start;
  margin-left: 0;
}

.timeline-arc__item[data-side="right"] {
  align-self: flex-end;
  margin-right: 0;
}

.timeline-arc__item:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.95);
  border-color: rgba(212,98,42,0.25);
  border-left: 3px solid #d4622a;
  box-shadow: 0 16px 48px rgba(0,0,0,0.09);
}

.timeline-arc__ghost {
  position: absolute;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(15,14,13,0.04);
  line-height: 1;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  transition: color 0.4s ease;
}

.timeline-arc__item[data-side="left"] .timeline-arc__ghost {
  right: -1rem;
}

.timeline-arc__item[data-side="right"] .timeline-arc__ghost {
  left: -1rem;
}

.timeline-arc__item:hover .timeline-arc__ghost {
  color: rgba(212,98,42,0.09);
}

.timeline-arc__dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border-hover);
  top: 50%;
  transform: translateY(-50%);
  transition: background var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out);
  z-index: 1;
}

.timeline-arc__item[data-side="left"] .timeline-arc__dot {
  right: -6.5%;
}

.timeline-arc__item[data-side="right"] .timeline-arc__dot {
  left: -6.5%;
}

.timeline-arc__dot--active {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}

.timeline-arc__item:hover .timeline-arc__dot {
  background: var(--accent);
  border-color: var(--accent);
}

.timeline-arc__label {
  margin-bottom: var(--sp-3);
}

.timeline-arc__heading {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}

.timeline-arc__body {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .timeline-arc__track::before {
    left: 1.5rem;
  }
  .timeline-arc__item {
    width: 100%;
    align-self: unset !important;
    padding-left: var(--sp-7);
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-left: 3px solid transparent;
  }
  .timeline-arc__item.is-expanded {
    border-left-color: #d4622a;
    background: rgba(255,255,255,0.95);
  }
  .timeline-arc__ghost {
    right: 1rem !important;
    left: auto !important;
    font-size: 3rem;
    top: 1rem;
    transform: none;
  }
  .timeline-arc__dot {
    left: -2rem !important;
    right: auto !important;
  }
}

/* Desktop context panel */
.timeline-arc__context {
  position: absolute;
  top: 0;
  transform: translateX(16px);
  width: 320px;
  max-width: 320px;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease 60ms,
              transform 320ms cubic-bezier(0.16, 1, 0.3, 1) 60ms;
  padding: 1.5rem 1.75rem;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(15,14,13,0.06);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

/*
  The timeline track is max-width:900px centred in the container.
  Left cards sit at 0–45%, right cards at 55–100%.
  Context panels appear in the opposite half of the track.
  Positioned absolute relative to .timeline-arc__item,
  but sized/offset to land in the empty track half.
*/
.timeline-arc__item[data-side="left"] .timeline-arc__context {
  /* 122% = starts at track centre line, +2rem gap past it */
  left: calc(122% + 2rem);
  right: auto;
  max-width: 320px;
  transform: translateX(16px);
}

.timeline-arc__item[data-side="right"] .timeline-arc__context {
  /* Mirror: 122% from right edge puts panel in left half */
  right: calc(122% + 2rem);
  left: auto;
  max-width: 320px;
  min-width: 260px;
  text-align: left;
  transform: translateX(-16px);
}

.timeline-arc__item:hover .timeline-arc__context {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.timeline-arc__context-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.775rem;
  color: rgba(15,14,13,0.6);
  line-height: 1.6;
}

.timeline-arc__item[data-side="right"] .timeline-arc__context-item {
  flex-direction: row;
  text-align: left;
}

.timeline-arc__context-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d4622a;
  margin-bottom: 0.875rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid rgba(15,14,13,0.06);
}

.timeline-arc__context-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d4622a;
  flex-shrink: 0;
  margin-top: 0.45rem;
}

/* Mobile expand */
.timeline-arc__expand {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 400ms cubic-bezier(0.16, 1, 0.3, 1),
              opacity 200ms ease 100ms;
}

.timeline-arc__expand.is-open {
  max-height: 300px;
  opacity: 1;
}

.timeline-arc__expand-inner {
  border-top: 1px solid rgba(15,14,13,0.06);
  padding-top: 1rem;
  margin-top: 1rem;
}

.timeline-arc__expand-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: rgba(15,14,13,0.6);
  line-height: 1.5;
}

.timeline-arc__expand-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d4622a;
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.timeline-arc__expand-toggle {
  display: none;
  margin-top: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #d4622a;
  letter-spacing: 0.04em;
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
  padding: 0;
}

/* Show toggle + hide context panel on mobile */
@media (max-width: 768px) {
  .timeline-arc__context {
    display: none;
  }
  .timeline-arc__expand-toggle {
    display: block;
  }
}

/* Hide expand on desktop */
@media (min-width: 769px) {
  .timeline-arc__expand {
    display: none;
  }
}

/* --- What Drives Me --- */
.drives-me__quote {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3vw, 2.25rem);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  letter-spacing: -0.01em;
  border: none;
  margin: 0 0 var(--sp-7);
  padding: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  quotes: none;
}

.drives-me__highlight {
  font-style: normal;
  font-weight: 300;
}

.drives-me__highlight--accent {
  font-weight: 600;
  color: #d4622a;
}

.drives-me__highlight--white {
  font-weight: 600;
  color: rgba(255,255,255,0.95);
}

.drives-me__highlight--italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
}

.drives-me__highlight--blue {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  color: #4a7fb5;
}

.drives-me__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.drives-me__detail {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

.drives-me__sep {
  color: rgba(255,255,255,0.15);
}

/* --- Number Callout ($735K) --- */
.number-callout {
  padding: var(--sp-10) 0;
}

.number-callout__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4.5rem, 13vw, 11rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: var(--sp-4);
}

.number-callout__prefix,
.number-callout__suffix {
  font-weight: 700;
}

.number-callout__label {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: var(--sp-6);
}

.number-callout__body {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto var(--sp-6);
}

.number-callout__footnote {
  font-size: 0.8125rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

/* --- Abnaasi Spotlight --- */

.abnaasi-spotlight__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-8);
  align-items: start;
}

.abnaasi-spotlight__left {
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-6));
}

.abnaasi-spotlight__link {
  display: inline-block;
  margin-top: var(--sp-6);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: border-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}

.abnaasi-spotlight__link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.abnaasi-spotlight__wordmark {
  margin-top: var(--sp-7);
  width: 100%;
  max-width: 220px;
}

.abnaasi-spotlight__wordmark-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.12;
  filter: grayscale(100%) brightness(0);
  transition: opacity 400ms ease;
}

.abnaasi-spotlight:hover .abnaasi-spotlight__wordmark-img {
  opacity: 0.18;
}

.abnaasi-spotlight__right {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.abnaasi-spotlight__pattern {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: rgba(15,14,13,0.4);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid rgba(15,14,13,0.06);
}

.abnaasi-spotlight__card {
  padding: var(--sp-6);
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  cursor: default;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out),
              background var(--dur) var(--ease-out);
}

.abnaasi-spotlight__card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #d4622a;
  border-radius: 3px 0 0 3px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.abnaasi-spotlight__card:hover::before {
  transform: scaleY(1);
}

.abnaasi-spotlight__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  border-color: rgba(212,98,42,0.2);
  background: rgba(255,255,255,0.98);
}

.abnaasi-spotlight__card--featured {
  background: rgba(255,255,255,0.95);
  border-color: rgba(212,98,42,0.12);
}

.abnaasi-spotlight__card--featured .abnaasi-spotlight__stat-num {
  font-size: 2.5rem;
}

.abnaasi-spotlight__card--featured .abnaasi-spotlight__card-title {
  font-size: 1.25rem;
}


.abnaasi-spotlight__card-cat {
  color: var(--accent);
  margin-bottom: var(--sp-3);
}

.abnaasi-spotlight__card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}

.abnaasi-spotlight__card-body {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}

.abnaasi-spotlight__card-stat {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  border-top: 1px solid var(--border);
  padding-top: var(--sp-4);
}

.abnaasi-spotlight__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.abnaasi-spotlight__stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .abnaasi-spotlight__grid {
    grid-template-columns: 1fr;
  }
  .abnaasi-spotlight__left {
    position: static;
  }
}
