* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: #fff;
  background: #020617;
  overflow-x: hidden;
}

.background {
  position: fixed;
  inset: 0;
  z-index: -10;
  background:
    radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.22), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(168, 85, 247, 0.22), transparent 30%),
    radial-gradient(circle at 50% 85%, rgba(59, 130, 246, 0.18), transparent 35%),
    #020617;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(45px);
  opacity: 0.75;
  animation: floatOrb 8s ease-in-out infinite alternate;
}

.orb-one {
  width: 260px;
  height: 260px;
  background: #0284c7;
  top: 8%;
  left: 5%;
}

.orb-two {
  width: 230px;
  height: 230px;
  background: #7c3aed;
  top: 12%;
  right: 8%;
  animation-delay: 1.2s;
}

.orb-three {
  width: 280px;
  height: 280px;
  background: #1d4ed8;
  bottom: 5%;
  left: 35%;
  animation-delay: 2s;
}

@keyframes floatOrb {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(35px) scale(1.08);
  }
}

.grid-layer {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.noise-layer {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: repeating-radial-gradient(circle at 0 0, #fff 0, transparent 1px, transparent 4px);
}

.topbar {
  width: min(1180px, calc(100% - 28px));
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  padding: 14px 16px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
}

.brand-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-weight: 900;
  background: linear-gradient(135deg, #38bdf8, #8b5cf6);
  box-shadow: 0 0 35px rgba(56,189,248,0.4);
}

.brand b {
  display: block;
  font-size: 15px;
}

.brand small {
  display: block;
  color: #94a3b8;
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  gap: 22px;
}

.desktop-nav a,
.cv-btn {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 14px;
}

.desktop-nav a {
  transition: 0.25s;
}

.desktop-nav a:hover {
  color: #7dd3fc;
}

.cv-btn {
  padding: 11px 17px;
  border-radius: 999px;
  color: #020617;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #bae6fd);
}

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 130px 0 70px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.status-pill {
  width: fit-content;
  padding: 10px 15px;
  margin-bottom: 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #bae6fd;
  background: rgba(56,189,248,0.11);
  border: 1px solid rgba(186,230,253,0.18);
}

.status-pill span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 18px #22c55e;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.94;
  letter-spacing: -4px;
  margin-bottom: 22px;
}

.hero h1 span {
  display: block;
  background: linear-gradient(135deg, #ffffff, #38bdf8, #a78bfa);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-desc {
  max-width: 640px;
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 850;
  transition: 0.25s;
}

.primary-btn {
  color: #020617;
  background: #fff;
}

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

.primary-btn:hover,
.secondary-btn:hover,
.cv-btn:hover {
  transform: translateY(-4px);
}

.hero-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 560px;
}

.hero-stats div {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
}

.hero-stats strong {
  display: block;
  font-size: 28px;
}

.hero-stats small {
  color: #94a3b8;
}

.hero-right {
  display: grid;
  place-items: center;
}

.profile-card {
  width: min(430px, 100%);
  min-height: 560px;
  position: relative;
  padding: 24px;
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(28px);
  box-shadow:
    0 35px 100px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.22);
  overflow: hidden;
  animation: cardFloat 5s ease-in-out infinite alternate;
}

@keyframes cardFloat {
  from {
    transform: translateY(0) rotate(-1deg);
  }
  to {
    transform: translateY(-18px) rotate(1deg);
  }
}

.profile-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  top: -90px;
  right: -90px;
  border-radius: 50%;
  background: rgba(56,189,248,0.3);
  filter: blur(35px);
}

.profile-img-box {
  width: 100%;
  height: 360px;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}

.profile-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info {
  position: relative;
  margin-top: 22px;
}

.profile-info p {
  color: #7dd3fc;
  margin-bottom: 6px;
}

.profile-info h2 {
  font-size: 34px;
  margin-bottom: 6px;
}

.profile-info span {
  color: #cbd5e1;
}

.floating-card {
  position: absolute;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(2,6,23,0.62);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.32);
}

.floating-card b {
  display: block;
  font-size: 18px;
}

