/* =========================
   Portfolio carousel (morph + persistent progress)
   - page-specific styles only
   ========================= */

.hero--portfolio{
  padding: 72px 0 54px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero--portfolio::before{
  content:"";
  position:absolute;
  inset:-180px;
  background:
    radial-gradient(circle at 18% 22%, rgba(231,198,255,.35), transparent 45%),
    radial-gradient(circle at 85% 38%, rgba(255,255,255,.10), transparent 44%),
    radial-gradient(circle at 55% 90%, rgba(231,198,255,.22), transparent 46%);
  filter: blur(2px);
  opacity:.95;
  pointer-events:none;
}

.pHead{
  position: relative;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.pHead__kicker{
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
  color: rgba(255,255,255,.72);
}
.pHead__title{
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.9px;
  margin-top: 10px;
}

.pHead__sub{
  margin-top: 12px;
  max-width: 72ch;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.55;
}

@media (max-width: 720px){
  .pHead__sub{
    font-size: 15px;
    line-height: 1.6;
  }
}

.pCarousel{
  position: relative;
  margin-top: 18px;
  --p-interval: 6500ms;
}

.pCarousel__viewport{
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.14);
  background: #000;
  box-shadow: var(--shadow);
}

.pCarousel__track{
  display:flex;
  width: 100%;
  transform: translate3d(0,0,0);
  transition: transform 820ms cubic-bezier(.22,.85,.24,1);
  will-change: transform;
}

/* Mobile/tablet: manual horizontal scroll (like Experience) */
@media (max-width: 899px){
  .pCarousel__viewport{
    --p-slide-w: clamp(280px, 86vw, 520px);

    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;

    /* Full-bleed like the experience rail so side slides can peek */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    /* Make the scroll container the flex rail */
    display: flex;
    gap: 14px;

    /* Center first/last slide just like .expRail */
    padding-inline: max(12px, calc(50vw - (var(--p-slide-w) / 2)));
    scroll-padding-inline: max(12px, calc(50vw - (var(--p-slide-w) / 2)));

    border: 0;
    background: transparent;
    box-shadow: none;

    /* Remove viewport rounding/masking so side slides aren't clipped */
    border-radius: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .pCarousel__viewport::-webkit-scrollbar{ display:none; }

  /* Let slides behave as direct children of the scroll container */
  .pCarousel__track{ display: contents; }

  .pSlide{
    flex: 0 0 var(--p-slide-w) !important;
    scroll-snap-align: center;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    background: transparent;
    box-shadow: var(--shadow);
    transition:
      opacity 260ms ease,
      filter 260ms ease,
      box-shadow 260ms ease;
    will-change: opacity;
  }

  .pSlide.is-active{
    opacity: 1;
    filter: none;
    box-shadow: var(--shadow);
  }

  .pSlide:not(.is-active){
    opacity: .86;
    filter: saturate(.92) brightness(.92);
  }
}

.pSlide{
  flex: 0 0 100%;
  position: relative;
  height: clamp(420px, 58vh, 560px);
  outline: none;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 900px){
  .pSlide{ height: clamp(520px, 62vh, 640px); }
}
@media (max-width: 720px){
  .pSlide{ height: min(68vh, 560px); }
}

/* Desktop: show neighboring slides (Apple-style "peek") */
@media (min-width: 900px){
  .pCarousel__viewport{
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .pCarousel__track{
    gap: 26px;
  }
  .pSlide{
    flex: 0 0 min(920px, 78vw);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    background: transparent;
    box-shadow: var(--shadow);
    transition:
      transform 820ms cubic-bezier(.22,.85,.24,1),
      opacity 820ms ease,
      filter 820ms ease,
      box-shadow 520ms ease;
    will-change: transform, opacity;
  }
  .pSlide.is-active{
    transform: scale(1);
    opacity: 1;
    filter: none;
    box-shadow: var(--shadow);
  }
  .pSlide.is-prev,
  .pSlide.is-next{
    transform: scale(.92);
    opacity: .78;
    filter: saturate(.88) brightness(.88);
  }
  .pSlide:not(.is-active) .pSlide__overlay{
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
  }
  .pSlide__overlay{
    transition: opacity 520ms ease, transform 520ms cubic-bezier(.22,.85,.24,1);
    will-change: transform, opacity;
  }
}



/* MEDIA WRAP: animates from full → corner/bottom-half */
.pSlide__mediaWrap{
  position:absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  transform: translateZ(0);
  transition:
    inset 760ms cubic-bezier(.22,.85,.24,1),
    width 760ms cubic-bezier(.22,.85,.24,1),
    height 760ms cubic-bezier(.22,.85,.24,1),
    border-radius 760ms cubic-bezier(.22,.85,.24,1),
    filter 520ms ease;
  will-change: inset, width, height;
  -webkit-mask-image: -webkit-radial-gradient(white, white);
  mask-image: radial-gradient(white, white);
}

.pSlide__mediaFallback{
  position:absolute;
  inset:0;
  background-image:
    var(--thumb, none),
    radial-gradient(circle at 22% 28%, rgba(231,198,255,.20), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.9));
  background-size: cover, cover, cover;
  background-position: center, center, center;
  filter: contrast(1.05) brightness(.92);
  transform: scale(1.01);
  opacity: 1;
  transition: opacity 520ms ease;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
}

.pSlide__video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  opacity: 0;
  filter: contrast(1.05) brightness(.92);
  transition: opacity 520ms ease;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
}

/* Center crop for 4:5 aspect ratio videos (Xbox) */
.pSlide__video--crop-center{
  object-fit: cover;
  object-position: center center;
}

/* Dark gradient overlay for readability */
.pSlide::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.0) 0%, rgba(0,0,0,.58) 72%, rgba(0,0,0,.78) 100%);
  opacity: .95;
  pointer-events:none;
  z-index: 1;
}

