#rmBootLoader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(77, 231, 255, 0.045),
      transparent 25%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(124, 131, 255, 0.035),
      transparent 48%
    ),
    #05070c;
  color: #dfe8ff;
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.8s;
}
#rmBootLoader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.rm-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(124, 131, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 131, 255, 0.025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle, black, transparent 70%);
}
.rm-wrap {
  position: relative;
  width: min(460px, 90vw);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rm-core {
  position: relative;
  width: 170px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.rm-logo-ring:after,
.rm-logo-ring:before {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  background: #4de7ff;
  box-shadow: 0 0 12px #4de7ff;
}
.rm-logo-ring:before {
  left: 7px;
  top: 15px;
}
.rm-logo-ring:after {
  right: 10px;
  bottom: 14px;
  background: #8b91ff;
  box-shadow: 0 0 12px #8b91ff;
}
.rm-orbit {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(124, 131, 255, 0.11);
  border-radius: 50%;
  transform: rotate(20deg) scaleY(0.52);
  animation: rmspin 7s linear infinite;
}
.rm-orbit.o2 {
  inset: 18px;
  transform: rotate(-35deg) scaleY(0.68);
  animation-duration: 9s;
  animation-direction: reverse;
  border-color: rgba(77, 231, 255, 0.08);
}
.rm-orbit.o3 {
  inset: 30px;
  transform: rotate(72deg) scaleY(0.82);
  animation-duration: 12s;
  border-color: rgba(124, 131, 255, 0.07);
}
.rm-name {
  margin-top: -3px;
  font: 600 9px monospace;
  letter-spacing: 0.28em;
  color: rgba(142, 226, 255, 0.5);
}
.rm-terminal {
  width: 100%;
  margin-top: 25px;
  padding: 17px 17px 15px;
  border: 1px solid rgba(124, 131, 255, 0.12);
  border-radius: 13px;
  background: rgba(8, 11, 19, 0.74);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.3);
}
.rm-head {
  font: 600 9px monospace;
  letter-spacing: 0.14em;
  color: rgba(180, 194, 226, 0.4);
  margin-bottom: 12px;
}
.rm-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4de7ff;
  box-shadow: 0 0 9px #4de7ff;
  margin-right: 7px;
}
.rm-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.rm-line {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 18px;
  font: 500 10px/1.5 monospace;
  color: rgba(170, 183, 211, 0.3);
  transition:
    color 0.45s ease,
    text-shadow 0.45s ease,
    opacity 0.45s ease;
}
.rm-line .rm-icon {
  width: 17px;
  text-align: center;
  filter: grayscale(1);
  opacity: 0.35;
  transition: 0.45s ease;
}
.rm-line.done {
  color: rgba(185, 201, 225, 0.46);
}
.rm-line.done .rm-icon {
  filter: none;
  opacity: 0.75;
}
.rm-line.active {
  color: rgba(238, 243, 255, 0.92);
  text-shadow: 0 0 12px rgba(77, 231, 255, 0.15);
  animation: rmtext 1.05s ease-in-out infinite;
}
.rm-line.active .rm-icon {
  filter: none;
  opacity: 1;
}
.rm-line.active:after {
  content: "";
  width: 4px;
  height: 11px;
  background: #4de7ff;
  box-shadow: 0 0 8px rgba(77, 231, 255, 0.7);
  animation: rmcaret 0.7s steps(1) infinite;
}
.rm-bar {
  height: 2px;
  margin-top: 15px;
  background: rgba(124, 131, 255, 0.07);
  border-radius: 9px;
  overflow: hidden;
}
.rm-bar span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #6f78ff, #4de7ff);
  box-shadow: 0 0 10px rgba(77, 231, 255, 0.4);
  transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.rm-pct {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font: 600 8px/1 monospace;
  letter-spacing: 0.15em;
  color: rgba(151, 166, 200, 0.3);
}
.rm-pct b {
  color: rgba(77, 231, 255, 0.68);
  font-weight: 600;
}
.rm-code {
  position: absolute;
  color: rgba(124, 131, 255, 0.1);
  font: 600 9px/1 monospace;
  white-space: nowrap;
  animation: rmcode 9s linear infinite;
}
.rm-code.c1 {
  left: 8%;
  top: 24%;
}
.rm-code.c2 {
  right: 8%;
  top: 30%;
  animation-delay: -2s;
}
.rm-code.c3 {
  left: 10%;
  bottom: 24%;
  animation-delay: -4s;
}
.rm-code.c4 {
  right: 10%;
  bottom: 20%;
  animation-delay: -6s;
}
@keyframes rmspin {
  to {
    transform: rotate(380deg) scaleY(0.52);
  }
}
@keyframes rmring {
  to {
    transform: rotate(360deg);
  }
}
@keyframes rmpulse {
  50% {
    opacity: 0.68;
    transform: scale(0.985);
  }
}
@keyframes rmtext {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
@keyframes rmcaret {
  50% {
    opacity: 0;
  }
}
@keyframes rmcode {
  0% {
    transform: translateY(12px);
    opacity: 0;
  }
  20%,
  75% {
    opacity: 1;
  }
  100% {
    transform: translateY(-18px);
    opacity: 0;
  }
}
@media (max-width: 600px) {
  .rm-wrap {
    width: min(350px, 88vw);
  }
  .rm-core {
    width: 138px;
  }
  .rm-logo {
    font-size: 2.7rem;
  }
  .rm-logo-ring {
    width: 94px;
    height: 94px;
  }
  .rm-terminal {
    margin-top: 21px;
    padding: 14px 12px;
  }
  .rm-line {
    font-size: 9px;
    gap: 5px;
  }
  .rm-code {
    font-size: 8px;
  }
  .rm-code.c1 {
    left: 4%;
    top: 19%;
  }
  .rm-code.c2 {
    right: 4%;
    top: 26%;
  }
  .rm-code.c3 {
    left: 6%;
    bottom: 19%;
  }
  .rm-code.c4 {
    right: 6%;
    bottom: 16%;
  }
}
@media (max-width: 380px) {
  .rm-wrap {
    width: 91vw;
  }
  .rm-core {
    width: 122px;
  }
  .rm-logo {
    font-size: 2.45rem;
  }
  .rm-logo-ring {
    width: 84px;
    height: 84px;
  }
  .rm-line {
    font-size: 8px;
  }
  .rm-line .rm-icon {
    width: 15px;
  }
  .rm-terminal {
    padding: 13px 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  #rmBootLoader * {
    animation: none !important;
  }
}
*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  scrollbar-width: none;
}
body::-webkit-scrollbar,
html::-webkit-scrollbar {
  display: none;
}
body {
  min-height: 100vh;
  overflow-x: hidden;
  background: #0b1120;
  color: #edf2ff;
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.loading {
  overflow: hidden;
}
body.menu-open {
  overflow: hidden;
}
::selection {
  background: rgba(111, 123, 255, 0.35);
  color: #fff;
}
img {
  max-width: 100%;
  display: block;
}
a,
button {
  font: inherit;
}
button {
  border: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
:root {
  --bg: #0b1120;
  --bg-2: #111a2c;
  --surface: rgba(23, 33, 55, 0.78);
  --surface-solid: #172238;
  --surface-light: rgba(255, 255, 255, 0.08);
  --text: #edf2ff;
  --muted: #b1bdd4;
  --muted-2: #8997b2;
  --primary: #7c83ff;
  --primary-2: #4da3ff;
  --cyan: #4de7ff;
  --violet: #a675ff;
  --border: rgba(174, 191, 231, 0.24);
  --border-hover: rgba(124, 131, 255, 0.42);
  --glow: 0 0 60px rgba(108, 119, 255, 0.16);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --nav-height: 76px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
.site-background {
  position: fixed;
  inset: 0;
  z-index: -20;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(92, 103, 255, 0.09),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 20%,
      rgba(56, 205, 255, 0.06),
      transparent 28%
    ),
    radial-gradient(
      circle at 50% 85%,
      rgba(158, 96, 255, 0.07),
      transparent 32%
    ),
    #0b1120;
}
#three-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.76;
}
.grid-overlay {
  position: absolute;
  inset: -20%;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(120, 140, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 140, 255, 0.12) 1px, transparent 1px);
  background-size: 70px 70px;
  transform: perspective(900px) rotateX(66deg) translateY(20%);
  transform-origin: center bottom;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 30%,
    black 70%,
    transparent 100%
  );
}
.noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.026;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(
    circle,
    rgba(93, 110, 255, 0.09),
    transparent 68%
  );
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section {
  position: relative;
  padding: 130px 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: #aeb8d2;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 15px var(--cyan);
}
.section-heading {
  max-width: 720px;
  margin-bottom: 60px;
}
.section-heading h2 {
  margin-top: 20px;
  color: #f4f6ff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.section-heading h2 span {
  color: transparent;
  background: linear-gradient(90deg, #fff, #929bff 60%, #4de7ff);
  background-clip: text;
  -webkit-background-clip: text;
}
.section-heading p {
  max-width: 620px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.03rem;
}
.gradient-text {
  color: transparent;
  background: linear-gradient(90deg, #fff, #9a9fff 50%, #4de7ff);
  background-clip: text;
  -webkit-background-clip: text;
}
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 12px 0;
  transition: 0.4s var(--ease);
}
.nav-wrap.scrolled {
  padding: 8px 0;
}
.nav {
  width: min(calc(100% - 28px), 1100px);
  min-height: 58px;
  margin: auto;
  padding: 0 10px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(160, 174, 220, 0.13);
  border-radius: 999px;
  background: rgba(7, 10, 18, 0.55);
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  transition: 0.4s var(--ease);
}
.nav-wrap.scrolled .nav {
  background: rgba(7, 10, 18, 0.78);
  border-color: rgba(160, 174, 220, 0.18);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(124, 131, 255, 0.4);
  border-radius: 10px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    rgba(124, 131, 255, 0.2),
    rgba(77, 231, 255, 0.08)
  );
  box-shadow: inset 0 0 20px rgba(124, 131, 255, 0.08);
}
.brand-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  position: relative;
  padding: 9px 12px;
  border-radius: 999px;
  color: #919bb5;
  font-size: 0.78rem;
  font-weight: 600;
  transition: 0.3s ease;
}
.nav-links a.active,
.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #6f77ff, #477ee9);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(87, 104, 255, 0.22);
  transition: 0.3s var(--ease);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(87, 104, 255, 0.32);
}
.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 80px) 0 90px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85, 101, 255, 0.1), transparent 68%);
  filter: blur(12px);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: min(100%, 860px);
}
.availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding: 7px 11px;
  border: 1px solid rgba(77, 231, 255, 0.16);
  border-radius: 999px;
  background: rgba(77, 231, 255, 0.025);
  color: #a6b2cc;
  font-size: 0.73rem;
}
.availability i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #54e89c;
  box-shadow: 0 0 12px #54e89c;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  50% {
    opacity: 0.45;
    transform: scale(0.75);
  }
}
.hero h1 {
  max-width: 980px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.3rem, 8vw, 7.4rem);
  line-height: 0.91;
  letter-spacing: -0.075em;
  color: #f5f7ff;
}
.hero h1 .line {
  display: block;
}
.hero h1 .accent {
  color: transparent;
  background: linear-gradient(105deg, #fff 5%, #8d94ff 45%, #4de7ff 90%);
  background-clip: text;
  -webkit-background-clip: text;
}
.hero-subtitle {
  max-width: 680px;
  margin-top: 30px;
  color: #9ba5bd;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.75;
}
.hero-subtitle strong {
  color: #e4e8f6;
  font-weight: 600;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 19px;
  border: 1px solid var(--border);
  border-radius: 13px;
  overflow: hidden;
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.83rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.35s var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%);
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.13),
    transparent
  );
  transition: 0.65s var(--ease);
}
.btn:hover::before {
  transform: translateX(110%);
}
.btn:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.065);
}
.btn-primary {
  border-color: transparent;
  background: linear-gradient(135deg, #7078ff, #497ce5);
  box-shadow: 0 15px 35px rgba(83, 98, 255, 0.22);
}
.btn-primary:hover {
  border-color: transparent;
  box-shadow: 0 20px 45px rgba(83, 98, 255, 0.34);
}
.btn-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.09);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 35px;
}
.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: #7e89a5;
  background: rgba(255, 255, 255, 0.018);
  font-size: 0.72rem;
}
.meta-pill span {
  color: #c9d1e5;
}
.hero-code {
  position: absolute;
  right: -2%;
  top: 50%;
  width: 400px;
  transform: translateY(-50%) rotateY(-15deg) rotateX(7deg);
  perspective: 1000px;
  z-index: 1;
  opacity: 0.45;
  pointer-events: none;
}
.code-window {
  position: relative;
  border: 1px solid rgba(150, 165, 220, 0.14);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(11, 15, 26, 0.58);
  backdrop-filter: blur(18px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.25),
    inset 0 0 40px rgba(100, 110, 255, 0.025);
}
.code-header {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(150, 165, 220, 0.1);
}
.code-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #59627b;
}
.code-body {
  padding: 22px;
  font-family: SFMono-Regular, Consolas, monospace;
  font-size: 12px;
  line-height: 2;
  color: #78839d;
}
.code-key {
  color: #8c94ff;
}
.code-string {
  color: #55c8d8;
}
.code-comment {
  color: #73819e;
}
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  color: #68738e;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  pointer-events: none;
}
.scroll-line {
  position: relative;
  width: 1px;
  height: 38px;
  overflow: hidden;
  background: rgba(140, 150, 180, 0.15);
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 65%;
  background: linear-gradient(transparent, #8b94ff, transparent);
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
  0% {
    top: -100%;
  }
  100% {
    top: 150%;
  }
}
.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.018);
}
.marquee-track {
  width: max-content;
  display: flex;
  animation: marquee 35s linear infinite;
}
.marquee-group {
  display: flex;
  align-items: center;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  color: #68728b;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-item::after {
  content: "✦";
  color: #5962d6;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.about-visual {
  position: sticky;
  top: 120px;
}
.identity-card {
  position: relative;
  min-height: 480px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      circle at 75% 25%,
      rgba(117, 128, 255, 0.13),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.012)
    );
  box-shadow: var(--glow);
  transform-style: preserve-3d;
}
.identity-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  top: -80px;
  border: 1px solid rgba(108, 123, 255, 0.25);
  border-radius: 50%;
  box-shadow:
    0 0 0 30px rgba(108, 123, 255, 0.025),
    0 0 0 60px rgba(108, 123, 255, 0.018);
}
.identity-card::after {
  content: "</>";
  position: absolute;
  right: 28px;
  bottom: 20px;
  color: rgba(124, 131, 255, 0.11);
  font-family: monospace;
  font-size: 7rem;
  font-weight: 700;
}
.avatar-placeholder {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(124, 131, 255, 0.32);
  border-radius: 25px;
  color: #aab0ff;
  background: linear-gradient(
    135deg,
    rgba(124, 131, 255, 0.13),
    rgba(77, 231, 255, 0.04)
  );
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 0 50px rgba(104, 114, 255, 0.12);
}
.identity-card h3 {
  margin-top: 32px;
  max-width: 320px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.identity-card p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}
