/* ─── Fabian CV Parallax — Apple-Inspired Luxury CSS ─── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700;800;900&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --fcv-black:   #050508;
  --fcv-navy:    #0a0a1a;
  --fcv-purple:  #302b63;
  --fcv-violet:  #6c5ce7;
  --fcv-cyan:    #00cec9;
  --fcv-gold:    #f9ca24;
  --fcv-white:   #f5f5f7;
  --fcv-gray:    #86868b;
  --fcv-glass:   rgba(255,255,255,0.06);
  --fcv-border:  rgba(255,255,255,0.10);
  --fcv-shadow:  0 20px 80px rgba(0,0,0,0.6);
  --fcv-radius:  24px;
  --fcv-font:    'Outfit', sans-serif;
  --fcv-serif:   'DM Serif Display', serif;
}

/* ── Reset & base ── */
#fcv-root *, #fcv-root *::before, #fcv-root *::after { box-sizing: border-box; margin: 0; padding: 0; }
#fcv-root {
  font-family: var(--fcv-font);
  background: var(--fcv-black);
  color: var(--fcv-white);
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

/* ── Scroll progress bar ── */
#fcv-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--fcv-violet), var(--fcv-cyan), var(--fcv-gold));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px var(--fcv-violet);
}

/* ── Floating nav ── */
#fcv-nav {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  z-index: 1000;
  background: rgba(10,10,26,0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--fcv-border);
  border-radius: 50px;
  padding: 10px 28px;
  display: flex; align-items: center; gap: 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: all 0.4s ease;
  white-space: nowrap;
}
#fcv-nav a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
#fcv-nav a:hover { color: var(--fcv-cyan); }
#fcv-nav .fcv-nav-cta {
  background: var(--fcv-violet);
  color: #fff !important;
  padding: 6px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 12px;
  transition: background 0.3s, transform 0.2s;
}
#fcv-nav .fcv-nav-cta:hover { background: var(--fcv-cyan); color: var(--fcv-black) !important; transform: scale(1.05); }

/* ── Sections ── */
.fcv-section {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

/* ── HERO ── */
#fcv-hero {
  min-height: 100vh;
  background: radial-gradient(ellipse at 20% 50%, rgba(108,92,231,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(0,206,201,0.10) 0%, transparent 55%),
              radial-gradient(ellipse at 50% 80%, rgba(249,202,36,0.06) 0%, transparent 50%),
              var(--fcv-black);
  text-align: center;
  justify-content: center;
}

.fcv-hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.4;
}

.fcv-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(108,92,231,0.15);
  border: 1px solid rgba(108,92,231,0.35);
  border-radius: 50px; padding: 6px 18px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fcv-cyan);
  margin-bottom: 28px;
  animation: fcv-fade-down 0.8s ease both;
}
.fcv-badge::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--fcv-cyan); animation: fcv-pulse 1.5s ease infinite; }

.fcv-hero-name {
  font-family: var(--fcv-serif);
  font-size: clamp(52px, 9vw, 110px);
  font-weight: 400;
  line-height: 1.0;
  color: var(--fcv-white);
  letter-spacing: -0.02em;
  animation: fcv-fade-up 1s ease 0.2s both;
}
.fcv-hero-name span { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.3); }
.fcv-hero-name em { font-style: italic; color: var(--fcv-cyan); }

.fcv-hero-title {
  font-size: clamp(14px, 2.2vw, 20px);
  color: var(--fcv-gray);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin: 20px 0 40px;
  animation: fcv-fade-up 1s ease 0.4s both;
}
.fcv-hero-title strong { color: var(--fcv-white); font-weight: 600; }

