@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuOKfMZg.ttf)
    format("truetype");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf)
    format("truetype");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf)
    format("truetype");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf)
    format("truetype");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf)
    format("truetype");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuDyYMZg.ttf)
    format("truetype");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuBWYMZg.ttf)
    format("truetype");
}
@import url("css2.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 3px;
}
body {
  font-family: "Inter", sans-serif;
  background: #050505;
  color: #e0e0e0;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}

.cursor-trail-dot {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}
.cursor-main {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 100000;
  transform: translate(-50%, -50%);
  transition:
    transform 0.1s,
    background 0.15s;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
.cursor-main.hover {
  transform: translate(-50%, -50%) scale(2.5);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition:
    width 0.25s,
    height 0.25s,
    border-color 0.25s;
}
.cursor-ring.hover {
  width: 50px;
  height: 50px;
  border-color: rgba(255, 255, 255, 0.1);
}

.enter-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #030303;
  z-index: 20000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: none;
  transition:
    opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 1s;
}
.enter-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.enter-bg-text {
  position: absolute;
  font-size: clamp(60px, 12vw, 180px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.012);
  letter-spacing: -8px;
  white-space: nowrap;
  user-select: none;
}
.enter-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.enter-logo {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 6px;
  color: #fff;
  text-transform: uppercase;
}
.enter-logo span {
  color: #333;
  font-weight: 300;
}
.enter-line {
  width: 30px;
  height: 1px;
  background: #222;
  margin: 24px auto;
}
.enter-subtitle {
  font-size: 11px;
  letter-spacing: 3px;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.enter-click {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #333;
  animation: enterPulse 2s ease infinite;
}
.enter-click-icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
  animation: enterRing 2s ease infinite;
}
.enter-click-icon::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}
.enter-screen:hover .enter-click-icon {
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.enter-screen:hover .enter-click {
  color: #888;
}
.enter-music-note {
  margin-top: 30px;
  font-size: 9px;
  letter-spacing: 2px;
  color: #1a1a1a;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.enter-music-note .note-icon {
  animation: noteFloat 2s ease infinite;
}
@keyframes noteFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
@keyframes enterPulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
@keyframes enterRing {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.05);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
}
.enter-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: rgba(255, 255, 255, 0.04);
  border-style: solid;
}
.enter-corner.tl {
  top: 30px;
  left: 30px;
  border-width: 1px 0 0 1px;
}
.enter-corner.tr {
  top: 30px;
  right: 30px;
  border-width: 1px 1px 0 0;
}
.enter-corner.bl {
  bottom: 30px;
  left: 30px;
  border-width: 0 0 1px 1px;
}
.enter-corner.br {
  bottom: 30px;
  right: 30px;
  border-width: 0 1px 1px 0;
}
.enter-version {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: 3px;
  color: #1a1a1a;
  text-transform: uppercase;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.3));
  z-index: 10001;
}
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 16px;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s;
  text-decoration: none;
}
.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateY(-3px);
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 5, 5, 0.6);
  backdrop-filter: blur(30px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.4s;
}
nav.scrolled {
  padding: 14px 40px;
  background: rgba(5, 5, 5, 0.9);
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
  text-transform: uppercase;
}
.logo span {
  color: #555;
  font-weight: 300;
  transition: color 0.3s;
}
.logo:hover span {
  color: #fff;
}
.nav-status {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
}
.nav-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #747f8d;
  animation: dotPulse 1.5s ease infinite;
}
@keyframes dotPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
.nav-status-text {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #444;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: #555;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: width 0.4s;
}
.nav-links a:hover {
  color: #fff;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a.active {
  color: #fff;
}
.nav-links a.active::after {
  width: 100%;
}
.nav-clock {
  font-size: 10px;
  letter-spacing: 2px;
  color: #333;
  font-variant-numeric: tabular-nums;
  min-width: 55px;
  text-align: right;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 20px 60px;
  position: relative;
  overflow: hidden;
}
.grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.grid-bg canvas {
  width: 100%;
  height: 100%;
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.015) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  width: 100%;
}
.hero-greeting {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
  animation-play-state: paused;
}
.hero-tag {
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
  animation-play-state: paused;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1.1;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
  animation-play-state: paused;
}
.hero h1 .dot {
  color: #333;
  transition: color 0.3s;
}
.hero h1:hover .dot {
  color: #fff;
}
.hero-subtitle {
  margin-top: 14px;
  font-size: clamp(14px, 1.5vw, 17px);
  color: #555;
  font-weight: 300;
  max-width: 500px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
  animation-play-state: paused;
}
.hero-typing {
  margin-top: 18px;
  font-size: clamp(13px, 1.3vw, 16px);
  color: #444;
  font-weight: 300;
  max-width: 500px;
  line-height: 1.8;
  min-height: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
  animation-play-state: paused;
  display: inline-block;
}
.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 18px;
  background: #fff;
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink 0.8s ease infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.hero-buttons {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
  animation-play-state: paused;
}
.hero-stats {
  display: flex;
  gap: 2px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
  animation-play-state: paused;
}
.hero-stat-card {
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
  transition: all 0.4s;
  min-width: 120px;
}
.hero-stat-card:first-child {
  border-radius: 10px 0 0 10px;
}
.hero-stat-card:last-child {
  border-radius: 0 10px 10px 0;
}
.hero-stat-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}
.hero-stat-value {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}
.hero-stat-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #444;
  margin-top: 6px;
}
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.2s forwards;
  animation-play-state: paused;
}
body.entered .hero-greeting,
body.entered .hero-tag,
body.entered .hero h1,
body.entered .hero-subtitle,
body.entered .hero-typing,
body.entered .hero-buttons,
body.entered .hero-stats,
body.entered .scroll-indicator {
  animation-play-state: running;
}
.btn-primary {
  padding: 13px 32px;
  background: #fff;
  color: #050505;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.1),
    transparent
  );
  transition: left 0.5s;
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
}
.btn-secondary {
  padding: 13px 32px;
  background: transparent;
  color: #555;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s;
}
.btn-secondary:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #333, transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: #fff;
  animation: scrollAnim 1.5s ease infinite;
}
@keyframes scrollAnim {
  0% {
    top: -50%;
  }
  100% {
    top: 150%;
  }
}
.scroll-text {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #333;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.marquee-section {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-item {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #1a1a1a;
  white-space: nowrap;
  padding: 0 30px;
  transition: color 0.3s;
}
.marquee-item:hover {
  color: #444;
}
.marquee-divider {
  color: #111;
  padding: 0 15px;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

section {
  padding: 100px 40px;
}
.section-label {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}
.section-title .title-line {
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #fff;
}

.languages {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.languages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.lang-card {
  background: rgba(255, 255, 255, 0.015);
  padding: 32px 24px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  cursor: none;
  transform-style: preserve-3d;
  perspective: 800px;
}
.lang-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #fff;
  transition: width 0.5s;
}
.lang-card:hover::before {
  width: 100%;
}
.lang-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.lang-card:hover::after {
  opacity: 1;
}
.lang-card:hover {
  background: rgba(255, 255, 255, 0.03);
}
.lang-card-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s;
}
.lang-card:hover .lang-card-shine {
  opacity: 1;
}
.lang-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
  transition: transform 0.4s;
  position: relative;
  z-index: 1;
}
.lang-card:hover .lang-icon {
  transform: scale(1.15) translateY(-3px);
}
.lang-name {
  font-size: 15px;
  font-weight: 600;
  color: #ddd;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.lang-desc {
  font-size: 11px;
  color: #555;
  line-height: 1.6;
  font-weight: 300;
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}
.lang-level {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.lang-level-bar {
  flex: 1;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  overflow: hidden;
}
.lang-level-fill {
  height: 100%;
  background: #fff;
  border-radius: 2px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lang-level-text {
  font-size: 9px;
  color: #444;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}
.lang-card.visible .lang-level-fill {
  width: var(--level);
}

.projects {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.coming-soon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
}
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50px;
  margin-bottom: 30px;
  animation: badgePulse 3s ease infinite;
}
@keyframes badgePulse {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.06);
  }
  50% {
    border-color: rgba(255, 255, 255, 0.15);
  }
}
.coming-soon-badge .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #facc15;
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.4);
  animation: dotPulse 1.5s ease infinite;
}
.coming-soon-badge span {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #facc15;
  font-weight: 500;
}
.coming-soon-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -3px;
  margin-bottom: 16px;
}
.coming-soon-title .outline-text {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  color: transparent;
}
.coming-soon-desc {
  font-size: 14px;
  color: #444;
  font-weight: 300;
  max-width: 400px;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 40px;
}
.coming-soon-line {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cs-line {
  width: 60px;
  height: 1px;
  background: #222;
}
.cs-dots {
  display: flex;
  gap: 6px;
}
.cs-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #333;
  animation: csDotsAnim 1.5s ease infinite;
}
.cs-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.cs-dots span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes csDotsAnim {
  0%,
  100% {
    background: #333;
  }
  50% {
    background: #888;
  }
}