.pSlide__overlay{
  position:absolute;
  inset: 0;
  padding: 18px;
  display:grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  z-index: 2;
  transition: opacity 520ms ease, transform 520ms cubic-bezier(.22,.85,.24,1);
  will-change: transform, opacity;
}

.pSlide__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 6;
}

.pSlide__eyebrow{
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.74);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
}

/* Learn more link */
.pSlide__learn{
  touch-action: manipulation;
  position: relative;
  z-index: 7;
  border: 1px solid rgba(231,198,255,.55);
  background: rgba(0,0,0,.28);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  white-space: nowrap;
}
.pSlide__learn:hover{
  border-color: rgba(231,198,255,.95);
  box-shadow: 0 0 0 4px rgba(231,198,255,.22);
  transform: translateY(-1px);
  background: rgba(231,198,255,.16);
}
.pSlide__learn:focus-visible{
  outline: 3px solid rgba(231,198,255,.65);
  outline-offset: 3px;
}

/* Content areas */
.pSlide__main{
  position: relative;
  display:flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
}

.pSlide__summary{
  transition: opacity 520ms ease, transform 520ms cubic-bezier(.22,.85,.24,1);
  will-change: transform, opacity;
}

.pSlide__title{
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.8px;
  margin: 0;
  max-width: 22ch;
}
.pSlide__sub{
  margin: 10px 0 0;
  color: rgba(255,255,255,.80);
  line-height: 1.55;
  max-width: 70ch;
  font-size: 16px;
}

.pSlide__metaRow{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
  transition: opacity 520ms ease, transform 520ms cubic-bezier(.22,.85,.24,1);
  will-change: transform, opacity;
}
.pChip{
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.24);
  color: rgba(255,255,255,.84);
  backdrop-filter: blur(10px);
}

/* Bottom chrome: segments + play/pause */
.pCarousel__chrome{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 3;
}

.pChromePill{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(14px);
}

.pCtrl{
  touch-action: manipulation;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.20);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor: pointer;
  transition: box-shadow .2s ease, border-color .2s ease, transform .15s ease;
}
.pCtrl:hover{
  border-color: rgba(255,255,255,.30);
  box-shadow: 0 0 0 4px rgba(255,255,255,.08);
  transform: translateY(-1px);
}
.pCtrl:focus-visible{
  outline: 3px solid rgba(231,198,255,.55);
  outline-offset: 3px;
}

.pIcon{
  width: 18px;
  height: 18px;
  fill: #fff;
  opacity: .92;
}
[data-playing="true"] .pIcon--play{ display:none; }
[data-playing="false"] .pIcon--pause{ display:none; }

.pDots{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 6px;
  width: auto;
}
@media (max-width: 720px){
  .pDots{ gap: 5px; }
}