.identity-tags {
  position: absolute;
  left: 30px;
  bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-width: 75%;
}
.identity-tags span {
  padding: 6px 9px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: #8d98b2;
  background: rgba(255, 255, 255, 0.025);
  font-family: monospace;
  font-size: 0.68rem;
}
.about-copy h3 {
  margin-top: 20px;
  max-width: 620px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.about-copy > p {
  margin-top: 23px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}
.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 34px;
}
.principle {
  padding: 19px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.018);
  transition: 0.35s var(--ease);
}
.principle:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  background: rgba(124, 131, 255, 0.035);
}
.principle-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #9ea6ff;
  background: rgba(124, 131, 255, 0.09);
  font-size: 0.85rem;
}
.principle strong {
  display: block;
  margin-top: 13px;
  color: #dfe4f5;
  font-size: 0.83rem;
}
.principle p {
  margin-top: 5px;
  color: #8b99b5;
  font-size: 0.72rem;
  line-height: 1.55;
}
.expertise-section {
  overflow: hidden;
}
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.expertise-card {
  position: relative;
  min-height: 260px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.042),
    rgba(255, 255, 255, 0.012)
  );
  transition:
    transform 0.45s var(--ease),
    border-color 0.35s ease,
    background 0.35s ease;
  transform-style: preserve-3d;
}
.expertise-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(93, 105, 255, 0.09);
  filter: blur(20px);
  transition: 0.45s ease;
}
.expertise-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 131, 255, 0.35);
  background: linear-gradient(
    145deg,
    rgba(124, 131, 255, 0.07),
    rgba(255, 255, 255, 0.015)
  );
}
.expertise-card:hover::before {
  transform: scale(1.5);
}
.expertise-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(124, 131, 255, 0.16);
  border-radius: 13px;
  color: #a0a7ff;
  background: rgba(124, 131, 255, 0.065);
  font-size: 1.15rem;
}
.expertise-card h3 {
  margin-top: 25px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.025em;
}
.expertise-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
}
.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}
.tech-list span {
  padding: 5px 7px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: #77829c;
  font-family: monospace;
  font-size: 0.62rem;
}
.experience-wrap {
  position: relative;
  max-width: 950px;
  margin: auto;
}
.experience-line {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(124, 131, 255, 0.35) 10%,
    rgba(124, 131, 255, 0.35) 90%,
    transparent
  );
}
.experience-item {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 55px;
  padding-bottom: 65px;
}
.experience-item:last-child {
  padding-bottom: 0;
}
.experience-date {
  padding-top: 5px;
  color: #94a2bd;
  font-family: monospace;
  font-size: 0.7rem;
  line-height: 1.6;
}
.experience-content {
  position: relative;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.022);
  transition: 0.35s var(--ease);
}
.experience-content::before {
  content: "";
  position: absolute;
  left: -66px;
  top: 31px;
  width: 21px;
  height: 21px;
            border: 5px solid #0b1120;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b91ff, #4de7ff);
  box-shadow: 0 0 25px rgba(100, 125, 255, 0.35);
}
.experience-content:hover {
  transform: translateX(5px);
  border-color: rgba(124, 131, 255, 0.3);
}
.experience-company {
  color: #8f99ff;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.experience-content h3 {
  margin-top: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
  letter-spacing: -0.035em;
}
.experience-content p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.75;
}
.experience-points {
  display: grid;
  gap: 7px;
  margin-top: 18px;
}
.experience-points li {
  position: relative;
  padding-left: 17px;
  color: #7f8aa3;
  font-size: 0.75rem;
}
.experience-points li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #8f96ff;
}
.skills-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.skills-intro p {
  max-width: 450px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
}
.skills-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.skill-chip {
  position: relative;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: #a4adc3;
  background: rgba(255, 255, 255, 0.025);
  font-family: monospace;
  font-size: 0.72rem;
  cursor: default;
  transition: 0.35s var(--ease);
}
.skill-chip:hover {
  transform: translateY(-4px) scale(1.025);
  border-color: rgba(124, 131, 255, 0.38);
  color: #e3e7f6;
  background: rgba(124, 131, 255, 0.06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}
.skill-chip.primary {
  color: #c0c4ff;
  border-color: rgba(124, 131, 255, 0.25);
  background: rgba(124, 131, 255, 0.055);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.project-card {
  position: relative;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 23px;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(90, 102, 255, 0.13),
      transparent 30%
    ),
    linear-gradient(145deg, #172238, #0f1728);
  transition: 0.5s var(--ease);
}
.project-card.large {
  grid-column: span 2;
  min-height: 420px;
}
.project-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  isolation: isolate;
  background:
    var(--project-image),
    radial-gradient(
      circle at 80% 20%,
      rgba(90, 102, 255, 0.13),
      transparent 30%
    ),
    linear-gradient(145deg, #172238, #0f1728);
  background-position: center;
  background-size: cover;
  opacity: 0.9;
  transition: transform 0.8s var(--ease);
}
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.08);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
.project-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.12),
      transparent 38%,
      rgba(255, 255, 255, 0.035) 76%,
      transparent
    ),
    radial-gradient(
      ellipse 82% 68% at 8% 96%,
      rgba(7, 10, 18, 0.96) 0,
      rgba(7, 10, 18, 0.72) 28%,
      rgba(7, 10, 18, 0.22) 62%,
      transparent 100%
    ),
    linear-gradient(to top, rgba(7, 10, 18, 0.3), transparent 48%);
}
.project-art::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      transparent 25%,
      rgba(112, 123, 255, 0.1) 25.5%,
      transparent 26%
    ),
    linear-gradient(
      315deg,
      transparent 25%,
      rgba(77, 231, 255, 0.06) 25.5%,
      transparent 26%
    );
  background-size: 75px 75px;
  transform: scale(1.5) rotate(-5deg);
  animation: artMove 18s linear infinite;
}
@keyframes artMove {
  to {
    transform: scale(1.5) rotate(-5deg) translate(70px, 30px);
  }
}
.project-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  background: linear-gradient(
    to top,
    rgba(7, 10, 18, 0.72),
    rgba(7, 10, 18, 0.3) 62%,
    transparent
  );
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75);
}
.project-index {
  color: #dce1ff;
  font-family: monospace;
  font-size: 0.68rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}
