:root {
  --bg: #0a0a0a;
  --text: #fafafa;
  --muted: #a1a1aa;

  --grey-50: #fafafa;
  --grey-300: #3f3f46;
  --grey-400: #a1a1aa;
  --grey-700: #3f3f46;
  --grey-800: #18181b;

  --panel: rgba(255, 255, 255, 0.05);
  --panel-2: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.1);
  --border-2: rgba(255, 255, 255, 0.2);

  --primary: #407cff;
  --primary-2: #da8bff;
  --primary-3: #fb7185;

  /* Brand gradient stops (rings + logo) */
  --brand-1: #4c36ad;
  --brand-2: #9a4fff;
  --brand-3: #b38cff;
  --brand-4: #8771cc;
  --brand-5: #407cff;

  /* Logo-only gradient stops (override without affecting rings) */
  --logo-1: var(--brand-1);
  --logo-2: var(--brand-2);
  --logo-3: var(--brand-3);
  --logo-4: var(--brand-4);
  --logo-5: var(--brand-5);

  --blue-opacity-32: #407cff52;
  --blue-opacity-4: #407cff0a;

  --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Global hero animation speed (lower = faster) */
  --hero-speed: 0.67;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Bebas Neue", system-ui, -apple-system, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 576px) {
  .container { max-width: 540px; }
}

@media (min-width: 768px) {
  .container { max-width: 720px; }
}

@media (min-width: 992px) {
  .container { max-width: 960px; }
}

@media (min-width: 1200px) {
  .container { max-width: 1140px; }
}

.page {
  position: relative;
  overflow: hidden;
}

.spotlight {
  position: relative;
  overflow: hidden;
}

.spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  background: radial-gradient(
    1024px circle at var(--spot-x, 50%) var(--spot-y, 50%),
    rgba(255, 255, 255, 0.025),
    transparent 50%
  );
}

.spotlight:hover::before,
.spotlight:focus-within::before {
  opacity: 1;
}

/* Side nav */
.side-nav {
  position: fixed;
  top: 0;
  left: 48px;
  width: 128px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  font-family: "Bebas Neue", system-ui, -apple-system, sans-serif;
  z-index: 99;
}

.nav-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.nav-btn.active {
  background: rgba(255, 255, 255, 0.15);
}

.nav-icon {
  display: grid;
  place-items: center;
}

.nav-icon svg {
  display: block;
}

.nav-btn .label {
  position: absolute;
  left: 56px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--grey-50);
}

.nav-btn:hover .label,
.nav-btn.active .label {
  opacity: 1;
  transform: translateX(0);
}

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

/* Separator */
.separator {
  height: 1px;
  width: calc(100% - 40px);
  max-width: 1140px;
  margin: 0 auto;
  background-image: linear-gradient(to right, rgb(24, 24, 27), rgb(63, 63, 70), rgb(24, 24, 27));
}

/* Sections */
.section {
  padding: 64px 0;
}

.section-head {
  margin-bottom: 48px;
}

.section-head.center {
  text-align: center;
}

.section-head .eyebrow {
  margin: 0 0 8px;
  font-family: "Bebas Neue", system-ui, -apple-system, sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--grey-400);
  text-transform: uppercase;
}

.section-head .lead {
  margin: 0 auto;
  max-width: 48rem;
  font-size: 16px;
  line-height: 1.75;
  color: var(--grey-50);
}

.accent {
  font-weight: 700;
  color: var(--primary);
}

.highlight {
  display: inline-block;
  padding: 0 8px;
  border-left: 4px solid var(--primary);
  background-image: linear-gradient(90deg, var(--blue-opacity-32), var(--blue-opacity-4));
}

/* Hero */
.hero {
  height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
}

.hero-ring {
  position: relative;
  width: min(75vw, 75vh, 640px);
  height: min(75vw, 75vh, 640px);
}

.hero-ring::before {
  content: "";
  position: absolute;
  inset: -22%;
  border-radius: 55% 45% 52% 48% / 48% 56% 44% 52%;
  background: conic-gradient(
    from 120deg,
    color-mix(in srgb, var(--brand-1) 70%, transparent),
    color-mix(in srgb, var(--brand-2) 70%, transparent),
    color-mix(in srgb, var(--brand-3) 70%, transparent),
    color-mix(in srgb, var(--brand-5) 70%, transparent),
    color-mix(in srgb, var(--brand-4) 70%, transparent),
    color-mix(in srgb, var(--brand-1) 70%, transparent)
  );
  filter: blur(110px) saturate(1.25);
  opacity: 0.5;
  transform-origin: 50% 50%;
  animation: aura-rotate-wide calc(14s * var(--hero-speed)) linear infinite,
    aura-morph-wide calc(12s * var(--hero-speed)) ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  inset: 0;
  pointer-events: none;
  animation: orb-breathe calc(10s * var(--hero-speed)) ease-in-out infinite;
  z-index: 1;
}