.pDot{
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
  transition: width 320ms cubic-bezier(.22,.85,.24,1);
  touch-action: manipulation;
}

/* Track morphs from dot -> bar */
.pDot__track{
  position:absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.40);
  overflow: hidden;
  transition:
    width 320ms cubic-bezier(.22,.85,.24,1),
    background 200ms ease;
}

.pDot__fill{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--accent);
  border-radius: 999px;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
  opacity: 0;
  transition: opacity 180ms ease;
}

.pDot.is-active{
  width: 58px;
}
.pDot.is-active .pDot__track{
  width: calc(100% - 8px);
  height: 8px;
  background: rgba(255,255,255,.18);
}
.pDot.is-active .pDot__fill{
  opacity: 1;
}

.pDot:focus-visible{
  outline: 3px solid rgba(231,198,255,.65);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  .pCarousel__track,
  .pSlide__mediaWrap,
  .pSlide__summary,
  .pSlide__metaRow,
  .pSlide__learn{
  touch-action: manipulation;
    transition: none !important;
  }
}


/* =========================
   Experience timeline (manual horizontal scroll)
   ========================= */

.expBand{
  border-top: 1px solid rgba(0,0,0,.08);
}

.expHead{
  align-items: flex-end;
  gap: 16px;
}

.expTitle{
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.6px;
  text-transform: none;
  margin-top: 10px;
}

.expSub{
  margin: 10px 0 0;
  max-width: 72ch;
}

.expNav{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(17,17,20,.02);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}

.expNavBtn{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.70);
  color: rgba(17,17,20,.86);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.expNavBtn svg{ width: 18px; height: 18px; }