.fcv-hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fcv-fade-up 1s ease 0.6s both;
}
.fcv-btn {
  padding: 14px 32px; border-radius: 50px;
  font-size: 15px; font-weight: 600; font-family: var(--fcv-font);
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.3s cubic-bezier(0.23,1,0.32,1);
  display: inline-flex; align-items: center; gap: 8px;
}
.fcv-btn-primary {
  background: linear-gradient(135deg, var(--fcv-violet), var(--fcv-cyan));
  color: #fff;
  box-shadow: 0 0 30px rgba(108,92,231,0.4);
}
.fcv-btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 40px rgba(108,92,231,0.6); color:#fff; text-decoration:none; }
.fcv-btn-ghost {
  background: transparent;
  color: var(--fcv-white);
  border: 1px solid var(--fcv-border);
}
.fcv-btn-ghost:hover { background: var(--fcv-glass); border-color: var(--fcv-violet); color:var(--fcv-white); text-decoration:none; transform: translateY(-2px); }

/* Floating orbs */
.fcv-orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); pointer-events: none; opacity: 0.3;
}
.fcv-orb-1 { width: 500px; height: 500px; background: var(--fcv-violet); top: -100px; left: -150px; animation: fcv-float 8s ease-in-out infinite; }
.fcv-orb-2 { width: 400px; height: 400px; background: var(--fcv-cyan); bottom: -100px; right: -100px; animation: fcv-float 10s ease-in-out infinite reverse; }
.fcv-orb-3 { width: 300px; height: 300px; background: var(--fcv-gold); top: 40%; left: 50%; animation: fcv-float 12s ease-in-out infinite 2s; opacity:0.15; }

/* scroll hint */
.fcv-scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  color: var(--fcv-gray); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fcv-fade-up 1s ease 1s both;
}
.fcv-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--fcv-violet), transparent);
  animation: fcv-scroll-down 2s ease infinite;
}

/* ── STATS strip ── */
#fcv-stats {
  background: linear-gradient(135deg, rgba(108,92,231,0.08), rgba(0,206,201,0.06));
  border-top: 1px solid var(--fcv-border);
  border-bottom: 1px solid var(--fcv-border);
  min-height: auto;
  padding: 60px 24px;
}
.fcv-stats-grid {
  display: flex; gap: 0; flex-wrap: wrap; justify-content: center;
  max-width: 1000px; width: 100%;
}
.fcv-stat-item {
  flex: 1; min-width: 160px;
  text-align: center; padding: 20px 30px;
  border-right: 1px solid var(--fcv-border);
  opacity: 0; transform: translateY(30px);
  transition: all 0.6s ease;
}
.fcv-stat-item:last-child { border-right: none; }
.fcv-stat-item.fcv-visible { opacity: 1; transform: translateY(0); }
.fcv-stat-num {
  font-size: clamp(36px,5vw,60px);
  font-family: var(--fcv-serif);
  color: var(--fcv-white);
  line-height: 1;
  background: linear-gradient(135deg, var(--fcv-white), var(--fcv-cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.fcv-stat-label { font-size: 13px; color: var(--fcv-gray); margin-top: 6px; font-weight: 400; letter-spacing: 0.05em; }

/* ── Section headers ── */
.fcv-section-header {
  text-align: center; margin-bottom: 70px; width: 100%;
  opacity: 0; transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.23,1,0.32,1);
}
.fcv-section-header.fcv-visible { opacity: 1; transform: translateY(0); }
.fcv-section-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fcv-violet); margin-bottom: 12px;
}
.fcv-section-title {
  font-family: var(--fcv-serif);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--fcv-white); line-height: 1.1;
}
.fcv-section-title em { color: var(--fcv-cyan); font-style: italic; }
.fcv-section-sub {
  font-size: 17px; color: var(--fcv-gray); margin-top: 16px;
  max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.6;
}

/* ── Section backgrounds ── */
#fcv-profile  { background: var(--fcv-black); }
#fcv-skills   { background: linear-gradient(180deg, var(--fcv-black) 0%, rgba(10,10,26,1) 100%); }
#fcv-projects { background: var(--fcv-navy); }
#fcv-experience { background: var(--fcv-black); }
#fcv-contact  {
  background: radial-gradient(ellipse at center, rgba(108,92,231,0.2) 0%, var(--fcv-black) 70%);
}