.hero-orb-ring {
  position: absolute;
  inset: 0;
  border-radius: 46% 54% 62% 38% / 58% 46% 54% 42%;
  will-change: transform, border-radius;
}

.hero-orb-ring::before,
.hero-orb-ring::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  will-change: transform, border-radius;
}

.hero-orb-ring::before {
  background: conic-gradient(
    var(--brand-1),
    var(--brand-2),
    var(--brand-3),
    var(--brand-4),
    var(--brand-5),
    var(--brand-1)
  );
  filter:
    saturate(1.2)
    contrast(1.08)
    drop-shadow(0 0 12px rgba(154, 79, 255, 0.18))
    drop-shadow(0 0 22px rgba(64, 124, 255, 0.12));
  opacity: 0.95;
}

/* Inner carve-out: independent blob shape => thickness varies around ring */
.hero-orb-ring::after {
  background: var(--bg);
  border-radius: 54% 46% 44% 56% / 52% 60% 40% 48%;
  filter: blur(0.15px);
}

.hero-orb-ring--outer {
  inset: 30px;
}

.hero-orb-ring--outer::after {
  inset: 28px;
}

.hero-orb-ring--outer::before {
  animation: ring-rotate calc(7.5s * var(--hero-speed)) linear infinite;
}

.hero-orb-ring--outer::after {
  animation: orb-morph-2 calc(9.5s * var(--hero-speed)) ease-in-out infinite;
  animation-delay: -2.2s;
}

.hero-orb-ring--outer {
  animation: orb-morph calc(7.5s * var(--hero-speed)) ease-in-out infinite;
}

.hero-orb-ring--inner {
  inset: 110px;
  animation: orb-morph calc(10s * var(--hero-speed)) ease-in-out infinite reverse;
}

.hero-orb-ring--inner::after {
  inset: 26px;
}

.hero-orb-ring--inner::before {
  animation: ring-rotate calc(10s * var(--hero-speed)) linear infinite reverse;
}

.hero-orb-ring--inner::after {
  animation: orb-morph-2 calc(8.6s * var(--hero-speed)) ease-in-out infinite reverse;
  animation-delay: -1.6s;
}

.hero-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.orbit-item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
	transform:
	  translate3d(calc(-50% + var(--tx, 0px)), calc(-50% + var(--ty, 0px)), 0)
	  rotate(var(--a, 0deg))
	  translateY(calc(-1 * (var(--orbit-base, 320px) + var(--r, 160px))));
	will-change: transform;
}

.orbit-icon {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 52% 48% 56% 44% / 46% 58% 42% 54%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(64, 124, 255, 0.12), rgba(154, 79, 255, 0.08));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  display: grid;
  place-items: center;
  animation:
    orbit-float var(--dur, 7s) ease-in-out infinite var(--delay, 0s),
    orbit-blob calc(9s * var(--hero-speed)) ease-in-out infinite var(--morph-delay, 0s);
}

.orbit-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%);
  border-radius: inherit;
  background: conic-gradient(
    from 120deg,
    color-mix(in srgb, var(--brand-1) 55%, transparent),
    color-mix(in srgb, var(--brand-2) 55%, transparent),
    color-mix(in srgb, var(--brand-3) 55%, transparent),
    color-mix(in srgb, var(--brand-4) 55%, transparent),
    color-mix(in srgb, var(--brand-5) 55%, transparent),
    color-mix(in srgb, var(--brand-1) 55%, transparent)
  );
  filter: blur(20px) saturate(1.15);
  opacity: 0.18;
  mix-blend-mode: screen;
  z-index: -1;
  animation:
    aura-rotate-logo calc(12s * var(--hero-speed)) linear infinite var(--aura-delay, 0s),
    orbit-aura-blob calc(10.5s * var(--hero-speed)) ease-in-out infinite var(--aura-delay, 0s);
  pointer-events: none;
}

.orbit-img {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.35));
}

.logo-wrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
}

.fx-off .logo-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 107.5%;
  height: 107.5%;
  transform: translate(-50%, -50%);
  background: url("/aura2.webp") center/contain no-repeat;
  opacity: 0.25;
  pointer-events: none;
  z-index: 2;
}

