/* ===== Subpage Common Styles =====
   Shared across all project detail pages.
   Override --accent vars in page-level <style> if needed.
   ================================================ */

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* ---------- CSS Variables ---------- */
:root {
  --white: #ffffff;
  --bg: #f8f8f8;
  --gray-100: #f0f0f0;
  --gray-200: #e5e5e5;
  --gray-300: #d0d0d0;
  --gray-400: #999999;
  --gray-500: #666666;
  --gray-600: #444444;
  --gray-900: #1a1a1a;
  --accent: #1F6F90;
  --accent-light: rgba(31, 111, 144, 0.1);
  --content-max: 1200px;
  --content-padding: 32px;
  --mono: 'SF Mono', 'Fira Code', monospace;

  --bg-dark: #0a0a0a;
  --white-dark: #141414;
  --gray-100-dark: #1a1a1a;
  --gray-200-dark: #252525;
  --gray-300-dark: #333333;
  --gray-400-dark: #666666;
  --gray-500-dark: #888888;
  --gray-600-dark: #aaaaaa;
  --gray-900-dark: #f0f0f0;
  --accent-dark: #74B7D2;
  --accent-light-dark: rgba(116, 183, 210, 0.16);
}

[data-theme="dark"] {
  --bg: var(--bg-dark);
  --white: var(--white-dark);
  --gray-100: var(--gray-100-dark);
  --gray-200: var(--gray-200-dark);
  --gray-300: var(--gray-300-dark);
  --gray-400: var(--gray-400-dark);
  --gray-500: var(--gray-500-dark);
  --gray-600: var(--gray-600-dark);
  --gray-900: var(--gray-900-dark);
  --accent: var(--accent-dark);
  --accent-light: var(--accent-light-dark);
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--gray-600);
  line-height: 1.6;
  font-size: 15px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}
body.js-loading { opacity: 0; }
body.js-loading { animation: pageLoad 0.8s ease forwards; }