.floating-card span {
  font-size: 12px;
  color: #cbd5e1;
}

.card-one {
  top: 95px;
  left: -18px;
}

.card-two {
  right: -15px;
  bottom: 135px;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 85px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 34px;
}

.section-heading p {
  color: #7dd3fc;
  margin-bottom: 8px;
}

.section-heading h2,
.contact-box h2 {
  font-size: clamp(36px, 7vw, 62px);
  line-height: 1;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #fff, #38bdf8, #a78bfa);
  -webkit-background-clip: text;
  color: transparent;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.glass-card {
  min-height: 230px;
  padding: 24px;
  border-radius: 32px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(24px);
  transition: 0.25s;
}

.glass-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.13);
}

.glass-card span {
  color: #7dd3fc;
  font-weight: 900;
}

.glass-card h3 {
  font-size: 28px;
  margin: 18px 0 10px;
}

.glass-card p {
  color: #cbd5e1;
  line-height: 1.7;
}

.skill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.skill-row span {
  padding: 14px 18px;
  border-radius: 18px;
  color: #e5e7eb;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(18px);
}

.contact-box {
  max-width: 780px;
  margin: auto;
  padding: 42px;
  text-align: center;
  border-radius: 38px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(25px);
}

.contact-box p {
  color: #7dd3fc;
  margin-bottom: 10px;
}

.contact-box .primary-btn {
  margin-top: 26px;
}

footer {
  padding: 40px 20px 52px;
  text-align: center;
  color: #94a3b8;
}

@media (max-width: 880px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 115px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero-right {
    margin-top: 20px;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .topbar {
    top: auto;
    bottom: 14px;
  }

  .brand small {
    display: none;
  }

  .brand-icon {
    width: 36px;
    height: 36px;
  }

  .cv-btn {
    padding: 10px 13px;
    font-size: 12px;
  }

  .hero {
    padding-top: 50px;
    padding-bottom: 110px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .profile-card {
    min-height: 500px;
    border-radius: 34px;
  }

  .profile-img-box {
    height: 315px;
  }

  .floating-card {
    display: none;
  }

  .section {
    padding: 60px 0;
  }
}
.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  gap: 18px;
  background: #020617;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.12);
  border-top-color: #38bdf8;
  border-right-color: #8b5cf6;
  animation: loaderSpin 0.9s linear infinite;
}

.loader p {
  color: #bae6fd;
  font-size: 14px;
  letter-spacing: 1px;
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

#particleCanvas {
  position: fixed;
  inset: 0;
  z-index: -8;
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  width: 260px;
  height: 260px;
  left: 0;
  top: 0;
  z-index: -7;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,0.22), transparent 65%);
  transform: translate(-50%, -50%);
  filter: blur(6px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.reveal {
  opacity: 0;
  transform: translateY(45px) scale(0.97);
  transition: 0.85s cubic-bezier(.2,.8,.2,1);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-left,
.hero-right,
.section-heading,
.glass-card,
.skill-row span,
.contact-box {
  opacity: 0;
  transform: translateY(35px);
}

.hero-left.show,
.hero-right.show,
.section-heading.show,
.glass-card.show,
.skill-row span.show,
.contact-box.show {
  opacity: 1;
  transform: translateY(0);
  transition: 0.8s cubic-bezier(.2,.8,.2,1);
}

.magnetic {
  transition: transform 0.18s ease;
}
.glass-panel {
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.14),
    rgba(255,255,255,0.05)
  );
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(28px);
  box-shadow:
    0 35px 100px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.showcase {
  min-height: 520px;
  padding: 28px;
  border-radius: 42px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  overflow: hidden;
  position: relative;
}

.showcase::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -110px;
  top: -120px;
  border-radius: 50%;
  background: rgba(56,189,248,0.24);
  filter: blur(45px);
}