logo {
  --logo-scale: 1.25;
  position: relative;
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 170px;
  height: 66px;
  transform-origin: 50% 50%;
  animation: logo-float calc(5s * var(--hero-speed)) ease-in-out infinite;
  will-change: transform;
  z-index: 3;
}

logo .logo-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

logo::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 420px;
  height: 420px;
  transform: translate(-50%, -50%) rotate(0deg);
  border-radius: 58% 42% 50% 50% / 50% 60% 40% 50%;
  background: radial-gradient(
      closest-side,
      color-mix(in srgb, var(--brand-3) 55%, transparent),
      transparent 65%
    ),
    conic-gradient(
      from 180deg,
      color-mix(in srgb, var(--brand-1) 55%, transparent),
      color-mix(in srgb, var(--brand-2) 55%, transparent),
      color-mix(in srgb, var(--brand-3) 55%, transparent),
      color-mix(in srgb, var(--brand-4) 55%, transparent),
      color-mix(in srgb, var(--brand-5) 55%, transparent),
      color-mix(in srgb, var(--brand-1) 55%, transparent)
    );
  filter: blur(140px) saturate(1.35);
  opacity: 0.5;
  mix-blend-mode: screen;
  animation: aura-rotate-logo calc(10s * var(--hero-speed)) linear infinite reverse,
    aura-morph-logo calc(10.5s * var(--hero-speed)) ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

logo .logo0 {
  width: 85px;
  height: 66px;
  background: linear-gradient(45deg, var(--brand-1), var(--brand-2), var(--brand-3), var(--brand-4), var(--brand-5));
  -webkit-mask-image: url("/img/ag_0.svg");
  mask-image: url("/img/ag_0.svg");
  background-size: 250% 250%;
  -webkit-mask-size: 85px 66px;
  mask-size: 85px 66px;
  animation: logo-move calc(5s * var(--hero-speed)) ease-in-out infinite;
}

logo .logo1 {
  width: 85px;
  height: 66px;
  background: linear-gradient(45deg, var(--brand-5), var(--brand-4), var(--brand-3), var(--brand-2), var(--brand-1));
  -webkit-mask-image: url("/img/ag_1.svg");
  mask-image: url("/img/ag_1.svg");
  background-size: 250% 250%;
  -webkit-mask-size: 85px 66px;
  mask-size: 85px 66px;
  animation: logo-move calc(5s * var(--hero-speed)) ease-in-out infinite;
}

@media (max-width: 700px) {
  .hero-ring { width: 100%; height: 70vh; }
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.about-title h2 {
  margin: 0;
  font-size: 72px;
  line-height: 6rem;
  text-transform: uppercase;
  color: var(--grey-50);
}

.about-body {
  font-size: 20px;
  line-height: 1.75;
  color: var(--grey-50);
}

.about-body p {
  margin: 0;
}

.about-body p + p {
  margin-top: 16px;
}

@media (max-width: 991px) {
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-title h2 { font-size: 60px; }
  .about-body { font-size: 18px; }
}

/* Performance mode (default): disable expensive aura layers/filters and use box-shadows instead. */
.fx-off {
  --glow-a: rgba(154, 79, 255, 0.35); /* brand-2 */
  --glow-b: rgba(64, 124, 255, 0.28); /* brand-5 */
  --glow-c: rgba(179, 140, 255, 0.24); /* brand-3 */
}

.fx-off logo::before {
  content: none !important;
  display: none !important;
  animation: none !important;
  filter: none !important;
  opacity: 0 !important;
}

.fx-off .hero-ring::before {
  content: "";
  display: block;
  position: absolute;
  inset: -63%;
  pointer-events: none;
  z-index: 0;
  background: url("/aura2.webp") center/cover no-repeat;
  opacity: 0.5;
  animation: aura-spin calc(14s * var(--hero-speed)) linear infinite reverse !important;
  border-radius: 0 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  will-change: transform;
}

@keyframes aura-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.fx-off .hero-orb-ring::before,
.fx-off .hero-orb-ring::after {
  filter: none !important;
}

.fx-off .hero-orb {
  animation: none !important;
}

.fx-off .hero-orb-ring--outer,
.fx-off .hero-orb-ring--inner {
  animation: none !important;
}

.fx-off .hero-orb-ring--outer::after,
.fx-off .hero-orb-ring--inner::after {
  animation: none !important;
}

.fx-off .hero-orb-ring--outer::before {
  box-shadow:
    0 0 66px rgba(64, 124, 255, 0.26),
    0 0 180px var(--glow-c),
    0 0 420px rgba(64, 124, 255, 0.10);
}

.fx-off .hero-orb-ring--inner::before {
  box-shadow:
    0 0 66px rgba(154, 79, 255, 0.22),
    0 0 180px var(--glow-b),
    0 0 420px rgba(154, 79, 255, 0.08);
}

.fx-off .logo-wrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  filter: none !important;
}