.features {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: rgba(255, 255, 255, 0.02);
  transition: height 0.5s;
}
.feature-card:hover::before {
  height: 100%;
}
.feature-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}
.feature-number {
  font-size: 42px;
  font-weight: 900;
  color: #111;
  margin-bottom: 16px;
}
.feature-title {
  font-size: 16px;
  font-weight: 600;
  color: #ddd;
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 12px;
  color: #555;
  line-height: 1.7;
  font-weight: 300;
}

.stats-section {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 80px 40px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-card {
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.015);
  text-align: center;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}
.stat-card:hover::after {
  opacity: 1;
}
.stat-card:hover {
  transform: translateY(-3px);
}
.stat-value {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -2px;
  position: relative;
  z-index: 1;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #444;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

.quote-section {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  text-align: center;
  padding: 120px 40px;
  position: relative;
}
.quote-mark {
  font-size: 80px;
  color: #111;
  line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}
.quote-text {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  color: #888;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}
.quote-text em {
  color: #fff;
  font-style: normal;
  font-weight: 600;
}
.quote-author {
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #333;
}

.contact {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  text-align: center;
  padding: 140px 40px;
  position: relative;
  overflow: hidden;
}
.contact-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(80px, 15vw, 220px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.015);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -10px;
}
.contact .section-label,
.contact .section-title,
.contact-desc,
.contact-discord-wrapper,
.contact-note {
  position: relative;
  z-index: 1;
}
.contact .section-title {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 16px;
}
.contact-desc {
  font-size: 15px;
  color: #555;
  font-weight: 300;
  margin-bottom: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.contact-discord-wrapper {
  margin-top: 40px;
  perspective: 800px;
}
.discord-card {
  display: inline-block;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 0 0 36px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-width: 380px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  text-align: center;
}
.discord-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #fff;
  transition: width 0.5s;
  z-index: 5;
}
.discord-card:hover::before {
  width: 100%;
}
.discord-card-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 16px;
}
.discord-card:hover .discord-card-shine {
  opacity: 1;
}
.discord-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  border-radius: 16px;
}
.discord-card:hover::after {
  opacity: 1;
}
.dc-banner {
  width: 100%;
  height: 100px;
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
.dc-banner-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  transition: opacity 0.4s;
}
.dc-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 0.4s,
    transform 0.5s;
}
.discord-card:hover .dc-banner img {
  transform: scale(1.03);
}
.dc-avatar-wrap {
  position: relative;
  width: 84px;
  height: 84px;
  margin: -42px auto 10px;
  z-index: 5;
}
.dc-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #111;
  border: 4px solid #0a0a0a;
  object-fit: cover;
  transition: all 0.4s;
  position: relative;
  z-index: 1;
}
.discord-card:hover .dc-avatar {
  border-color: rgba(255, 255, 255, 0.08);
  transform: scale(1.04);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.04);
}
.dc-avatar-deco {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 100px;
  height: 100px;
  z-index: 2;
  pointer-events: none;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.dc-status-dot {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 4px solid #0a0a0a;
  z-index: 3;
  transition:
    background 0.4s,
    box-shadow 0.4s;
}
.dc-status-dot.online {
  background: #3ba55d;
  box-shadow: 0 0 8px rgba(59, 165, 93, 0.5);
}
.dc-status-dot.idle {
  background: #faa61a;
  box-shadow: 0 0 8px rgba(250, 166, 26, 0.5);
}
.dc-status-dot.dnd {
  background: #ed4245;
  box-shadow: 0 0 8px rgba(237, 66, 69, 0.5);
}
.dc-status-dot.offline {
  background: #747f8d;
  box-shadow: none;
}
.dc-display-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
  position: relative;
  z-index: 1;
  padding: 0 24px;
}
.dc-username {
  font-size: 13px;
  color: #b5bac1;
  font-weight: 500;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}
