/* ============================================================
   VITALFORCE — main stylesheet
   Midnight ink blue · night-green accent · amber-gold CTA
   ============================================================ */

:root {
  --ink-900: #0a1322;
  --ink-800: #0e1a2e;
  --ink-700: #13233b;
  --gold-light: #f5b544;
  --gold: #f2a332;
  --gold-dark: #f08a1e;
  --green: #34d399;
  --line: rgba(148, 173, 209, 0.12);
  --text: #edf2f9;
  --muted: #93a4bc;
  --faint: #61718a;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Base ---------- */
html {
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
}
::selection {
  background: rgba(245, 181, 68, 0.28);
  color: #fff;
}
:focus-visible {
  outline: 2px solid rgba(245, 181, 68, 0.75);
  outline-offset: 2px;
  border-radius: 6px;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(148, 173, 209, 0.22);
  border-radius: 99px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(148, 173, 209, 0.38);
  background-clip: padding-box;
}

/* ---------- Background environment ---------- */
.bg-env {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 620px at 82% -12%, rgba(245, 181, 68, 0.1), transparent 60%),
    radial-gradient(900px 720px at -14% 18%, rgba(13, 54, 47, 0.55), transparent 56%),
    radial-gradient(700px 500px at 50% 110%, rgba(20, 42, 74, 0.45), transparent 60%),
    linear-gradient(180deg, #0a1322 0%, #070e1a 100%);
}
.bg-env::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(10, 19, 34, 0.74);
  border-bottom-color: rgba(148, 173, 209, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-link {
  position: relative;
  color: var(--muted);
  transition: color 0.25s;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.nav-link:hover {
  color: var(--text);
}
.nav-link:hover::after {
  transform: scaleX(1);
}

/* ---------- Gold button ---------- */
.btn-gold {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f8c158 0%, #f5b544 42%, #f08a1e 100%);
  color: #231605;
  font-family: Manrope, 'Noto Sans SC', sans-serif;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(120, 60, 0, 0.18),
    0 10px 26px -8px rgba(240, 138, 30, 0.55);
  transition: transform 0.22s var(--ease), filter 0.22s, box-shadow 0.22s;
}
.btn-gold:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 14px 34px -8px rgba(240, 138, 30, 0.65);
}
.btn-gold:active {
  transform: translateY(0) scale(0.98);
}
.btn-gold:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
  filter: none;
}
.btn-md {
  padding: 10px 18px;
  font-size: 14px;
}
.btn-lg {
  padding: 14px 26px;
  font-size: 15.5px;
  border-radius: 15px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 14px;
  border: 1px solid rgba(148, 173, 209, 0.24);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.22s var(--ease);
}
.btn-ghost:hover {
  border-color: rgba(245, 181, 68, 0.45);
  background: rgba(245, 181, 68, 0.07);
  color: var(--gold-light);
}
.btn-ghost:active {
  transform: scale(0.98);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 15px;
  background: #101c30;
  color: var(--gold-light);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 30px -10px rgba(10, 19, 34, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.22s var(--ease), box-shadow 0.22s;
}
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -10px rgba(10, 19, 34, 0.65);
}
.btn-dark:active {
  transform: scale(0.98);
}
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 15px;
  border: 1.5px solid rgba(10, 19, 34, 0.42);
  color: #1c2b42;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.25s, transform 0.22s var(--ease);
}
.btn-outline-dark:hover {
  background: rgba(10, 19, 34, 0.08);
  transform: translateY(-2px);
}
.btn-outline-dark:active {
  transform: scale(0.98);
}

/* ---------- Glass card ---------- */
.glass-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 60px -24px rgba(0, 0, 0, 0.6);
  transition: border-color 0.3s var(--ease);
}
.glass-card:hover {
  border-color: rgba(245, 181, 68, 0.26);
}

.text-gradient-gold {
  background: linear-gradient(100deg, #ffd987 0%, #f5b544 46%, #f08a1e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Hero decoration ---------- */
.hero-glow {
  position: absolute;
  top: 6%;
  right: -8%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 181, 68, 0.13), transparent 62%);
  pointer-events: none;
}
.hero-card-ring {
  position: absolute;
  inset: -14px;
  border-radius: 36px;
  background: conic-gradient(
    from 210deg,
    rgba(245, 181, 68, 0.5),
    rgba(52, 211, 153, 0.18) 30%,
    transparent 55%,
    rgba(245, 181, 68, 0.35) 90%
  );
  filter: blur(22px);
  opacity: 0.55;
  pointer-events: none;
}

.float-chip {
  position: absolute;
  z-index: 2;
  display: none;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(15, 27, 46, 0.88);
  padding: 9px 13px;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.7);
  animation: floatY 6s var(--ease) infinite;
}
.float-chip-a {
  left: -14px;
  bottom: 46px;
}
.float-chip-b {
  right: -10px;
  top: 26px;
  animation-delay: -2.4s;
}
@media (min-width: 640px) {
  .float-chip {
    display: flex;
  }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.card-glow {
  position: absolute;
  top: -12%;
  left: 8%;
  width: 70%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 181, 68, 0.16), transparent 65%);
  pointer-events: none;
}

