@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background-color: #ffffff;
  color: #333333;
  line-height: 1.6;
  font-size: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: #0194fc;
}

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

.container {
  width: min(100% - 3rem, 1152px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(215, 22, 41, 0.45);
  z-index: 200;
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 12px 32px rgba(51, 51, 51, 0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.brand__dot {
  width: 13px;
  height: 13px;
  background-color: #d71629;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(215, 22, 41, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-weight: 500;
}
.site-nav a {
  position: relative;
  padding-bottom: 0.35rem;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #0194fc;
  transition: width 0.3s ease;
}
.site-nav a:hover::after, .site-nav a:focus::after {
  width: 100%;
}
.site-nav .nav-cta {
  color: #d71629;
  font-weight: 600;
}
@media (max-width: 860px) {
  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
  }
}

.hero {
  padding: 5.5rem 0 4rem;
}
.hero--profile .container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}
@media (max-width: 1024px) {
  .hero--profile .container {
    grid-template-columns: 1fr;
  }
}
.hero__profile {
  display: grid;
  grid-template-columns: minmax(0, 220px) 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 680px) {
  .hero__profile {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.hero__portrait {
  position: relative;
  width: 205px;
  aspect-ratio: 3/4;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 4px solid rgba(1, 148, 252, 0.55);
  box-shadow: 0 20px 48px rgba(5, 29, 63, 0.22);
  background: linear-gradient(135deg, rgba(1, 148, 252, 0.15), rgba(215, 22, 41, 0.14));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem;
}
@media (max-width: 680px) {
  .hero__portrait {
    margin: 0 auto;
  }
}
.hero__portrait img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 1.15rem;
}
.hero__identity {
  display: grid;
  gap: 0.6rem;
}
.hero__identity h1 {
  font-size: clamp(2.4rem, 4vw + 1rem, 3.2rem);
  line-height: 1.1;
}
.hero__identity .hero__title {
  font-weight: 600;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: rgba(51, 51, 51, 0.76);
}
.hero__contact {
  list-style: none;
  display: grid;
  gap: 0.35rem;
  font-size: 0.98rem;
}
.hero__contact span {
  font-weight: 600;
  margin-right: 0.35rem;
}
@media (max-width: 680px) {
  .hero__contact {
    justify-items: center;
  }
}
.hero__social {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin-top: 0.75rem;
}
@media (max-width: 680px) {
  .hero__social {
    justify-content: center;
  }
}
.hero__summary {
  background: linear-gradient(135deg, rgba(1, 148, 252, 0.08), rgba(215, 22, 41, 0.08));
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 1.75rem;
  border: 1px solid rgba(1, 148, 252, 0.2);
  box-shadow: 0 10px 28px rgba(51, 51, 51, 0.1);
  display: grid;
  gap: 1.25rem;
  font-size: 1.08rem;
}
.hero__summary .btn {
  justify-self: flex-start;
}
@media (max-width: 680px) {
  .hero__summary .btn {
    width: 100%;
  }
}

.hero-accent {
  position: fixed;
  top: -12rem;
  right: -8rem;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle at center, rgba(215, 22, 41, 0.16) 0%, rgba(215, 22, 41, 0.08) 40%, rgba(215, 22, 41, 0) 70%);
  z-index: -1;
  filter: blur(0.25rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background-color: #d71629;
  color: #ffffff;
  box-shadow: 0 16px 28px rgba(215, 22, 41, 0.24);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 38px rgba(215, 22, 41, 0.28);
}
.btn-secondary {
  background: transparent;
  border: 2px solid rgba(1, 148, 252, 0.65);
  color: #0194fc;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  background: #0194fc;
  color: #ffffff;
  box-shadow: 0 18px 28px rgba(1, 148, 252, 0.2);
  transform: translateY(-2px);
}

.section {
  padding: 4.5rem 0;
}
.section__header {
  margin-bottom: 3rem;
}
.section__header h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  position: relative;
  display: inline-block;
  padding-bottom: 0.4rem;
}
.section__header h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3.75rem;
  height: 3px;
  background-color: #d71629;
}
.section__header p {
  margin-top: 1rem;
  max-width: 48rem;
  font-size: 1.05rem;
}
.section--timeline {
  background-color: #f5f6f8;
}
.section--tabs {
  background-color: #ffffff;
}
.section--footprint {
  background: linear-gradient(135deg, rgba(1, 148, 252, 0.05), rgba(215, 22, 41, 0.05));
}
.section--contact {
  background-color: #ffffff;
}