.expNavBtn:hover{
  border-color: rgba(231,198,255,.95);
  box-shadow: 0 0 0 5px rgba(231,198,255,.26);
  transform: translateY(-1px);
}
.expNavBtn:disabled{
  opacity: .45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@media (max-width: 720px){
  .expHead{ align-items: center; }
  .expNav{
    width: auto;
    justify-content: flex-end;
    padding: 8px 10px;
    margin-left: auto;
  }
  .expNavBtn{ width: 40px; height: 40px; }
}

.expRail{
  margin-top: 18px;
  display:flex;
  gap: 16px;
  overflow-x: auto;
  padding: 12px 0 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;

  /* full-bleed (like the carousel above) */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  /* start with the first card centered */
  --exp-card-w: 320px;
  padding-inline: max(12px, calc(50vw - (var(--exp-card-w) / 2)));
  scroll-padding-inline: max(12px, calc(50vw - (var(--exp-card-w) / 2)));

  /* soft edge fades */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.expRail::-webkit-scrollbar{ display:none; }

.expRail.is-dragging{
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.expRail.is-dragging,
.expRail.is-dragging *{
  user-select: none !important;
  -webkit-user-select: none !important;
}


.expCard{
  flex: 0 0 auto;
  width: clamp(260px, 24vw, 330px);
  height: clamp(420px, 60vh, 560px);
  scroll-snap-align: center;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,.10);
  background:
    radial-gradient(circle at 18% 20%, rgba(231,198,255,.20), transparent 56%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(244,244,246,.92));
  box-shadow: 0 18px 44px rgba(0,0,0,.10);
  padding: 16px 16px 14px;
  display:flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;

  /* prevents accidental text highlighting during drag */
  user-select: none;
  -webkit-user-select: none;
}

.expCard:hover{
  transform: translateY(-2px);
  border-color: rgba(231,198,255,.70);
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
}

.expCard__role{
  font-weight: 900;
  letter-spacing: -0.2px;
  font-size: 16px;
  color: rgba(17,17,20,.80);
}
.expCard__company{
  margin-top: 8px;
  font-size: 24px;
  letter-spacing: -0.6px;
  color: rgba(17,17,20,.92);
  line-height: 1.05;
}
.expCard__meta{
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(17,17,20,.56);
}

.expCard__points{
  margin: 14px 0 0;
  padding-left: 18px;
  display:flex;
  flex-direction: column;
  gap: 10px;
  color: rgba(17,17,20,.74);
  line-height: 1.55;
  font-size: 14px;
}
.expCard__points li{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.expCard__bottom{
  margin-top: auto;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
}

.expCard__tag{
  font-size: 12px;
  color: rgba(17,17,20,.70);
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.66);
  border-radius: 999px;
  padding: 8px 10px;
  max-width: 22ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.expIcon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(231,198,255,.22);
  color: rgba(17,17,20,.90);
}
.expIcon svg{
  width: 22px;
  height: 22px;
}

.expIcon--emoji{
  font-size: 18px;
  line-height: 1;
}


@media (max-width: 720px){
  .expCard{ width: min(84vw, 340px); }
  .expRail{ -webkit-mask-image: none; mask-image: none; }
}


/* =========================
   Tools physics bubble
   ========================= */

.toolsBand{
  padding: 78px 0 86px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(900px 520px at 12% 0%, rgba(231,198,255,.12), transparent 60%),
    radial-gradient(720px 520px at 92% 18%, rgba(138,180,255,.12), transparent 60%),
    linear-gradient(180deg, #0b0b0d 0%, #08080a 100%);
}

.toolsHead{
  display:flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.toolsTitle{
  margin: 0;
  font-size: clamp(30px, 3.2vw, 44px);
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.92);
}

.toolsHint{
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.62);
  letter-spacing: 0.02em;
}

.toolsHint__glyph{
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
  opacity: 0.9;
}

.toolsHint__text{
  white-space: nowrap;
}

.toolsSub{
  margin: 0;
  max-width: 56ch;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
  font-size: 15px;
}

@media (max-width: 900px){
  .toolsHead{ flex-direction: column; align-items: flex-start; }
  .toolsSub{ max-width: 68ch; }
}

.toolsStage{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 28px;
  padding: 0 18px;
}

.toolsStage__inner{
  width: min(860px, 94vw);
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  position: relative;
  border-radius: 28px;
  background:
    radial-gradient(60% 60% at 50% 42%, rgba(255,255,255,.06), rgba(255,255,255,.02) 70%, transparent 100%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  box-shadow: 0 34px 90px rgba(0,0,0,.45);
}

#toolsCanvas{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display:block;
  will-change: contents;
  transform: translateZ(0); /* Force GPU acceleration on mobile */
  border-radius: 28px;
  z-index: 1;

  /* Let the page scroll naturally on touch; we still read pointer input. */
  touch-action: pan-y;
}

.toolsOverlay{
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(245,245,247,.98);
  box-shadow: 0 20px 40px rgba(0,0,0,.28);
  transform: translate(-50%, -50%) scale(.94);
  opacity: 0;
  transition: opacity 180ms ease, transform 220ms ease;
  pointer-events: none;
  visibility: hidden;
  z-index: 2;
}

.toolsOverlay.is-active{
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
  visibility: visible;
}

.toolsOverlay__content{
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: clamp(14px, 3.5vw, 22px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  pointer-events: none;
}

.toolsOverlay.is-active .toolsOverlay__content{
  pointer-events: auto;
}

.toolsOverlay__logoLink{
  display: block;
  align-self: stretch;
}

.toolsOverlay__logoLink:hover .toolsOverlay__logo{
  opacity: 0.85;
}

.toolsOverlay__logo{
  display: block;
  width: clamp(52px, 38%, 128px);
  height: auto;
  max-width: 64%;
  margin-left: auto;
  margin-right: auto;
  transition: opacity 0.2s ease;
}

.toolsOverlay__title{
  font-weight: 700;
  color: #111114;
  font-size: clamp(12px, 2.6vw, 16px);
  letter-spacing: -0.01em;
}

.toolsOverlay__chips{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 96%;
}

.toolsOverlay__chip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 calc(50% - 8px);
  min-width: 0;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: clamp(10px, 2.1vw, 12px);
  font-weight: 600;
  color: #111114;
  background: rgba(17,17,20,.06);
  border: 1px solid rgba(17,17,20,.12);
  text-decoration: none;
  order: 1;
}

.toolsOverlay__chip--link{
  background: rgba(17,17,20,.12);
  flex: 0 0 auto;
  width: calc(100% - 32px);
  margin: 0 16px;
  order: 2;
}

.toolsOverlay__chip--link:hover{
  background: rgba(17,17,20,.18);
}

/* Utility (if not globally defined) */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}


/* ===== Experience rail: desktop snap controlled by JS (slower, more fluid) ===== */
@media (hover: hover) and (pointer: fine){
  .expRail{
    scroll-snap-type: none;
  }
  .expCard{
    scroll-snap-align: none;
  }
}