/* ---------- Night-green section ---------- */
.section-night {
  position: relative;
  background:
    radial-gradient(820px 480px at 86% -4%, rgba(12, 54, 45, 0.5), transparent 62%),
    linear-gradient(180deg, rgba(11, 26, 22, 0.72) 0%, rgba(10, 19, 34, 0) 26%, rgba(10, 19, 34, 0) 74%, rgba(11, 26, 22, 0.6) 100%);
}

.ai-pulse {
  transform-origin: center;
  animation: aiPulse 2.4s ease-in-out infinite;
}
@keyframes aiPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.16); opacity: 0.7; }
}

/* ============================================================
   Assessment
   ============================================================ */
.quiz-option {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(148, 173, 209, 0.16);
  background: rgba(255, 255, 255, 0.03);
  padding: 15px 16px;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}
.quiz-option:hover {
  border-color: rgba(245, 181, 68, 0.4);
  background: rgba(245, 181, 68, 0.05);
}
.option-bar {
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  opacity: 0;
  transform: scaleY(0.4);
  transition: opacity 0.25s, transform 0.3s var(--ease);
}
.option-radio {
  position: relative;
  flex: none;
  height: 21px;
  width: 21px;
  border-radius: 50%;
  border: 2px solid rgba(148, 173, 209, 0.4);
  transition: border-color 0.25s, background 0.25s;
}
.option-radio::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s, transform 0.25s var(--ease);
}
.quiz-option.is-selected {
  border-color: rgba(245, 181, 68, 0.72);
  background: linear-gradient(100deg, rgba(245, 181, 68, 0.12), rgba(245, 181, 68, 0.04));
  color: var(--text);
  transform: scale(1.012);
  box-shadow: 0 10px 28px -14px rgba(240, 138, 30, 0.5);
}
.quiz-option.is-selected .option-bar {
  opacity: 1;
  transform: scaleY(1);
}
.quiz-option.is-selected .option-radio {
  border-color: var(--gold);
}
.quiz-option.is-selected .option-radio::after {
  opacity: 1;
  transform: scale(1);
}

.quiz-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 10px;
  padding: 8px 10px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
}
.quiz-back:hover {
  color: var(--gold-light);
}
.quiz-back.is-hidden {
  visibility: hidden;
}

.enter-from-right { opacity: 0; transform: translateX(26px); }
.enter-from-left { opacity: 0; transform: translateX(-26px); }
.enter-active {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}

/* ============================================================
   Tabs
   ============================================================ */
.tab-list {
  position: relative;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}
.tab-list::-webkit-scrollbar {
  display: none;
}
.tab-btn {
  position: relative;
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.25s;
}
.tab-btn::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -1px;
  height: 2.5px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s var(--ease);
}
.tab-btn:hover {
  color: var(--text);
}
.tab-btn.is-active {
  color: var(--gold-light);
}
.tab-btn.is-active::after {
  transform: scaleX(1);
}

/* ============================================================
   Plan cards
   ============================================================ */
.recipe-card {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(19, 35, 59, 0.85), rgba(14, 26, 46, 0.92));
  padding: 26px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 26px 60px -30px rgba(0, 0, 0, 0.65);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.recipe-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 181, 68, 0.3);
}

.tag {
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 3px 11px;
  font-size: 11.5px;
  color: var(--muted);
}
.nutri-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  color: var(--faint);
}
.nutri-bar {
  height: 5px;
  flex: 1;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}
.nutri-bar i {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
}
.ai-note {
  border-left: 2px solid rgba(245, 181, 68, 0.45);
  padding-left: 11px;
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--faint);
}
.step-no {
  display: flex;
  flex: none;
  height: 22px;
  width: 22px;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(245, 181, 68, 0.13);
  color: var(--gold-light);
  font-size: 11.5px;
  font-weight: 800;
}

/* ---------- Routine timeline ---------- */
.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 50px 18px 1fr;
  column-gap: 10px;
  padding-bottom: 21px;
}
.timeline li:last-child {
  padding-bottom: 0;
}
.timeline li::before {
  content: '';
  position: absolute;
  left: 68px;
  top: 16px;
  bottom: -4px;
  width: 1.5px;
  background: rgba(148, 173, 209, 0.16);
}
.timeline li:last-child::before {
  display: none;
}
.t-time {
  font-family: Manrope, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
  text-align: right;
}
.t-dot {
  position: relative;
  z-index: 1;
  height: 11px;
  width: 11px;
  margin-top: 3px;
  border-radius: 50%;
  border: 2px solid rgba(148, 173, 209, 0.38);
  background: #16283f;
}
.t-dot.gold {
  border-color: rgba(245, 181, 68, 0.55);
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(245, 181, 68, 0.13);
}