.discord-card:hover .dc-username {
  color: #dbdee1;
}
.dc-status-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.dc-status-label {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.dc-status-label.online {
  color: #3ba55d;
}
.dc-status-label.idle {
  color: #faa61a;
}
.dc-status-label.dnd {
  color: #ed4245;
}
.dc-status-label.offline {
  color: #747f8d;
}
.dc-custom-status {
  font-size: 11px;
  color: #b5bac1;
  padding: 0 24px;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}
.dc-custom-status:empty {
  display: none;
}
.dc-activity {
  font-size: 10px;
  color: #72767d;
  padding: 0 24px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.dc-activity:empty {
  margin-bottom: 6px;
}
.dc-separator {
  width: calc(100% - 48px);
  height: 1px;
  background: rgba(255, 255, 255, 0.04);
  margin: 0 auto 14px;
}
.dc-id {
  font-size: 9px;
  color: #1a1a1a;
  letter-spacing: 2px;
  font-family: monospace;
  margin-bottom: 18px;
  cursor: none;
  transition: color 0.3s;
  position: relative;
  z-index: 1;
}
.dc-id:hover {
  color: #555;
}
.discord-main-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 30px;
  background: rgba(88, 101, 242, 0.15);
  border: 1px solid rgba(88, 101, 242, 0.2);
  color: #ccc;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.discord-main-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(88, 101, 242, 0.1),
    transparent
  );
  transition: left 0.6s;
}
.discord-main-btn:hover::before {
  left: 100%;
}
.discord-main-btn:hover {
  transform: translateY(-3px);
  background: rgba(88, 101, 242, 0.25);
  border-color: rgba(88, 101, 242, 0.4);
  color: #fff;
  box-shadow: 0 8px 30px rgba(88, 101, 242, 0.15);
}
.discord-main-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.discord-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 8px 18px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: #444;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: none;
  transition: all 0.3s;
  font-family: "Inter", sans-serif;
  position: relative;
  z-index: 1;
}
.discord-copy-btn:hover {
  border-color: rgba(255, 255, 255, 0.1);
  color: #aaa;
  transform: translateY(-2px);
}
.contact-note {
  margin-top: 40px;
  font-size: 12px;
  color: #222;
  letter-spacing: 1px;
}
.copied-toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 500;
  opacity: 0;
  transition: all 0.4s;
  z-index: 9999;
  pointer-events: none;
}
.copied-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.contact-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  margin-top: 40px;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card-wrapper {
  flex: 1;
  max-width: 380px;
  display: flex;
}