/* ── Profile section ── */
.fcv-profile-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  max-width: 1100px; width: 100%; align-items: center;
}
.fcv-profile-text {}
.fcv-profile-text p {
  font-size: 18px; line-height: 1.75; color: rgba(255,255,255,0.75);
  margin-bottom: 20px; font-weight: 300;
}
.fcv-profile-text strong { color: var(--fcv-white); font-weight: 600; }
.fcv-profile-visual {
  position: relative;
}
.fcv-profile-card {
  background: var(--fcv-glass);
  border: 1px solid var(--fcv-border);
  border-radius: var(--fcv-radius);
  padding: 36px;
  backdrop-filter: blur(20px);
  box-shadow: var(--fcv-shadow);
  position: relative; overflow: hidden;
}
.fcv-profile-card::before {
  content:'';
  position:absolute; top:-50%; left:-50%; width:200%; height:200%;
  background: conic-gradient(from 0deg, transparent 340deg, rgba(108,92,231,0.3) 360deg);
  animation: fcv-spin 8s linear infinite;
  pointer-events:none;
}
.fcv-profile-card-inner { position:relative; z-index:1; }
.fcv-role-pill {
  display: inline-block;
  background: rgba(108,92,231,0.2); border: 1px solid rgba(108,92,231,0.4);
  border-radius: 50px; padding: 6px 16px;
  font-size: 12px; font-weight: 600; color: var(--fcv-violet);
  margin: 4px 4px 4px 0; letter-spacing: 0.05em;
}
.fcv-timeline-mini { margin-top: 24px; }
.fcv-timeline-mini-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fcv-timeline-mini-item:last-child { border-bottom: none; }
.fcv-tmi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--fcv-cyan); margin-top: 6px; flex-shrink: 0;
  box-shadow: 0 0 8px var(--fcv-cyan);
}
.fcv-tmi-co { font-size: 14px; font-weight: 600; color: var(--fcv-white); }
.fcv-tmi-dates { font-size: 12px; color: var(--fcv-gray); }

/* ── Skills section ── */
.fcv-skills-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px; max-width: 1100px; width: 100%;
}
.fcv-skill-card {
  background: var(--fcv-glass);
  border: 1px solid var(--fcv-border);
  border-radius: 20px; padding: 28px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
  opacity: 0; transform: translateY(40px);
  cursor: default;
}
.fcv-skill-card.fcv-visible { opacity: 1; transform: translateY(0); }
.fcv-skill-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--fcv-violet);
  box-shadow: 0 20px 60px rgba(108,92,231,0.2);
}
.fcv-skill-icon { font-size: 36px; margin-bottom: 14px; }
.fcv-skill-name { font-size: 17px; font-weight: 700; color: var(--fcv-white); margin-bottom: 6px; }
.fcv-skill-desc { font-size: 13px; color: var(--fcv-gray); line-height: 1.5; margin-bottom: 16px; }
.fcv-skill-bar-wrap { background: rgba(255,255,255,0.07); border-radius: 50px; height: 4px; overflow: hidden; }
.fcv-skill-bar {
  height: 100%; border-radius: 50px; width: 0%;
  transition: width 1.2s cubic-bezier(0.23,1,0.32,1);
}
.fcv-bar-violet { background: linear-gradient(90deg, var(--fcv-violet), var(--fcv-cyan)); }
.fcv-bar-cyan   { background: linear-gradient(90deg, var(--fcv-cyan), var(--fcv-gold)); }
.fcv-bar-gold   { background: linear-gradient(90deg, var(--fcv-gold), var(--fcv-violet)); }
.fcv-skill-pct { font-size: 12px; color: var(--fcv-gray); text-align: right; margin-top: 6px; font-weight: 600; }

