@charset "UTF-8";
.stack {
  display: flex;
  flex-direction: column;
}
.stack.gap-1 {
  gap: 0.5rem;
}
.stack.gap-2 {
  gap: 1rem;
}
.stack.gap-3 {
  gap: 1.5rem;
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cluster.gap-1 {
  gap: 0.5rem;
}
.cluster.gap-2 {
  gap: 1rem;
}

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

:root {
  color-scheme: dark;
}

html,
body {
  height: 100%;
  margin: 0;
}

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

.section {
  padding: clamp(3rem, 6vw, 6rem) 0;
  position: relative;
}
.section.alt {
  background: rgba(255, 255, 255, 0.02);
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0 0 0.75rem;
  font-family: "Montserrat", sans-serif;
}

p, a, span, ul li {
  font-family: "Lora", serif;
}

h1 {
  font-size: clamp(2rem, 2rem + 1vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 1.5rem + 1vw, 2.25rem);
}

h3 {
  font-size: clamp(1.1rem, 1.1rem + 1vw, 1.5rem);
}

.lead {
  color: #a9b0bb;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
}

.eyebrow {
  letter-spacing: 0.2em;
  color: #64d2ff;
  text-transform: uppercase;
  font-weight: 700;
}

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

.muted {
  color: #a9b0bb;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  -webkit-backdrop-filter: saturate(1.2) blur(8px);
          backdrop-filter: saturate(1.2) blur(8px);
  background: linear-gradient(180deg, rgba(11, 15, 20, 0.85), rgba(11, 15, 20, 0.6));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}
.site-header .brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}
.site-header .logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: radial-gradient(120% 120% at 0% 0%, #64d2ff, transparent 60%), radial-gradient(120% 120% at 100% 0%, #a78bfa, transparent 60%), linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  font-weight: 800;
}
.site-header .brand-text {
  letter-spacing: 0.2px;
}

.nav .nav__toggle {
  background: transparent;
  border: 0;
  display: none;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 10px;
}
.nav .nav__toggle:hover {
  background: rgba(255, 255, 255, 0.04);
}
.nav .nav__toggle .nav__toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #e5e7eb;
  margin: 4px 0;
  border-radius: 2px;
}
.nav .nav__list {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav a {
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  transition: 0.2s ease;
}
.nav a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.theme-toggle {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Hero */
.hero {
  position: relative;
}
.hero .grid-2 {
  grid-template-columns: 1fr;
  text-align: center;
}
.hero .stack {
  align-items: center;
}
.hero .hero__media {
  order: -1;
  margin-bottom: 1.5rem;
}
.hero .avatar-wrap {
  max-width: 260px;
  margin-inline: auto;
  padding: 10px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(100, 210, 255, 0.2), rgba(167, 139, 250, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.hero .avatar {
  width: 100%;
  height: auto;
}
.hero .accent {
  background: linear-gradient(90deg, #64d2ff, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .hero__media {
  display: grid;
  place-items: center;
}
.hero .shine {
  position: absolute;
  inset: auto 0 -40% 0;
  height: 240px;
  background: radial-gradient(50% 50% at 50% 0%, rgba(100, 210, 255, 0.18), transparent 60%);
  pointer-events: none;
}
@media (min-width: 768px) {
  .hero .grid-2 {
    grid-template-columns: 1.1fr 0.9fr;
    text-align: left;
    align-items: center;
  }
  .hero .stack {
    align-items: flex-start;
  }
  .hero .hero__media {
    order: initial;
    margin-bottom: 0;
  }
  .hero .avatar-wrap {
    max-width: 420px;
  }
  .hero .avatar {
    width: 420px;
    height: 420px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

/* Layout helpers */
.grid-2 {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.grid-3 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 820px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.2s ease;
  cursor: pointer;
}
.btn--primary {
  background: linear-gradient(90deg, rgba(100, 210, 255, 0.2), rgba(167, 139, 250, 0.2));
  border-color: transparent;
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.btn--ghost {
  background: transparent;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.05);
}
.btn--sm {
  padding: 0.55rem 0.75rem;
  font-size: 0.92rem;
}

/* Social */
.social__link {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}
.social__link:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* About */
.about__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat {
  text-align: center;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.stat .stat__num {
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
}
.stat .stat__num span {
  font-size: 0.6em;
  color: #a9b0bb;
  margin-left: 0.25rem;
}
.stat .stat__label {
  color: #a9b0bb;
}

/* Skills */
.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Cards & Projects */
.card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.card__media {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.card__body {
  padding: 1rem;
}

.card__title {
  margin-bottom: 0.25rem;
}

.card__text {
  color: #a9b0bb;
}

.card__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0.75rem 0;
}
.card__tags span {
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.85rem;
}

.card__actions {
  display: flex;
  gap: 0.5rem;
}

/* Filters */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.filters {
  display: flex;
  gap: 0.5rem;
}

.filter {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: #e5e7eb;
  cursor: pointer;
  font-weight: 600;
}
.filter.is-active, .filter:hover {
  background: rgba(255, 255, 255, 0.07);
}

/* Timeline */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
  position: relative;
}

.timeline li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 1rem;
  align-items: flex-start;
}

.timeline__point {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #64d2ff, #a78bfa);
  margin-top: 0.45rem;
  box-shadow: 0 0 0 6px rgba(100, 210, 255, 0.08);
}

.timeline__content {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1rem;
}

/* Form */
.form {
  padding: 1rem;
}

.form__field {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

label {
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: #e5e7eb;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #64d2ff;
}

.error {
  color: #ff9aa2;
  min-height: 1.1em;
}

.form__status {
  margin-top: 0.75rem;
  color: #64d2ff;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem 0;
  background: rgba(255, 255, 255, 0.03);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Lists */
.ticks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.ticks li {
  position: relative;
  padding-left: 1.4rem;
  color: #a9b0bb;
}
.ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #64d2ff;
  font-weight: 800;
}

/* Accessibility helpers */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}

.education-container {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.edu-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.edu-card:hover {
  transform: translateY(-5px);
}
.edu-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}
.edu-card p {
  font-size: 1rem;
  color: var(--text-color);
}

/* Mobile nav */
@media (max-width: 880px) {
  .nav .nav__toggle {
    display: block;
  }
  .nav .nav__list {
    position: fixed;
    inset: 64px 12px auto 12px;
    background: rgba(13, 18, 24, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 0.75rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
  }
  .nav.open .nav__list {
    transform: none;
    opacity: 1;
    pointer-events: auto;
    gap: 12px;
  }
  .theme-toggle {
    margin-left: 0.75rem;
  }
  .light-theme .nav .nav__list {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #ddd;
    color: #111;
  }
}/*# sourceMappingURL=styles.css.map */