:root {
  --bg0: #070a12;
  --bg1: #0b1020;
  --bg2: #0f1630;
  --card: rgba(15, 22, 48, .68);
  --stroke: rgba(255, 255, 255, .10);
  --text: #e9eefc;
  --muted: rgba(233, 238, 252, .72);
  --gold: #d8b35a;
  --gold2: #f1d28a;
  --shadow: 0 20px 60px rgba(0, 0, 0, .45);
  --radius: 18px;
  --radius2: 26px;
  --max: 1020px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font: 16px/1.55 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 20% 10%, var(--bg2), var(--bg0));
  overflow-x: hidden;
}

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

a:hover {
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.glow {
  position: absolute;
  width: 680px;
  height: 680px;
  filter: blur(70px);
  opacity: .35;
  border-radius: 999px;
}

.g1 {
  left: -120px;
  top: -140px;
  background: radial-gradient(circle at 30% 30%, var(--gold2), transparent 55%);
}

.g2 {
  right: -160px;
  bottom: -180px;
  background: radial-gradient(circle at 40% 40%, #5b7cff, transparent 55%);
}

.lines {
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(115deg, transparent 46%, rgba(216, 179, 90, .12) 48%, transparent 52%),
    linear-gradient(115deg, transparent 64%, rgba(216, 179, 90, .08) 66%, transparent 70%);
  transform: rotate(-8deg);
  opacity: .9;
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(7, 10, 18, .55);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

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

.brand__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--gold2), var(--gold));
  box-shadow: 0 0 0 4px rgba(216, 179, 90, .12);
}

.brand__text {
  font-weight: 700;
  letter-spacing: .3px;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(216, 179, 90, .38);
  background: rgba(255, 255, 255, .06);
}

.btn__icon {
  opacity: .9;
}

.btn--primary {
  border-color: rgba(216, 179, 90, .40);
  background: linear-gradient(135deg, rgba(216, 179, 90, .18), rgba(255, 255, 255, .05));
}

.btn--secondary {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(11, 16, 32, .45);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .08);
  box-shadow: none;
}

/* Lang toggle */
.lang {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  color: var(--text);
  cursor: pointer;
}

.lang__pill {
  font-weight: 700;
  color: var(--gold2);
}

.lang__hint {
  color: rgba(233, 238, 252, .55);
  font-weight: 600;
}

/* Hero card */
.hero {
  padding: 34px 0 18px;
}

.hero__card {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr;
  gap: 22px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, .10);
  background: linear-gradient(180deg, rgba(15, 22, 48, .72), rgba(7, 10, 18, .50));
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero__photoWrap {
  position: relative;
  min-height: 320px;
  background: #0b1020;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  filter: contrast(1.02) saturate(1.02);
}

.hero__photoOverlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 300px at 70% 20%, rgba(216, 179, 90, .20), transparent 60%),
    linear-gradient(120deg, rgba(7, 10, 18, .10), rgba(7, 10, 18, .78));
}

.hero__content {
  padding: 26px 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kicker {
  margin: 0 0 10px;
  color: rgba(216, 179, 90, .95);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
}

.title {
  margin: 0;
}

.title__name {
  display: block;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: .6px;
  font-weight: 800;
}

.title__role {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lead {
  margin: 14px 0 18px;
  color: rgba(233, 238, 252, .78);
  max-width: 56ch;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.chip {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  color: rgba(233, 238, 252, .80);
  font-weight: 600;
  font-size: 13px;
}

.chip:nth-child(odd) {
  border-color: rgba(216, 179, 90, .24);
}

/* Panels */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 16px 0 26px;
}

.panel {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(15, 22, 48, .42);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .28);
  padding: 18px 18px 16px;
  position: relative;
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(115deg, transparent 40%, rgba(216, 179, 90, .10) 50%, transparent 60%);
  opacity: .55;
  pointer-events: none;
}

.panel__title {
  margin: 0 0 10px;
  font-size: 15px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(233, 238, 252, .88);
}

.panel__text {
  margin: 0;
  color: rgba(233, 238, 252, .74);
}

/* Links */
.links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(7, 10, 18, .28);
}