.fx-off logo,
.fx-off logo .logo0,
.fx-off logo .logo1 {
  filter: none !important;
  box-shadow: none !important;
}

.fx-off logo::after {
  content: none !important;
}

.fx-off .orbit-icon {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  animation: orbit-float var(--dur, 7s) ease-in-out infinite var(--delay, 0s) !important;
}

.fx-off .orbit-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 400%;
  height: 400%;
  transform: translate(-50%, -50%);
  background: url("/aura2.webp") center/cover no-repeat;
  opacity: 0.11;
  pointer-events: none;
  z-index: -1;
  animation: none !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

.fx-off .orbit-img {
  filter: none !important;
}

.fx-toggle {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  width: 112px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: #6a6a6a;
  color: #fff;
  cursor: pointer;
  user-select: none;
  transition: background-color 220ms ease, border-color 220ms ease, transform 120ms ease;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.fx-toggle:focus-visible {
  outline: 2px solid rgba(64, 124, 255, 0.6);
  outline-offset: 2px;
}

.fx-toggle__label {
  display: inline-block;
  font-family: system-ui, -apple-system, "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  font-size: 14px;
}

.fx-on .fx-toggle {
  background: #74b800;
  border-color: rgba(255, 255, 255, 0.18);
}

.fx-toggle:active {
  transform: translateY(1px);
}

@media (max-width: 576px) {
  .about-title h2 { font-size: 52px; }
}

/* Border gradient (from Stratos) */
.border-gradient {
  color: #fafafa;
  background: #1a1a1c;
  border-radius: 12px;
  width: 100%;
  height: 600px;
  padding: 40px;
  position: relative;
}

.border-gradient::after {
  --angle: 0deg;
  content: "";
  position: absolute;
  inset: 0;
  margin: -2px;
  border-radius: 0.75rem;
  z-index: -1;
  opacity: 0.5;
  background: linear-gradient(var(--angle), var(--primary), var(--primary-2), var(--primary-3));
}

@supports (background: paint(houdini)) {
  .border-gradient::after {
    background: linear-gradient(var(--angle), #52525b, #52525b, var(--primary), var(--primary-2), var(--primary-3));
    animation: border-rotate 10s linear infinite;
  }
}

@property --angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@media (max-width: 991px) {
  .border-gradient { height: auto; }
}

/* Skills */
.skills-card { overflow: visible; }

.skills-status {
  position: absolute;
  top: -18px;
  left: 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  color: var(--grey-50);
}

.status-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
}

.status-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.65);
  animation: ping 1.2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.skills-status p {
  margin: 0;
}

.skills-grid {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.skills-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 32px;
}

.skills-left h4 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  color: var(--grey-50);
}

.skills-left p {
  margin: 0;
  font-size: 14px;
  color: var(--grey-400);
  line-height: 1.6;
}

.skills-icon-3d {
  width: 72px;
  height: 72px;
  position: relative;
  margin: 0 0 18px;
  perspective: 24em;
  transform-style: preserve-3d;
}

.skills-icon-3d__back {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(hsl(283, 90%, 50%), hsl(268, 90%, 50%));
  transform-origin: 100% 100%;
  transform: rotate(15deg);
  box-shadow: 0.5em -0.5em 0.75em rgba(23, 24, 28, 0.15);
  transition: transform 0.3s ease;
}

.skills-icon-3d__front {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: var(--grey-50);
  background: hsla(0, 0%, 100%, 0.15);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 0 0.1em rgba(255, 255, 255, 0.3) inset;
  transition: transform 0.3s ease;
  transform: translateZ(2em);
}

.skills-icon-3d:hover .skills-icon-3d__back {
  transform: rotate(25deg) translate3d(-0.5em, -0.5em, 0.5em);
}

.skills-toggle {
  margin-top: 18px;
  padding: 4px;
  border-radius: 10px;
  background: rgba(24, 24, 27, 0.5);
  border: 1px solid rgba(63, 63, 70, 0.9);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.toggle {
  padding: 8px 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  font-family: "Bebas Neue", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--grey-400);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.toggle.active {
  background: var(--primary);
  color: #fff;
}

.toggle:not(.active):hover {
  color: #fff;
}

.skills-icons {
  margin-top: 16px;
  position: relative;
  height: 24px;
}

.skills-stack {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.skills-stack img {
  width: 24px;
  height: 24px;
  opacity: 0.95;
}

.skills-stack.is-hidden {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  visibility: hidden;
}

.skills-right {
  grid-column: 2 / span 2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.skills-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.skills-panel.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  visibility: hidden;
}

.skills-fish {
  width: min(560px, 100%);
  text-align: center;
}

.skills-fish__title {
  margin: 0 0 14px;
  font-family: "Bebas Neue", system-ui, -apple-system, sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey-50);
}

.skills-fish__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--grey-400);
}