.showcase-left {
  position: relative;
  z-index: 2;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-left p {
  color: #7dd3fc;
  font-weight: 800;
  margin-bottom: 10px;
}

.showcase-left h3 {
  font-size: clamp(44px, 8vw, 86px);
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #ffffff, #38bdf8, #a78bfa);
  -webkit-background-clip: text;
  color: transparent;
}

.showcase-left span {
  max-width: 560px;
  color: #cbd5e1;
  line-height: 1.8;
  font-size: 16px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.project-tags b {
  padding: 10px 14px;
  border-radius: 999px;
  color: #e0f2fe;
  background: rgba(56,189,248,0.11);
  border: 1px solid rgba(186,230,253,0.18);
  font-size: 13px;
}

.showcase-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.showcase-actions button {
  border: none;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  color: white;
  font-weight: 850;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(16px);
}

.showcase-actions button:last-child {
  color: #020617;
  background: linear-gradient(135deg, #ffffff, #bae6fd);
}

.showcase-right {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 440px;
}

.device-frame {
  width: min(340px, 100%);
  height: 430px;
  position: relative;
  padding: 14px;
  border-radius: 38px;
  background: linear-gradient(145deg, #0f172a, #020617);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 35px 90px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.18);
  transform: rotate(3deg);
  transition: 0.45s ease;
}

.device-frame:hover {
  transform: rotate(0deg) scale(1.03);
}

.device-top {
  width: 86px;
  height: 7px;
  border-radius: 999px;
  margin: 0 auto 12px;
  background: rgba(255,255,255,0.25);
}

.device-screen {
  height: calc(100% - 19px);
  border-radius: 28px;
  padding: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(56,189,248,0.35), transparent 30%),
    radial-gradient(circle at 90% 60%, rgba(139,92,246,0.28), transparent 35%),
    rgba(15,23,42,0.9);
  border: 1px solid rgba(255,255,255,0.12);
  transition: 0.4s ease;
}

.mock-nav {
  height: 34px;
  border-radius: 14px;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.13);
}

.mock-hero {
  height: 130px;
  border-radius: 24px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.22), rgba(56,189,248,0.15));
  border: 1px solid rgba(255,255,255,0.13);
}

.mock-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 18px;
}

.mock-row span {
  height: 76px;
  border-radius: 18px;
  background: rgba(255,255,255,0.12);
}

.mock-line {
  height: 12px;
  width: 64%;
  border-radius: 999px;
  margin-top: 10px;
  background: rgba(255,255,255,0.16);
}

.mock-line.long {
  width: 88%;
}

.project-number {
  position: absolute;
  right: 22px;
  bottom: 18px;
  display: flex;
  align-items: end;
  gap: 4px;
}

.project-number span {
  font-size: 54px;
  font-weight: 950;
  letter-spacing: -3px;
  color: rgba(255,255,255,0.9);
}

.project-number small {
  color: #94a3b8;
  margin-bottom: 11px;
}

.showcase.animate .showcase-left {
  animation: showcaseText 0.45s ease;
}

.showcase.animate .device-frame {
  animation: devicePop 0.45s ease;
}

@keyframes showcaseText {
  from {
    opacity: 0;
    transform: translateX(-28px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes devicePop {
  from {
    opacity: 0;
    transform: translateX(34px) rotate(8deg) scale(0.92);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(3deg) scale(1);
    filter: blur(0);
  }
}

@media (max-width: 880px) {
  .showcase {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 20px;
  }

  .showcase-left {
    padding: 12px;
  }

  .showcase-right {
    min-height: 390px;
  }

  .device-frame {
    height: 380px;
  }
}
.skills-galaxy {
  min-height: 560px;
  padding: 34px;
  border-radius: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.skills-galaxy::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  left: -130px;
  top: -120px;
  border-radius: 50%;
  background: rgba(139,92,246,0.22);
  filter: blur(50px);
}

.galaxy-center {
  height: 470px;
  position: relative;
  display: grid;
  place-items: center;
}

.core-circle {
  width: 155px;
  height: 155px;
  z-index: 5;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.32), transparent 32%),
    linear-gradient(135deg, rgba(56,189,248,0.95), rgba(139,92,246,0.9));
  box-shadow:
    0 0 55px rgba(56,189,248,0.45),
    inset 0 1px 0 rgba(255,255,255,0.42);
}

.core-circle span {
  display: block;
  font-size: 44px;
  font-weight: 950;
  letter-spacing: -2px;
}

.core-circle small {
  display: block;
  margin-top: -28px;
  color: #e0f2fe;
  font-weight: 700;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  animation: orbitSpin linear infinite;
}

.orbit b {
  position: absolute;
  padding: 9px 13px;
  border-radius: 999px;
  color: #e0f2fe;
  font-size: 13px;
  background: rgba(2,6,23,0.72);
  border: 1px solid rgba(186,230,253,0.18);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.28);
}