@keyframes pageLoad { to { opacity: 1; } }
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
img { max-width: 100%; height: auto; display: block; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(248, 248, 248, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}
[data-theme="dark"] .nav { background: rgba(20, 20, 20, 0.9); }
.nav.scrolled { background: rgba(248, 248, 248, 0.95); box-shadow: 0 1px 0 rgba(0,0,0,0.05); }
[data-theme="dark"] .nav.scrolled { background: rgba(20, 20, 20, 0.95); box-shadow: 0 1px 0 rgba(255,255,255,0.05); }

.nav-inner {
  max-width: var(--content-max); margin: 0 auto; padding: 0 var(--content-padding);
  height: 56px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-size: 18px; font-weight: 500; color: var(--gray-900); letter-spacing: -0.02em;
  opacity: 0; animation: fadeSlideDown 0.5s ease 0.1s forwards; cursor: pointer; transition: color 0.25s;
}
.nav-logo:hover { color: var(--accent); }
.nav-menu { display: flex; align-items: center; gap: 24px; }
.nav-link {
  font-size: 13px; font-weight: 400; color: var(--gray-500); cursor: pointer;
  transition: color 0.25s; opacity: 0; animation: fadeSlideDown 0.5s ease 0.15s forwards; letter-spacing: 0.01em;
}
.nav-link:hover { color: var(--gray-900); }
.nav-link.back { color: var(--gray-400); }
.nav-link.back:hover { color: var(--gray-900); }

/* ---------- Theme Toggle ---------- */
.theme-toggle {
  width: 50px; height: 28px; padding: 2px; border: 1px solid #2f89a8; border-radius: 999px; background: #74b7d2;
  cursor: pointer; display: inline-flex; align-items: center; justify-content: flex-start; position: relative;
  overflow: hidden; flex-shrink: 0; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  opacity: 0; animation: fadeSlideDown 0.5s ease 0.25s forwards;
}
.theme-toggle:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 8px 18px rgba(116, 183, 210, 0.28);
}
.theme-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.theme-toggle-thumb {
  width: 20px; height: 20px; border-radius: 999px; background: #ffffff; display: inline-flex;
  align-items: center; justify-content: center; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
  transform: translateX(26px); transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.theme-toggle svg { width: 12px; height: 12px; transition: stroke 0.25s ease, opacity 0.25s ease; }
.theme-toggle .sun-icon { stroke: #1f6f90; }
.theme-toggle .moon-icon { display: none; stroke: #1d4a5c; }
[data-theme="dark"] .theme-toggle {
  background: #122630; border-color: #1f4a5d; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .theme-toggle:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 18px rgba(18, 38, 48, 0.4);
}
[data-theme="dark"] .theme-toggle .theme-toggle-thumb { transform: translateX(0); }
[data-theme="dark"] .theme-toggle .sun-icon { display: none; }
[data-theme="dark"] .theme-toggle .moon-icon { display: block; }

/* ---------- Main Content ---------- */
.main-content { background: var(--bg); margin: 0; min-height: 100vh; }
.page-content { padding-top: 100px; padding-bottom: 80px; }

/* ---------- Header ---------- */
.project-header {
  padding: 0 5vw; margin-bottom: 48px; max-width: 700px;
  opacity: 0; animation: fadeSlideUp 0.6s ease 0.2s forwards;
}
.project-eyebrow {
  font-family: var(--mono); font-size: 13px; font-weight: 500;
  color: var(--accent); letter-spacing: 0.05em; margin-bottom: 16px;
}
.project-title {
  font-size: clamp(32px, 5vw, 44px); font-weight: 400; letter-spacing: -0.025em;
  margin-bottom: 8px; line-height: 1.15; color: var(--gray-900);
}
.project-title .title-break { display: block; }
.project-title .title-keep { white-space: nowrap; }
.project-location { font-size: 15px; color: var(--gray-400); font-weight: 400; }

/* ---------- Blog Meta ---------- */
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.blog-tag {
  font-size: 11px; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--accent); background: var(--accent-light);
  padding: 4px 12px; border-radius: 4px;
}
.blog-date { font-size: 13px; color: var(--gray-400); }

/* ---------- Scroll Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Text Blocks ---------- */
.text-block { padding: 0 5vw; margin: 64px 0; max-width: 680px; }
.text-block.right { margin-left: auto; margin-right: 5vw; }
.text-block.center { margin-left: auto; margin-right: auto; text-align: center; }
.text-block p { font-size: 17px; font-weight: 400; line-height: 1.75; color: var(--gray-600); }
.text-block p + p { margin-top: 20px; }
.text-block h2 {
  font-size: 11px; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gray-400); margin-bottom: 20px;
}

/* ---------- Highlight Block ---------- */
.highlight-block {
  padding: 48px 5vw; margin: 80px auto;
  border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200);
  max-width: 780px; text-align: center;
}
.highlight-block p {
  font-size: 22px; font-weight: 400; line-height: 1.6;
  color: var(--gray-900); letter-spacing: -0.01em;
}
.highlight-block .hl-accent { color: var(--accent); font-weight: 500; }

/* ---------- Comparison Block ---------- */
.comparison {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  padding: 0 5vw; margin: 64px auto; max-width: 900px;
}
.comparison-card {
  padding: 32px; border-radius: 12px;
  border: 1px solid var(--gray-200); background: var(--white);
}
.comparison-card.accent { background: var(--accent-light); border-color: var(--accent); }
.comparison-label {
  font-size: 10px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gray-400); margin-bottom: 16px;
}
.comparison-card.accent .comparison-label { color: var(--accent); }
.comparison-card h3 {
  font-size: 18px; font-weight: 500; color: var(--gray-900);
  letter-spacing: -0.01em; margin-bottom: 12px;
}
.comparison-card p { font-size: 14px; color: var(--gray-500); line-height: 1.65; }
.comparison-card ul { list-style: none; padding: 0; margin: 0; }
.comparison-card ul li {
  font-size: 14px; color: var(--gray-500); line-height: 1.65;
  padding: 6px 0; border-bottom: 1px solid var(--gray-200);
}
.comparison-card ul li:last-child { border-bottom: none; }

