@font-face {
  font-family: "Helvetica Neue";
  src: url("fonts/HelveticaNeueLight.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("fonts/HelveticaNeueRoman.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("fonts/HelveticaNeueItalic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("fonts/HelveticaNeueMedium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("fonts/HelveticaNeueMediumItalic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("fonts/HelveticaNeueBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("fonts/HelveticaNeueBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("fonts/HelveticaNeueBoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --bg: #050505;
  --surface: #0f0f11;
  --muted: #9a9a9a;
  --accent: #4ade80;
  --accent-soft: rgba(74, 222, 128, 0.08);
  --text: #f5f5f5;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  font-size: 16px;
}

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

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue";
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

.quick-nav {
  position: fixed;
  top: 50%;
  left: clamp(12px, 3vw, 36px);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.8vw, 18px);
  z-index: 20;
}

.quick-nav__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 3vw, 48px);
  height: clamp(40px, 3vw, 48px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 18, 5, 0.55);
  color: rgba(245, 245, 245, 0.85);
  text-decoration: none;
  transition: transform 0.2s ease, border 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px rgba(4, 18, 5, 0.4);
  position: relative;
}

.quick-nav__item:hover,
.quick-nav__item:focus-visible {
  transform: translateY(-2px) scale(1.06);
  border-color: rgba(74, 222, 128, 0.6);
  color: var(--accent);
  box-shadow: 0 16px 40px rgba(4, 18, 5, 0.48);
  outline: none;
}

.quick-nav__icon {
  width: clamp(16px, 1.9vw, 20px);
  height: clamp(16px, 1.9vw, 20px);
}

.quick-nav__item::after {
  content: attr(data-label);
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(4, 18, 5, 0.85);
  color: rgba(245, 245, 245, 0.9);
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}

.quick-nav__item:hover::after,
.quick-nav__item:focus-visible::after {
  opacity: 1;
  transform: translate(4px, -50%);
}

.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;
}

body::before {
  content: "";
  position: fixed;
  inset: -45vmax;
  z-index: 0;
  background: url("assets/orbit-texture.svg") center/160% 160% no-repeat;
  opacity: 0.58;
  pointer-events: none;
  transform-origin: 50% 50%;
  animation: orbit 96s linear infinite;
  will-change: transform;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 0 1.2px, transparent 1.8px);
  background-size: 140px 140px;
  opacity: 0.22;
  pointer-events: none;
  animation: twinkle 48s linear infinite;
  will-change: background-position;
}

main {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
}

section {
  padding: 80px 6vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 48px;
}

header {
  padding: clamp(96px, 18vw, 160px) 6vw 120px;
  position: relative;
  overflow: hidden;
}

header::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -30%;
  width: clamp(420px, 60vw, 580px);
  aspect-ratio: 1;
  background: radial-gradient(circle at center, rgba(74, 222, 128, 0.22), rgba(74, 222, 128, 0));
  filter: blur(10px);
  z-index: 0;
}

header::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: clamp(300px, 48vw, 520px);
  aspect-ratio: 1;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0));
  filter: blur(14px);
  z-index: 0;
}

.hero {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}

.hero-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, clamp(260px, 26vw, 320px));
  gap: clamp(32px, 6vw, 72px);
  padding: clamp(42px, 6vw, 68px);
  background: linear-gradient(145deg, rgba(18, 18, 20, 0.96), rgba(8, 8, 10, 0.92));
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  overflow: hidden;
  align-items: center;
  isolation: isolate;
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.4;
}

.hero-card::before {
  width: 320px;
  height: 320px;
  top: -180px;
  right: -140px;
  background: radial-gradient(circle at center, rgba(74, 222, 128, 0.45), rgba(74, 222, 128, 0));
}

.hero-card::after {
  width: 220px;
  height: 220px;
  bottom: -160px;
  left: -120px;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0));
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
  text-align: left;
  align-content: start;
  justify-items: start;
  max-width: 520px;
}

.hero-portrait {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(74, 222, 128, 0.22), rgba(59, 130, 246, 0.12) 55%, rgba(15, 15, 17, 0.88));
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.4);
  width: clamp(240px, 26vw, 320px);
  aspect-ratio: 3 / 4;
  align-self: center;
  justify-self: center;
}

.hero-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(0, 0, 0, 0.18), transparent 55%);
  opacity: 0.5;
  pointer-events: none;
}

.hero-portrait img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  filter: saturate(110%);
  backface-visibility: hidden;
  image-rendering: optimizeQuality;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.14);
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.18);
}

h1 {
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}


.hero-typewrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 1em;
  line-height: 1.05;
  flex-wrap: wrap;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
}

.hero-type {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-name {
  font-size: clamp(2.3rem, 3.6vw, 3.1rem);
  letter-spacing: -0.015em;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.88), rgba(74, 222, 128, 0.9));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

#typewriter-text {
  display: inline-block;
  min-width: 0;
  white-space: normal;
}

.hero-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: currentColor;
  border-radius: 999px;
  animation: cursorBlink 0.8s steps(2, start) infinite;
}

.hero-cursor[data-active="false"] {
  animation: none;
  opacity: 0.4;
}

.hero p {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: var(--muted);
  max-width: 44ch;
  margin: 0;
}

.hero-intro {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(218, 218, 218, 0.86);
}

