:root {
  color-scheme: dark;
  --bg: #04060f;
  --bg-soft: #0b1226;
  --card: rgba(10, 16, 34, 0.78);
  --card-strong: rgba(15, 22, 45, 0.92);
  --border: rgba(159, 171, 217, 0.2);
  --primary: #3350cc;
  --primary-dark: #2d46ae;
  --primary-soft: #566dce;
  --accent: #22378f;
  --text: #eeefef;
  --muted: #9c9ea5;
  --muted-2: #575a6a;
  --shadow: 0 20px 60px rgba(3, 8, 30, 0.65);
  --radius: 22px;
  --font-heading: "Sora", "Manrope", sans-serif;
  --font-body: "Manrope", "Sora", sans-serif;
}

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

body {
  min-height: 100vh;
  font-family: var(--font-body);
  background: radial-gradient(circle at top, rgba(51, 80, 204, 0.2), transparent 60%),
    radial-gradient(circle at 10% 20%, rgba(86, 109, 206, 0.18), transparent 45%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.bg-orb {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.8;
  z-index: 0;
}

.orb-1 {
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(51, 80, 204, 0.45), transparent 70%);
}

.orb-2 {
  bottom: -160px;
  left: -120px;
  background: radial-gradient(circle, rgba(34, 55, 143, 0.5), transparent 70%);
}

.container {
  width: min(1150px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(4, 6, 15, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(87, 90, 106, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  padding: 6px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(122, 146, 255, 0.4);
  box-shadow: 0 10px 24px rgba(6, 12, 40, 0.55),
    0 0 16px rgba(122, 146, 255, 0.35);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a.is-active {
  color: #ffffff;
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary-soft);
  box-shadow: 0 0 10px rgba(86, 109, 206, 0.6);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 12px 30px rgba(45, 70, 174, 0.4);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(45, 70, 174, 0.55);
}

.btn.ghost {
  border-color: rgba(159, 171, 217, 0.35);
  color: var(--text);
  background: transparent;
}

.btn.ghost:hover {
  border-color: var(--primary-soft);
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 90px 0 60px;
  align-items: center;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 3vw + 1.6rem, 4.1rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-role {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-soft);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.gradient-text {
  background: linear-gradient(120deg, var(--primary), #9fabd9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.typewriter {
  position: relative;
  display: inline-block;
}

.typewriter::after {
  content: "";
  display: inline-block;
  width: 0.1em;
  height: 1em;
  margin-left: 0.08em;
  background: var(--primary-soft);
  animation: typeBlink 1s steps(1) infinite;
}

@keyframes typeBlink {
  50% {
    opacity: 0;
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted);
  font-size: 0.7rem;
  margin-bottom: 14px;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 30px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.highlight-item {
  padding: 16px;
  border-radius: 16px;
  background: rgba(15, 22, 45, 0.6);
  border: 1px solid rgba(159, 171, 217, 0.2);
}

.highlight-item span {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.hero-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--card-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 20px;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #37d37e;
  box-shadow: 0 0 12px rgba(55, 211, 126, 0.6);
}

.profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.portrait {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(51, 80, 204, 0.4), rgba(86, 109, 206, 0.2));
  border: 1px solid rgba(159, 171, 217, 0.35);
}

.profile-name {
  font-weight: 600;
}

.profile-role {
  color: var(--muted);
  font-size: 0.9rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  background: rgba(34, 55, 143, 0.45);
  border: 1px solid rgba(159, 171, 217, 0.2);
}

.hero-metric h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin: 8px 0 6px;
}

.muted {
  color: var(--muted);
}

.contact-mini {
  display: grid;
  gap: 12px;
  font-size: 0.9rem;
}

.contact-mini span {
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}

.contact-mini a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-mini a:hover {
  color: #fff;
}

.logo-strip {
  padding: 35px 0;
  border-top: 1px solid rgba(87, 90, 106, 0.25);
  border-bottom: 1px solid rgba(87, 90, 106, 0.25);
  margin-bottom: 40px;
}

.logo-strip p {
  color: var(--muted);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--text);
  font-weight: 600;
}

.logo-marquee {
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid rgba(87, 90, 106, 0.2);
  border-bottom: 1px solid rgba(87, 90, 106, 0.2);
}

.logo-marquee .container {
  overflow: hidden;
}

.logo-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: logoMarquee 18s linear infinite;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
}

.logo-item {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(159, 171, 217, 0.25);
  background: rgba(12, 18, 40, 0.65);
  font-weight: 600;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.logo-item img {
  height: 32px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 6px rgba(86, 109, 206, 0.35));
}

.logo-label {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: rgba(238, 239, 239, 0.8);
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }
}

.section {
  padding: 70px 0;
}

.section-header {
  margin-bottom: 40px;
}

.section-header h2,
.section-grid h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 1.2rem + 1.5vw, 2.6rem);
  margin-bottom: 12px;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: start;
}