.discord-card,
.instagram-card {
  width: 100%;
  min-height: 540px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.dc-banner,
.ig-banner {
  width: 100%;
  height: 110px;
  position: relative;
}
.ig-banner {
  background: linear-gradient(
    45deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  );
}

.dc-avatar-wrap,
.ig-avatar-wrap {
  position: relative;
  width: 86px;
  height: 86px;
  margin: -43px auto 12px;
  z-index: 5;
}
.dc-avatar,
.ig-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid #0a0a0a;
  background: #111;
}

.dc-display-name,
.ig-display-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.dc-username,
.ig-username {
  font-size: 13px;
  color: #b5bac1;
  margin-bottom: 10px;
}

.dc-separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin: 15px 20px;
}

.dc-bottom-section,
.ig-bottom-section {
  padding: 0 24px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  width: 100%;
}

.ig-bottom-section {
  padding-bottom: 30px;
}
.discord-main-btn,
.instagram-main-btn {
  width: 100% !important;
  height: 44px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
}

.discord-main-btn {
  background: #5865f2;
  color: #fff;
}
.instagram-main-btn {
  background: rgba(225, 48, 108, 0.15);
  border: 1px solid rgba(225, 48, 108, 0.3);
  color: #fff;
}
.instagram-card .ig-bottom-section::after {
  content: "";
  height: 25px;
  display: block;
}
.instagram-main-btn svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  margin-right: 10px;
}
.discord-copy-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #555;
  font-size: 9px;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 4px;
}

