/* ── ABOUT HERO ── */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
  min-height: 90vh;
  margin-top: 73px;
  /* offset fixed nav */
}

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

.hero-left {
  padding: 72px 48px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '(02)';
  color: var(--muted);
}

.hero-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 9vw, 140px);
  line-height: .85;
  letter-spacing: -2px;
}

.hero-name .outline {
  -webkit-text-stroke: 1px rgba(106, 170, 248, .5);
  color: transparent;
}

.hero-name .accent {
  color: var(--accent);
}

.hero-title-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  padding: 12px 20px;
  margin-top: 32px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  width: fit-content;
}

.hero-title-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(47, 125, 225, .5);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(47, 125, 225, 0);
  }
}

.hero-left-bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-big-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.stat-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  line-height: 1;
  color: var(--text);
}

.stat-n sup {
  font-size: 32px;
  color: var(--accent);
}

.stat-l {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 120px;
  line-height: 1.5;
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--bg2);
  display: flex;
  align-items: flex-end;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 10vw, 160px);
  letter-spacing: 6px;
  color: rgba(47, 125, 225, .06);
  user-select: none;
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 11, 20, .95) 0%, transparent 50%);
}

.photo-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.photo-caption {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.photo-location {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}

.photo-location::before {
  content: '📍';
  font-size: 10px;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47, 125, 225, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 125, 225, .04) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

/* ── STATS BAR ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}

.stat-cell {
  padding: 32px 40px;
  border-right: 1px solid var(--border);
  transition: background .25s;
}

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

.stat-cell:hover {
  background: var(--bg2);
}

.stat-cell .n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 1;
  color: var(--text);
}

.stat-cell .n em {
  color: var(--accent);
  font-style: normal;
}

.stat-cell .l {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ── STORY ── */
.story-section {
  display: grid;
  grid-template-columns: 280px 1fr;
  border-bottom: 1px solid var(--border);
}

.story-sidebar {
  border-right: 1px solid var(--border);
  padding: 48px 32px;
}

.sidebar-label {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.index-item {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  cursor: none;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.index-item::before {
  content: '—';
  color: var(--border);
  font-size: 10px;
}

.index-item:hover,
.index-item.active {
  color: var(--text);
}

.index-item.active::before {
  content: '→';
  color: var(--accent);
}

.story-content {
  padding: 48px 56px;
}

.story-block {
  display: none;
}

.story-block.active {
  display: block;
}

.story-eyebrow {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.story-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.1;
  margin-bottom: 28px;
}

.story-heading em {
  font-style: italic;
  color: var(--muted);
}

.story-body {
  font-size: 15px;
  line-height: 1.95;
  color: var(--muted);
  max-width: 600px;
}

.story-body strong {
  color: var(--text);
}

.story-body p {
  margin-bottom: 20px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 8px;
}

.value-card {
  background: var(--bg);
  padding: 32px 28px;
  transition: background .25s;
}

.value-card:hover {
  background: var(--bg2);
}

.value-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--border);
  margin-bottom: 8px;
}

.value-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}

.value-desc {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
}

.facts-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}

.fact-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}

.fact-row:first-child {
  border-top: 1px solid var(--border);
}

.fact-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: border-color .2s;
}

.fact-row:hover .fact-icon {
  border-color: var(--accent);
}

.fact-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.fact-text strong {
  color: var(--text);
}

/* ── TIMELINE ── */
.timeline-section {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.tl-item {
  position: relative;
  padding: 32px 0 32px 40px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  transition: background .2s;
}

.tl-item:hover {
  background: rgba(47, 125, 225, .02);
}

.tl-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 40px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: 1px solid var(--border);
  transition: background .2s, border-color .2s;
}

.tl-item:hover::before,
.tl-item.current::before {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(47, 125, 225, .15);
}

.tl-item.current::before {
  animation: pulse-dot 2s ease infinite;
}

.tl-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--muted);
  padding-top: 4px;
  transition: color .2s;
}

.tl-item:hover .tl-year,
.tl-item.current .tl-year {
  color: var(--accent);
}

