:root {
  --token-f951c3a8-aa43-4825-aa75-915aa92c20d1: rgb(0, 85, 254);
  --token-ad10564e-4158-40a7-94e1-51af1b841a47: rgba(0, 85, 254, 0.2);
  --token-f5219c3a-5ee2-4639-9e23-4bdcf5509ebd: rgba(0, 85, 254, 0.15);
  --token-64bf095d-9ad7-4fc0-9f3c-f96ec87f9b9b: rgba(0, 85, 254, 0.08);
  --token-db45a5b7-645b-4156-8616-6cff499bb824: rgba(0, 85, 254, 0.04);
  --token-b673076b-7356-483a-b34d-3ef3b8140acc: rgb(0, 14, 43);
  --token-59e77027-930e-45f7-94aa-a8ffadf9e382: rgb(255, 255, 255);
  --token-8f8054d9-8a09-4e7e-b957-8a76557c5e75: rgba(255, 255, 255, 0.6);
  --token-d2ee1de5-88f8-41d7-8642-338767096a94: rgba(255, 255, 255, 0.5);
  --token-14f74354-f5bc-49c1-9486-2936a231e276: rgba(255, 255, 255, 0.3);
  --token-4ef09f89-9c35-4972-a9c1-8efc95820553: rgba(255, 255, 255, 0.2);
  --token-a58752c8-168c-47db-857e-906f22f33790: rgba(255, 255, 255, 0.15);
  --token-d86f1591-0c16-44cd-be10-19334dfa9293: rgba(255, 255, 255, 0.1);
  --token-082d630a-c036-4f77-8c8d-5d7b4650e064: rgba(255, 255, 255, 0.08);
  --token-a9883d9b-c1bd-4bd9-be15-284cd72e1b1f: rgba(255, 255, 255, 0.07);
  --token-30ee69d1-cae6-4a5c-9af2-db5c94a12e77: rgba(255, 255, 255, 0.05);
  --token-73242b55-57d1-4320-8897-28085a430c83: rgba(255, 255, 255, 0.02);
  --token-4ba9d2af-bbc9-422d-912b-c0d857289d96: rgba(255, 255, 255, 0);
  --token-ba733b56-e2d8-4fee-916d-b131b6d0185f: rgb(13, 13, 13);
  --token-74f48371-76c0-476a-a319-1331b3a438c2: rgb(8, 8, 8);
  --token-561b3d91-c258-4609-94c9-3cc008fdd628: rgb(19, 19, 19);
  --token-8e9f7de0-9fd7-44d3-bc3e-2dea20c4e4bd: rgb(0, 0, 0);
  --token-9e4d530e-e91b-4b8a-b62d-7a5413a1b53b: rgba(0, 0, 0, 0.95);
  --token-8027bd57-58d1-44d0-b4e2-d8a3f299de67: rgba(0, 0, 0, 0.5);
  --token-91acd6b3-0466-4512-bfe0-548e2faebf76: rgba(0, 0, 0, 0.3);
  --token-f114f1e6-e38c-48e5-8f37-0b117b1ed275: rgba(0, 0, 0, 0);
  --token-cd35caec-4f2a-4f7e-8c70-9992720e55b3: rgba(51, 51, 51, 0.2);
  --token-3f9a2c63-f1d1-4706-bf6c-31956c981af9: rgb(153, 153, 153);
  --token-8e7c7f4d-af23-4916-ac94-233bbc0309cf: rgba(153, 153, 153, 0.2);
  --token-b6113dae-1252-48c9-8fac-f8a781d683c0: rgba(153, 153, 153, 0.1);
  --token-8b9dc97a-1cd5-4716-ac13-d0875aca92f4: rgba(153, 153, 153, 0.06);
  --token-69ff14d1-f0d2-4345-baec-a0ff0f57f0ca: rgba(153, 153, 153, 0);
  --token-b456af2e-fd88-41ae-8686-ad7692875dfd: rgba(97, 97, 97, 0.09);
  --token-b94732ec-0911-4c64-b592-4d592b668e2d: rgb(239, 238, 236);

  --font-sans: "Inter", sans-serif;
  --font-heading: "Outfit", sans-serif;
}
* {
  box-sizing: border-box;
}