.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.01em;
  background: rgba(74, 222, 128, 0.12);
  border-radius: 999px;
  padding: 10px 18px;
  margin-top: 16px;
  box-shadow: 0 10px 30px rgba(74, 222, 128, 0.18);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 0.98rem;
  font-weight: 500;
  font-family: "Helvetica Neue", sans-serif;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: #041205;
  box-shadow: 0 10px 30px rgba(74, 222, 128, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(74, 222, 128, 0.45);
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 40px;
  color: rgba(226, 226, 226, 0.8);
  font-size: 0.96rem;
  justify-content: flex-start;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(15, 15, 17, 0.55);
  backdrop-filter: blur(6px);
}

.meta-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  transform: translateY(1px);
}

h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.section-lead {
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 48px;
  font-size: 1.05rem;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  width: 100%;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.stat-card span {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.stat-card strong {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--accent);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  width: 100%;
}

.card {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
  backdrop-filter: blur(6px);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 222, 128, 0.35);
  background: linear-gradient(155deg, rgba(74, 222, 128, 0.1), rgba(15, 15, 17, 0.65));
}

.card h3 {
  font-size: 1.35rem;
  font-weight: 500;
}

.card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.tag {
  padding: 6px 12px;
  border-radius: 12px;
  background: rgba(148, 163, 184, 0.12);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.card a {
  color: var(--accent);
  font-size: 0.94rem;
  text-decoration: none;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin-top: 8px;
}

.card a:hover {
  text-decoration: underline;
}

.timeline {
  display: grid;
  gap: 24px;
  position: relative;
  width: 100%;
  text-align: left;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

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

.timeline-item::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px var(--accent-soft);
}

.timeline-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

.timeline-item span {
  display: inline-block;
  margin-top: 6px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

ul.bullets {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  list-style: none;
}

ul.bullets li {
  position: relative;
  padding-left: 18px;
}

ul.bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  width: 100%;
}

.skill-block {
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 24px;
  display: grid;
  gap: 12px;
  text-align: left;
  align-items: start;
}

.skill-block h3 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.skill-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 14px;
  background: rgba(15, 15, 17, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.88);
  transition: border 0.2s ease, transform 0.2s ease;
}

.skill-chip:hover {
  border-color: rgba(74, 222, 128, 0.45);
  transform: translateY(-2px);
}

.contact-card {
  background: linear-gradient(150deg, rgba(74, 222, 128, 0.12), rgba(4, 18, 5, 0.85));
  border-radius: 26px;
  border: 1px solid rgba(74, 222, 128, 0.25);
  padding: clamp(32px, 6vw, 56px);
  box-shadow: 0 24px 60px rgba(4, 18, 5, 0.55);
  text-align: center;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 18, 5, 0.35);
  color: rgba(245, 245, 245, 0.92);
  font-size: 1rem;
  font-family: "Helvetica Neue", sans-serif;
  min-height: 54px;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(74, 222, 128, 0.5);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.18);
  background: rgba(4, 18, 5, 0.6);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.publication-card {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 52px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.05), rgba(4, 18, 5, 0.7));
  box-shadow: 0 24px 60px rgba(4, 18, 5, 0.45);
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: left;
}

.publication-meta h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.publication-journal {
  display: block;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

.publication-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: rgba(230, 230, 230, 0.85);
  font-size: 0.98rem;
}

.publication-points li {
  position: relative;
  padding-left: 26px;
}

.publication-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1;
}

.publication-link {
  align-self: flex-start;
  font-size: 0.96rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.publication-link::after {
  content: "→";
  font-size: 1rem;
}

.publication-link:hover {
  transform: translateX(4px);
  color: rgba(74, 222, 128, 0.8);
}

footer {
  padding: 42px 6vw 60px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.footer-meta {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.footer-quote {
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(245, 245, 245, 0.65);
}

[data-animate] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.16s cubic-bezier(0.25, 0.9, 0.35, 1), transform 0.16s cubic-bezier(0.25, 0.9, 0.35, 1);
  transition-delay: var(--delay, 0s);
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes cursorBlink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 640px) {
  [data-animate] {
    transform: translateY(8px);
    transition: opacity 0.12s cubic-bezier(0.25, 0.9, 0.35, 1), transform 0.12s cubic-bezier(0.25, 0.9, 0.35, 1);
  }
}

@keyframes orbit {
  0% {
    transform: rotate(0deg) scale(1.5);
  }
  50% {
    transform: rotate(180deg) scale(1.5);
  }
  100% {
    transform: rotate(360deg) scale(1.5);
  }
}

@keyframes twinkle {
  0% {
    background-position: 0% 0%;
    opacity: 0.26;
  }
  50% {
    background-position: 60% 40%;
    opacity: 0.34;
  }
  100% {
    background-position: 100% 80%;
    opacity: 0.26;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after {
    animation: none;
  }

  body::before {
    opacity: 0.35;
  }

  body::after {
    opacity: 0.18;
  }

  .quick-nav__item {
    transition: none;
  }


@media (max-width: 960px) {
  .quick-nav {
    display: none;
  }
}
  [data-animate] {
    opacity: 1;
    transform: none !important;
    transition: none;
    transition-delay: 0s !important;
  }

}

@media (max-width: 720px) {
  header {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .hero-card {
    grid-template-columns: 1fr;
    padding: clamp(36px, 8vw, 48px);
    gap: 32px;
  }

  .hero-portrait {
    width: min(320px, 100%);
    justify-self: center;
  }

  .hero-copy {
    text-align: center;
    justify-items: center;
  }

  .cta-row {
    justify-content: center;
  }

  .meta-row {
    justify-content: center;
  }

  section {
    padding: 64px 6vw;
  }

  .timeline::before {
    left: 6px;
  }

  .timeline-item {
    padding-left: 36px;
  }

  .timeline-item::before {
    left: 0;
  }
}