.skills-fish__text + .skills-fish__text {
  margin-top: 12px;
}

@media (max-width: 991px) {
  .skills-grid { grid-template-columns: 1fr; }
  .skills-left { padding-bottom: 0; justify-content: flex-start; }
  .skills-right { grid-column: auto; min-height: 260px; }
  .skills-status { left: 24px; }
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.gallery-card.border-gradient {
  height: auto;
  padding: 0;
  border-radius: 16px;
  background: #1a1a1c;
  box-shadow: var(--shadow);
}

.gallery-card.border-gradient::after {
  border-radius: 16px;
  opacity: 0.6;
}

.gallery {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(24, 24, 27, 0.65);
  display: grid;
}

.gallery-panel {
  grid-area: 1 / 1;
  opacity: 0;
  position: relative;
  pointer-events: none;
  transition: opacity 0.65s ease;
  will-change: opacity;
  z-index: 0;
}

.gallery-panel.is-prev {
  opacity: 1;
  z-index: 1;
}

.gallery-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.gallery-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(24, 24, 27, 0.65);
}

.gallery-frame img {
  width: 100%;
  height: auto;
  transition: filter 0.5s ease;
}

.gallery-frame:hover img {
  filter: brightness(0.75);
}

.gallery-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 14px;
  padding: 0 0 20px 20px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-hover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-hover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: 0 0 0 2px rgba(64, 124, 255, 0);
  opacity: 0;
  transition: opacity 0.3s ease, box-shadow 0.3s ease;
  pointer-events: none;
}

.gallery-hover > * {
  position: relative;
  z-index: 1;
}

.gallery-frame:hover .gallery-hover {
  opacity: 1;
  transform: translateY(0);
}

.gallery-frame:hover .gallery-hover::before {
  opacity: 1;
}

.gallery-frame:hover .gallery-hover::after {
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(64, 124, 255, 0.45);
}
.gallery-btn {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.gallery-btn:hover {
  transform: translateY(-1px);
}

.gallery-btn--solid {
  background: #fff;
  color: #000;
}

.gallery-btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.gallery-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.gallery-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gallery-tab {
  text-align: left;
  cursor: pointer;
  border: 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: transparent;
  color: var(--grey-400);
  opacity: 0.55;
  transition: background 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}

.gallery-tab h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--grey-50);
}

.gallery-tab p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--grey-400);
}

.gallery-tab:hover {
  opacity: 0.75;
}

.gallery-tab.is-active {
  opacity: 1;
  background: rgba(39, 39, 42, 0.8);
}

.portfolio-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  text-align: center;
}

.stat {
  color: var(--grey-400);
}

.stat__value {
  font-family: "Bebas Neue", system-ui, -apple-system, sans-serif;
  font-size: 60px;
  color: var(--grey-50);
  letter-spacing: 1px;
}

.stat__suffix {
  position: relative;
  top: -10px;
  font-size: 14px;
  margin-left: 2px;
  color: var(--grey-400);
}

.stat__label {
  margin-top: 8px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-stats { grid-template-columns: 1fr; }
}

/* Journey */
.journey-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}

.icon-square {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--grey-300);
  color: var(--grey-50);
  background: linear-gradient(136.82deg, rgba(255, 255, 255, 0.08) 9.54%, rgba(255, 255, 255, 0) 101.31%);
}

.journey-title {
  margin: 28px 0 10px;
  font-family: "Bebas Neue", system-ui, -apple-system, sans-serif;
  font-size: 48px;
  color: var(--grey-400);
  letter-spacing: 0;
  text-transform: uppercase;
}

.journey-sub {
  margin: 0;
  font-size: 18px;
  color: var(--grey-50);
  line-height: 1.6;
}

.edu-grid {
  display: grid;
  grid-template-columns: repeat(3, 300px);
  gap: 32px;
  justify-content: center;
  margin-bottom: 48px;
}

.edu-card {
  width: 300px;
  height: 300px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(24, 24, 27, 0.5);
  box-shadow: var(--shadow);
  position: relative;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.edu-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  margin: 0 auto;
  display: inline-flex;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
}

.edu-card img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.9;
  transition: filter 0.2s ease;
  margin-top: 10px;
}

