:root {
  --bg: #080910;
  --panel: rgba(255, 255, 255, 0.03);
  --panel-strong: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
  --text: #e9eefc;
  --muted: #a3acc2;
  --accent: #7bffb5;
  --accent-alt: #74a0ff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --radius: 22px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  letter-spacing: -0.01em;
  min-height: 100vh;
  padding: 28px 0 120px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(800px at 18% 20%, rgba(123, 255, 181, 0.18), transparent 55%),
    radial-gradient(900px at 78% 10%, rgba(116, 160, 255, 0.2), transparent 60%),
    radial-gradient(700px at 50% 70%, rgba(123, 255, 181, 0.12), transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 45%);
  filter: blur(0px);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}

p {
  margin: 0;
}

.page {
  position: relative;
  z-index: 1;
}

.shell {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 18px;
}

.section {
  margin-top: 80px;
}

.glass-card {
  position: relative;
  background: linear-gradient(140deg, var(--panel-strong), var(--panel));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(123, 255, 181, 0.15), transparent 40%);
  opacity: 0.7;
  pointer-events: none;
}

.glass-card.subtle {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.glass-card > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--muted);
  margin-bottom: 12px;
}

.accent {
  color: var(--accent);
}

.accent-alt {
  color: var(--accent-alt);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.pill.subtle {
  color: var(--muted);
}

.accent-pill {
  background: linear-gradient(135deg, rgba(123, 255, 181, 0.2), rgba(116, 160, 255, 0.2));
  border-color: rgba(255, 255, 255, 0.18);
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(123, 255, 181, 0.08), rgba(116, 160, 255, 0.12));
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pill-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-weight: 600;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn.primary {
  background: linear-gradient(135deg, rgba(123, 255, 181, 0.32), rgba(116, 160, 255, 0.32));
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 40px rgba(123, 255, 181, 0.15);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.05);
}

.btn.full {
  width: 100%;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  font-size: 13px;
}

.tag.live {
  position: relative;
  padding-left: 26px;
}

.tag.live::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 0 rgba(123, 255, 181, 0.4);
  animation: pulse 1.8s infinite;
}

.tag.live.alt::before {
  background: var(--accent-alt);
  box-shadow: 0 0 0 0 rgba(116, 160, 255, 0.35);
}

.section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-head h2 {
  font-size: clamp(28px, 5vw, 42px);
  margin-bottom: 12px;
}

.section-head .muted {
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

.lede {
  color: #cdd4e7;
  font-size: 18px;
  margin-bottom: 18px;
}

.hero-card {
  padding: 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.hero-copy h1 {
  font-size: clamp(34px, 6vw, 52px);
  margin-bottom: 14px;
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 12px;
}

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

.hero-pane {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.preview {
  padding: 12px;
}

.preview img {
  border-radius: 14px;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.preview-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 600;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(123, 255, 181, 0.3);
}

.pulse {
  animation: pulse 1.8s infinite;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.insight {
  padding: 16px;
}

.insight .tiny {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.meter {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
}

.meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-alt));
  position: relative;
}

.meter span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  animation: shimmer 2.5s infinite;
}

.meter.overdrive {
  overflow: visible;
  box-shadow: 0 0 18px rgba(255, 111, 99, 0.32), 0 0 32px rgba(123, 255, 181, 0.2);
}

.meter.overdrive::before {
  content: "";
  position: absolute;
  inset: -8px;
  background: radial-gradient(60% 120% at 20% 50%, rgba(255, 159, 87, 0.45), transparent), radial-gradient(70% 140% at 70% 50%, rgba(255, 91, 135, 0.35), transparent);
  filter: blur(12px);
  opacity: 0.9;
  animation: flicker 1.6s ease-in-out infinite alternate;
}

.meter.overdrive span {
  width: 100% !important;
  background: linear-gradient(90deg, #ff9f57, #ff5b87, var(--accent), var(--accent-alt));
  box-shadow: 0 0 18px rgba(255, 159, 87, 0.35), 0 0 24px rgba(255, 91, 135, 0.28);
  overflow: visible;
}

.meter.overdrive span::before {
  content: "";
  position: absolute;
  right: -4px;
  top: -4px;
  bottom: -4px;
  width: 14px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 50%, rgba(255, 159, 87, 0.9), rgba(255, 91, 135, 0.7), rgba(116, 160, 255, 0.5));
  filter: blur(4px);
  animation: glow-flicker 1.4s ease-in-out infinite alternate;
}

.mini-timeline {
  list-style: none;
  padding: 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-timeline li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.mini-timeline .node {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.rich-text {
  padding: 22px;
  display: grid;
  gap: 12px;
  color: #cdd4e7;
}

.about-points {
  padding: 22px;
  display: grid;
  gap: 10px;
}

.about-points ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  color: #cdd4e7;
}

.about-points li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.service-card {
  padding: 18px;
  display: grid;
  gap: 10px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}

.icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(123, 255, 181, 0.18), rgba(116, 160, 255, 0.18));
  color: var(--text);
  font-size: 20px;
}