.about-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 20px;
  column-gap: 50px;
  margin-top: 30px;
}

.about-list h4 {
  margin-bottom: 8px;
}

.about-list ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.about-list li {
  position: relative;
  padding-left: 18px;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-soft);
  box-shadow: 0 0 8px rgba(86, 109, 206, 0.45);
  transform: translateY(-50%);
}

@media (max-width: 860px) {
  .about-list {
    grid-template-columns: 1fr;
  }
}

.about-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px;
  display: grid;
  gap: 18px;
}

.highlight span {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  color: var(--primary-soft);
}

.about-card .highlight:nth-of-type(1) span {
  color: #7bd389;
}

.about-card .highlight:nth-of-type(2) span {
  color: #f5c06a;
}

.about-card .highlight:nth-of-type(3) span {
  color: #7db2ff;
}

.timeline {
  display: grid;
  gap: 24px;
  position: relative;
  --rail-offset: 28px;
  --rail-gap: 44px;
  padding-left: calc(var(--rail-offset) + var(--rail-gap));
}

.timeline-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: var(--rail-offset);
  top: 8px;
  bottom: 8px;
  width: 1.5px;
  background: linear-gradient(
    180deg,
    rgba(86, 109, 206, 0),
    rgba(86, 109, 206, 0.65) 12%,
    rgba(86, 109, 206, 0.65) 88%,
    rgba(86, 109, 206, 0)
  );
}

.timeline-card::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--rail-gap) - 5px);
  top: 32px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-soft);
  box-shadow: 0 0 12px rgba(86, 109, 206, 0.6);
}

.timeline-card::after {
  content: "";
  position: absolute;
  left: calc(-1 * var(--rail-gap));
  top: 36px;
  width: calc(var(--rail-gap) - 12px);
  height: 2px;
  background: rgba(86, 109, 206, 0.5);
}

.timeline-header {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  position: relative;
}

.timeline-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.timeline-header span {
  color: var(--muted);
}

.timeline-header .timeline-company {
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #c46a1a;
}

.timeline-location {
  color: #c46a1a;
  font-weight: 700;
  margin-left: 6px;
}

.timeline-header small {
  color: var(--muted-2);
}

.timeline-date {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(26, 123, 82, 0.45), rgba(14, 74, 49, 0.85));
  border: 1px solid rgba(88, 205, 143, 0.6);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.03em;
  width: fit-content;
  position: absolute;
  right: 0;
  top: 0;
}

.timeline-header .timeline-date {
  color: #ffffff;
}

.timeline-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.timeline-bulks {
  display: grid;
  gap: 18px;
}

.timeline-bulks ul {
  margin: 0;
  padding: 0;
}

.timeline-bulks li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
  border-radius: 0;
  background: transparent;
  border: none;
  color: var(--muted);
}

.timeline-bulks li::before {
  content: "";
  position: static;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(122, 146, 255, 0.75);
  box-shadow: none;
  margin-top: 0.5em;
}

.bulk h4 {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #cdd6ff;
  margin-bottom: 8px;
}

.skill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.skill-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(15, 22, 45, 0.7);
  border: 1px solid rgba(159, 171, 217, 0.2);
}