.edu-card:hover img {
  filter: grayscale(0);
}

.edu-meta {
  margin-top: 14px;
  text-align: center;
  color: var(--grey-400);
  font-size: 16px;
  line-height: 1.5;
}

.career {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: start;
}

.career-list {
  display: grid;
  gap: 18px;
}

.career-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.career-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.career-card.is-active {
  transform: scale(1.04);
}

.career-card.is-active:hover {
  transform: translateY(-2px) scale(1.04);
}

.career-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 1px solid var(--grey-300);
  background: linear-gradient(136.82deg, rgba(255, 255, 255, 0.08) 9.54%, rgba(255, 255, 255, 0) 101.31%);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.career-card__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.career-card__badges {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.career-pill {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  color: var(--grey-400);
}

.career-pill--year {
  background: transparent;
  border-color: transparent;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.career-pill--violet {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
  color: #c4b5fd;
}

.career-pill--orange {
  background: rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.3);
  color: #fdba74;
}

.career-pill--emerald {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
  color: #6ee7b7;
}

.career-pill--dark {
  background: rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--grey-400);
}

.career-card__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--grey-50);
  margin-bottom: 6px;
}

.career-card__sub {
  font-size: 14px;
  color: var(--grey-400);
}

.career-card.is-active.career-card--violet {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 30px 70px -26px rgba(139, 92, 246, 0.45), var(--shadow);
}

.career-card.is-active.career-card--orange {
  background: rgba(249, 115, 22, 0.1);
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 30px 70px -26px rgba(249, 115, 22, 0.35), var(--shadow);
}

.career-card.is-active.career-card--emerald {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 30px 70px -26px rgba(16, 185, 129, 0.35), var(--shadow);
}

.career-detail {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  padding: 28px;
}

.career-detail__head {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
}

.career-detail__logo {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  border: 1px solid var(--grey-300);
  background: linear-gradient(136.82deg, rgba(255, 255, 255, 0.08) 9.54%, rgba(255, 255, 255, 0) 101.31%);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.career-detail__logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.career-detail__role {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.career-detail__company {
  font-size: 18px;
  font-weight: 700;
  color: var(--grey-400);
  margin-top: 2px;
}

.career-detail__time {
  font-size: 14px;
  color: var(--grey-400);
  margin-top: 6px;
}

.career-detail__desc {
  margin: 16px 0 18px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.career-detail__h {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.career-detail__block + .career-detail__block {
  margin-top: 16px;
}

.career-detail__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
}

.career-detail__list li {
  position: relative;
  padding-left: 18px;
}

.career-detail__list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: 0;
  top: 10px;
}

.career-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.career-tag {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.career-tag:hover {
  transform: translateY(-1px);
}

.career-detail[data-theme="violet"] .career-detail__company {
  color: #c4b5fd;
}

.career-detail[data-theme="violet"] .career-tag {
  border-color: rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.1);
  color: #c4b5fd;
}

.career-detail[data-theme="violet"] .career-detail__list li::before {
  background: rgba(139, 92, 246, 0.22);
}

.career-detail[data-theme="orange"] .career-detail__company {
  color: #fdba74;
}

.career-detail[data-theme="orange"] .career-tag {
  border-color: rgba(249, 115, 22, 0.3);
  background: rgba(249, 115, 22, 0.1);
  color: #fdba74;
}

.career-detail[data-theme="orange"] .career-detail__list li::before {
  background: rgba(249, 115, 22, 0.22);
}

.career-detail[data-theme="emerald"] .career-detail__company {
  color: #6ee7b7;
}

.career-detail[data-theme="emerald"] .career-tag {
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.1);
  color: #6ee7b7;
}

.career-detail[data-theme="emerald"] .career-detail__list li::before {
  background: rgba(16, 185, 129, 0.22);
}

@media (max-width: 1200px) {
  .edu-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .edu-card { width: 100%; }
}

@media (max-width: 991px) {
  .career { grid-template-columns: 1fr; }
  .edu-grid { grid-template-columns: 1fr; }
  .edu-card { height: auto; padding: 28px; }
}

/* Testimonials */
.testimonials-shell {
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid #222;
  background: rgba(0, 0, 0, 0.2);
  padding: 22px;
  box-shadow: var(--shadow);
}

.testimonials-card {
  border-radius: 12px;
  border: 1px solid #222;
  background: rgba(255, 255, 255, 0.05);
  padding: 32px 32px 28px;
  text-align: center;
}

.quote-box {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  color: rgba(255, 255, 255, 0.65);
}

.testimonials-pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--grey-50);
  margin-bottom: 18px;
}