.link:hover {
  border-color: rgba(216, 179, 90, .35);
}

.link__label {
  font-weight: 800;
  letter-spacing: .2px;
}

.link__meta {
  color: rgba(233, 238, 252, .68);
  font-size: 13px;
}

.link__arrow {
  align-self: center;
  color: rgba(216, 179, 90, .90);
  font-weight: 900;
}

/* Contact */
.contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact__item {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(7, 10, 18, .22);
}

.contact__icon {
  opacity: .9;
}

.contact__value {
  font-weight: 300;
}

.contact__hint {
  color: rgba(233, 238, 252, .55);
  font-size: 12px;
}

/* Footer */
.footer {
  padding: 10px 0 28px;
}

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

.footer__line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 179, 90, .55), transparent);
}

.footer__text {
  margin: 0;
  color: rgba(233, 238, 252, .60);
  font-size: 13px;
  letter-spacing: .04em;
}

/* Responsive */
@media (max-width: 920px) {
  .hero__card {
    grid-template-columns: 1fr;
  }

  .hero__photoWrap {
    min-height: 360px;
  }

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

@media (max-width: 420px) {
  .title__name {
    font-size: 28px;
  }

  .cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* =======================
   LUX LOADER (long + short)
   ======================= */
.lux-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(900px 600px at 20% 10%, rgba(216, 179, 90, .18), transparent 55%),
    radial-gradient(900px 600px at 80% 90%, rgba(91, 124, 255, .14), transparent 55%),
    linear-gradient(180deg, rgba(7, 10, 18, .94), rgba(11, 16, 32, .96));
  backdrop-filter: blur(10px);
  opacity: 1;
  transform: translateZ(0);
  transition: opacity .35s ease, visibility .35s ease;
}

.lux-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.lux-loader__card {
  width: min(520px, calc(100% - 44px));
  padding: 26px 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(15, 22, 48, .52);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
  position: relative;
  overflow: hidden;
}

/* gold sweep */
.lux-loader__card::before {
  content: "";
  position: absolute;
  inset: -60%;
  background:
    linear-gradient(115deg,
      transparent 35%,
      rgba(216, 179, 90, .14) 45%,
      rgba(241, 210, 138, .20) 50%,
      rgba(216, 179, 90, .12) 55%,
      transparent 65%);
  transform: rotate(-12deg);
  animation: luxSweep 1.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes luxSweep {
  0% {
    transform: translateX(-18%) rotate(-12deg);
    opacity: .35;
  }

  50% {
    transform: translateX(18%) rotate(-12deg);
    opacity: .65;
  }

  100% {
    transform: translateX(-18%) rotate(-12deg);
    opacity: .35;
  }
}

/* ring */
.lux-loader__ring {
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 30% 30%, rgba(241, 210, 138, .30), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(91, 124, 255, .14), transparent 55%);
  position: relative;
}

.lux-loader__ring::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 999px;
  border: 2px solid rgba(216, 179, 90, .22);
  border-top-color: rgba(241, 210, 138, .95);
  border-right-color: rgba(216, 179, 90, .70);
  animation: luxSpin 1.0s linear infinite;
}

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

/* text */
.lux-loader__text {
  text-align: center;
  position: relative;
  z-index: 2;
}

.lux-loader__name {
  font-weight: 800;
  letter-spacing: .18em;
  font-size: 13px;
  color: rgba(233, 238, 252, .92);
  text-transform: uppercase;
}

.lux-loader__role {
  margin-top: 8px;
  font-weight: 700;
  letter-spacing: .10em;
  font-size: 12px;
  color: rgba(216, 179, 90, .92);
  text-transform: uppercase;
}

