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

:root {
  --background: #0a0a0a;
  --foreground: #fafafa;
  --muted: #444;
  --muted-foreground: #999;
  --accent: #2563eb;
  --border: #222;
  --card: #141414;
  --primary: #fafafa;
  --primary-foreground: #0a0a0a;

  --font-sans: "Playfair Display", Georgia, serif;
  --font-mono: "Geist Mono", "Courier New", monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Noise Overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

/* Selection */
::selection {
  background: var(--accent);
  color: var(--accent-foreground);
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
}

.custom-cursor__dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.custom-cursor__ring {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 1px solid white;
  border-radius: 50%;
  transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animations */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-down {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in-from-left {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slide-in-from-right {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

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

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

@keyframes pulse {
  0%,
  100% {
    opacity: 0.75;
  }
  50% {
    opacity: 1;
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  animation: fade-in 0.8s ease-out;
}

.navbar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  gap: 2rem;
}

@media (min-width: 768px) {
  .navbar__content {
    padding: 1.25rem 3rem;
  }
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  animation: fade-in-down 0.8s ease-out 0.2s backwards;
}

.navbar__logo-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
}

.navbar__logo-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  transition: transform 0.3s;
}

.navbar__logo:hover .navbar__logo-dot {
  transform: scale(1.5);
}

.navbar__name {
  display: none;
}

@media (min-width: 768px) {
  .navbar__name {
    display: block;
    animation: fade-in-down 0.8s ease-out 0.2s backwards;
  }
}

.navbar__name-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
}

.navbar__links {
  display: none;
  list-style: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .navbar__links {
    display: flex;
  }
}

.navbar__link {
  background: none;
  border: none;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 0.25rem;
}

.navbar__link:hover {
  color: var(--foreground);
}

.navbar__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--foreground);
  transition: width 0.3s;
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__link-number {
  color: var(--accent);
  margin-right: 0.5rem;
}

.navbar__status {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .navbar__status {
    display: flex;
  }
}

.navbar__status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s;
}

.navbar__status-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s;
  opacity: 0.75;
}

.navbar__status-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
}

.navbar__connect {
  display: none;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 0.375rem;
  background: transparent;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .navbar__connect {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}

.navbar__connect:hover {
  border-color: var(--accent);
  background: rgba(37, 99, 235, 0.1);
}

.navbar__menu-btn {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .navbar__menu-btn {
    display: none;
  }
}

.navbar__menu-line {
  width: 24px;
  height: 1px;
  background: var(--foreground);
  transition: all 0.3s;
  transform-origin: center;
}

.navbar__menu-btn--active .navbar__menu-line:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.navbar__menu-btn--active .navbar__menu-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.navbar__menu-btn--active .navbar__menu-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  top: 60px;
}

.mobile-menu--open {
  display: flex;
}

.mobile-menu__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 2rem;
}

.mobile-menu__link {
  background: none;
  border: none;
  font-size: 1.875rem;
  color: var(--foreground);
  cursor: pointer;
  font-family: var(--font-sans);
  letter-spacing: -0.02em;
}

.mobile-menu__link span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  margin-right: 0.5rem;
}

.mobile-menu__status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.mobile-menu__status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 60px;
}

.hero__content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  z-index: 10;
}

@media (min-width: 768px) {
  .hero__content {
    padding: 3rem;
  }
}

.hero__top-left {
  animation: fade-in-up 1s ease-out 0.2s backwards;
}

.hero__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.hero__title {
  font-size: 2.25rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 4.5rem;
  }
}

.hero__title .italic {
  font-style: italic;
}

.hero__top-right {
  position: absolute;
  top: 3rem;
  right: 2rem;
  text-align: right;
  animation: fade-in-down 1s ease-out 0.2s backwards;
}

@media (min-width: 768px) {
  .hero__top-right {
    top: 5rem;
    right: 3rem;
  }
}

.hero__name {
  font-size: 1.875rem;
  font-weight: 300;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero__name {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero__name {
    font-size: 3.75rem;
  }
}

.hero__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  animation: fade-in 0.8s ease-out 0.6s backwards;
}

.hero__button {
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  background: transparent;
  backdrop-filter: blur(4px);
  color: white;
  cursor: pointer;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}