.testimonials-text {
  margin: 0 auto;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.testimonials-name {
  margin-top: 22px;
  font-weight: 700;
  color: #fff;
}

.testimonials-role,
.testimonials-company {
  margin-top: 6px;
  font-size: 13px;
  color: var(--grey-400);
}

.testimonials-avatars {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.avatar-btn {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: rgba(51, 51, 51, 0.4);
  opacity: 0.5;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.avatar-btn img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
}

.avatar-btn:hover {
  opacity: 0.75;
}

.avatar-btn.is-active {
  opacity: 1;
  background: #333;
  transform: scale(1.2);
}

/* Contact */
.contact-shell {
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
}

.contact-left {
  width: 350px;
  min-width: 350px;
  padding: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.contact-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.online-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  font-size: 12px;
  color: #fff;
}

.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.2);
}

.clock-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.clock-pill span {
  font-family: "Bebas Neue", system-ui, -apple-system, sans-serif;
  font-size: 18px;
}

.profile-avatar {
  width: 144px;
  height: 144px;
  border-radius: 999px;
  overflow: hidden;
  margin: 22px auto 16px;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px;
  transition: transform 0.5s ease;
}

.profile-avatar:hover {
  transform: scale(1.1);
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

.profile-name {
  font-family: "Bebas Neue", system-ui, -apple-system, sans-serif;
  font-size: 48px;
  color: #fff;
}

.profile-role {
  margin-top: 6px;
  font-size: 14px;
  color: var(--grey-400);
}

.profile-location {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
}

.profile-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}

.social-icon {
  color: var(--grey-400);
  transition: color 0.2s ease;
}

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

.download-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.contact-right {
  flex: 1;
  padding: 32px;
  color: #fff;
}

.contact-tabs {
  display: flex;
  gap: 6px;
  border-radius: 12px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 22px;
}