.service-card h3 {
  font-size: 20px;
}

.skill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.skill-card {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.skill-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}

.value {
  color: #f5f7ff;
  text-shadow: 0 0 12px rgba(123, 255, 181, 0.35);
  letter-spacing: 0.01em;
}

.team-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.team-card {
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.team-card .avatar {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.team-card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.team-card h3 {
  margin: 0;
}

.team-card a {
  color: var(--accent-alt);
  font-weight: 600;
  width: fit-content;
}

@media (max-width: 640px) {
  .team-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-card .avatar {
    width: 108px;
    height: 108px;
  }
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.pricing-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  flex: 1;
  color: #cdd4e7;
}

.pricing-card li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.contact-section .contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-card {
  padding: 20px;
  display: grid;
  gap: 12px;
}

.contact-card form {
  display: grid;
  gap: 12px;
}

.contact-card label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
}

.contact-card input:focus,
.contact-card textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(123, 255, 181, 0.12);
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.contact-card .input-error {
  border-color: rgba(255, 135, 135, 0.9);
  box-shadow: 0 0 0 3px rgba(255, 135, 135, 0.18);
}

.contact-card .error-text {
  color: #ffb5b5;
  font-size: 12px;
  margin: 2px 0 0;
}

.contact__message.error {
  color: #ffb5b5;
}

.contact__message {
  min-height: 18px;
  font-size: 13px;
  color: var(--muted);
}

.contact-info {
  padding: 20px;
  display: grid;
  gap: 16px;
}

.contact-info .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.contact-info li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.contact-info i {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.contact-info a {
  color: var(--accent-alt);
  font-weight: 600;
}

.about-snippet {
  padding: 14px;
}

.foot-note {
  margin-top: 40px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 10;
  margin-bottom: 16px;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  gap: 12px;
  position: relative;
  z-index: 12;
}

.nav-bar.compact {
  padding: 10px 14px;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.55);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand img {
  height: 32px;
  width: auto;
}

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

.nav-links a {
  padding: 8px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 600;
  border: 1px solid transparent;
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.nav-links a.nav-dace {
  color: #0b0f1a;
  font-weight: 700;
  background: linear-gradient(135deg, #ff9f57, #ff5b87, var(--accent), var(--accent-alt));
  background-size: 220% 220%;
  animation: pulse-bg 4s ease-in-out infinite;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 18px rgba(255, 159, 87, 0.38), 0 0 26px rgba(116, 160, 255, 0.32);
  position: relative;
  overflow: hidden;
}

.nav-links a.nav-dace::after {
  content: "";
  position: absolute;
  inset: -14px;
  background: radial-gradient(60% 120% at 20% 50%, rgba(255, 159, 87, 0.4), transparent), radial-gradient(70% 140% at 70% 50%, rgba(255, 91, 135, 0.28), transparent);
  filter: blur(10px);
  opacity: 0.9;
  z-index: 0;
  animation: flicker 1.8s ease-in-out infinite alternate;
}

.nav-links a.nav-dace::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
  transform: translateX(-120%);
  animation: sheen 2.3s linear infinite;
  z-index: 0;
}

.nav-links a.nav-dace span {
  position: relative;
  z-index: 1;
}

.nav-overlay {
  display: none;
}

.mobile-menu {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: linear-gradient(135deg, #ff9f57, #ff5b87, var(--accent), var(--accent-alt));
  background-size: 200% 200%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  padding: 9px 11px;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(255, 159, 87, 0.35), 0 0 26px rgba(116, 160, 255, 0.32);
  position: relative;
  z-index: 13;
  animation: pulse-bg 4s ease-in-out infinite;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  background: #0b0f1a;
  border-radius: 999px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(123, 255, 181, 0.35);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(123, 255, 181, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(123, 255, 181, 0);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes flicker {
  0% {
    opacity: 0.65;
    transform: translateY(0px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
    transform: translateY(-2px);
  }
}

@keyframes sheen {
  0% {
    transform: translateX(-140%);
  }
  100% {
    transform: translateX(140%);
  }
}

@keyframes pulse-bg {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes glow-flicker {
  0% {
    box-shadow: 0 0 18px rgba(255, 159, 87, 0.42), 0 0 26px rgba(116, 160, 255, 0.36);
    opacity: 0.9;
  }
  50% {
    box-shadow: 0 0 26px rgba(255, 159, 87, 0.55), 0 0 32px rgba(116, 160, 255, 0.42);
    opacity: 1;
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 159, 87, 0.46), 0 0 30px rgba(116, 160, 255, 0.38);
    opacity: 0.95;
  }
}

@media (max-width: 960px) {
  body {
    padding-top: 18px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9;
    display: none;
  }

  body.nav-open .nav-overlay {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    top: 76px;
    right: 14px;
    left: 14px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(8, 9, 16, 0.96);
    border: 1px solid var(--border);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
    display: none;
    flex-direction: column;
    gap: 12px;
    z-index: 121;
    color: #f6f8ff;
    font-weight: 700;
  }

  .mobile-menu.show {
    display: flex;
  }

  .mobile-menu a {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    color: #f6f8ff;
    background: rgba(255, 255, 255, 0.06);
    font-weight: 700;
  }

  .mobile-menu a.nav-dace {
    text-align: center;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    right: 14px;
    left: 14px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(8, 9, 16, 0.96);
    border: 1px solid var(--border);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    display: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 120;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    color: var(--text);
    font-weight: 700;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    display: flex;
  }

  .nav-links a {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    color: #f6f8ff;
    background: rgba(255, 255, 255, 0.06);
    font-weight: 700;
  }

  .nav-links a.nav-dace {
    text-align: center;
  }

  .hero-card {
    padding: 24px;
  }

  .section {
    margin-top: 64px;
  }
}

@media (max-width: 640px) {
  .hero-card {
    padding: 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .nav-bar {
    padding: 10px 12px;
  }
}

/* mobile menu override */
@media (max-width: 960px) {
  .nav-links {
    display: none !important;
  }

  body.nav-open .nav-bar {
    padding: 6px 10px;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }

  body.nav-open .brand {
    font-size: 13px;
  }

  body.nav-open .brand img {
    height: 24px;
  }

  .mobile-menu {
    position: fixed;
    top: 90px;
    right: 14px;
    left: 14px;
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(18, 22, 32, 0.95), rgba(10, 12, 22, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7), 0 0 22px rgba(123, 255, 181, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: none;
    flex-direction: column;
    gap: 12px;
    z-index: 130;
    color: #f6f8ff;
    font-weight: 700;
  }

  .mobile-menu.show {
    display: flex;
  }

  .mobile-menu a {
    display: block;
    width: 100%;
    text-align: left;
    padding: 14px 15px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    color: #f6f8ff;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
    transition: transform 140ms ease, border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
  }

  .mobile-menu a.nav-dace {
    text-align: center;
    color: #0b0f1a;
    background: linear-gradient(135deg, #ff9f57, #ff5b87, var(--accent), var(--accent-alt));
    background-size: 220% 220%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 0 18px rgba(255, 159, 87, 0.42), 0 0 26px rgba(116, 160, 255, 0.36);
    animation: pulse-bg 3s ease-in-out infinite, glow-flicker 1.6s ease-in-out infinite alternate;
  }

  .mobile-menu a::after {
    content: "";
    position: absolute;
    inset: -14px;
    background: radial-gradient(60% 120% at 20% 50%, rgba(123, 255, 181, 0.28), transparent), radial-gradient(70% 140% at 70% 50%, rgba(116, 160, 255, 0.22), transparent);
    filter: blur(10px);
    opacity: 0;
    transition: opacity 160ms ease;
    z-index: 0;
  }

  .mobile-menu a:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55);
  }

  .mobile-menu a:hover::after {
    opacity: 1;
  }

  .mobile-menu a.nav-dace::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
    transform: translateX(-120%);
    animation: sheen 2s linear infinite;
    z-index: 0;
  }

  .mobile-menu a.nav-dace::before {
    content: "";
    position: absolute;
    inset: -12px;
    background: radial-gradient(40% 80% at 30% 50%, rgba(255, 159, 87, 0.4), transparent), radial-gradient(50% 90% at 70% 50%, rgba(255, 91, 135, 0.32), transparent);
    filter: blur(10px);
    opacity: 0.85;
    z-index: 0;
    animation: glow-flicker 1.8s ease-in-out infinite alternate;
  }
}