.orbit-one {
  width: 240px;
  height: 240px;
  animation-duration: 12s;
}

.orbit-two {
  width: 330px;
  height: 330px;
  animation-duration: 18s;
  animation-direction: reverse;
}

.orbit-three {
  width: 420px;
  height: 420px;
  animation-duration: 25s;
}

.orbit-one b:first-child {
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-one b:last-child {
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-two b:first-child {
  top: 50%;
  left: -22px;
  transform: translateY(-50%);
}

.orbit-two b:last-child {
  top: 50%;
  right: -22px;
  transform: translateY(-50%);
}

.orbit-three b:first-child {
  top: 35px;
  right: 35px;
}

.orbit-three b:last-child {
  bottom: 35px;
  left: 35px;
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

.skills-info {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 16px;
}

.skills-info article {
  padding: 22px;
  border-radius: 26px;
  background: rgba(255,255,255,0.085);
  border: 1px solid rgba(255,255,255,0.13);
  transition: 0.25s ease;
}

.skills-info article:hover {
  transform: translateX(8px);
  background: rgba(255,255,255,0.12);
}

.skills-info h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.skills-info p {
  color: #cbd5e1;
  line-height: 1.75;
}

@media (max-width: 880px) {
  .skills-galaxy {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .galaxy-center {
    height: 430px;
  }

  .orbit-one {
    width: 210px;
    height: 210px;
  }

  .orbit-two {
    width: 290px;
    height: 290px;
  }

  .orbit-three {
    width: 360px;
    height: 360px;
  }
}

@media (max-width: 430px) {
  .galaxy-center {
    transform: scale(0.88);
    height: 380px;
  }
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.service-card {
  position: relative;
  min-height: 340px;
  padding: 26px;
  border-radius: 34px;
  overflow: hidden;
  transition: 0.28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(56,189,248,0.14), transparent 30%);
  opacity: 0;
  transition: 0.3s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-12px);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.service-top span {
  font-size: 14px;
  font-weight: 900;
  color: #7dd3fc;
}

.service-top h3 {
  font-size: 30px;
  line-height: 1;
  letter-spacing: -1px;
}

.service-card p {
  color: #cbd5e1;
  line-height: 1.8;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.service-tags b {
  padding: 9px 13px;
  border-radius: 999px;
  color: #e0f2fe;
  font-size: 12px;
  background: rgba(56,189,248,0.1);
  border: 1px solid rgba(186,230,253,0.15);
}

.service-card strong {
  position: absolute;
  bottom: 26px;
  left: 26px;
  color: #fff;
  font-size: 14px;
}

.featured-service {
  transform: scale(1.03);
  border: 1px solid rgba(56,189,248,0.28);
  box-shadow:
    0 35px 90px rgba(56,189,248,0.12),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: #020617;
  background: linear-gradient(135deg, #ffffff, #7dd3fc);
}

.pricing-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.pricing-card {
  position: relative;
  padding: 30px;
  border-radius: 36px;
  text-align: center;
  overflow: hidden;
  transition: 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-12px);
}

.pricing-card p {
  color: #7dd3fc;
  font-weight: 700;
}

.pricing-card h3 {
  margin: 16px 0 20px;
  font-size: 62px;
  letter-spacing: -3px;
}

.pricing-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.pricing-card li {
  color: #cbd5e1;
}

.pricing-card button {
  width: 100%;
  margin-top: 28px;
  min-height: 52px;
  border: none;
  border-radius: 18px;
  font-weight: 900;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
}

.premium-price {
  transform: scale(1.05);
  border: 1px solid rgba(56,189,248,0.24);
  background:
    radial-gradient(circle at top, rgba(56,189,248,0.18), transparent 35%),
    linear-gradient(
      145deg,
      rgba(255,255,255,0.14),
      rgba(255,255,255,0.05)
    );
}

.premium-price h3 {
  background: linear-gradient(135deg, #fff, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

.premium-price button {
  color: #020617;
  background: linear-gradient(135deg, #ffffff, #7dd3fc);
}

.premium-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  color: #020617;
  background: linear-gradient(135deg, #fff, #7dd3fc);
}

@media (max-width: 980px) {
  .services-grid,
  .pricing-wrapper {
    grid-template-columns: 1fr;
  }

  .featured-service,
  .premium-price {
    transform: none;
  }
}
.timeline-wrapper {
  position: relative;
  display: grid;
  gap: 22px;
  margin-top: 20px;
}

.timeline-line {
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(56,189,248,0.6),
    rgba(139,92,246,0.5)
  );
}

.timeline-card {
  position: relative;
  margin-left: 70px;
  padding: 28px;
  border-radius: 34px;
  overflow: hidden;
  transition: 0.3s ease;
}

.timeline-card:hover {
  transform: translateX(10px);
}

.timeline-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  left: -51px;
  top: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #8b5cf6);
  box-shadow: 0 0 30px rgba(56,189,248,0.5);
}

.timeline-card span {
  color: #7dd3fc;
  font-weight: 800;
  font-size: 14px;
}

.timeline-card h3 {
  margin: 12px 0;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -1px;
}

.timeline-card p {
  max-width: 720px;
  color: #cbd5e1;
  line-height: 1.8;
}

.achievement-section {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.achievement-box {
  position: relative;
  min-height: 230px;
  padding: 28px;
  border-radius: 34px;
  overflow: hidden;
  transition: 0.3s ease;
}

.achievement-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(56,189,248,0.16), transparent 30%);
  opacity: 0;
  transition: 0.3s;
}

.achievement-box:hover::before {
  opacity: 1;
}

.achievement-box:hover {
  transform: translateY(-12px);
}

.achievement-box p {
  color: #7dd3fc;
  font-weight: 700;
}

.achievement-box h3 {
  margin: 22px 0 12px;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -4px;
  background: linear-gradient(135deg, #ffffff, #38bdf8, #a78bfa);
  -webkit-background-clip: text;
  color: transparent;
}

.achievement-box span {
  color: #cbd5e1;
  font-size: 15px;
}

@media (max-width: 980px) {
  .achievement-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .timeline-card {
    margin-left: 50px;
  }

  .timeline-dot {
    left: -38px;
  }

  .achievement-section {
    grid-template-columns: 1fr;
  }

  .achievement-box h3 {
    font-size: 58px;
  }
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: stretch;
}

.contact-main {
  position: relative;
  padding: 38px;
  border-radius: 42px;
  overflow: hidden;
}

.contact-main::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: rgba(56,189,248,0.18);
  filter: blur(55px);
}

.contact-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-top p {
  color: #7dd3fc;
  font-weight: 800;
}

.online-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: #e0f2fe;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(134,239,172,0.16);
}

.online-status i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 18px #22c55e;
}

.contact-main h2 {
  max-width: 720px;
  font-size: clamp(42px, 8vw, 82px);
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 22px;
}

.contact-main h2 span {
  display: block;
  background: linear-gradient(135deg, #ffffff, #38bdf8, #a78bfa);
  -webkit-background-clip: text;
  color: transparent;
}

.contact-description {
  max-width: 640px;
  color: #cbd5e1;
  line-height: 1.9;
  font-size: 16px;
}

.contact-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.contact-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.contact-mini-grid div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.contact-mini-grid small {
  display: block;
  color: #7dd3fc;
  margin-bottom: 8px;
}

.contact-mini-grid strong {
  color: #fff;
}

.contact-side {
  display: grid;
  gap: 20px;
}

.social-card,
.quote-card {
  padding: 30px;
  border-radius: 36px;
}

.social-card p,
.quote-card p {
  color: #7dd3fc;
  margin-bottom: 20px;
  font-weight: 800;
}

.social-links {
  display: grid;
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 0 18px;
  border-radius: 20px;
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: 0.25s ease;
}

.social-links a:hover {
  transform: translateX(8px);
  background: rgba(255,255,255,0.12);
}

.social-links b {
  font-size: 20px;
}

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 240px;
}

.quote-card h3 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.floating-dock {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 999px;
  background: rgba(15,23,42,0.7);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(22px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.4);
}

.floating-dock a {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  text-decoration: none;
  border-radius: 50%;
  font-size: 22px;
  color: #fff;
  background: rgba(255,255,255,0.08);
  transition: 0.25s ease;
}

.floating-dock a:hover {
  transform: translateY(-6px) scale(1.08);
  background: linear-gradient(135deg, #38bdf8, #8b5cf6);
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .contact-main {
    padding: 24px;
    border-radius: 34px;
  }

  .contact-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-mini-grid {
    grid-template-columns: 1fr;
  }

  .quote-card h3 {
    font-size: 26px;
  }

  .floating-dock {
    width: calc(100% - 24px);
    justify-content: space-between;
  }

  .floating-dock a {
    width: 48px;
    height: 48px;
  }
}
.floating-dock .dock-link {
  position: relative;
  width: 62px;
  height: 58px;
  display: grid;
  place-items: center;
  gap: 2px;
  overflow: hidden;
}

.dock-link span {
  font-size: 21px;
  transition: 0.25s ease;
}

.dock-link small {
  font-size: 10px;
  color: #cbd5e1;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.25s ease;
}

.dock-link.active {
  width: 92px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8, #8b5cf6);
  box-shadow: 0 0 28px rgba(56,189,248,0.35);
}

.dock-link.active small {
  opacity: 1;
  transform: translateY(0);
}

.dock-link.active span {
  transform: translateY(-1px) scale(1.05);
}

@media (max-width: 680px) {
  .floating-dock .dock-link {
    width: 56px;
    height: 52px;
  }

  .dock-link.active {
    width: 84px;
  }
}
/* Part 9: Performance Polish */

* {
  -webkit-tap-highlight-color: transparent;
}

img,
video,
canvas {
  max-width: 100%;
}

body.performance-lite #particleCanvas,
body.performance-lite .cursor-glow {
  display: none;
}

body.performance-lite .orb,
body.performance-lite .profile-card,
body.performance-lite .orbit {
  animation: none !important;
}

body.performance-lite * {
  transition-duration: 0.15s !important;
}

.performance-toggle {
  position: fixed;
  right: 18px;
  bottom: 96px;
  z-index: 1000;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  color: #020617;
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff, #7dd3fc);
  box-shadow: 0 20px 55px rgba(0,0,0,0.35);
}

.performance-toast {
  position: fixed;
  left: 50%;
  bottom: 172px;
  transform: translateX(-50%) translateY(30px);
  z-index: 1001;
  padding: 12px 18px;
  border-radius: 999px;
  color: #e0f2fe;
  background: rgba(15,23,42,0.82);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.performance-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 680px) {
  .cursor-glow {
    display: none;
  }

  .profile-card {
    animation-duration: 8s;
  }

  .orbit-one {
    animation-duration: 18s;
  }

  .orbit-two {
    animation-duration: 24s;
  }

  .orbit-three {
    animation-duration: 32s;
  }

  .performance-toggle {
    right: 14px;
    bottom: 88px;
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .performance-toast {
    bottom: 150px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  #particleCanvas,
  .cursor-glow {
    display: none !important;
  }
}
::selection {
  color: #020617;
  background: #7dd3fc;
}

a:focus,
button:focus {
  outline: 2px solid #7dd3fc;
  outline-offset: 4px;
}

.luxury-signature {
  margin-top: 26px;
  color: #94a3b8;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}