.contact-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  background: transparent;
  color: var(--grey-400);
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-tab.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.panel-heading {
  font-family: "Bebas Neue", system-ui, -apple-system, sans-serif;
  margin: 0 0 12px;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

.contact-panel.is-active {
  animation: fadeIn 0.3s ease-out;
}

.skillbars {
  display: grid;
  gap: 20px;
}

.skillbar {
  --p: 0%;
}

.skillbar[data-percent="95"] { --p: 95%; }
.skillbar[data-percent="90"] { --p: 90%; }
.skillbar[data-percent="85"] { --p: 85%; }
.skillbar[data-percent="80"] { --p: 80%; }
.skillbar[data-percent="60"] { --p: 60%; }
.skillbar[data-percent="30"] { --p: 30%; }

.skillbar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.skillbar-name {
  font-weight: 600;
  color: #fff;
}

.skillbar-meta {
  color: var(--grey-400);
  font-size: 12px;
}

.skillbar-track {
  margin-top: 10px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.skillbar-fill {
  height: 100%;
  width: var(--p);
  background-image: linear-gradient(to right, var(--primary-2), var(--primary));
  border-radius: 999px;
  transition: width 1s ease;
}

.activity-list {
  display: grid;
  gap: 12px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}

.activity-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.activity-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.activity-item[data-type="code"] .activity-icon {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.activity-item[data-type="project"] .activity-icon {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.activity-item[data-type="design"] .activity-icon {
  background: rgba(168, 85, 247, 0.2);
  color: #c084fc;
}

.activity-item[data-type="achievement"] .activity-icon {
  background: rgba(234, 179, 8, 0.2);
  color: #facc15;
}

.activity-body {
  flex: 1;
}

.activity-text {
  color: #fff;
  font-size: 14px;
}

.activity-action {
  color: #d8b4fe;
}

.activity-time {
  margin-top: 4px;
  font-size: 12px;
  color: var(--grey-400);
}

.awards-list {
  display: grid;
  gap: 12px;
}

.award-card {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, background 0.2s ease;
}

.award-card.is-unlocked:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.award-card.is-locked {
  background: rgba(24, 24, 27, 0.3);
  border-color: rgba(71, 85, 105, 0.3);
  opacity: 0.6;
}

.award-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.award-icon {
  padding: 8px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
}

.award-card.is-locked .award-icon {
  filter: grayscale(1);
}

.award-icon--yellow {
  background: linear-gradient(to bottom right, #facc15, #f97316);
}

.award-icon--blue {
  background: linear-gradient(to bottom right, #60a5fa, #a855f7);
}

.award-icon--orange {
  background: linear-gradient(to bottom right, #fb923c, #ef4444);
}

.award-body {
  flex: 1;
  min-width: 0;
}

.award-title {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.award-desc {
  margin-top: 4px;
  color: var(--grey-400);
  font-size: 12px;
}

.award-check {
  color: #4ade80;
  flex: 0 0 auto;
}

.award-progress {
  margin-top: 10px;
}

.award-progress__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-size: 12px;
  color: var(--grey-400);
}

.award-progress__track {
  height: 4px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(51, 65, 85, 0.8);
}

.award-progress__fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(to right, #fb923c, #ef4444);
}

.award-card[data-progress="65"] .award-progress__fill { width: 65%; }
.award-card[data-progress="85"] .award-progress__fill { width: 85%; }
.award-card[data-progress="100"] .award-progress__fill { width: 100%; }

.contact-footer {
  margin-top: 22px;
  padding: 18px 0 0;
  text-align: center;
  font-size: 12px;
  color: var(--grey-400);
}

.footer-link {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 991px) {
  .contact-shell { flex-direction: column; }
  .contact-left { width: 100%; min-width: 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
}

/* Animations */
@keyframes ring-rotate {
  to { transform: rotate(360deg); }
}

@keyframes orbit-float {
  0%,
  100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-12px) rotate(1.5deg); }
  50% { transform: translateY(-24px) rotate(3deg); }
  75% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes orbit-blob {
  0%,
  100% { border-radius: 52% 48% 56% 44% / 46% 58% 42% 54%; }
  25% { border-radius: 46% 54% 62% 38% / 58% 44% 56% 42%; }
  50% { border-radius: 60% 40% 44% 56% / 44% 62% 38% 56%; }
  75% { border-radius: 44% 56% 52% 48% / 62% 40% 60% 38%; }
}

@keyframes orbit-aura-blob {
  0%,
  100% { border-radius: 58% 42% 50% 50% / 52% 60% 40% 48%; }
  25% { border-radius: 48% 52% 66% 34% / 62% 38% 64% 36%; }
  50% { border-radius: 70% 30% 42% 58% / 36% 66% 34% 64%; }
  75% { border-radius: 40% 60% 58% 42% / 70% 34% 66% 30%; }
}

@keyframes orb-breathe {
  0%,
  100% { transform: scale(1); }
  50% { transform: scale(0.985); }
}

@keyframes orb-morph {
  0%,
  100% { border-radius: 46% 54% 62% 38% / 58% 46% 54% 42%; }
  20% { border-radius: 60% 40% 48% 52% / 48% 62% 38% 52%; }
  40% { border-radius: 42% 58% 46% 54% / 62% 44% 56% 38%; }
  60% { border-radius: 56% 44% 54% 46% / 46% 56% 44% 54%; }
  80% { border-radius: 48% 52% 60% 40% / 54% 42% 58% 46%; }
}

@keyframes orb-morph-2 {
  0%,
  100% { border-radius: 54% 46% 44% 56% / 52% 60% 40% 48%; }
  20% { border-radius: 40% 60% 58% 42% / 62% 44% 56% 38%; }
  40% { border-radius: 58% 42% 52% 48% / 46% 56% 44% 54%; }
  60% { border-radius: 44% 56% 40% 60% / 54% 42% 58% 46%; }
  80% { border-radius: 52% 48% 60% 40% / 48% 62% 38% 52%; }
}

@keyframes logo-move {
  0% { background-position: 0 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}

@keyframes logo-float {
  0%,
  100% {
    transform: scale(var(--logo-scale));
  }

  50% {
    transform: scale(calc(var(--logo-scale) * 1.1));
  }
}

@keyframes border-rotate {
  to { --angle: 360deg; }
}

@keyframes aura-rotate-wide {
  to { transform: rotate(360deg); }
}

@keyframes aura-morph-wide {
  0%,
  100% { border-radius: 55% 45% 52% 48% / 48% 56% 44% 52%; }
  25% { border-radius: 44% 56% 66% 34% / 60% 40% 64% 36%; }
  50% { border-radius: 68% 32% 40% 60% / 36% 66% 34% 64%; }
  75% { border-radius: 40% 60% 54% 46% / 70% 34% 66% 30%; }
}

@keyframes aura-rotate-logo {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes aura-morph-logo {
  0%,
  100% { border-radius: 58% 42% 50% 50% / 50% 60% 40% 50%; }
  25% { border-radius: 46% 54% 70% 30% / 62% 38% 64% 36%; }
  50% { border-radius: 72% 28% 40% 60% / 36% 66% 34% 64%; }
  75% { border-radius: 40% 60% 58% 42% / 70% 34% 66% 30%; }
}

@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes scaleIn {
  0% { transform: scale(0.985); }
  100% { transform: scale(1); }
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}