html {
  overflow-y: auto;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382);
  background-color: #000;
  -webkit-font-smoothing: antialiased;
}

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

.page-shell {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background: linear-gradient(180deg, #000814 0%, #000000 40%, #000814 100%);
}

.social-sidebar {
  position: fixed;
  left: 32px;
  bottom: 50%;
  transform: translateY(50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 13px 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.social-icon {
  width: 44px;
  height: 44px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.45);
  background: transparent;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: grid;
  place-items: center;
  position: relative;
}

.social-icon[aria-label="GitHub"]:hover {
  color: #fff;
}
.social-icon[aria-label="LinkedIn"]:hover {
  color: #00a0dc;
}
.social-icon[aria-label="Email"]:hover {
  color: #f4b400;
}

.social-icon:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 1024px) {
  .social-sidebar {
    display: none;
  }
}

.site-header {
  height: 72px;
  width: 100%;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header-inner {
  width: min(1400px, calc(100% - 64px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  box-sizing: border-box;
}

.header-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382);
  box-shadow: 0 0 0 3px var(--token-a9883d9b-c1bd-4bd9-be15-284cd72e1b1f);
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  padding: 2px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px rgba(0, 98, 255, 0.2);
  object-fit: contain;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #fff;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
  gap: 24px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-link {
  font-size: 24px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-link:hover {
  color: #fff;
}

.mobile-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.mobile-btn {
  background: #0062ff;
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
}

.brand svg {
  width: 60px;
  height: 24px;
  fill: none;
  stroke: var(--token-59e77027-930e-45f7-94aa-a8ffadf9e382);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.5;
}

.nav-divider {
  width: 1px;
  height: 40px;
  background-color: var(--token-d86f1591-0c16-44cd-be10-19334dfa9293);
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.login-btn {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #0062ff;
  box-shadow: 0 4px 15px rgba(0, 98, 255, 0.3);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.login-btn:hover {
  background: #0056e0 !important;
  transform: translateY(-1px);
}

.interactive-bg {
  position: fixed;
  inset: -10vw;
  z-index: -3;
  pointer-events: none;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.bg-glow-1 {
  width: 45vw;
  height: 45vw;
  background: rgba(0, 98, 255, 0.25);
  top: 10%;
  left: 10%;
  animation: float-glow-1 15s infinite alternate;
}

.bg-glow-2 {
  width: 40vw;
  height: 40vw;
  background: rgba(138, 75, 241, 0.15);
  bottom: 0%;
  right: 5%;
  animation: float-glow-2 20s infinite alternate-reverse;
}

.bg-glow-3 {
  width: 35vw;
  height: 35vw;
  background: rgba(0, 255, 200, 0.08);
  top: 40%;
  left: 40%;
  animation: float-glow-3 18s infinite alternate;
}

@keyframes float-glow-1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(15vw, 15vh) scale(1.1);
  }
}

@keyframes float-glow-2 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-10vw, -15vh) scale(1.15);
  }
}

@keyframes float-glow-3 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(10vw, -10vh) scale(1.2);
  }
}

.cursor-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(
    800px circle at var(--mouse-x, 50vw) var(--mouse-y, 50vh),
    rgba(0, 98, 255, 0.1),
    transparent 80%
  );
  will-change: background;
}

.hero-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0) 35%
  );
  -webkit-mask-image: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0) 35%
  );
  z-index: -2;
  pointer-events: none;
}

.hero {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 0;
  overflow: hidden;
  z-index: 2;
}