/* ---------- Text + Image Rows ---------- */
.text-img-row {
  display: grid; gap: 40px; padding: 0 5vw; margin: 64px 0; align-items: center;
}
.text-img-row.align-top { align-items: start; }
.text-img-row.img-left  { grid-template-columns: 38% 1fr; }
.text-img-row.img-right { grid-template-columns: 1fr 38%; }
.text-img-row.img-left-sm  { grid-template-columns: 30% 1fr; }
.text-img-row.img-right-sm { grid-template-columns: 1fr 30%; }
.text-img-row.img-left-xs  { grid-template-columns: 24% 1fr; }
.text-img-row.img-right-xs { grid-template-columns: 1fr 24%; }
.text-img-row .row-img img { width: 100%; }
.text-img-row .row-img .img-cap {
  margin-top: 12px; font-size: 12px; color: var(--gray-400); line-height: 1.5;
}
.text-img-row .row-text h2 {
  font-size: 11px; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gray-400); margin-bottom: 20px;
}
.text-img-row .row-text p {
  font-size: 17px; font-weight: 400; line-height: 1.75; color: var(--gray-600);
}
.text-img-row .row-text p + p { margin-top: 16px; }

/* ---------- Image Standards ---------- */
.img-bleed { width: 100%; margin: 80px 0; }
.img-bleed img { width: 100%; }
.img-full { width: 96%; margin: 80px auto; }
.img-full img { width: 100%; }
.img-large { width: 85%; margin: 64px 0; }
.img-large.left { margin-left: 0; margin-right: auto; }
.img-large.right { margin-left: auto; margin-right: 0; }
.img-large.center { margin-left: auto; margin-right: auto; }
.img-large img { width: 100%; }
.img-full.software-lead-visual,
.img-large.software-lead-visual {
  width: min(1160px, calc(100% - 10vw));
  max-width: 1160px;
  margin: 64px auto;
}
.img-medium { width: 65%; margin: 64px 0; }
.img-medium.left { margin-left: 0; margin-right: auto; }
.img-medium.right { margin-left: auto; margin-right: 0; }
.img-medium.center { margin-left: auto; margin-right: auto; }
.img-medium img { width: 100%; }
.img-small { width: 45%; margin: 64px 0; }
.img-small.left { margin-left: 5vw; margin-right: auto; }
.img-small.right { margin-left: auto; margin-right: 5vw; }
.img-small.center { margin-left: auto; margin-right: auto; }
.img-small img { width: 100%; }
.img-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 64px 2vw; align-items: center;
}
.img-pair img { width: 100%; height: auto; }
.img-pair-asymmetric {
  display: grid; grid-template-columns: 2fr 1fr; gap: 20px; margin: 64px 0; padding: 0 2vw; align-items: center;
}
.img-pair-asymmetric.reverse { grid-template-columns: 1fr 2fr; }
.img-pair-asymmetric img { width: 100%; height: auto; }
.img-trio {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 64px 3vw;
}
.img-trio img { width: 100%; }
.img-caption {
  padding: 0 5vw; margin-top: 16px; font-size: 13px; color: var(--gray-400); font-weight: 400;
  text-align: center;
}
.img-bleed + .img-caption,
.img-full + .img-caption,
.img-large + .img-caption,
.img-medium + .img-caption,
.img-small + .img-caption {
  margin-top: -52px;
}
.img-caption.right { text-align: right; }
.img-caption.center { text-align: center; }

/* ---------- Video ---------- */
.video-block { width: 90%; margin: 64px auto; border-radius: 8px; overflow: hidden; }
.video-block video { width: 100%; display: block; border-radius: 8px; }
.video-block.full { width: 100%; border-radius: 0; }
.video-block.full video { border-radius: 0; }
.video-block.medium { width: 70%; }
.video-block.small { width: 45%; }