.mini-stat {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 13px 8px;
  text-align: center;
}

/* ============================================================
   Phone mockup
   ============================================================ */
.phone-frame {
  position: relative;
  width: 300px;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 10px;
  background: linear-gradient(160deg, #27394f, #0c1526);
  box-shadow:
    0 55px 90px -32px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
}
.phone-notch {
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 3;
  height: 20px;
  width: 88px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #080e1a;
}
.phone-screen {
  height: 648px;
  overflow-y: auto;
  border-radius: 33px;
  background: #f6f8fc;
  padding: 16px;
  scrollbar-width: none;
}
.phone-screen::-webkit-scrollbar {
  display: none;
}
.phone-card {
  margin-top: 11px;
  border-radius: 18px;
  border: 1px solid #edf1f7;
  background: #fff;
  padding: 13px 14px;
  box-shadow: 0 8px 20px -12px rgba(15, 23, 42, 0.16);
}

/* Charts */
.chart-line {
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.chart-line-gold { stroke: #f08a1e; }
.chart-line-green { stroke: #10b981; stroke-width: 2.2; }
.chart-area { fill: url(#areaGold); }

/* Habit check-in */
.habit-row {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.habit-check {
  display: flex;
  flex: none;
  height: 22px;
  width: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  color: transparent;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.habit-check svg {
  height: 11px;
  width: 11px;
}
.habit-row.is-done .habit-check {
  border-color: #10b981;
  background: #10b981;
  color: #fff;
}
.habit-name {
  font-size: 12.5px;
  color: #64748b;
}
.habit-row.is-done .habit-name {
  color: #334155;
}
.habit-pop {
  animation: habitPop 0.45s var(--ease);
}
@keyframes habitPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.28); }
  70% { transform: scale(0.92); }
  100% { transform: scale(1); }
}

/* ============================================================
   Reviews
   ============================================================ */
.review-card {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(19, 35, 59, 0.72), rgba(14, 26, 46, 0.88));
  padding: 26px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 26px 60px -30px rgba(0, 0, 0, 0.6);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 181, 68, 0.3);
}
.avatar {
  display: flex;
  flex: none;
  height: 44px;
  width: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5b544, #f08a1e);
  color: #231605;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 8px 20px -8px rgba(240, 138, 30, 0.55);
}
.metric-chip {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 9px;
}

/* ============================================================
   Community
   ============================================================ */
.feed-card {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(19, 35, 59, 0.6), rgba(14, 26, 46, 0.78));
  padding: 22px;
  box-shadow: 0 22px 50px -30px rgba(0, 0, 0, 0.6);
}
.feed-card.is-new {
  border-color: rgba(52, 211, 153, 0.35);
}
.feed-action {
  cursor: default;
  transition: color 0.2s;
}
.feed-action:hover {
  color: var(--gold-light);
}

/* ============================================================
   CTA Band
   ============================================================ */
.cta-spark {
  position: absolute;
  top: -90px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.45), transparent 62%);
  pointer-events: none;
}

/* ---------- Footer ---------- */
.footer-link {
  transition: color 0.2s;
}
.footer-link:hover {
  color: var(--gold-light);
}

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  border-top: 1px solid rgba(148, 173, 209, 0.14);
  background: rgba(10, 19, 34, 0.9);
  backdrop-filter: blur(16px);
  padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
}
@media (max-width: 760px) {
  .mobile-cta {
    display: block;
  }
  body {
    padding-bottom: 78px;
  }
}

/* ============================================================
   Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .float-chip,
  .ai-pulse,
  .habit-pop {
    animation: none !important;
  }
  .chart-line,
  .chart-area {
    transition: none !important;
  }
}

/* ---------- Language switcher ---------- */
.lang-switch {
  position: relative;
  display: inline-flex;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: var(--font-num);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.lang-btn:hover {
  border-color: rgba(245, 181, 68, 0.45);
  background: rgba(255, 255, 255, 0.07);
}
.lang-btn .lang-current {
  text-transform: uppercase;
}
.lang-btn .lang-chevron {
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  color: var(--text-faint);
}
.lang-switch.is-open .lang-chevron {
  transform: rotate(180deg);
}
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 168px;
  padding: 6px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: rgba(14, 26, 46, 0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 70;
}
.lang-switch.is-open .lang-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 9px 11px;
  border-radius: 9px;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-option:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}
.lang-option.is-active {
  color: var(--gold-light);
  background: rgba(245, 181, 68, 0.08);
}
.lang-option .lang-code {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0.7;
  text-transform: uppercase;
}
@media (prefers-reduced-motion: reduce) {
  .lang-menu,
  .lang-btn .lang-chevron {
    transition: none;
  }
}