/* progress bar */
.lux-loader__bar {
  margin-top: 16px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(7, 10, 18, .28);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.lux-loader__bar>span {
  display: block;
  height: 100%;
  width: 38%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(216, 179, 90, .25), rgba(241, 210, 138, .95), rgba(216, 179, 90, .25));
  filter: saturate(1.05);
  animation: luxBar 1.25s ease-in-out infinite;
}

@keyframes luxBar {
  0% {
    transform: translateX(-30%);
    opacity: .75;
  }

  50% {
    transform: translateX(120%);
    opacity: 1;
  }

  100% {
    transform: translateX(-30%);
    opacity: .75;
  }
}

/* SHORT mode: smaller, no sweep, quicker */
.lux-loader.is-short .lux-loader__card::before {
  animation: none;
  opacity: .18;
}

.lux-loader.is-short .lux-loader__bar {
  display: none;
}

.lux-loader.is-short .lux-loader__ring {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
}

.contact__value[href*="google.com/maps"] {
  position: relative;
}

.contact__value[href*="google.com/maps"]::after {
  content: "Open in Google Maps";
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 4px;
  font-size: 11px;
  color: rgba(216, 179, 90, 0.85);
  opacity: 0;
  transition: opacity .2s ease;
}

.contact__value[href*="google.com/maps"]:hover::after {
  opacity: 1;
}

/* =======================
   LUX LOADER v2 (Responsive, premium)
   ======================= */
.lux-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(900px 600px at 20% 10%, rgba(216, 179, 90, .18), transparent 55%),
    radial-gradient(900px 600px at 80% 90%, rgba(91, 124, 255, .14), transparent 55%),
    linear-gradient(180deg, rgba(7, 10, 18, .94), rgba(11, 16, 32, .96));
  backdrop-filter: blur(10px);
  opacity: 1;
  transition: opacity .35s ease, visibility .35s ease;
}

.lux-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.lux-loader__card {
  width: min(560px, calc(100% - 44px));
  padding: 26px 22px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(15, 22, 48, .52);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

/* cinematic shine sweep */
.lux-loader__shine {
  position: absolute;
  inset: -70%;
  background: linear-gradient(115deg,
      transparent 34%,
      rgba(216, 179, 90, .10) 44%,
      rgba(241, 210, 138, .22) 50%,
      rgba(216, 179, 90, .10) 56%,
      transparent 66%);
  transform: rotate(-12deg);
  animation: luxSweep2 1.7s cubic-bezier(.7, .1, .2, 1) infinite;
  opacity: .75;
  pointer-events: none;
}

@keyframes luxSweep2 {
  0% {
    transform: translateX(-22%) rotate(-12deg);
  }

  50% {
    transform: translateX(22%) rotate(-12deg);
  }

  100% {
    transform: translateX(-22%) rotate(-12deg);
  }
}

.lux-loader__top {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}

/* ring + inner spinner */
.lux-loader__ring {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 30% 30%, rgba(241, 210, 138, .30), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(91, 124, 255, .14), transparent 55%);
  position: relative;
  flex: 0 0 auto;
}

.lux-loader__ring::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 999px;
  border: 2px solid rgba(216, 179, 90, .22);
  border-top-color: rgba(241, 210, 138, .95);
  border-right-color: rgba(216, 179, 90, .70);
  animation: luxSpin 1.0s linear infinite;
}

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

/* text */
.lux-loader__name {
  font-weight: 900;
  letter-spacing: .18em;
  font-size: 13px;
  color: rgba(233, 238, 252, .92);
  text-transform: uppercase;
}

.lux-loader__role {
  margin-top: 8px;
  font-weight: 800;
  letter-spacing: .10em;
  font-size: 12px;
  color: rgba(216, 179, 90, .92);
  text-transform: uppercase;
}

/* progress bar (desktop) */
.lux-loader__bar {
  margin-top: 16px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(7, 10, 18, .28);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.lux-loader__bar>span {
  display: block;
  height: 100%;
  width: 38%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(216, 179, 90, .22), rgba(241, 210, 138, .95), rgba(216, 179, 90, .22));
  animation: luxBar 1.25s ease-in-out infinite;
}

