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

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #e4e4e7;
  background-color: #0a0a0f;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #a855f7;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: rgb(197.9123595506, 143.4494382022, 249.7505617978);
}

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

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.kicker {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a855f7;
  margin-bottom: 0.5rem;
}

.section-heading {
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.section-heading h2 {
  margin-top: 0.25rem;
}
.section-heading p {
  color: #a1a1aa;
  margin-top: 0.5rem;
}

h1, h2, h3, h4 {
  font-family: "Oxanium", cursive;
  font-weight: 700;
  line-height: 1.2;
  color: #e4e4e7;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  color: #a1a1aa;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s, color 0.2s;
  text-decoration: none;
  border: none;
}
.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: #a855f7;
  color: #fff;
}
.btn-primary:hover {
  color: #fff;
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.3);
  background-color: rgb(182.9561797753, 114.2247191011, 248.3752808989);
}

.btn-ghost {
  background: transparent;
  color: #a855f7;
  border: 1px solid #a855f7;
}
.btn-ghost:hover {
  background-color: rgba(168, 85, 247, 0.08);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.1);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  background: rgba(168, 85, 247, 0.12);
  color: #a855f7;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #1e1e2e;
  padding: 0.85rem 0;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-family: "Oxanium", cursive;
  font-weight: 800;
  font-size: 1.4rem;
  color: #e4e4e7;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.logo .logo-accent {
  color: #a855f7;
}
.logo:hover {
  color: #e4e4e7;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-links li a {
  color: #a1a1aa;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
  position: relative;
}
.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #a855f7;
  transition: width 0.25s;
}
.nav-links li a:hover, .nav-links li a.active {
  color: #e4e4e7;
}
.nav-links li a:hover::after, .nav-links li a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #a1a1aa;
  margin: 5px 0;
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
    border-bottom: 1px solid #1e1e2e;
  }
  .nav-links li {
    padding: 0.75rem 0;
  }
  .nav-links.active {
    max-height: 300px;
  }
}
.section {
  padding: 5rem 0;
}

.hero-home {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  text-align: center;
}
.hero-home .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-home h1 {
  margin-top: 0.25rem;
  margin-bottom: 1rem;
}
.hero-home .hero-subtitle {
  max-width: 600px;
  font-size: 1.1rem;
  color: #a1a1aa;
  margin-bottom: 0.5rem;
}

.hero-subpage {
  padding-top: 120px;
  padding-bottom: 2rem;
  text-align: center;
}
.hero-subpage .section-heading {
  max-width: 700px;
  margin: 0 auto;
}
.hero-subpage h1 {
  margin-bottom: 1rem;
}
.hero-subpage p {
  color: #a1a1aa;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: rgba(20, 20, 31, 0.8);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s, transform 0.3s;
}
.feature-card:hover {
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.15);
  transform: translateY(-4px);
}
.feature-card h3 {
  margin-bottom: 0.75rem;
  color: #a855f7;
}

.spotlight {
  background: rgba(20, 20, 31, 0.8);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-left: 3px solid #a855f7;
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.spotlight .spotlight-copy {
  flex: 1;
  min-width: 260px;
}
.spotlight .spotlight-copy h2 {
  margin-bottom: 0.5rem;
}
.spotlight .spotlight-copy p {
  margin-bottom: 1rem;
}

.about-hero {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
}

.about-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #a855f7;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

.about-intro {
  flex: 1;
  min-width: 260px;
}
.about-intro h1 {
  margin-bottom: 0.25rem;
}
.about-intro .role-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #a855f7;
  margin-bottom: 1rem;
}

.summary-section {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.summary-section p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.skills-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.skill-group {
  background: rgba(20, 20, 31, 0.8);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
}
.skill-group h3 {
  font-size: 1rem;
  color: #a855f7;
  margin-bottom: 0.75rem;
}
.skill-group .skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 7px;
  width: 2px;
  height: 100%;
  background: #a855f7;
  opacity: 0.4;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #a855f7;
  border: 2px solid #0a0a0f;
  box-shadow: 0 0 8px rgba(168, 85, 247, 0.3);
}
.timeline-item .timeline-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}
.timeline-item .timeline-header h3 {
  margin: 0;
}
.timeline-item .timeline-header .timeline-org {
  color: #a1a1aa;
  font-size: 0.9rem;
}
.timeline-item .timeline-header .timeline-date {
  font-size: 0.8rem;
  color: #a1a1aa;
  margin-left: auto;
}
.timeline-item ul {
  list-style: none;
  padding: 0;
}
.timeline-item ul li {
  position: relative;
  padding-left: 1rem;
  color: #a1a1aa;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
.timeline-item ul li::before {
  content: "•";
  color: #a855f7;
  position: absolute;
  left: 0;
}

.education-card {
  background: rgba(20, 20, 31, 0.8);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  display: inline-block;
}
.education-card h3 {
  color: #a855f7;
  margin-bottom: 0.25rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.work-card {
  background: rgba(20, 20, 31, 0.8);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.work-card:hover {
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.15);
  transform: translateY(-4px);
}
.work-card .work-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.work-card .work-head h2 {
  font-size: 1.35rem;
}
.work-card p {
  margin-bottom: 0.75rem;
}
.work-card .inline-link {
  margin-top: auto;
  padding-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.status {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  background: rgba(161, 161, 170, 0.15);
  color: #a1a1aa;
  white-space: nowrap;
}

.status-live {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: rgba(20, 20, 31, 0.8);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 12px;
  padding: 2rem;
}
.contact-card h2 {
  margin-bottom: 1rem;
}

.contact-list {
  list-style: none;
  margin-top: 1rem;
}
.contact-list li {
  padding: 0.5rem 0;
  color: #a1a1aa;
  border-bottom: 1px solid #1e1e2e;
  font-size: 0.95rem;
}
.contact-list li:last-child {
  border-bottom: none;
}
.contact-list li strong {
  color: #e4e4e7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #a1a1aa;
  margin-top: 0.75rem;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  border: 1px solid #1e1e2e;
  background: #0a0a0f;
  color: #e4e4e7;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: #a855f7;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
}
.contact-form textarea {
  resize: vertical;
}
.contact-form button[type=submit] {
  margin-top: 1rem;
  align-self: flex-start;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form-status {
  display: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.form-status.is-visible {
  display: block;
}
.form-status.is-success {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
}
.form-status.is-error {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

.mini-note {
  font-size: 0.8rem;
  color: #a1a1aa;
  margin-top: 0.75rem;
}

.cta-panel {
  background: rgba(20, 20, 31, 0.8);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.cta-panel h2 {
  margin-top: 0.25rem;
}
.cta-panel p {
  color: #a1a1aa;
  max-width: 560px;
  margin-top: 0.5rem;
}

.site-footer {
  border-top: 1px solid #1e1e2e;
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #a1a1aa;
}
.footer-inner a {
  font-weight: 500;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }
  .hero-home {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 2rem;
  }
  .hero-subpage {
    padding-top: 100px;
  }
  .about-hero {
    flex-direction: column;
    text-align: center;
  }
  .about-intro {
    min-width: 100%;
    text-align: center;
  }
  .timeline-item .timeline-header {
    flex-direction: column;
  }
  .timeline-item .timeline-header .timeline-date {
    margin-left: 0;
  }
  .spotlight {
    flex-direction: column;
    text-align: center;
  }
  .cta-panel {
    flex-direction: column;
    text-align: center;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
}

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