/**
 * WeboraDev — design system. Exact replica of Webora marketing theme.
 */

:root {
  --primary: #64748b;
  --primary-hover: #475569;
  --primary-glow: rgba(255, 255, 255, 0.12);
  --cta-bg: #475569;
  --cta-hover: #334155;
  --text-body: #f1f5f9;
  --text-muted: rgba(241, 245, 249, 0.85);
  --glass-bg: rgba(255, 255, 255, 0.07);
  --glass-bg2: rgba(255, 255, 255, 0.13);
  --glass-bg3: rgba(255, 255, 255, 0.04);
  --stroke: rgba(255, 255, 255, 0.20);
  --stroke-inner: rgba(255, 255, 255, 0.08);
  --blur: 26px;
  --radius: 1.5rem;
  --reveal-duration: 600ms;
  --reveal-ease: ease-out;
  --webora-accent: #4f7dff;
  --webora-accent-hover: #3d66e6;
  --webora-accent-glow: rgba(79, 125, 255, 0.45);
  --nav-glass-bg: rgba(12, 13, 18, 0.55);
  --nav-glass-border: rgba(255, 255, 255, 0.08);
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-hero: "Plus Jakarta Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-body);
  background: #0a0b0f;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
input:focus, textarea:focus, select:focus { outline: none !important; }
main input, main textarea, main select { color: var(--text-body); }

/* ── Starfield ── */
#starfield {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: radial-gradient(ellipse at bottom, #141620 0%, #06070a 100%);
}
#starfield .starfield-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200vh;
  animation: starfield-layer-drift linear infinite;
  will-change: transform;
}
#starfield .star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
}
@keyframes starfield-layer-drift {
  from { transform: translateY(-100vh); }
  to { transform: translateY(0); }
}

/* ── Glass text ── */
.glass-text {
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* ── Glass card (same specular + frost) ── */
.glass-card {
  position: relative;
  overflow: hidden;
  background: rgba(12, 13, 18, 0.92);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border: 1px solid var(--stroke);
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.28),
    0 4px 16px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px var(--stroke-inner),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  padding: 1.5rem;
  border-radius: var(--radius);
  color: #fff;
  transition: transform 0.35s var(--reveal-ease), box-shadow 0.35s ease;
}
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: none;
  z-index: 1;
}
.glass-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.32),
    0 0 48px rgba(255, 255, 255, 0.06),
    inset 0 0 0 1px var(--stroke-inner),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

/* ── Nav ── */
.wd-header { position: sticky; top: 0; z-index: 50; padding: 0.75rem 1rem; }
@media (min-width: 640px) { .wd-header { padding: 0.75rem 1.5rem; } }
@media (min-width: 1024px) { .wd-header { padding: 0.75rem 2rem; } }
.nav-glass-shell {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  min-height: 56px;
  padding: 0.5rem 1rem;
  border-radius: 1.5rem;
  background: var(--nav-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--nav-glass-border);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 0 40px rgba(79, 125, 255, 0.06);
  transition: box-shadow 0.35s ease, background 0.35s ease;
}
@media (min-width: 640px) { .nav-glass-shell { min-height: 64px; padding: 0.5rem 1.25rem; } }
.nav-glass-shell.is-scrolled {
  background: rgba(12, 13, 18, 0.72);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06) inset, 0 0 48px rgba(79, 125, 255, 0.08);
}
.site-wordmark {
  font-family: var(--font-hero);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
}
@media (min-width: 640px) { .site-wordmark { font-size: 1.5rem; } }

.nav-link-pill {
  border-radius: 0.875rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  position: relative;
  text-decoration: none;
}
.nav-link-pill:hover { background: rgba(255, 255, 255, 0.08); }
.nav-link-pill::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.5rem;
  height: 1px;
  width: 0;
  background: currentColor;
  transition: width 0.25s ease-out;
}
.nav-link-pill:hover::after { width: 100%; }

.wd-nav-links {
  display: none;
  flex-direction: column;
  width: 100%;
  gap: 0.25rem;
  padding-top: 0.5rem;
}
.wd-nav-links.is-open { display: flex; }
@media (min-width: 900px) {
  .wd-nav-links { display: flex; flex-direction: row; align-items: center; width: auto; padding-top: 0; gap: 0.25rem; }
}