.timeline {
  position: relative;
  display: grid;
  gap: 2.5rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #d71629, rgba(215, 22, 41, 0.05));
}
.timeline__item {
  position: relative;
  padding-left: 3.5rem;
}
@media (max-width: 640px) {
  .timeline__item {
    padding-left: 3.1rem;
  }
}
.timeline__marker {
  position: absolute;
  top: 0.4rem;
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background-color: #ffffff;
  border: 4px solid #d71629;
  box-shadow: 0 0 0 6px rgba(215, 22, 41, 0.1);
}
.timeline__content {
  background-color: #ffffff;
  border-radius: 1.35rem;
  padding: 1.85rem 2.2rem;
  border: 1px solid rgba(1, 148, 252, 0.2);
  box-shadow: 0 10px 28px rgba(51, 51, 51, 0.1);
  display: grid;
  gap: 0.65rem;
}
.timeline__content h3 {
  font-size: 1.3rem;
}
.timeline__content .timeline__org {
  font-weight: 600;
  color: rgba(51, 51, 51, 0.72);
}
.timeline__content .timeline__date {
  font-weight: 600;
  color: #0194fc;
}

.skills-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
  gap: 2.5rem;
}
@media (max-width: 920px) {
  .skills-layout {
    grid-template-columns: 1fr;
  }
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
}
@media (max-width: 992px) {
  .skills-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }
}
.skills-grid .skill-card {
  background-color: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid #e3e5eb;
  box-shadow: 0 10px 28px rgba(51, 51, 51, 0.1);
  font-weight: 600;
  font-size: 1.02rem;
  text-transform: capitalize;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: grid;
  place-items: center;
  text-align: center;
}
.skills-grid .skill-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(1, 148, 252, 0.16);
}

.achievement-callout {
  border: 2px solid #d71629;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 18px 34px rgba(215, 22, 41, 0.15);
  background: linear-gradient(125deg, rgba(215, 22, 41, 0.08), rgba(1, 148, 252, 0.08));
  display: grid;
  gap: 0.8rem;
}
.achievement-callout h3 {
  font-size: 1.25rem;
}

.tabs {
  display: inline-flex;
  background-color: rgba(1, 148, 252, 0.08);
  border-radius: 999px;
  padding: 0.4rem;
  gap: 0.4rem;
}

.tab {
  border: none;
  background: transparent;
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.tab.is-active {
  background-color: #d71629;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(215, 22, 41, 0.25);
}

.tab-panels {
  margin-top: 2.2rem;
}

.tab-panel {
  display: block;
}
.tab-panel[hidden] {
  display: none;
}

.education-list {
  list-style: none;
  display: grid;
  gap: 1.5rem;
}
.education-list li {
  padding: 1.6rem 1.8rem;
  border-radius: 1.4rem;
  border: 1px solid #e3e5eb;
}
.education-list li__social {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin-top: 0.75rem;
}
@media (max-width: 680px) {
  .education-list li__social {
    justify-content: center;
  }
}
.education-list li {
  box-shadow: 0 10px 28px rgba(51, 51, 51, 0.1);
  background-color: #ffffff;
  display: grid;
  gap: 0.5rem;
}
.education-list li h3 {
  font-size: 1.2rem;
}

.accordion {
  display: grid;
  gap: 1rem;
}

.accordion__item {
  border-radius: 1.2rem;
  border: 1px solid rgba(1, 148, 252, 0.2);
  background-color: #ffffff;
  box-shadow: 0 10px 28px rgba(51, 51, 51, 0.1);
  overflow: hidden;
}

.accordion__trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  font-weight: 600;
  padding: 1.2rem 1.6rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  color: inherit;
}

.accordion__content {
  padding: 0 1.6rem 1.4rem;
}
.accordion__content[hidden] {
  display: none;
}

.footprint-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}
@media (max-width: 960px) {
  .footprint-grid {
    grid-template-columns: 1fr;
  }
}