.dc-card-shine,
.ig-card-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

@media (max-width: 850px) {
  .contact-grid {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }
  .contact-card-wrapper {
    width: 100%;
    max-width: 340px;
  }
}
.music-pill {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 999;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}
.music-pill.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.pill-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: all 0.3s;
  position: relative;
}
.pill-inner:hover {
  border-color: rgba(255, 255, 255, 0.12);
}
.pill-play {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: all 0.3s;
  flex-shrink: 0;
  padding: 0;
  color: #fff;
  font-family: "Inter";
}
.pill-play:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.pill-play svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
}
.pill-info {
  min-width: 0;
  max-width: 110px;
}
.pill-name {
  font-size: 9px;
  font-weight: 600;
  color: #aaa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.pill-bars {
  display: flex;
  align-items: flex-end;
  gap: 1.5px;
  height: 10px;
  flex-shrink: 0;
}
.pill-bars span {
  width: 2px;
  background: #fff;
  border-radius: 1px;
}
.music-pill.playing .pill-bars span:nth-child(1) {
  animation: pb1 0.5s ease infinite;
}
.music-pill.playing .pill-bars span:nth-child(2) {
  animation: pb2 0.6s ease infinite 0.1s;
}
.music-pill.playing .pill-bars span:nth-child(3) {
  animation: pb3 0.4s ease infinite 0.2s;
}
.music-pill:not(.playing) .pill-bars span {
  height: 2px !important;
}
@keyframes pb1 {
  0%,
  100% {
    height: 2px;
  }
  50% {
    height: 10px;
  }
}
@keyframes pb2 {
  0%,
  100% {
    height: 6px;
  }
  50% {
    height: 2px;
  }
}
@keyframes pb3 {
  0%,
  100% {
    height: 4px;
  }
  50% {
    height: 8px;
  }
}
.pill-progress {
  position: absolute;
  bottom: -2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 1px;
  overflow: hidden;
}
.pill-progress-fill {
  height: 100%;
  width: 0%;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 1px;
}

.easter-egg-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 30px 50px;
  border-radius: 16px;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99999;
  pointer-events: none;
  text-align: center;
}
.easter-egg-toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.easter-egg-toast .ee-sub {
  font-size: 10px;
  color: #555;
  margin-top: 8px;
  font-weight: 400;
  letter-spacing: 1px;
}

footer {
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
footer p {
  font-size: 11px;
  color: #222;
  letter-spacing: 1px;
}
.footer-right {
  font-size: 11px;
  color: #222;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}
.stagger-1 {
  transition-delay: 0.1s;
}
.stagger-2 {
  transition-delay: 0.2s;
}
.stagger-3 {
  transition-delay: 0.3s;
}
.stagger-4 {
  transition-delay: 0.4s;
}
.stagger-5 {
  transition-delay: 0.5s;
}
.stagger-6 {
  transition-delay: 0.6s;
}
.stagger-7 {
  transition-delay: 0.7s;
}
.stagger-8 {
  transition-delay: 0.8s;
}

@media (max-width: 1200px) {
  .languages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .languages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-status {
    display: none;
  }
}
@media (max-width: 768px) {
  .cursor-main,
  .cursor-ring,
  .cursor-trail-dot {
    display: none !important;
  }
  * {
    cursor: auto;
  }
  nav {
    padding: 16px 20px;
  }
  nav.scrolled {
    padding: 12px 20px;
  }
  .nav-links {
    gap: 16px;
  }
  .nav-links a {
    font-size: 10px;
  }
  .nav-clock {
    display: none;
  }
  section {
    padding: 60px 20px;
  }
  .languages-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .quote-section {
    padding: 80px 20px;
  }
  .contact {
    padding: 80px 20px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-stats {
    flex-direction: column;
    align-items: center;
  }
  .hero-stat-card {
    border-radius: 8px !important;
    width: 100%;
    max-width: 200px;
  }
  footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 24px 20px;
  }
  .discord-card {
    padding: 0 0 28px;
    max-width: 340px;
  }
  .dc-banner {
    height: 80px;
  }
  .back-to-top {
    bottom: 16px;
    right: 16px;
  }
  .music-pill {
    bottom: 10px;
    left: 10px;
  }
}