/* ── Nav left group ── */
.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── Language switcher ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 1px;
  padding: 2px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
}
.lang-switcher__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 7px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.lang-switcher__link:hover { color: rgba(255,255,255,0.75); }
.lang-switcher__link.is-active { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.1); }

.wd-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.wd-nav-toggle:hover { background: rgba(255, 255, 255, 0.3); }
@media (min-width: 900px) { .wd-nav-toggle { display: none; } }

/* ── Buttons (exact Webora) ── */
.btn-accent-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  color: #fff;
  background: linear-gradient(180deg, var(--webora-accent) 0%, var(--webora-accent-hover) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  box-shadow: 0 4px 24px var(--webora-accent-glow), 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  text-decoration: none;
  cursor: pointer;
}
.btn-accent-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px var(--webora-accent-glow), 0 12px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  filter: brightness(1.05);
}
.btn-accent-primary:active { transform: translateY(0); }
.btn-accent-primary-lg { padding: 0.875rem 1.75rem; font-size: 1rem; min-height: 52px; }
.btn-accent-primary-sm { padding: 0.625rem 1.125rem; font-size: 0.875rem; min-height: 44px; }

.btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 1rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}
.btn-secondary-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

/* ── Hero ── */
.hero-section {
  position: relative;
  z-index: 1;
  min-height: min(90vh, 52rem);
  display: flex;
  align-items: center;
  padding-top: clamp(2rem, 6vw, 4rem);
  padding-bottom: clamp(3rem, 10vw, 6rem);
}
.hero-headline {
  font-family: var(--font-hero);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: clamp(2.35rem, 5.5vw, 3.65rem);
  line-height: 1.1;
}
.hero-lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.88);
}

/* Hero feature pills — inline check-style list */
.hero-features-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  padding-top: 2rem;
}
@media (min-width: 1024px) { .hero-features-row { justify-content: flex-start; } }
.hero-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.01em;
  padding: 0;
  background: none;
  border: none;
}
.hero-feature-pill svg { width: 1rem; height: 1rem; flex-shrink: 0; color: #4ADE80; }

/* Hero mockup */
.hero-mockup-wrap { position: relative; width: 100%; max-width: 100%; margin: 0 auto; }
.hero-mockup-glow { position: absolute; inset: -20% -10%; background: radial-gradient(ellipse at 50% 50%, rgba(79, 125, 255, 0.18) 0%, transparent 65%); pointer-events: none; z-index: 0; }
.hero-mockup-svg { position: relative; z-index: 1; width: 100%; height: auto; filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45)); }

/* Trust strip — subtle centered bar */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.trust-strip-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-right: 0.75rem;
}
.trust-chip {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  padding: 0;
  background: none;
  border: none;
}
.trust-chip::before {
  content: "·";
  margin-right: 0.5rem;
  color: rgba(255, 255, 255, 0.2);
}
.trust-strip .trust-chip:first-of-type::before { display: none; }

/* Benefit / icon cards (exact Webora) */
.benefit-card {
  border-radius: 1.25rem;
  padding: 1.5rem;
  background: rgba(12, 13, 18, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.18); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.1); }