/* ── Projects ── */
.fcv-projects-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px; max-width: 1200px; width: 100%;
}
.fcv-project-card {
  background: var(--fcv-glass);
  border: 1px solid var(--fcv-border);
  border-radius: var(--fcv-radius);
  padding: 32px;
  backdrop-filter: blur(16px);
  transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
  opacity: 0; transform: translateY(50px);
  position: relative; overflow: hidden;
}
.fcv-project-card.fcv-visible { opacity: 1; transform: translateY(0); }
.fcv-project-card::after {
  content:''; position:absolute; inset:0; border-radius:inherit;
  background: linear-gradient(135deg, rgba(108,92,231,0.06), transparent 60%);
  pointer-events:none;
}
.fcv-project-card:hover {
  transform: translateY(-10px);
  border-color: rgba(108,92,231,0.5);
  box-shadow: 0 30px 80px rgba(108,92,231,0.15);
}
.fcv-project-type {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700;
  color: var(--fcv-cyan); margin-bottom: 10px;
}
.fcv-project-name {
  font-size: 20px; font-weight: 700; color: var(--fcv-white); margin-bottom: 8px;
}
.fcv-project-desc {
  font-size: 14px; color: var(--fcv-gray); line-height: 1.6; margin-bottom: 20px;
}
.fcv-project-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.fcv-tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px; padding: 3px 12px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.6); letter-spacing: 0.04em;
}
.fcv-project-link {
  color: var(--fcv-violet); text-decoration: none; font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.3s, gap 0.3s;
}
.fcv-project-link:hover { color: var(--fcv-cyan); gap: 10px; text-decoration:none; }

/* ── Experience timeline ── */
.fcv-timeline { max-width: 800px; width: 100%; position: relative; }
.fcv-timeline::before {
  content: '';
  position: absolute; left: 20px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, var(--fcv-violet), var(--fcv-cyan), transparent);
}
.fcv-tl-item {
  display: flex; gap: 40px; padding: 0 0 60px 60px; position: relative;
  opacity: 0; transform: translateX(-30px);
  transition: all 0.7s cubic-bezier(0.23,1,0.32,1);
}
.fcv-tl-item.fcv-visible { opacity: 1; transform: translateX(0); }
.fcv-tl-dot {
  position: absolute; left: 12px; top: 6px;
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--fcv-violet); border: 3px solid var(--fcv-black);
  box-shadow: 0 0 16px var(--fcv-violet);
  z-index: 1;
}
.fcv-tl-dot.active { background: var(--fcv-cyan); box-shadow: 0 0 20px var(--fcv-cyan); animation: fcv-pulse 2s ease infinite; }
.fcv-tl-body { flex: 1; }
.fcv-tl-dates { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fcv-violet); margin-bottom: 6px; }
.fcv-tl-company { font-size: 20px; font-weight: 700; color: var(--fcv-white); margin-bottom: 4px; }
.fcv-tl-role { font-size: 14px; color: var(--fcv-cyan); font-weight: 500; margin-bottom: 14px; }
.fcv-tl-desc { font-size: 14px; color: var(--fcv-gray); line-height: 1.7; }
.fcv-tl-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.fcv-tl-chip {
  background: rgba(108,92,231,0.12); border: 1px solid rgba(108,92,231,0.3);
  border-radius: 50px; padding: 3px 12px;
  font-size: 11px; color: rgba(255,255,255,0.65); font-weight: 500;
}

/* ── Contact section ── */
.fcv-contact-inner {
  max-width: 900px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.fcv-contact-big {
  font-family: var(--fcv-serif);
  font-size: clamp(36px,5vw,58px);
  line-height: 1.1; color: var(--fcv-white);
  margin-bottom: 20px;
}
.fcv-contact-big em { color: var(--fcv-cyan); font-style: italic; }
.fcv-contact-text { font-size: 16px; color: var(--fcv-gray); line-height: 1.7; margin-bottom: 32px; }
.fcv-contact-links { display: flex; flex-direction: column; gap: 14px; }
.fcv-contact-link {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--fcv-white);
  background: var(--fcv-glass); border: 1px solid var(--fcv-border);
  border-radius: 14px; padding: 14px 20px;
  transition: all 0.3s ease; font-size: 14px;
}
.fcv-contact-link:hover {
  border-color: var(--fcv-violet); background: rgba(108,92,231,0.1);
  transform: translateX(6px); color: var(--fcv-white); text-decoration:none;
}
.fcv-contact-link-icon { font-size: 22px; }
.fcv-contact-link-text strong { display: block; font-size: 13px; font-weight: 700; }
.fcv-contact-link-text span { font-size: 12px; color: var(--fcv-gray); }