.tl-cat {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.tl-title {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  margin-bottom: 8px;
}

.tl-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

.tl-badge {
  display: inline-block;
  margin-top: 12px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(47, 125, 225, .08);
  color: var(--accent);
  border: 1px solid rgba(47, 125, 225, .2);
  padding: 4px 12px;
}

/* ── SKILLS ── */
/* ── SKILLS ── */
.skills-section {
  border-bottom: 1px solid var(--border);
}

.skills-section-header {
  padding: 48px 48px 0;
  border-bottom: 1px solid var(--border);
}

.skills-section-header .section-header {
  margin-bottom: 0;
}

.section-right {
  text-align: right;
}

.section-sub {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.skills-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.sk-card:first-child {
  grid-column: span 2;
}

.sk-card {
  position: relative;
  height: 380px;
  overflow: hidden;
  cursor: none;
  perspective: 800px;
  background: var(--bg);
}

.sk-card:first-child {
  height: 420px;
}

.sk-tilt {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .08s linear;
  position: relative;
}

.sk-bg {
  position: absolute;
  inset: 0;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.sk-card:hover .sk-bg {
  transform: scale(1.06);
}

/* backgrounds */
.bg-design {
  background: linear-gradient(135deg, #0d0520 0%, #1a0840 60%, #0a0318 100%);
}

.bg-design .shape {
  position: absolute;
  border-radius: 50%;
  opacity: .18;
  animation: float-shape 6s ease-in-out infinite;
}

.bg-design .s1 {
  width: 200px;
  height: 200px;
  background: #a259ff;
  top: -60px;
  right: -40px;
  animation-delay: 0s;
}

.bg-design .s2 {
  width: 120px;
  height: 120px;
  background: #f24e1e;
  bottom: 20px;
  left: 20px;
  animation-delay: 2s;
}

.bg-design .s3 {
  width: 80px;
  height: 80px;
  background: #0acf83;
  top: 40%;
  left: 40%;
  animation-delay: 4s;
}

@keyframes float-shape {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-16px) rotate(12deg);
  }
}

.bg-python {
  background: linear-gradient(135deg, #001a00 0%, #003300 50%, #000d00 100%);
}

.matrix-canvas {
  position: absolute;
  inset: 0;
  opacity: .35;
}

.bg-torch {
  background: linear-gradient(135deg, #1a0500 0%, #3d0f00 50%, #1a0200 100%);
}

.bg-torch .flame {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 200px;
  background: radial-gradient(ellipse at 50% 100%, #ff6f00 0%, #ee4c2c 40%, transparent 75%);
  opacity: .4;
  animation: flicker 1.5s ease-in-out infinite alternate;
}

@keyframes flicker {
  0% {
    opacity: .3;
    transform: translateX(-50%) scaleX(.9);
  }

  100% {
    opacity: .5;
    transform: translateX(-50%) scaleX(1.1);
  }
}

.bg-cv {
  background: linear-gradient(135deg, #00060f 0%, #001a2e 50%, #000510 100%);
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00b4d8, transparent);
  animation: scan 3s linear infinite;
  opacity: .5;
}

@keyframes scan {
  0% {
    top: -2px;
  }

  100% {
    top: 100%;
  }
}

.bg-cv .grid-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 180, 216, .25) 1px, transparent 1px);
  background-size: 24px 24px;
}

.bg-nlp {
  background: linear-gradient(135deg, #080014 0%, #1a0035 50%, #060010 100%);
}

.nlp-words {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.nlp-word {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  color: rgba(123, 97, 255, .2);
  white-space: nowrap;
  animation: word-float linear infinite;
}

@keyframes word-float {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.bg-tf {
  background: linear-gradient(135deg, #0f0800 0%, #2a1800 50%, #0a0500 100%);
}

.tf-canvas {
  position: absolute;
  inset: 0;
  opacity: .4;
}

/* content overlay */
.sk-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(8, 10, 20, .95) 0%, rgba(8, 10, 20, .5) 55%, transparent 100%);
  z-index: 2;
}

.sk-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(4px);
  transition: border-color .3s, background .3s;
}

.sk-card:hover .sk-icon {
  border-color: var(--card-c);
  background: rgba(255, 255, 255, .08);
}

.sk-icon svg {
  width: 22px;
  height: 22px;
}

.sk-cat {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 6px;
}

.sk-name {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(18px, 2vw, 26px);
  margin-bottom: 8px;
  transition: color .2s;
}

.sk-card:hover .sk-name {
  color: var(--card-c);
}

.sk-desc {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(232, 238, 248, .5);
  max-width: 380px;
  margin-bottom: 16px;
}

.sk-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: rgba(255, 255, 255, .04);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  transition: color .3s;
}

.sk-card:hover .sk-num {
  color: rgba(255, 255, 255, .07);
}

.sk-shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(circle 200px at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .06), transparent 70%);
  opacity: 0;
  transition: opacity .3s;
}

.sk-card:hover .sk-shine {
  opacity: 1;
}

/* ── PROGRESS BARS ── */
.sk-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .45s cubic-bezier(.4, 0, .2, 1), opacity .35s;
}

.sk-card:hover .sk-bars {
  max-height: 120px;
  opacity: 1;
}

.sk-bar-top {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(232, 238, 248, .45);
  margin-bottom: 5px;
}

.sk-bar-track {
  height: 2px;
  background: rgba(255, 255, 255, .08);
  position: relative;
  overflow: hidden;
}

.sk-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--c, var(--accent));
  transition: width 1s cubic-bezier(.4, 0, .2, 1);
}

.sk-card:hover .sk-bar-fill {
  width: var(--p);
}

/* ── CTA ── */
.about-cta {
  padding: 80px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-left .label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.cta-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5vw, 80px);
  line-height: .9;
}

.cta-left h2 em {
  -webkit-text-stroke: 1px var(--text);
  color: transparent;
  font-style: normal;
}