/* ---------- Data Tables ---------- */
.data-table-wrap { padding: 0 5vw; margin: 64px 0; max-width: 900px; }
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th {
  text-align: left; padding: 12px 16px; font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400);
  border-bottom: 2px solid var(--gray-200); background: var(--bg);
}
.data-table td {
  padding: 12px 16px; border-bottom: 1px solid var(--gray-200);
  color: var(--gray-600); line-height: 1.5;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table .highlight-row td { background: var(--accent-light); color: var(--gray-900); font-weight: 500; }

/* ---------- Project Data ---------- */
.project-data {
  padding: 80px 5vw; margin-top: 80px;
  border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200);
}
.data-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px 48px; max-width: 900px;
}
.data-item { display: flex; flex-direction: column; gap: 8px; }
.data-label {
  font-size: 10px; color: var(--gray-400); text-transform: uppercase;
  letter-spacing: 0.1em; font-weight: 500;
}
.data-value { font-size: 15px; color: var(--gray-900); font-weight: 400; }
.data-value a { color: var(--accent); transition: opacity 0.25s; }
.data-value a:hover { opacity: 0.7; }

/* ---------- Related Projects / Footer ---------- */
.project-footer-section { margin-top: 120px; padding: 0 5vw; }
.related-header { padding: 40px 0 32px; }
.related-header h3 {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gray-400); font-weight: 500;
}
.related-projects { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.related-card { display: block; position: relative; overflow: hidden; }
.related-visual {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
  background: var(--gray-100); border-radius: 4px;
}
.related-visual picture.render {
  display: block; position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0;
}
.related-visual picture.sketch {
  display: block; position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1;
}
.related-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.4s ease, transform 0.6s ease;
}
.related-visual picture.render img { opacity: 0; }
.related-visual picture.sketch img { opacity: 1; }
.related-card:hover .related-visual picture.sketch img { opacity: 0; }
.related-card:hover .related-visual picture.render img { opacity: 1; transform: scale(1.03); }
.related-visual picture.dark-only { display: none; }
[data-theme="dark"] .related-visual picture.light-only { display: none; }
[data-theme="dark"] .related-visual picture.render.dark-only { display: block; width: 100%; height: 100%; }
[data-theme="dark"] .related-visual picture.sketch.dark-only {
  display: block; position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1;
}
.related-info { padding: 20px 0; }
.related-meta {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gray-400); margin-bottom: 8px;
}
.related-title {
  font-size: 18px; font-weight: 400; color: var(--gray-900);
  letter-spacing: -0.01em; transition: color 0.2s;
}
.related-card:hover .related-title { color: var(--accent); }

.footer { padding: 40px var(--content-padding); border-top: 1px solid var(--gray-200); }
.footer-inner {
  max-width: var(--content-max); margin: 0 auto; display: flex;
  justify-content: space-between; font-size: 12px; color: var(--gray-400);
}
.footer-with-directory {
  flex-direction: column;
  gap: 16px;
}
.footer-directory {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  width: 100%;
  padding-bottom: 12px;
}
.footer-directory-group {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.footer-directory-anchor,
.footer-directory-link {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: -0.01em;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.footer-directory-anchor {
  color: var(--accent);
  font-weight: 500;
}
.footer-directory-link {
  color: var(--gray-500);
  font-weight: 400;
}
.footer-directory-anchor:hover {
  color: var(--accent-dark);
  opacity: 1;
}
.footer-directory-link:hover {
  color: var(--accent);
}
.footer-with-directory .footer-links {
  padding-top: 12px;
}
.footer-links {
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap; width: 100%;
}
.footer-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--gray-400); text-decoration: none; transition: color 0.2s ease;
}
.footer-link:hover { color: var(--gray-700); }
.footer-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.footer-coords { font-family: var(--mono); font-size: 11px; letter-spacing: 0.02em; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .data-grid { grid-template-columns: repeat(4, 1fr); gap: 32px 24px; }
  .text-img-row.img-left, .text-img-row.img-right { grid-template-columns: 42% 1fr; }
  .text-img-row.img-right { grid-template-columns: 1fr 42%; }
}