.project-content h3 {
  margin-top: 7px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  color: #fff;
  font-weight: 700;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.95),
    0 0 24px rgba(7, 10, 18, 0.55);
  letter-spacing: -0.035em;
}
.project-content p {
  max-width: 650px;
  margin-top: 9px;
  color: #e0e7f6;
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.7;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95);
}
.project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 18px;
}
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.project-tags span {
  padding: 5px 8px;
  border: 1px solid var(--border);
  border-radius: 7px;
  color: #f1f4ff;
  font-family: monospace;
  font-size: 0.6rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: max-content;
  color: #abb1ff;
  font-size: 0.7rem;
  font-weight: 700;
}
.project-card:hover {
  transform: translateY(-7px);
  border-color: rgba(124, 131, 255, 0.36);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}
.project-card:hover::after {
  opacity: 1;
}
.project-card:hover .project-art {
  transform: scale(1.04);
  transition: 0.8s var(--ease);
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cert-card {
  position: relative;
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: 0.35s var(--ease);
}
.cert-card::after {
  content: "✓";
  position: absolute;
  right: 18px;
  bottom: 5px;
  color: rgba(120, 130, 255, 0.07);
  font-size: 5rem;
  font-weight: 700;
}
.cert-card:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 131, 255, 0.32);
}
.cert-icon {
  color: #8e97ff;
  font-size: 1rem;
}
.cert-card h3 {
  margin-top: 17px;
  color: #dfe4f4;
  font-size: 0.83rem;
  line-height: 1.4;
}
.cert-card p {
  margin-top: 7px;
  color: #98a6c1;
  font-size: 0.68rem;
}
.testimonials-shell {
  position: relative;
}
.testimonial-viewport {
  overflow-x: auto;
  padding: 4px 2px 18px;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
}
.testimonial-viewport::-webkit-scrollbar {
  display: none;
}
.testimonial-track {
  display: flex;
  gap: 16px;
  width: max-content;
}
.testimonial-card {
  position: relative;
  width: min(390px, calc(100vw - 48px));
  max-width: calc(100vw - 48px);
  height: 300px;
  flex: 0 0 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 8%, rgba(77, 231, 255, 0.1), transparent 30%),
    linear-gradient(145deg, rgba(16, 22, 37, 0.94), rgba(9, 13, 23, 0.96));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  scroll-snap-align: start;
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s ease;
}
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 5px;
  right: 22px;
  color: rgba(124, 131, 255, 0.13);
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(77, 231, 255, 0.32);
}
.testimonial-author,
.testimonial-meta {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(77, 231, 255, 0.25);
  border-radius: 12px;
  background: rgba(77, 231, 255, 0.08);
  color: var(--cyan);
  font-size: 1rem;
}
.testimonial-label {
  min-width: 0;
  overflow: hidden;
  color: #9fa8ff;
  font-family: monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.testimonial-quote {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin: 18px 0;
  color: #f1f4ff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.45;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
}
.testimonial-author strong {
  overflow: hidden;
  display: block;
  color: #fff;
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.testimonial-author span {
  overflow: hidden;
  display: block;
  margin-top: 2px;
  color: #8e99b3;
  font-size: 0.66rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.testimonial-nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 5px;
}
.testimonial-nav button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #edf2ff;
  cursor: pointer;
  transition: 0.3s ease;
}
.testimonial-nav button:focus-visible,
.testimonial-nav button:hover {
  border-color: var(--cyan);
  background: rgba(77, 231, 255, 0.1);
  color: var(--cyan);
  outline: 0;
}
.education-card {
  max-width: 900px;
  margin: auto;
  padding: 35px;
  border: 1px solid var(--border);
  border-radius: 23px;
  background:
    radial-gradient(
      circle at 90% 0,
      rgba(124, 131, 255, 0.08),
      transparent 32%
    ),
    rgba(255, 255, 255, 0.022);
}
.education-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
}
.education-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(124, 131, 255, 0.08);
  color: #9aa1ff;
}
.education-card h3 {
  margin-top: 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
}
.education-card .institution {
  margin-top: 5px;
  color: #8c96ae;
  font-size: 0.8rem;
}
.education-year {
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: #94a2bd;
  font-family: monospace;
  font-size: 0.68rem;
}
.education-card p {
  max-width: 700px;
  margin-top: 20px;
  color: #94a2bd;
  font-size: 0.78rem;
}
.language-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.language {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.02);
}
.language strong {
  display: block;
  color: #dce2f2;
  font-family: "Space Grotesk", sans-serif;
}
.language span {
  display: block;
  margin-top: 5px;
  color: #68738b;
  font-size: 0.68rem;
}
.contact-section {
  padding-bottom: 80px;
}
.contact-panel {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  overflow: hidden;
  border: 1px solid rgba(124, 131, 255, 0.17);
  border-radius: 32px;
  background:
    radial-gradient(
      circle at 50% 0,
      rgba(124, 131, 255, 0.15),
      transparent 40%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.01)
    );
}
.contact-panel::after,
.contact-panel::before {
  content: "";
  position: absolute;
  border: 1px solid rgba(124, 131, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}
.contact-panel::before {
  width: 600px;
  height: 600px;
  animation: orbit 20s linear infinite;
}
.contact-panel::after {
  width: 850px;
  height: 850px;
  animation: orbit 30s linear infinite reverse;
}
@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}
.contact-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.contact-content h2 {
  margin-top: 20px;
  max-width: 750px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}