@keyframes luxBar {
  0% {
    transform: translateX(-30%);
    opacity: .75;
  }

  50% {
    transform: translateX(130%);
    opacity: 1;
  }

  100% {
    transform: translateX(-30%);
    opacity: .75;
  }
}

/* compact mobile line */
.lux-loader__compact {
  display: none;
  margin-top: 14px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(233, 238, 252, .78);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  position: relative;
  z-index: 2;
}

.lux-loader__compactDot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(241, 210, 138, 1), rgba(216, 179, 90, .65));
  box-shadow: 0 0 0 5px rgba(216, 179, 90, .12);
}

/* RESPONSIVE: phone mode */
@media (max-width: 420px) {
  .lux-loader__card {
    width: min(380px, calc(100% - 34px));
    padding: 20px 16px 16px;
    border-radius: 20px;
  }

  .lux-loader__top {
    gap: 12px;
  }

  .lux-loader__ring {
    width: 54px;
    height: 54px;
  }

  .lux-loader__name {
    font-size: 11px;
    letter-spacing: .14em;
  }

  .lux-loader__role {
    font-size: 11px;
    letter-spacing: .10em;
  }

  /* mobile cleaner look */
  .lux-loader__bar {
    display: none;
  }

  .lux-loader__compact {
    display: flex;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  .lux-loader__shine,
  .lux-loader__ring::before,
  .lux-loader__bar>span {
    animation: none !important;
  }
}

/* =======================
   LUX SHOWCASE LOADER v3
   ======================= */
.lux-loader{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(900px 600px at 20% 10%, rgba(216,179,90,.18), transparent 55%),
    radial-gradient(900px 600px at 80% 90%, rgba(91,124,255,.14), transparent 55%),
    linear-gradient(180deg, rgba(7,10,18,.94), rgba(11,16,32,.96));
  backdrop-filter: blur(10px);
  opacity: 1;
  transition: opacity .38s ease, visibility .38s ease;
}

.lux-loader.is-hidden{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.lux-loader__card{
  width: min(620px, calc(100% - 44px));
  padding: 26px 22px 18px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(15,22,48,.55);
  box-shadow: 0 30px 100px rgba(0,0,0,.55);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

/* cinematic shine */
.lux-loader__shine{
  position:absolute;
  inset:-70%;
  background: linear-gradient(115deg,
    transparent 34%,
    rgba(216,179,90,.10) 44%,
    rgba(241,210,138,.22) 50%,
    rgba(216,179,90,.10) 56%,
    transparent 66%);
  transform: rotate(-12deg);
  animation: luxSweep3 1.7s cubic-bezier(.7,.1,.2,1) infinite;
  opacity:.75;
  pointer-events:none;
}
@keyframes luxSweep3{
  0%   { transform: translateX(-22%) rotate(-12deg); }
  50%  { transform: translateX(22%)  rotate(-12deg); }
  100% { transform: translateX(-22%) rotate(-12deg); }
}

/* subtle grain (premium texture) */
.lux-loader__grain{
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.05), transparent 35%),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,.04), transparent 35%);
  opacity:.35;
  mix-blend-mode: overlay;
  pointer-events:none;
}

.lux-loader__header{
  display:flex;
  align-items:center;
  gap: 16px;
  position: relative;
  z-index: 2;
}

/* ring */
.lux-loader__ring{
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 30% 30%, rgba(241,210,138,.30), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(91,124,255,.14), transparent 55%);
  position: relative;
  flex: 0 0 auto;
}
.lux-loader__ring::before{
  content:"";
  position:absolute;
  inset: 7px;
  border-radius: 999px;
  border: 2px solid rgba(216,179,90,.22);
  border-top-color: rgba(241,210,138,.95);
  border-right-color: rgba(216,179,90,.70);
  animation: luxSpin 1.0s linear infinite;
}
@keyframes luxSpin{ to{ transform: rotate(360deg); } }