@media (max-width: 768px) {
  :root { --content-padding: 20px; }
  .main-content { margin: 0; }
  .nav-menu { gap: 20px; }
  .nav-link { font-size: 12px; }
  .page-content { padding-top: 80px; }
  .project-header { padding: 0 20px; }
  .project-title { font-size: 28px; }
  .text-block { padding: 0 20px; margin: 40px 0; max-width: 100%; }
  .text-block p { font-size: 16px; }
  .highlight-block { padding: 32px 20px; margin: 48px 0; }
  .highlight-block p { font-size: 18px; }
  .comparison { grid-template-columns: 1fr; padding: 0; margin: 40px 0; }
  .data-table-wrap { padding: 0 20px; overflow-x: auto; margin: 40px 0; }

  .text-img-row { grid-template-columns: 1fr !important; padding: 0 20px; margin: 40px 0; }
  .text-img-row .row-text p { font-size: 16px; }

  .img-bleed { margin: 40px 0; }
  .img-full { margin: 40px auto; }
  .img-full.software-lead-visual,
  .img-large.software-lead-visual {
    width: 100%;
    max-width: none;
    margin: 40px auto;
  }
  .img-large, .img-medium, .img-small {
    width: 100%; margin: 32px 0; padding: 0;
  }
  .img-small.left, .img-small.right,
  .img-medium.left, .img-medium.right,
  .img-large.left, .img-large.right {
    margin-left: 0; margin-right: 0;
  }
  .img-pair, .img-pair-asymmetric, .img-trio {
    grid-template-columns: 1fr; padding: 0; margin: 32px 0;
  }
  .img-caption { padding: 0 20px; }
  .img-bleed + .img-caption,
  .img-full + .img-caption,
  .img-large + .img-caption,
  .img-medium + .img-caption,
  .img-small + .img-caption {
    margin-top: -20px;
  }
  .video-block { width: 100%; border-radius: 0; }
  .video-block video { border-radius: 0; }
  .video-block.medium { width: 100%; }
  .video-block.small { width: 100%; }
  .project-data { padding: 48px 20px; }
  .data-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .project-footer-section { margin-top: 60px; padding: 0 20px; }
  .related-projects { grid-template-columns: 1fr; gap: 32px; }
  .related-visual { aspect-ratio: 16/9; }
  .footer { padding: 24px var(--content-padding); }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
  .footer-with-directory { gap: 14px; }
  .footer-directory {
    justify-content: center;
    gap: 8px 14px;
    padding-bottom: 10px;
  }
  .footer-directory-group {
    gap: 8px 12px;
  }
  .footer-directory-anchor,
  .footer-directory-link {
    font-size: 12px;
  }
  .process-timeline {
    padding: 0 20px;
    margin: 40px 0 56px;
  }
  .process-timeline .timeline-inner {
    padding: 28px 16px 24px;
    border-radius: 14px;
  }
  .process-timeline .timeline-line-wrap {
    margin-bottom: 0;
  }
  .process-timeline .timeline-line {
    display: none;
  }
  .process-timeline .timeline-steps {
    flex-direction: column;
    gap: 20px;
    min-width: 0;
  }
  .process-timeline .tl-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
  }
  .process-timeline .tl-dot {
    width: 36px;
    height: 36px;
    font-size: 13px;
    flex-shrink: 0;
  }
  .process-timeline .tl-body {
    margin-top: 0;
    text-align: left;
    padding: 4px 0 0;
  }
  .process-timeline .tl-body h4 {
    font-size: 15px;
    margin-bottom: 4px;
  }
  .process-timeline .tl-body ul li {
    font-size: 13px;
  }
}

/* ---------- Process Timeline ---------- */
.process-timeline {
  padding: 0 5vw;
  margin: 56px auto 72px;
  max-width: 1160px;
}

.process-timeline .timeline-inner {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 52px 44px 44px;
}

.process-timeline .timeline-line-wrap {
  position: relative;
  margin-bottom: 0;
}

.process-timeline .timeline-line {
  position: absolute;
  top: 22px;
  left: 44px;
  right: 44px;
  height: 1px;
  background: var(--gray-200);
}

.process-timeline .timeline-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.process-timeline .tl-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.process-timeline .tl-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-400);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.process-timeline .tl-step.active .tl-dot {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
[data-theme="dark"] .process-timeline .tl-step.active .tl-dot {
  color: #0a0a0a;
}

.process-timeline .tl-body {
  margin-top: 22px;
  text-align: center;
  padding: 0 10px;
}

.process-timeline .tl-body h4 {
  font-size: 17px;
  font-weight: 500;
  color: var(--gray-900);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.process-timeline .tl-body ul {
  list-style: none;
}

.process-timeline .tl-body ul li {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
}