.hero__button:hover {
  background: white;
  color: black;
  border-color: white;
}

.hero__button-pulse {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  width: 8px;
  height: 8px;
  background: #2563eb;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero__bottom-right {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  text-align: right;
  animation: fade-in-down 1s ease-out 0.4s backwards;
}

@media (min-width: 768px) {
  .hero__bottom-right {
    bottom: 5rem;
    right: 3rem;
  }
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fade-in 0s ease-out 1.5s backwards, bob 1.5s ease-in-out infinite;
  animation-delay: 1.5s, 1.5s;
}

.hero__scroll-text {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
}

.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

/* About Section */
.about {
  position: relative;
  padding: 2rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .about {
    padding: 8rem 3rem;
  }
}

.about__header {
  margin-bottom: 3rem;
  animation: fade-in-up 0.8s ease-out;
}

.about__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.about__title {
  font-size: 1.875rem;
  font-weight: 300;
  font-style: italic;
}

@media (min-width: 768px) {
  .about__title {
    font-size: 3rem;
  }
}

.about__marquee {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.about__marquee-row {
  display: flex;
  gap: 4rem;
  animation: marquee-left 50s linear infinite;
  white-space: nowrap;
}

.about__statement {
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .about__statement {
    font-size: 3.75rem;
  }
}

.about__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin-top: 2rem;
}

/* Works Section */
.works {
  position: relative;
  padding: 2rem;
}

@media (min-width: 768px) {
  .works {
    padding: 8rem 3rem;
  }
}

.works__header {
  margin-bottom: 3rem;
  animation: fade-in-up 0.8s ease-out;
}

.works__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.works__title {
  font-size: 1.875rem;
  font-weight: 300;
  font-style: italic;
}

@media (min-width: 768px) {
  .works__title {
    font-size: 3rem;
  }
}

.works__list {
  position: relative;
}

.works__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  animation: fade-in-up 0.8s ease-out;
  transition: all 0.3s;
}

.works__item:hover {
  padding-left: 1.25rem;
}

.works__year {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted-foreground);
  letter-spacing: 0.08em;
}

.works__item-title {
  font-size: 2.25rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

@media (min-width: 768px) {
  .works__item-title {
    font-size: 3.75rem;
  }
}

.works__item:hover .works__item-title {
  color: rgba(255, 255, 255, 0.7);
}

.works__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.works__tag {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  padding: 0.375rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--muted-foreground);
  white-space: nowrap;
}

.works__see-projects {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.works__see-projects-btn {
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 0.375rem;
  background: transparent;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.works__see-projects-btn:hover {
  border-color: var(--accent);
  background: rgba(37, 99, 235, 0.1);
}

/* Tech Section */
.tech-section {
  position: relative;
  padding: 2rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .tech-section {
    padding: 6rem 3rem 8rem;
  }
}

.tech-section__header {
  margin-bottom: 3rem;
  padding: 0 1rem;
  animation: fade-in-up 0.8s ease-out;
}

.tech-section__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
}

.tech-section__marquee {
  space-y: 1rem;
}

.tech-section__marquee-row {
  display: flex;
  gap: 2rem;
  animation: marquee-left 50s linear infinite;
  white-space: nowrap;
  padding: 1rem 0;
}

.tech-section__marquee-row--reverse {
  animation: marquee-right 50s linear infinite;
}

.tech-section__item {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  cursor: default;
  transition: all 0.3s;
}

.tech-section__item:hover {
  color: white;
  -webkit-text-fill-color: white;
}

@media (min-width: 768px) {
  .tech-section__item {
    font-size: 4.5rem;
  }
}

.tech-section__cta {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}

.tech-section__button {
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
}

.tech-section__button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
  position: relative;
}

.footer__cta {
  display: block;
  width: 100%;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  border: none;
  padding: 4rem 2rem;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: all 0.5s;
}

@media (min-width: 768px) {
  .footer__cta {
    padding: 6rem 3rem;
  }
}

.footer__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #2563eb;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.footer__cta:hover::before {
  transform: translateY(0);
}

.footer__cta-title {
  font-size: 1.875rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer__cta-title {
    font-size: 3.5rem;
  }
}