/* identity */
.lux-loader__name{
  font-weight: 900;
  letter-spacing: .18em;
  font-size: 13px;
  color: rgba(233,238,252,.94);
  text-transform: uppercase;
}
.lux-loader__role{
  margin-top: 8px;
  font-weight: 800;
  letter-spacing: .10em;
  font-size: 12px;
  color: rgba(216,179,90,.92);
  text-transform: uppercase;
}

/* build line */
.lux-loader__build{
  margin-top: 14px;
  display:flex;
  align-items:center;
  gap: 10px;
  position: relative;
  z-index: 2;
  color: rgba(233,238,252,.78);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
}
.lux-loader__label{
  position: relative;
  padding-left: 10px;
}
.lux-loader__label::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:6px;
  height:6px;
  border-radius:999px;
  transform: translateY(-50%);
  background: radial-gradient(circle at 30% 30%, rgba(241,210,138,1), rgba(216,179,90,.65));
  box-shadow: 0 0 0 5px rgba(216,179,90,.12);
}

.lux-loader__dots i{
  display:inline-block;
  width:6px;
  height:6px;
  margin-right:6px;
  border-radius:999px;
  background: rgba(216,179,90,.85);
  opacity:.25;
  animation: luxDots 1.05s ease-in-out infinite;
}
.lux-loader__dots i:nth-child(2){ animation-delay:.15s; }
.lux-loader__dots i:nth-child(3){ animation-delay:.30s; }
@keyframes luxDots{
  0%,100%{ transform: translateY(0); opacity:.25; }
  50%    { transform: translateY(-4px); opacity:.95; }
}

/* tags (skills showcase) */
.lux-loader__tags{
  margin-top: 12px;
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.lux-tag{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(7,10,18,.22);
  color: rgba(233,238,252,.82);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 11px;
  position: relative;
  overflow: hidden;
}

/* animated highlight that cycles across tags */
.lux-tag::after{
  content:"";
  position:absolute;
  inset:-40%;
  background: linear-gradient(115deg, transparent 40%, rgba(241,210,138,.22) 50%, transparent 60%);
  transform: translateX(-60%) rotate(-12deg);
  opacity:.0;
}

.lux-tag--a{ animation: luxTagPulse 2.0s ease-in-out infinite; }
.lux-tag--b{ animation: luxTagPulse 2.0s ease-in-out infinite .25s; }
.lux-tag--c{ animation: luxTagPulse 2.0s ease-in-out infinite .50s; }
.lux-tag--d{ animation: luxTagPulse 2.0s ease-in-out infinite .75s; }
.lux-tag--e{ animation: luxTagPulse 2.0s ease-in-out infinite 1.0s; }

@keyframes luxTagPulse{
  0%,100%{
    border-color: rgba(255,255,255,.10);
    transform: translateY(0);
  }
  50%{
    border-color: rgba(216,179,90,.38);
    transform: translateY(-1px);
  }
}
.lux-tag--a::after,
.lux-tag--b::after,
.lux-tag--c::after,
.lux-tag--d::after,
.lux-tag--e::after{
  animation: luxTagShine 2.0s ease-in-out infinite;
}
@keyframes luxTagShine{
  0%   { transform: translateX(-60%) rotate(-12deg); opacity:0; }
  35%  { opacity:.0; }
  55%  { opacity:.65; }
  75%  { opacity:.0; }
  100% { transform: translateX(60%) rotate(-12deg); opacity:0; }
}

/* meter (premium) */
.lux-loader__meter{
  margin-top: 14px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(7,10,18,.26);
  overflow:hidden;
  position: relative;
  z-index: 2;
}
.lux-loader__meterFill{
  display:block;
  height:100%;
  width: 40%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(216,179,90,.20), rgba(241,210,138,.95), rgba(216,179,90,.20));
  animation: luxMeter 1.25s ease-in-out infinite;
}
@keyframes luxMeter{
  0%   { transform: translateX(-35%); opacity:.7; }
  50%  { transform: translateX(135%); opacity:1; }
  100% { transform: translateX(-35%); opacity:.7; }
}