/* ── STICKY SIDEBAR ── */
.values-sidebar {
  border-right: 1px solid var(--border);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 32px;
  background: var(--bg);
  z-index: 10;
  position: sticky;
  /* الـ sidebar يفضل ثابت */
  top: 0;
}


.sidebar-top {}

.sidebar-eyebrow {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.sidebar-title {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  line-height: 1.2;
  color: var(--text);
}

.sidebar-title em {
  font-style: italic;
  color: var(--muted);
}

/* nav dots */
.sidebar-nav {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.snav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  cursor: none;
  transition: color .2s;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.snav-item:first-child {
  border-top: 1px solid var(--border);
}

.snav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: background .3s, box-shadow .3s;
}

.snav-item.active {
  color: var(--text);
}

.snav-item.active .snav-dot {
  background: var(--active-c, var(--accent));
  box-shadow: 0 0 0 4px rgba(61, 142, 245, .15);
}

.sidebar-bottom {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

/* VALUES — horizontal scroll */
.values-section {
  display: grid;
  grid-template-columns: 280px 1fr;
  height: 100vh;
  overflow: hidden;
  position: relative;
  align-items: stretch;
}

.values-rows {
  display: flex;
  flex-direction: row;
  /* ← أفقي */
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  height: 100%;
  scroll-snap-type: x mandatory;

}


.values-rows::-webkit-scrollbar {
  display: none;
}

.vrow {
  min-width: 100%;
  /* كل row تاخد عرض كامل */
  height: 100%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
  /* بدل border-bottom */
  border-bottom: none;
  position: relative;
  overflow: hidden;
  padding: 80px 64px;
  cursor: none;
  transition: background .4s;
}

.vrow:hover {
  background: rgba(255, 255, 255, .012);
}

.vrow:hover {
  background: rgba(255, 255, 255, .012);
}

/* ── BIG TYPOGRAPHY BG ── */
.vrow-bigtype {
  position: absolute;
  /* sits behind everything */
  z-index: 0;
  font-family: 'Bebas Neue', sans-serif;
  line-height: .82;
  letter-spacing: -4px;
  color: transparent;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1), opacity .4s, -webkit-text-stroke .3s;
  -webkit-text-stroke: 1px var(--row-c);
  opacity: .06;
  /* position varies per row */
}

.vrow:hover .vrow-bigtype {
  opacity: .12;
  transform: var(--type-hover-transform, scale(1.02) translateX(8px));
}

/* position presets per row */
.vrow:nth-child(1) .vrow-bigtype {
  font-size: clamp(120px, 18vw, 260px);
  bottom: -40px;
  right: -20px;
  --type-hover-transform: scale(1.03) translateX(-12px);
}

.vrow:nth-child(2) .vrow-bigtype {
  font-size: clamp(100px, 16vw, 220px);
  top: -20px;
  left: -10px;
  --type-hover-transform: scale(1.04) translateY(8px);
}

.vrow:nth-child(3) .vrow-bigtype {
  font-size: clamp(80px, 14vw, 200px);
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
  --type-hover-transform: scale(1.03) translateY(-46%) translateX(-10px);
}

.vrow:nth-child(4) .vrow-bigtype {
  font-size: clamp(100px, 15vw, 230px);
  bottom: -30px;
  left: 50%;
  transform: translateX(-40%);
  --type-hover-transform: scale(1.04) translateX(-35%);
}

/* ── CONTENT ── */
.vrow-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

/* row number */
.vrow-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--row-c);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.vrow-num::after {
  content: '';
  flex: 0 0 40px;
  height: 1px;
  background: var(--row-c);
  opacity: .4;
}

/* title */
.vrow-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  margin-bottom: 20px;
  transition: color .25s;
}

.vrow:hover .vrow-title {
  color: var(--row-c);
}

/* desc */
.vrow-desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 440px;
}

.vrow-desc strong {
  color: var(--text);
}

/* keyword pill */
.vrow-keyword {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 8px 18px;
  transition: border-color .3s, color .3s;
}

.vrow:hover .vrow-keyword {
  border-color: var(--row-c);
  color: var(--row-c);
}

.vrow-keyword::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--row-c);
  opacity: .6;
}

/* side accent line */
.vrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--row-c);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
  z-index: 2;
}

.vrow:hover::before {
  transform: scaleY(1);
}

/* row-specific colors */
.vrow:nth-child(1) {
  --row-c: #7ab4ff;
}

.vrow:nth-child(2) {
  --row-c: #f0f0f0;
}

.vrow:nth-child(3) {
  --row-c: #22c55e;
}

.vrow:nth-child(4) {
  --row-c: #a259ff;
}

.py-snake {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,
      transparent,
      transparent 30px,
      rgba(255, 212, 59, .04) 30px,
      rgba(255, 212, 59, .04) 31px),
    repeating-linear-gradient(90deg,
      transparent,
      transparent 30px,
      rgba(255, 212, 59, .04) 30px,
      rgba(255, 212, 59, .04) 31px);
}