.footer__cta:hover .footer__cta-title {
  color: #050505;
}

.footer__cta:hover .footer__cta-arrow {
  color: #050505;
  transform: rotate(45deg);
}

.footer__cta-arrow {
  width: 3rem;
  height: 3rem;
  transition: all 0.3s;
  flex-shrink: 0;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer__info {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 3rem;
    gap: 2rem;
  }
}

.footer__time {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
}

.footer__time-label {
  margin-right: 0.5rem;
}

.footer__time-value {
  color: white;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

.footer__links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__links a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.3s;
}

.footer__links a:hover {
  color: white;
}

.footer__copyright {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.modal--open {
  display: flex;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.modal__content {
  position: relative;
  margin: auto;
  width: 100%;
  max-width: 48rem;
  background: black;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 2rem;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 10;
}

@media (min-width: 768px) {
  .modal__content {
    padding: 3rem;
  }
}

.modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: color 0.3s;
}

.modal__close:hover {
  color: white;
}

.modal__body {
  space-y: 2rem;
}

.modal__section {
  margin-bottom: 2rem;
}

.modal__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.modal__title {
  font-size: 1.875rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .modal__title {
    font-size: 2.25rem;
  }
}

.modal__description {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  line-height: 1.75;
  max-width: 32rem;
}

.modal__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.modal__contacts {
  padding-top: 2rem;
  space-y: 1.5rem;
}

.modal__contacts-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.modal__contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  margin-bottom: 1.5rem;
}

.modal__contact-item:hover {
  color: #2563eb;
}

.modal__contact-item:hover .modal__contact-arrow {
  transform: translateX(2px) translateY(-2px);
}

.modal__contact-arrow {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s;
}

/* Achievements Page */
.achievements-hero {
  position: relative;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  margin-top: 60px;
  overflow: hidden;
}

.achievements-hero__back {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.05);
}

.achievements-hero__back:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.achievements-hero__title {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  text-align: center;
  animation: fade-in-up 0.8s ease-out;
}

@media (min-width: 768px) {
  .achievements-hero__title {
    font-size: 5rem;
  }
}

/* Achievements Section */
.achievements {
  position: relative;
  padding: 4rem 2rem;
}

@media (min-width: 768px) {
  .achievements {
    padding: 6rem 3rem;
  }
}

.achievements__tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.achievements__tab {
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.375rem;
  background: transparent;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s;
}

.achievements__tab:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.achievements__tab--active {
  background: white;
  color: black;
  border-color: white;
}

.achievements__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

@media (min-width: 768px) {
  .achievements__gallery {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
  }
}

.achievements__gallery--hidden {
  display: none;
}

.achievements__item {
  animation: fade-in-up 0.8s ease-out;
}

.achievements__image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.achievements__item:hover .achievements__image-placeholder {
  border-color: rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
}

.achievements__item-title {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.achievements__item-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Projects Page */
.projects-hero {
  position: relative;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  margin-top: 60px;
  overflow: hidden;
}

.projects-hero__back {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.05);
}

.projects-hero__back:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.projects-hero__title {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  text-align: center;
  animation: fade-in-up 0.8s ease-out;
}

@media (min-width: 768px) {
  .projects-hero__title {
    font-size: 5rem;
  }
}

/* Projects Section */
.projects {
  position: relative;
  padding: 4rem 2rem;
}

@media (min-width: 768px) {
  .projects {
    padding: 6rem 3rem;
  }
}

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

@media (min-width: 768px) {
  .projects__gallery {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 3rem;
  }
}

.projects__item {
  animation: fade-in-up 0.8s ease-out;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s;
}

.projects__item:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.projects__image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  overflow: hidden;
}

.projects__item:hover .projects__image-placeholder {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
}

.projects__info {
  padding: 2rem;
}

.projects__item-title {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.projects__item-description {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.projects__links {
  display: flex;
  gap: 1rem;
}

.projects__link {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.375rem;
  background: transparent;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}

.projects__link:hover {
  border-color: var(--accent);
  background: rgba(37, 99, 235, 0.1);
}

/* Utility Classes */
.italic {
  font-style: italic;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