.fcv-social-title { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fcv-gray); margin: 32px 0 16px; }
.fcv-social-row { display: flex; flex-wrap: wrap; gap: 10px; }
.fcv-social-btn {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--fcv-glass); border: 1px solid var(--fcv-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; text-decoration: none;
  transition: all 0.3s ease;
}
.fcv-social-btn:hover { background: var(--fcv-violet); border-color: var(--fcv-violet); transform: translateY(-4px) scale(1.1); text-decoration:none; }

/* Wisevu highlight */
.fcv-wisevu-box {
  background: linear-gradient(135deg, rgba(108,92,231,0.15), rgba(0,206,201,0.08));
  border: 1px solid rgba(108,92,231,0.35);
  border-radius: 20px; padding: 32px;
  opacity: 0; transform: translateY(30px);
  transition: all 0.8s ease 0.3s;
}
.fcv-wisevu-box.fcv-visible { opacity:1; transform: translateY(0); }
.fcv-wisevu-box h3 {
  font-family: var(--fcv-serif); font-size: 22px; color: var(--fcv-white); margin-bottom: 12px;
}
.fcv-wisevu-list { list-style: none; padding: 0; }
.fcv-wisevu-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--fcv-gray); padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  line-height: 1.5;
}
.fcv-wisevu-list li:last-child { border-bottom: none; }
.fcv-wisevu-list li::before { content: '✓'; color: var(--fcv-cyan); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── Footer ── */
#fcv-footer {
  background: rgba(0,0,0,0.5);
  border-top: 1px solid var(--fcv-border);
  text-align: center; padding: 40px 24px;
  font-size: 13px; color: var(--fcv-gray);
}
#fcv-footer a { color: var(--fcv-violet); text-decoration: none; }
#fcv-footer a:hover { color: var(--fcv-cyan); }

/* ── Parallax layers ── */
.fcv-parallax-layer { will-change: transform; }

/* ── Animations ── */
@keyframes fcv-fade-up   { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fcv-fade-down { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fcv-float { 0%,100% { transform:translateY(0) rotate(0deg); } 50% { transform:translateY(-25px) rotate(5deg); } }
@keyframes fcv-pulse { 0%,100% { opacity:1; box-shadow:0 0 8px currentColor; } 50% { opacity:0.5; box-shadow:0 0 20px currentColor; } }
@keyframes fcv-spin { from { transform:rotate(0deg); } to { transform:rotate(360deg); } }
@keyframes fcv-scroll-down { 0% { transform:scaleY(0); transform-origin:top; } 50% { transform:scaleY(1); transform-origin:top; } 51% { transform:scaleY(1); transform-origin:bottom; } 100% { transform:scaleY(0); transform-origin:bottom; } }
@keyframes fcv-count { from { opacity:0; } to { opacity:1; } }

/* ── Responsive ── */
@media (max-width: 768px) {
  #fcv-nav { padding: 8px 16px; gap: 14px; max-width: 95vw; overflow-x: auto; }
  #fcv-nav a { font-size: 11px; }
  .fcv-profile-inner { grid-template-columns: 1fr; gap: 40px; }
  .fcv-contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .fcv-skills-grid { grid-template-columns: 1fr; }
  .fcv-timeline::before { left: 14px; }
  .fcv-tl-item { padding-left: 44px; }
  .fcv-tl-dot { left: 6px; }
  .fcv-stat-item { border-right: none; border-bottom: 1px solid var(--fcv-border); }
}