.benefit-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 125, 255, 0.12);
  border: 1px solid rgba(79, 125, 255, 0.22);
  margin-bottom: 1rem;
}
.benefit-card__icon svg { width: 1.35rem; height: 1.35rem; color: rgba(255, 255, 255, 0.9); }
.ic-blue    { background: rgba(79,125,255,0.12); border-color: rgba(79,125,255,0.22); }
.ic-blue svg    { color: #7BA4FF; }
.ic-purple  { background: rgba(168,85,247,0.12); border-color: rgba(168,85,247,0.22); }
.ic-purple svg  { color: #C084FC; }
.ic-green   { background: rgba(34,197,94,0.12);  border-color: rgba(34,197,94,0.22);  }
.ic-green svg   { color: #4ADE80; }
.ic-orange  { background: rgba(245,158,11,0.12); border-color: rgba(245,158,11,0.22); }
.ic-orange svg  { color: #FBBF24; }
.ic-cyan    { background: rgba(6,182,212,0.12);  border-color: rgba(6,182,212,0.22);  }
.ic-cyan svg    { color: #22D3EE; }
.ic-pink    { background: rgba(236,72,153,0.12); border-color: rgba(236,72,153,0.22); }
.ic-pink svg    { color: #F472B6; }
.ic-indigo  { background: rgba(99,102,241,0.12); border-color: rgba(99,102,241,0.22); }
.ic-indigo svg  { color: #818CF8; }
.ic-teal    { background: rgba(20,184,166,0.12); border-color: rgba(20,184,166,0.22); }
.ic-teal svg    { color: #2DD4BF; }
.ic-rose    { background: rgba(244,63,94,0.12);  border-color: rgba(244,63,94,0.22);  }
.ic-rose svg    { color: #FB7185; }
.ic-amber   { background: rgba(217,119,6,0.12);  border-color: rgba(217,119,6,0.22);  }
.ic-amber svg   { color: #FCD34D; }

/* Process cards */
.home-process .benefit-card { padding: 1.625rem 1.5rem; }
.home-process .benefit-card__icon { width: 3rem; height: 3rem; border-radius: 1rem; margin-bottom: 1.125rem; }
.home-process .benefit-card__icon svg { width: 1.5rem; height: 1.5rem; }

/* Tech stack icons */
.stack-icon { width: 32px; height: 32px; opacity: 0.7; transition: opacity 0.3s ease; }
.group:hover .stack-icon { opacity: 1; }

/* Demo showcase cards (exact Webora) */
.webora-demo-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  overflow: hidden;
  background: rgba(12, 13, 18, 0.95);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.webora-demo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(79, 125, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.webora-demo-card__visual { position: relative; aspect-ratio: 16/10; background: #08090d; overflow: hidden; }
.webora-demo-card__img { display: block; width: 100%; height: 100%; object-fit: cover; }
.webora-demo-card__shimmer { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 2; }
.webora-demo-card__shimmer::after {
  content: "";
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: linear-gradient(118deg, transparent 42%, rgba(255,255,255,0.02) 46%, rgba(255,255,255,0.10) 50%, rgba(200,210,230,0.16) 50.5%, rgba(255,255,255,0.06) 53%, transparent 58%);
  transform: translateX(-35%) translateY(-20%) rotate(12deg);
}
.webora-demo-card__shimmer.shimmer-active::after {
  animation: weboraShimmerSweep 1s ease-in-out forwards;
}
@keyframes weboraShimmerSweep { 0% { transform: translateX(-35%) translateY(-20%) rotate(12deg); } 100% { transform: translateX(35%) translateY(15%) rotate(12deg); } }
@media (prefers-reduced-motion: reduce) { .webora-demo-card__shimmer::after { display: none; } }
.webora-demo-card__body { padding: 1.5rem 1.5rem 1.75rem; display: flex; flex-direction: column; flex: 1; gap: 0.75rem; }
.webora-demo-card__title { font-family: var(--font-body); font-size: 1.125rem; font-weight: 600; color: #fff; letter-spacing: -0.02em; margin: 0; }
.webora-demo-card__desc { font-size: 0.875rem; line-height: 1.55; color: rgba(255, 255, 255, 0.78); flex: 1; margin: 0; }
.webora-demo-card__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.25rem; }
.webora-demo-card__actions .btn-accent-primary,
.webora-demo-card__actions .btn-secondary-outline { padding: 0.625rem 1.125rem; font-size: 0.875rem; min-height: 44px; }
.webora-demo-card__badge { position: absolute; top: 0.75rem; left: 0.75rem; padding: 0.25rem 0.65rem; border-radius: 9999px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; background: rgba(12, 13, 18, 0.8); border: 1px solid rgba(255,255,255,0.15); color: #e2e8f0; z-index: 3; }

/* Section rhythm */
.section-y { padding-top: clamp(3.5rem, 8vw, 5.5rem); padding-bottom: clamp(3.5rem, 8vw, 5.5rem); }

/* Glass input */
.glass-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--stroke);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.12), inset 0 0 0 1px var(--stroke-inner);
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}
.glass-input::placeholder { color: rgba(255, 255, 255, 0.45); }
.glass-input:focus { border-color: rgba(255, 255, 255, 0.4); }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity var(--reveal-duration) var(--reveal-ease), transform var(--reveal-duration) var(--reveal-ease); }
.reveal.revealed { opacity: 1; transform: none; }
.reveal-x { opacity: 0; transform: translateX(16px); transition: opacity var(--reveal-duration) var(--reveal-ease), transform var(--reveal-duration) var(--reveal-ease); }
.reveal-x.revealed { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(16px); transition: opacity var(--reveal-duration) var(--reveal-ease), transform var(--reveal-duration) var(--reveal-ease); }
.reveal-stagger.revealed > * { opacity: 1; transform: none; }
.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 400ms; }
.page-enter { animation: pageFadeIn 0.3s ease-out forwards; }
@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Footer (exact Webora) */
.wd-footer {
  margin-top: auto;
  border-radius: 1.5rem 1.5rem 0 0;
  overflow: hidden;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255,255,255,0.15);
  border-top-color: rgba(255,255,255,0.25);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.25);
}
.wd-footer__bar { border-top: 1px solid rgba(255,255,255,0.15); padding: 1.25rem; font-size: 0.875rem; color: rgba(255,255,255,0.75); text-align: center; }

/* Flash messages */
.wd-flash { margin-bottom: 1rem; padding: 1rem 1.25rem; border-radius: var(--radius); }
.wd-flash--ok { background: rgba(34, 197, 94, 0.15); border: 1px solid rgba(34, 197, 94, 0.35); color: #86efac; }
.wd-flash--err { background: rgba(248, 113, 113, 0.12); border: 1px solid rgba(248, 113, 113, 0.35); color: #fecaca; }

/* Category pill */
.wd-pill { display: inline-block; padding: 0.35rem 0.75rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; background: rgba(79, 125, 255, 0.2); border: 1px solid rgba(79, 125, 255, 0.35); color: #93b4ff; margin-bottom: 0.75rem; }

/* Feature list */
.wd-feature-list { margin: 0.5rem 0 0; padding-left: 1.25rem; color: var(--text-muted); }
.wd-feature-list li { margin-bottom: 0.35rem; }

/* Utility */
.wd-container { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .wd-container { padding: 0 2rem; } }
.wd-container--narrow { max-width: 48rem; }
.text-center { text-align: center; }

/* Admin-only styles */
.wd-admin { background: #0a0b0f; min-height: 100vh; padding: 1.5rem; }
.wd-admin__shell { max-width: 960px; margin: 0 auto; }
.wd-admin__nav { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.wd-admin__nav a { color: rgba(255,255,255,0.85); text-decoration: none; padding: 0.4rem 0.75rem; border-radius: 0.5rem; font-size: 0.9rem; }
.wd-admin__nav a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.wd-table-wrap { overflow-x: auto; }
.wd-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.wd-table th, .wd-table td { text-align: left; padding: 0.65rem 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.wd-table th { color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.06em; }
.wd-admin-form { display: flex; flex-direction: column; gap: 1rem; max-width: 36rem; }
.wd-admin-form label { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.85rem; color: rgba(255,255,255,0.88); }
.wd-admin-form input, .wd-admin-form select, .wd-admin-form textarea { padding: 0.5rem 0.75rem; border-radius: 0.5rem; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06); color: #fff; font-family: inherit; }
.wd-checkbox { flex-direction: row !important; align-items: center; gap: 0.5rem !important; }
.wd-checkbox input { width: auto; }
.wd-btn--sm { padding: 0.45rem 0.9rem; font-size: 0.8125rem; border-radius: 0.75rem; }
.wd-btn--danger { background: rgba(220, 38, 38, 0.85); color: #fff; display: inline-flex; align-items: center; justify-content: center; padding: 0.45rem 0.9rem; font-size: 0.8125rem; border-radius: 0.75rem; border: none; cursor: pointer; font-family: inherit; font-weight: 600; }