.skill-card h4 {
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.card {
  padding: 22px;
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.card h3,
.timeline-header h3,
.edu-card h3,
.project-body h3,
.cert-roadmap .cert-card h3,
.skill-card h4,
.step h4 {
  background: linear-gradient(120deg, var(--primary-soft), #9fabd9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cert-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cert-roadmap {
  display: grid;
  gap: 22px;
  margin-top: 30px;
  position: relative;
}

.cert-roadmap::before {
  content: "";
  position: absolute;
  left: 110px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(86, 109, 206, 0.25);
}

.cert-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  position: relative;
}

.cert-item::before {
  content: "";
  position: absolute;
  left: 100px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  box-shadow: 0 0 0 6px rgba(51, 80, 204, 0.18);
}

.cert-date {
  text-align: right;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.95rem;
  padding-top: 2px;
}

.cert-roadmap .cert-card {
  background: rgba(12, 18, 40, 0.8);
  border-radius: 18px;
  border: 1px solid rgba(159, 171, 217, 0.2);
  padding: 20px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cert-roadmap .cert-card:hover {
  transform: translateY(-3px);
  border-color: rgba(86, 109, 206, 0.55);
  box-shadow: 0 18px 45px rgba(13, 26, 70, 0.55);
}

.cert-link {
  align-self: flex-start;
  margin-top: auto;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(159, 171, 217, 0.3);
  background: rgba(34, 55, 143, 0.35);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.cert-link:hover {
  border-color: var(--primary-soft);
  background: rgba(51, 80, 204, 0.35);
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .cert-roadmap::before {
    left: 14px;
  }

  .cert-item {
    grid-template-columns: 1fr;
    padding-left: 34px;
  }

  .cert-item::before {
    left: 8px;
  }

  .cert-date {
    text-align: left;
  }
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.project-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(3, 8, 30, 0.45);
  display: grid;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.project-thumb {
  height: 160px;
  background: linear-gradient(130deg, rgba(45, 70, 174, 0.55), rgba(86, 109, 206, 0.35));
}

.project-thumb.alt {
  background: linear-gradient(130deg, rgba(34, 55, 143, 0.6), rgba(59, 67, 103, 0.5));
}

.project-thumb.accent {
  background: linear-gradient(130deg, rgba(86, 109, 206, 0.5), rgba(159, 171, 217, 0.35));
}

.project-body {
  padding: 22px;
}

.tag {
  display: inline-flex;
  margin-top: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(86, 109, 206, 0.25);
  font-size: 0.8rem;
}

.steps {
  display: grid;
  gap: 18px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 16px;
  background: rgba(15, 22, 45, 0.65);
  border: 1px solid rgba(159, 171, 217, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.step span {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-soft);
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.edu-card {
  padding: 22px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover,
.project-card:hover,
.timeline-card:hover,
.skill-card:hover,
.edu-card:hover,
.hero-card:hover,
.step:hover {
  transform: translateY(-4px);
  border-color: rgba(86, 109, 206, 0.55);
  box-shadow: 0 18px 45px rgba(13, 26, 70, 0.55);
}

.edu-card span {
  color: var(--muted);
  display: block;
  margin-top: 8px;
}

.cta {
  padding: 80px 0 90px;
  background: linear-gradient(135deg, rgba(34, 55, 143, 0.35), rgba(15, 22, 45, 0.8));
  border-top: 1px solid rgba(87, 90, 106, 0.25);
}

.cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 1.4rem + 1.5vw, 3rem);
  margin-bottom: 12px;
}

.cta p {
  color: var(--muted);
  max-width: 640px;
}

.contact-form {
  margin-top: 24px;
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(12, 18, 40, 0.7);
  border: 1px solid rgba(159, 171, 217, 0.2);
}

.form-status {
  min-height: 1.1em;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-status.is-success {
  color: #7bd389;
}

.form-status.is-error {
  color: #f5c06a;
}

.form-status.is-loading {
  color: #cdd6ff;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(159, 171, 217, 0.25);
  background: rgba(6, 10, 24, 0.9);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary-soft);
  box-shadow: 0 0 0 3px rgba(86, 109, 206, 0.2);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.socials {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  color: var(--muted);
}

.socials a:hover {
  color: var(--text);
}

.footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(87, 90, 106, 0.25);
  color: var(--muted);
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(12, 18, 40, 0.6);
  border: 1px solid rgba(159, 171, 217, 0.25);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  color: #ffffff;
}

.footer-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-icon:hover {
  border-color: var(--primary-soft);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(6, 12, 40, 0.45);
}

.footer-linkedin:hover {
  color: #0a66c2;
  border-color: rgba(10, 102, 194, 0.7);
  box-shadow: 0 10px 24px rgba(10, 102, 194, 0.35);
}

.footer-gitlab:hover {
  color: #fc6d26;
  border-color: rgba(252, 109, 38, 0.7);
  box-shadow: 0 10px 24px rgba(252, 109, 38, 0.35);
}

[data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .nav-links {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline {
    --rail-offset: 22px;
    --rail-gap: 32px;
    padding-left: calc(var(--rail-offset) + var(--rail-gap));
  }
}