.hero-container {
  width: min(1400px, calc(100% - 64px));
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-left.revealed {
  opacity: 1;
  transform: translateY(0);
}

.hero-name-wrapper {
  position: relative;
  display: inline-block;
  padding: 20px 60px;
}

.hero-title {
  font-size: clamp(64px, 9vw, 140px) !important;
  line-height: 1.05 !important;
  letter-spacing: 0.02em !important;
  margin-top: 0;
  margin-bottom: 16px;
  text-align: center;
}

.hero-subtitle {
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
  margin-top: 0;
  line-height: 1.5;
  text-align: center;
  max-width: 600px;
}

.name-highlight {
  font-family: var(--font-heading);
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
  letter-spacing: inherit;
  background: linear-gradient(to right, #4d94ff 0%, #0033aa 50%, #4d94ff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: txt-shine 4s linear infinite;
}

.highlight-text {
  color: #4d94ff;
}

@keyframes txt-shine {
  to {
    background-position: 200% center;
  }
}

.floating-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: float-icon 5s ease-in-out infinite;
  z-index: 2;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.floating-icon i {
  font-size: 22px;
  color: rgba(77, 148, 255, 0.7);
}

.floating-icon-1 {
  top: -10px;
  left: -30px;
  animation-delay: 0s;
}

.floating-icon-2 {
  top: -15px;
  right: -25px;
  animation-delay: 0.8s;
}

.floating-icon-3 {
  top: 50%;
  left: -50px;
  margin-top: -24px;
  animation-delay: 1.6s;
}

.floating-icon-4 {
  top: 50%;
  right: -45px;
  margin-top: -24px;
  animation-delay: 2.4s;
}

.floating-icon-5 {
  bottom: -10px;
  left: -20px;
  animation-delay: 3.2s;
}

.floating-icon-6 {
  bottom: -15px;
  right: -15px;
  animation-delay: 4s;
}

.express-logo {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: rgba(77, 148, 255, 0.7);
  letter-spacing: -0.03em;
}
@keyframes float-icon {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.05em;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
}

.about-section {
  padding: 200px 0 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}

.about-container {
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-glass-card {
  position: relative;
  width: 100%;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-glass-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.about-glass-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(0, 98, 255, 0.05) 0%,
    transparent 40%
  );
  pointer-events: none;
  z-index: -1;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-content p {
  font-size: 19px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 24px auto;
  max-width: 900px;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  position: relative;
  z-index: 2;
}

.skill-badge {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.skill-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  border-color: rgba(77, 148, 255, 0.4);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 98, 255, 0.15);
}

.hero-media {
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: scale(0.95);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.hero-media.revealed {
  opacity: 1;
  transform: scale(1);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 24px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.badge-pill {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #0062ff;
  color: #fff;
  padding: 6px 12px;
  border-radius: 100px;
  line-height: 1;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}

.status-dot::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #22c55e;
  opacity: 0.6;
  animation: pulse-dot 2s ease-out infinite;
}

@keyframes pulse-dot {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.badge-copy {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.01em;
}

h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(60px, 7vw, 90px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
}

h1 small {
  display: block;
  font-size: 0.5em;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

p {
  margin: 32px auto 0;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
  font-weight: 400;
  text-align: center;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
}

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-light i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.btn-light:hover i {
  transform: translateX(4px);
}

.btn {
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-light {
  background: #fff;
  color: #000;
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 16px;
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 32px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.btn-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-dark:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-logos {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 40px;
  color: rgba(255, 255, 255, 0.4);
}

.logo {
  opacity: 0.45;
}

.logo.mark {
  width: 84px;
  height: 30px;
  fill: none;
  stroke: var(--token-8f8054d9-8a09-4e7e-b957-8a76557c5e75);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4.2;
}

.logo-word {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.logo-box {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.16em;
  border: 1px solid var(--token-8e7c7f4d-af23-4916-ac94-233bbc0309cf);
  padding: 7px 10px;
}

.hero-media {
  min-height: 480px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-bottom: 50px;
}

.guide-v,
.guide-h,
.guide-d {
  position: absolute;
  display: block;
  pointer-events: none;
}

.guide-v {
  height: 286px;
  width: 1px;
  left: 37%;
  bottom: 184px;
  background: linear-gradient(
    180deg,
    var(--token-4ba9d2af-bbc9-422d-912b-c0d857289d96) 0%,
    var(--token-30ee69d1-cae6-4a5c-9af2-db5c94a12e77) 30%,
    var(--token-082d630a-c036-4f77-8c8d-5d7b4650e064) 100%
  );
}

.guide-h {
  width: 415px;
  height: 1px;
  left: 8%;
  bottom: 298px;
  background: linear-gradient(
    90deg,
    var(--token-4ba9d2af-bbc9-422d-912b-c0d857289d96) 0%,
    var(--token-30ee69d1-cae6-4a5c-9af2-db5c94a12e77) 45%,
    var(--token-082d630a-c036-4f77-8c8d-5d7b4650e064) 100%
  );
}

.guide-d {
  width: 260px;
  height: 1px;
  transform: rotate(46deg);
  transform-origin: left center;
  left: 20%;
  bottom: 372px;
  background: linear-gradient(
    90deg,
    var(--token-4ba9d2af-bbc9-422d-912b-c0d857289d96) 0%,
    var(--token-30ee69d1-cae6-4a5c-9af2-db5c94a12e77) 100%
  );
}

.video-card {
  width: 100%;
  aspect-ratio: 1.45;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(0, 98, 255, 0.15);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.9),
    0 0 60px rgba(0, 98, 255, 0.25);
  border-color: rgba(0, 98, 255, 0.4);
}

.video-card .hero-image {
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-card:hover .hero-image {
  transform: scale(1.08);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    transparent 100%
  );
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  transition: opacity 0.4s ease;
}

.video-card:hover .hero-image-overlay {
  opacity: 1;
}

.overlay-content {
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
}

.video-card:hover .overlay-content {
  transform: translateY(0);
}

.overlay-tag {
  font-family: var(--font-mono);
  display: inline-block;
  background: rgba(0, 98, 255, 0.2);
  color: #4d94ff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  border: 1px solid rgba(0, 98, 255, 0.3);
}

.overlay-content h3 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.overlay-content p {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin: 0;
  font-weight: 400;
  text-align: left; /* Ensure it's not centered here */
}

.video-card::before {
  content: "";
  position: absolute;
  inset: auto -42% -66% -38%;
  border-radius: 50%;
  border: 3px solid rgba(0, 98, 255, 0.95);
}

.video-card::after {
  content: "";
  position: absolute;
  inset: auto -50% -77% -45%;
  border-radius: 50%;
  border: 2px solid rgba(0, 98, 255, 0.52);
}

.scroll-anchor {
  min-height: 2px;
}

.n-section {
  min-height: 100vh;
  padding: 8px 0;
  position: relative;
  background: transparent;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-header {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 10;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-header.revealed {
  opacity: 1;
  transform: translateY(0);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 22px;
  margin-bottom: 16px;
}

.primary-btn {
  font-family: var(--font-heading);
  background: var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 20px rgba(0, 85, 254, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 85, 254, 0.5);
}

.project-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.project-card {
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.pro-content {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 48px;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.project-card:hover .pro-content {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 98, 255, 0.4);
  transform: translateY(-8px);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.4),
    inset 0 0 20px rgba(0, 98, 255, 0.1);
}

.pro-header {
  margin-bottom: 24px;
}

.pro-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.pro-name {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}

.pro-date {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: #4d94ff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(0, 98, 255, 0.1);
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid rgba(0, 98, 255, 0.2);
}

.pro-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
}

.pro-stack {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.pro-live-link {
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  backdrop-filter: blur(8px);
}

.pro-live-link i {
  font-size: 12px;
  transition: transform 0.4s ease;
}

.pro-live-link:hover {
  background: #0062ff;
  border-color: #0062ff;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 98, 255, 0.3);
}

.pro-live-link:hover i {
  transform: translate(2px, -2px);
}

.pro-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pro-details li {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  padding-left: 28px;
  transition: all 0.3s ease;
}

.pro-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 2px;
  background: rgba(0, 98, 255, 0.4);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.project-card:hover .pro-details li {
  color: rgba(255, 255, 255, 0.85);
}

.project-card:hover .pro-details li::before {
  width: 14px;
  background: #0062ff;
  box-shadow: 0 0 8px #0062ff;
}

@media screen and (max-width: 992px) {
  .pro-content {
    padding: 32px;
    gap: 24px;
  }
}

@media screen and (max-width: 768px) {
  .pro-content {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .pro-title-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .pro-info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .pro-live-link {
    width: auto;
  }
}

.grid-item {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  display: block; /* Links */
}

.grid-item:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 98, 255, 0.4);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.9),
    0 0 60px rgba(0, 98, 255, 0.25);
  z-index: 10;
}

.grid-item .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.grid-item:hover .hero-image {
  transform: scale(1.08);
}

.grid-item:hover .hero-image-overlay {
  opacity: 1;
}

.grid-item:hover .overlay-content {
  transform: translateY(0);
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.4s ease;
}

.grid-item:hover img {
  opacity: 1;
}

.section-container {
  width: min(1400px, calc(100% - 64px));
  margin: 0 auto;
}

.n-section {
  padding-top: 200px;
  padding-bottom: 0;
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.05;
  color: #fff;
  margin: 0;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.45em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 12px;
  display: block;
}

.education-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.tight-section {
  padding-top: 0 !important;
  margin-top: -150px;
  margin-bottom: -100px;
}

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

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.categories-grid.revealed {
  opacity: 1;
  transform: translateY(0);
}

.category-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.category-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Skills Pills */
.skills-pill-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.skill-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.skill-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #4d94ff;
  color: #fff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 98, 255, 0.2);
}

.skill-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #4d94ff;
  border-radius: 50%;
  margin-right: 10px;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.skill-pill:hover::before {
  opacity: 1;
  background: #fff;
  box-shadow: 0 0 10px #4d94ff;
}

.pro-tech-pills {
  margin-top: 12px;
  margin-bottom: 8px;
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.experience-card {
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.experience-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.exp-content {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 48px;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.experience-card:hover .exp-content {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 98, 255, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.exp-header {
  margin-bottom: 24px;
}

.exp-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 12px;
}

.exp-role {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}

.exp-date {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: #4d94ff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(0, 98, 255, 0.1);
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid rgba(0, 98, 255, 0.2);
}

.exp-company-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.exp-company {
  color: #fff;
}

.exp-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.exp-details li {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  padding-left: 28px;
  transition: all 0.3s ease;
}

.exp-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 2px;
  background: rgba(0, 98, 255, 0.4);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.experience-card:hover .exp-details li {
  color: rgba(255, 255, 255, 0.85);
}

.experience-card:hover .exp-details li::before {
  width: 14px;
  background: #0062ff;
  box-shadow: 0 0 8px #0062ff;
}

@media screen and (max-width: 768px) {
  .exp-content,
  .pro-content,
  .category-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }
  .card-icon {
    margin-top: 0;
  }
  .experience-card:hover .exp-content {
    transform: translateY(-8px);
  }
  .exp-title-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.card-header-row,
.card-subtitle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 16px;
}

.card-subtitle-row {
  margin-bottom: 0;
  margin-top: 4px;
}

.edu-meta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.card-title-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.card-text-main {
  width: 100%;
}

.card-header-row h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0;
}

.exp-role,
.pro-name,
.card-header-row h3 {
  margin-bottom: 0 !important;
}

.arrow-icon {
  color: rgba(255, 255, 255, 0.15);
  font-size: 18px;
  transition: all 0.3s ease;
}

.category-card:hover .arrow-icon {
  transform: translate(4px, -4px);
  color: #fff;
}

.card-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.card-title-row h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  color: #fff;
  letter-spacing: -0.01em;
}

.pro-badge {
  font-family: var(--font-mono);
  background: rgba(0, 98, 255, 0.15);
  border: 1px solid rgba(0, 98, 255, 0.3);
  color: #4d94ff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.score-badge {
  font-family: var(--font-mono);
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.card-subtitle {
  font-family: var(--font-sans);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  margin-bottom: 0;
  font-weight: 500;
}

.card-desc,
.card-text-left {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  padding-top: 7px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left !important;
}

.cat-orange {
  background: rgba(249, 115, 22, 0.2);
  color: #f97316;
}
.cat-white {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.cat-blue {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}
.cat-purple {
  background: rgba(138, 75, 241, 0.2);
  color: #8a4bf1;
}
.cat-yellow {
  background: rgba(234, 179, 8, 0.2);
  color: #eab308;
}
.cat-green {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.site-footer {
  background-color: transparent;
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  width: min(1400px, calc(100% - 64px));
  margin: 0 auto;
}

.footer-brand .brand-text {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
}

.footer-social-links {
  display: flex;
  gap: 32px;
}

.social-link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.social-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #0062ff;
  transition: width 0.3s ease;
}

.social-link:hover {
  color: #fff;
}

.social-link:hover::after {
  width: 100%;
}

.footer-bottom {
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.02em;
}

.cta-card {
  width: min(1200px, 100%);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  padding: 60px 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.cta-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(0, 98, 255, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(
    circle at 20% 80%,
    rgba(0, 98, 255, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  margin-bottom: 8px;
}

.cta-badge .dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff;
}

.cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.03em;
  margin: 0;
  max-width: 800px;
}

.cta-heading span {
  color: rgba(255, 255, 255, 0.4);
}

.cta-description {
  font-size: clamp(16px, 1.5vw, 18px);
  color: rgba(255, 255, 255, 0.5);
  max-width: 650px;
  line-height: 1.6;
  margin: 0;
}

.cta-button {
  background: #0062ff;
  color: #fff !important;
  padding: 18px 48px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 20px 40px rgba(0, 98, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 98, 255, 0.5);
  background: #0070ff;
}

@media screen and (max-width: 1024px) {
  .site-header {
    padding: 0 24px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    height: 70px;
  }
  .top-nav {
    display: none !important;
  }
  .header-actions .nav-link,
  .header-actions .login-btn {
    display: none !important;
  }
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
  }
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #050505;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.mobile-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-nav-item {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

.mobile-nav-item:hover {
  color: var(--token-f951c3a8-aa43-4825-aa75-915aa92c20d1);
}

.mobile-overlay-footer {
  margin-top: auto;
  padding-bottom: 40px;
}

.mobile-social-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.mobile-social-item {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-social-item:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.mobile-main-cta {
  display: block;
  width: 100%;
  background: #0062ff;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 20px;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 98, 255, 0.3);
}

@media screen and (max-width: 1280px) {
  .section-container,
  .hero-container,
  .site-header {
    width: min(1100px, calc(100% - 64px));
  }
}

@media screen and (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }
}

@media screen and (max-width: 1024px) {
  html,
  body {
    overflow-y: auto !important;
    overflow-x: hidden;
    height: auto !important;
  }

  .site-header {
    height: 70px;
    padding: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header-inner {
    width: calc(100% - 48px);
  }

  .social-sidebar {
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%) translateY(0);
    flex-direction: row;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 100px;
    width: fit-content;
  }

  .section-title {
    font-size: clamp(40px, 8vw, 60px);
  }

  .hero-name-wrapper {
    padding: 20px 40px;
  }

  .floating-icon {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .hero {
    min-height: 90vh;
    display: flex;
    align-items: flex-start;
    padding-top: 150px;
  }

  .section-container {
    width: calc(100% - 32px);
  }

  .n-section,
  .about-section {
    padding-top: 100px;
    padding-bottom: 0;
  }

  .about-section {
    padding-bottom: 60px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  /* Card Stacking */
  .pro-content,
  .exp-content,
  .category-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
  }

  .card-icon {
    margin-top: 0;
  }

  .categories-grid {
    grid-template-columns: 1fr !important;
    padding: 0;
  }

  .hero-title {
    font-size: clamp(48px, 12vw, 84px) !important;
    margin-bottom: 12px;
  }

  /* Removed tech icons for mobile for better clarity */
  .floating-icon {
    display: none;
  }

  .hero-subtitle {
    font-size: 19px;
    padding: 0 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.5);
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 16px;
    width: 100%;
    max-width: 400px;
  }

  .stat-item {
    min-width: 80px;
  }

  .stat-divider {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
    gap: 12px;
  }

  .btn {
    width: 100%;
    height: 54px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-inner {
    width: calc(100% - 32px);
  }

  .hero-name-wrapper {
    display: block;
    width: 100%;
    padding: 15px 0;
  }

  .tight-section {
    margin-top: -60px; /* Adjust negative margin for mobile */
    margin-bottom: -40px;
  }
}

@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 56px !important;
    letter-spacing: -0.02em !important;
    line-height: 1.1 !important;
    margin-bottom: 20px;
  }

  .hero-name-wrapper {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .section-title {
    font-size: 38px;
  }

  .brand-text {
    font-size: 20px;
  }

  .pro-badge {
    font-size: 10px;
    padding: 3px 8px;
  }

  .card-header-row,
  .card-subtitle-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .pro-name,
  .card-header-row h3 {
    font-size: 22px;
  }

  .pro-live-link {
    width: 100%;
    justify-content: center;
    padding: 12px;
  }

  .pro-content {
    padding: 24px 20px;
  }

  .edu-meta {
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