/* mobile compact */
.lux-loader__compact{
  display:none;
  margin-top: 14px;
  align-items:center;
  justify-content:center;
  gap: 10px;
  color: rgba(233,238,252,.78);
  font-weight: 800;
  letter-spacing:.12em;
  text-transform: uppercase;
  font-size: 12px;
  position:relative;
  z-index:2;
}
.lux-loader__compactDot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(241,210,138,1), rgba(216,179,90,.65));
  box-shadow: 0 0 0 5px rgba(216,179,90,.12);
}

/* Responsive: phone */
@media (max-width: 420px){
  .lux-loader__card{
    width: min(380px, calc(100% - 34px));
    padding: 20px 16px 16px;
    border-radius: 20px;
  }
  .lux-loader__header{ gap: 12px; }
  .lux-loader__ring{ width: 54px; height: 54px; }
  .lux-loader__name{ font-size: 11px; letter-spacing:.14em; }
  .lux-loader__role{ font-size: 11px; letter-spacing:.10em; }

  /* mobile = keep premium but less busy */
  .lux-loader__meter{ display:none; }
  .lux-loader__tags{ gap: 6px; }
  .lux-tag{ font-size: 10px; padding: 7px 9px; }
  .lux-loader__compact{ display:flex; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  .lux-loader__shine,
  .lux-loader__ring::before,
  .lux-loader__meterFill,
  .lux-loader__dots i,
  .lux-tag,
  .lux-tag::after{
    animation: none !important;
  }
}
/* Skills: fly-in then settle back */
.lux-loader__tags{
  margin-top: 12px;
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  position: relative;
  z-index: 2;
  perspective: 900px;
}

.lux-tag{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(7,10,18,.22);
  color: rgba(233,238,252,.82);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 11px;
  position: relative;
  overflow: hidden;

  /* start state */
  opacity: 0;
  transform: translateY(18px) scale(.96);
  filter: blur(6px);

  /* animation */
  animation: luxFlyIn 1.15s cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--d, 0s);
}

/* gold sweep highlight */
.lux-tag::after{
  content:"";
  position:absolute;
  inset:-40%;
  background: linear-gradient(115deg, transparent 40%, rgba(241,210,138,.22) 50%, transparent 60%);
  transform: translateX(-60%) rotate(-12deg);
  opacity:0;
  animation: luxTagSweep 1.55s ease-in-out infinite;
  animation-delay: calc(var(--d, 0s) + .45s);
}

@keyframes luxFlyIn{
  0%{
    opacity: 0;
    transform: translateY(22px) scale(.94);
    filter: blur(8px);
  }
  60%{
    opacity: 1;
    transform: translateY(-6px) scale(1.02);
    filter: blur(0px);
  }
  100%{
    opacity: 1;
    transform: translateY(0px) scale(1);
    filter: blur(0px);
  }
}

@keyframes luxTagSweep{
  0%   { transform: translateX(-60%) rotate(-12deg); opacity:0; }
  45%  { opacity:.0; }
  60%  { opacity:.60; }
  78%  { opacity:.0; }
  100% { transform: translateX(60%) rotate(-12deg); opacity:0; }
}

/* Optional: subtle "return" feel (micro settle) */
.lux-tag:nth-child(odd){
  animation-duration: 1.2s;
}
.lux-tag:nth-child(even){
  animation-duration: 1.1s;
}

/* Mobile: less motion, still premium */
@media (max-width: 420px){
  .lux-loader__tags{ gap: 6px; }
  .lux-tag{
    font-size: 10px;
    padding: 7px 9px;
    transform: translateY(12px) scale(.98);
    filter: blur(5px);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .lux-tag{
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
  .lux-tag::after{ animation: none !important; opacity: 0 !important; }
}