.languages {
  display: grid;
  gap: 1.5rem;
}

.language {
  display: grid;
  gap: 0.65rem;
}
.language__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}
.language__label span:last-child {
  font-weight: 500;
  color: rgba(51, 51, 51, 0.65);
}

.progress__track {
  height: 0.65rem;
  background-color: rgba(215, 22, 41, 0.15);
  border-radius: 999px;
  overflow: hidden;
}
.progress__fill {
  height: 100%;
  background: linear-gradient(90deg, #d71629, rgba(215, 22, 41, 0.8));
  border-radius: 999px;
  transition: width 0.9s ease;
}

.map {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 24px 40px rgba(1, 148, 252, 0.18);
  border: 1px solid rgba(1, 148, 252, 0.25);
  background-color: #ffffff;
  display: grid;
  gap: 1rem;
}
.map svg {
  width: 100%;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(5, 29, 63, 0.18));
}
.map .map__outline path {
  fill: rgba(255, 255, 255, 0.78);
  stroke: rgba(16, 32, 56, 0.45);
  stroke-width: 1.6;
  stroke-linejoin: round;
  transition: fill 0.35s ease, stroke 0.35s ease;
}
.map .map__outline path:hover {
  fill: rgba(1, 148, 252, 0.16);
  stroke: rgba(215, 22, 41, 0.55);
}
.map .map__markers circle {
  cursor: pointer;
  fill: #0194fc;
  stroke: #ffffff;
  stroke-width: 2;
  transition: fill 0.25s ease, stroke 0.25s ease;
}
.map .map__markers circle:focus-visible,
.map .map__markers circle:hover {
  fill: #d71629;
  stroke: rgba(255, 255, 255, 0.9);
}
.map .map__legend {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
  padding: 0 1.5rem 1.5rem;
  font-weight: 600;
  color: #000000;
  font-size: 0.95rem;
}
.map .map__legend li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(16, 32, 56, 0.88);
}
.map .map__legend li::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #0194fc;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px rgba(1, 148, 252, 0.35);
  display: inline-flex;
  flex: 0 0 auto;
}
.map .map__tooltip {
  position: absolute;
  padding: 0.35rem 0.6rem;
  background-color: #ffffff;
  border: 1px solid rgba(1, 148, 252, 0.3);
  border-radius: 0.5rem;
  box-shadow: 0 10px 28px rgba(51, 51, 51, 0.1);
  font-size: 0.85rem;
  font-weight: 600;
  color: #0194fc;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -120%);
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.section--contact .contact-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.8rem;
}
@media (max-width: 1024px) {
  .section--contact .contact-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .section--contact .contact-panel {
    grid-template-columns: 1fr;
  }
}
.section--contact .contact-panel__item {
  background-color: #ffffff;
  border: 1px solid #e3e5eb;
  border-radius: 1.4rem;
  padding: 1.6rem;
  box-shadow: 0 10px 28px rgba(51, 51, 51, 0.1);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section--contact .contact-panel__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(1, 148, 252, 0.22);
}
.section--contact .contact-panel__item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.section--contact .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: #0194fc;
  text-decoration: none;
}
.section--contact .contact-link::after {
  content: "↗";
  font-size: 0.9rem;
}
.section--contact .contact-link:hover, .section--contact .contact-link:focus-visible {
  color: rgb(0.8992094862, 133.0830039526, 226.6007905138);
}
.section--contact .contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(1, 148, 252, 0.12);
  color: #0194fc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.section--contact .contact-panel__item:hover .contact-icon {
  background-color: #0194fc;
  color: #ffffff;
}

.site-footer {
  background: linear-gradient(135deg, rgba(1, 148, 252, 0.88), rgba(215, 22, 41, 0.92));
  color: #ffffff;
  padding: 3rem 0;
  margin-top: 3rem;
}
.site-footer .container {
  display: grid;
  gap: 1.1rem;
  text-align: center;
}
.site-footer .footer__disclaimer {
  font-size: 0.9rem;
  opacity: 0.82;
}

@media (max-width: 600px) {
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.6rem;
    font-size: 0.92rem;
  }
}

/*# sourceMappingURL=main.css.map */