.contact-content p {
  max-width: 600px;
  margin: 22px auto 0;
  color: #808ba4;
  font-size: 0.92rem;
}
.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.social-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}
.social {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: #7e89a3;
  background: rgba(255, 255, 255, 0.018);
  font-size: 0.68rem;
  transition: 0.3s ease;
}
.social:hover {
  color: #dbe0f2;
  border-color: rgba(124, 131, 255, 0.3);
  transform: translateY(-2px);
}
footer {
  border-top: 1px solid var(--border);
  padding: 30px 0 40px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-copy {
  color: #7f8da9;
  font-size: 0.68rem;
}
.footer-code {
  color: #7f8da9;
  font-family: monospace;
  font-size: 0.65rem;
}
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: 0.9s var(--ease);
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: 0.9s var(--ease);
}
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 2px;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #7078ff, #4de7ff);
  box-shadow: 0 0 14px rgba(77, 231, 255, 0.5);
}
.back-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: #a8b0c8;
  background: rgba(10, 14, 24, 0.7);
  backdrop-filter: blur(15px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.35s ease;
}
.back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 25px;
  z-index: 300;
  max-width: calc(100% - 30px);
  padding: 12px 17px;
  border: 1px solid rgba(124, 131, 255, 0.25);
  border-radius: 12px;
  color: #dfe4f4;
  background: rgba(12, 17, 29, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  font-size: 0.75rem;
  opacity: 0;
  transform: translate(-50%, 20px);
  pointer-events: none;
  transition: 0.4s var(--ease);
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
@media (max-width: 1050px) {
  .hero-code {
    right: -100px;
    opacity: 0.22;
  }
  .about-grid,
  .skills-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .about-visual {
    position: relative;
    top: auto;
  }
  .identity-card {
    min-height: 390px;
  }
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 800px) {
  :root {
    --nav-height: 70px;
  }
  .section {
    padding: 90px 0;
  }
  .container {
    width: min(calc(100% - 30px), var(--container));
  }
  .nav {
    width: calc(100% - 20px);
    padding-left: 12px;
  }
  .brand-name {
    display: none;
  }
  .nav-links {
    position: fixed;
    top: 82px;
    left: 10px;
    right: 10px;
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(7, 10, 18, 0.92);
    backdrop-filter: blur(25px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 13px 15px;
    border-radius: 11px;
  }
  .nav-cta {
    display: none;
  }
  .menu-btn {
    display: grid;
    place-items: center;
  }
  .hero {
    min-height: 100svh;
    padding-top: 135px;
    padding-bottom: 120px;
    align-items: flex-start;
  }
  .hero-code {
    display: none;
  }
  .hero h1 {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }
  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .scroll-indicator {
    bottom: 18px;
  }
  .scroll-line {
    height: 28px;
  }
  .cert-grid,
  .expertise-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .project-card.large {
    grid-column: span 1;
    min-height: 430px;
  }
  .project-art::after {
    background:
      linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1),
        transparent 38%,
        rgba(255, 255, 255, 0.03) 76%,
        transparent
      ),
      radial-gradient(
        ellipse 82% 68% at 8% 96%,
        rgba(7, 10, 18, 0.84) 0,
        rgba(7, 10, 18, 0.58) 28%,
        rgba(7, 10, 18, 0.16) 62%,
        transparent 100%
      ),
      linear-gradient(to top, rgba(7, 10, 18, 0.22), transparent 48%);
  }
  .project-content {
    padding: 24px 20px;
  }
  .project-content h3 {
    font-size: 1.2rem;
    line-height: 1.12;
    text-shadow:
      0 2px 16px rgba(0, 0, 0, 0.98),
      0 0 22px rgba(7, 10, 18, 0.7);
  }
  .project-content p {
    font-size: 0.68rem;
    line-height: 1.55;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.98);
  }
  .project-footer {
    margin-top: 13px;
    gap: 10px;
  }
  .project-tags span {
    padding: 4px 6px;
    font-size: 0.55rem;
  }
  .project-link {
    font-size: 0.64rem;
  }
  .testimonial-card {
    width: 350px;
    max-width: calc(100vw - 40px);
    height: 270px;
    flex-basis: 350px;
    padding: 22px;
  }
  .testimonial-quote {
    font-size: 0.9rem;
  }
  .experience-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 38px;
    padding-bottom: 45px;
  }
  .experience-line {
    left: 7px;
  }
  .experience-content::before {
    left: -39px;
    top: 27px;
    width: 18px;
    height: 18px;
    border-width: 4px;
  }
  .experience-date {
    padding-top: 0;
  }
  .language-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-panel {
    min-height: 410px;
    padding: 35px 20px;
    border-radius: 24px;
  }
}
@media (max-width: 500px) {
  .hero {
    padding-top: 125px;
  }
  .hero h1 {
    font-size: clamp(2.9rem, 16vw, 4.3rem);
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .btn {
    width: 100%;
  }
  .principles {
    grid-template-columns: 1fr;
  }
  .identity-card {
    min-height: 400px;
  }
  .project-card.large {
    min-height: 445px;
  }
  .project-content {
    padding: 20px 16px;
  }
  .project-content h3 {
    font-size: 1.08rem;
  }
  .project-content p {
    font-size: 0.65rem;
  }
  .project-tags span {
    padding: 4px 5px;
    font-size: 0.52rem;
  }
  .identity-tags {
    max-width: 90%;
  }
  .education-card {
    padding: 24px;
  }
  .education-top {
    flex-direction: column;
  }
  .contact-actions {
    flex-direction: column;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  ::after,
  ::before {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
  }
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
  #three-bg {
    display: none;
  }
}
body,
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}
*,
:after,
:before {
  box-sizing: border-box;
}
canvas,
img,
svg,
video {
  max-width: 100%;
}
.container,
.section,
footer,
header,
main {
  max-width: 100%;
}
.container {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}
.identity-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.identity-card h3 {
  position: relative;
  z-index: 2;
  margin-top: 32px;
  margin-bottom: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.identity-card p {
  position: relative;
  z-index: 2;
}
.identity-tags {
  position: relative !important;
  left: auto !important;
  bottom: auto !important;
  width: 100%;
  max-width: 100% !important;
  margin-top: 24px;
  z-index: 3;
}
.identity-tags span {
  white-space: nowrap;
}
.profile-avatar {
  overflow: hidden !important;
  border-radius: 50% !important;
  padding: 0 !important;
  background: #080b13 !important;
}
.profile-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.rm-loader-photo {
  position: relative;
  width: 138px;
  height: 138px;
  z-index: 2;
}
.rm-profile-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #080b13;
  border: 1px solid rgba(77, 231, 255, 0.24);
  box-shadow: 0 0 22px rgba(77, 231, 255, 0.08);
}
.rm-profile-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.rm-loader-photo .photo-orbit {
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(77, 231, 255, 0.24);
  border-radius: 50%;
  animation: rajaOrbit 5.5s linear infinite;
}
.rm-loader-photo .photo-orbit:after,
.rm-loader-photo .photo-orbit:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4de7ff;
  box-shadow: 0 0 14px rgba(77, 231, 255, 0.75);
}
.rm-loader-photo .photo-orbit:before {
  top: 4px;
  left: 50%;
}
.rm-loader-photo .photo-orbit:after {
  right: 13%;
  bottom: 8px;
  opacity: 0.55;
}
.rm-loader-photo .orbit-b {
  inset: -7px !important;
  border-color: rgba(124, 131, 255, 0.16) !important;
  transform: rotate(55deg) scaleY(0.55);
  animation: rajaOrbitB 7s linear infinite !important;
}
@keyframes rajaOrbit {
  to {
    transform: rotate(360deg);
  }
}
@keyframes rajaOrbitB {
  to {
    transform: rotate(-305deg) scaleY(0.55);
  }
}
@media (max-width: 800px) {
  body,
  html {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
  }
  .container {
    width: calc(100% - 28px);
    max-width: none;
  }
  .hero,
  .section {
    overflow: hidden;
  }
  .about-copy,
  .about-grid,
  .about-visual,
  .hero-content,
  .hero-copy,
  .hero-text {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .identity-card {
    min-height: 0;
    padding: 24px;
  }
  .identity-card h3 {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
    line-height: 1.06;
    margin-top: 24px;
  }
  .identity-tags {
    gap: 7px;
    margin-top: 20px;
  }
  .identity-tags span {
    font-size: 0.62rem;
    padding: 6px 8px;
  }
  .rm-loader-photo {
    width: 112px;
    height: 112px;
  }
  .rm-loader-photo .photo-orbit {
    inset: -11px;
  }
  .rm-loader-photo .orbit-b {
    inset: -6px !important;
  }
  .hero .headline,
  .hero .hero-title,
  .hero h1 {
    overflow-wrap: anywhere;
    line-height: 0.98;
  }
  .hero .hero-tags,
  .hero .skill-tags,
  .hero .tags,
  .hero .tech-tags {
    display: flex;
    flex-wrap: wrap !important;
    gap: 8px;
    margin-top: 24px !important;
    clear: both;
  }
  .hero .hero-tags > *,
  .hero .skill-tags > *,
  .hero .tags > *,
  .hero .tech-tags > * {
    white-space: nowrap;
    flex: 0 0 auto;
  }
  .actions,
  .button-group,
  .cta-group,
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .btn,
  .button,
  a.btn,
  button {
    max-width: 100%;
    white-space: nowrap;
  }
  .cert-card,
  .contact-panel,
  .experience-card,
  .language,
  .project-card,
  .skill-card {
    min-width: 0;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .container {
    width: calc(100% - 24px);
  }
  .identity-card {
    padding: 20px;
  }
  .identity-tags span {
    font-size: 0.58rem;
    padding: 5px 7px;
  }
  .hero .hero-tags,
  .hero .skill-tags,
  .hero .tags,
  .hero .tech-tags {
    margin-top: 22px !important;
    gap: 7px;
  }
  .rm-loader-photo {
    width: 100px;
    height: 100px;
  }
}
.skill-icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.skill-icon-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  color: #b9c4dc;
  font: 600 0.68rem/1 monospace;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}
.skill-icon-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(77, 231, 255, 0.3);
  background: rgba(77, 231, 255, 0.035);
}
.skill-icon-chip img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
  background: 0 0;
}
.expertise-icon-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  margin-bottom: 20px;
  background: 0 0;
}
.expertise-card .expertise-icon-img {
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.25));
}
.expertise-card > .inline-tech-icon {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
}
.expertise-card > .inline-tech-icon img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.cert-card {
  position: relative;
  overflow: hidden;
}
.cert-code {
  font:
    800 clamp(1.6rem, 3vw, 2.5rem)/1 "Space Grotesk",
    sans-serif;
  letter-spacing: -0.05em;
  color: #f2f5ff;
  margin-bottom: 10px;
}
.cert-full {
  font:
    700 0.88rem/1.35 "Space Grotesk",
    sans-serif;
  color: #bfc9df;
}
.cert-year {
  margin-top: 8px;
  color: #4de7ff;
  font: 600 0.65rem/1 monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cert-why {
  display: flex;
  gap: 9px;
  margin-top: 16px;
  color: #94a2bd;
  font-size: 0.76rem;
  line-height: 1.65;
}
.cert-why .cert-dot {
  flex: 0 0 auto;
  color: #4de7ff;
  font-size: 0.8rem;
}
.language {
  position: relative;
  overflow: hidden;
  min-height: 118px;
  isolation: isolate;
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease);
}
.language::before {
  content: attr(data-glyph);
  position: absolute;
  right: 12px;
  top: -10px;
  z-index: -1;
  font-family:
    "Noto Sans", "Noto Sans Devanagari", "Noto Sans Telugu",
    "Noto Sans Marathi", sans-serif;
  font-size: 5.8rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(124, 131, 255, 0.08);
  pointer-events: none;
  transition:
    transform 0.45s var(--ease),
    color 0.45s var(--ease),
    text-shadow 0.45s var(--ease);
}
.language:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 231, 255, 0.25);
  background: rgba(77, 231, 255, 0.035);
}
.language:focus-within::before,
.language:hover::before {
  transform: scale(1.08) translate(-2px, 2px);
  color: rgba(77, 231, 255, 0.22);
  text-shadow: 0 0 30px rgba(77, 231, 255, 0.14);
}
.language span,
.language strong {
  position: relative;
  z-index: 2;
}
@media (max-width: 800px) {
  .skill-icon-row {
    gap: 8px;
  }
  .skill-icon-chip {
    padding: 7px 8px;
    font-size: 0.61rem;
  }
  .skill-icon-chip img {
    width: 19px;
    height: 19px;
  }
  .expertise-icon-img {
    width: 40px;
    height: 40px;
  }
  .cert-why {
    font-size: 0.7rem;
  }
  .language {
    min-height: 108px;
  }
  .language::before {
    font-size: 4.8rem;
  }
}
.turning-profile-photo {
  width: min(420px, 78vw) !important;
  max-width: 420px !important;
}
.turning-profile-photo img {
  width: 100% !important;
  height: 100% !important;
}
@media (max-width: 800px) {
  .turning-profile-photo {
    width: min(310px, 78vw) !important;
    max-width: 310px !important;
  }
}
@media (max-width: 480px) {
  .turning-profile-photo {
    width: min(270px, 76vw) !important;
    max-width: 270px !important;
  }
}
.icon-tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px !important;
}
.icon-tech-list span {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}
.icon-tech-list img {
  width: 17px !important;
  height: 17px !important;
  object-fit: contain !important;
  background: 0 0 !important;
  display: block !important;
}
@media (max-width: 800px) {
  .icon-tech-list img {
    width: 15px !important;
    height: 15px !important;
  }
}
.inline-tech-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  line-height: 0;
  vertical-align: middle;
}
.inline-tech-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.expertise-icon-img.inline-tech-icon {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
}
.skill-icon-chip .inline-tech-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-right: 6px;
}
.skill-icon-chip .inline-tech-icon img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.icon-tech-list .inline-tech-icon {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
  margin-right: 6px;
}
.inline-tech-icon svg {
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}
.expertise-card:hover .expertise-icon-img svg,
.expertise-card:hover > .inline-tech-icon img,
.icon-tech-list span:hover .inline-tech-icon svg,
.skill-icon-chip:hover .inline-tech-icon svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px rgba(77, 231, 255, 0.28));
}
body,
html {
  max-width: 100%;
  overflow-x: hidden !important;
}
body {
  position: relative;
}
@media (max-width: 800px) {
  .container {
    width: calc(100% - 28px) !important;
    max-width: 100% !important;
  }
  .hero,
  .marquee,
  .section,
  .site-background {
    max-width: 100vw;
    overflow: hidden;
  }
  .about-grid,
  .cert-grid,
  .contact-panel,
  .experience-grid,
  .expertise-grid,
  .hero-content,
  .language-grid,
  .projects-grid {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .hero h1 {
    overflow-wrap: anywhere;
  }
  .identity-card {
    min-width: 0 !important;
  }
  .identity-card h3 {
    margin-top: 24px !important;
    line-height: 1.08 !important;
  }
  .skill-icon-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }
  .skill-icon-chip {
    max-width: 100%;
    white-space: nowrap;
  }
  .expertise-card > .inline-tech-icon,
  .expertise-icon-img.inline-tech-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
  .expertise-card > .inline-tech-icon img {
    width: 42px;
    height: 42px;
  }
  .btn,
  .nav-cta {
    max-width: 100%;
    white-space: nowrap;
  }
}
@media (max-width: 480px) {
  .container {
    width: calc(100% - 24px) !important;
  }
  .hero h1 {
    font-size: clamp(2rem, 11vw, 3.2rem) !important;
  }
  .identity-card {
    padding: 22px !important;
  }
  .identity-tags {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    width: 100% !important;
    margin-top: 20px !important;
    display: flex !important;
    flex-wrap: wrap !important;
  }
}
.profile-avatar {
  width: 148px !important;
  height: 148px !important;
}
.profile-avatar img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
@media (max-width: 800px) {
  .profile-avatar {
    width: 128px !important;
    height: 128px !important;
  }
}
