:root {
  --wob-bg-0: #040813;
  --wob-bg-1: #0d1f40;
  --wob-bg-2: #12305f;
  --wob-surface: rgba(12, 23, 44, 0.58);
  --wob-surface-strong: rgba(8, 17, 34, 0.78);
  --wob-border: rgba(180, 211, 255, 0.22);
  --wob-text: #e5f0ff;
  --wob-text-soft: #a7bfdc;
  --wob-shadow-1: 0 10px 24px rgba(1, 8, 20, 0.4);
  --wob-shadow-2: 0 20px 44px rgba(2, 9, 22, 0.58);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--wob-text);
  background: radial-gradient(120% 120% at 18% 0%, #17376d 0%, var(--wob-bg-1) 45%, var(--wob-bg-0) 100%);
}

.font-sora {
  font-family: "Sora", sans-serif;
}

.wob-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.wob-bg-layer {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0.75;
}

.wob-bg-layer-a {
  top: -180px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(58, 188, 255, 0.45) 0%, rgba(58, 188, 255, 0) 70%);
}

.wob-bg-layer-b {
  bottom: -200px;
  left: -130px;
  width: 420px;
  height: 420px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(109, 143, 255, 0.35) 0%, rgba(109, 143, 255, 0) 72%);
}

.wob-main {
  position: relative;
  z-index: 2;
  padding-top: 82px;
  padding-bottom: 24px;
}

.wob-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wob-header-inner {
  margin-top: 10px;
  border: 1px solid rgba(182, 215, 255, 0.35);
  background: rgba(9, 20, 40, 0.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  box-shadow: var(--wob-shadow-1);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wob-header.is-scrolled .wob-header-inner {
  box-shadow: var(--wob-shadow-2);
  border-color: rgba(145, 191, 255, 0.42);
}

.wob-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.mobile-menu-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(163, 203, 255, 0.36);
  border-radius: 12px;
  background: rgba(16, 35, 66, 0.68);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.mobile-menu-btn span {
  width: 17px;
  height: 2px;
  border-radius: 6px;
  background: #e4f0ff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-btn:hover {
  transform: translateY(-1px);
  background: rgba(24, 47, 83, 0.84);
}

.mobile-menu-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-panel {
  position: absolute;
  left: 10px;
  right: 10px;
  top: calc(100% + 10px);
  background: rgba(8, 20, 40, 0.94);
  border: 1px solid rgba(168, 206, 255, 0.28);
  border-radius: 16px;
  box-shadow: var(--wob-shadow-2);
  padding: 12px;
  display: grid;
  gap: 12px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-nav-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.wob-nav-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.nav-pill,
.nav-auth-btn,
.quick-tile,
.footer-link,
.footer-social,
.kpi-card,
.action-card {
  position: relative;
  overflow: hidden;
}

.nav-pill {
  display: block;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f8fcff;
  text-decoration: none;
  border: 1px solid rgba(220, 235, 255, 0.24);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.nav-pill:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.nav-pill-home { background: linear-gradient(135deg, #2580ff 0%, #2fb8ff 100%); }
.nav-pill-ops { background: linear-gradient(135deg, #3e73ff 0%, #6f64ff 100%); }
.nav-pill-char { background: linear-gradient(135deg, #7f56d9 0%, #5d8bff 100%); }
.nav-pill-knowledge { background: linear-gradient(135deg, #00a3b5 0%, #36d6b7 100%); }
.nav-pill-reserve { background: linear-gradient(135deg, #1884ca 0%, #2dbec8 100%); }

.wob-auth-wrap {
  display: flex;
  justify-content: flex-end;
}

.nav-auth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(139, 207, 255, 0.34);
  background: linear-gradient(135deg, rgba(37, 129, 255, 0.86), rgba(48, 188, 255, 0.86));
  color: #f2f9ff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 14px;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.nav-auth-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.hero-panel {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(186, 219, 255, 0.24);
  background: linear-gradient(135deg, rgba(19, 59, 117, 0.92) 0%, rgba(13, 31, 70, 0.92) 42%, rgba(4, 13, 29, 0.95) 100%);
  box-shadow: var(--wob-shadow-2);
  padding: 20px;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(179, 214, 255, 0.32);
  background: rgba(34, 94, 180, 0.35);
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #dff2ff;
}

.hero-glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(2px);
}

.hero-glow-a {
  width: 220px;
  height: 220px;
  top: -60px;
  right: -40px;
  background: radial-gradient(circle, rgba(35, 184, 255, 0.5) 0%, rgba(35, 184, 255, 0) 72%);
}

.hero-glow-b {
  width: 200px;
  height: 200px;
  left: -40px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(123, 109, 255, 0.4) 0%, rgba(123, 109, 255, 0) 70%);
}

.section-title {
  margin: 0 0 0.8rem 0;
  font-family: "Sora", sans-serif;
  color: #eef7ff;
  font-weight: 800;
  letter-spacing: 0.03em;
  font-size: 1.04rem;
}

.action-card {
  border-radius: 18px;
  border: 1px solid rgba(185, 218, 255, 0.22);
  box-shadow: var(--wob-shadow-1);
  padding: 14px;
  color: #eff7ff;
  text-decoration: none;
  display: grid;
  gap: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.action-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--wob-shadow-2);
}

.action-card-inline {
  display: flex;
  align-items: center;
  gap: 12px;
}

.action-icon {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  font-size: 1.05rem;
}

.action-title {
  font-weight: 800;
  font-size: 0.83rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.action-caption {
  font-size: 0.74rem;
  color: rgba(233, 243, 255, 0.86);
}

.action-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffeb75;
  color: #273a7a;
  font-weight: 900;
  font-size: 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.action-card-indigo { background: linear-gradient(140deg, #3a65e2 0%, #1f3479 100%); }
.action-card-blue { background: linear-gradient(140deg, #2a8bde 0%, #1551a1 100%); }
.action-card-cyan { background: linear-gradient(140deg, #00a8bc 0%, #176f95 100%); }
.action-card-emerald { background: linear-gradient(140deg, #0da18f 0%, #165f67 100%); }
.action-card-violet { background: linear-gradient(140deg, #7755d9 0%, #443079 100%); }
.action-card-orange { background: linear-gradient(140deg, #db7a21 0%, #935018 100%); }

.quick-tile {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--wob-border);
  border-radius: 14px;
  background: var(--wob-surface);
  box-shadow: var(--wob-shadow-1);
  color: #deeeff;
  text-decoration: none;
  padding: 12px;
  font-size: 0.84rem;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.quick-tile:hover {
  transform: translateY(-1px);
  border-color: rgba(146, 212, 255, 0.48);
}

.panel-card {
  border-radius: 20px;
  border: 1px solid var(--wob-border);
  background: var(--wob-surface);
  box-shadow: var(--wob-shadow-1);
  padding: 16px;
}

.kpi-card {
  border-radius: 18px;
  border: 1px solid var(--wob-border);
  background: var(--wob-surface);
  box-shadow: var(--wob-shadow-1);
  padding: 12px;
  text-decoration: none;
  display: grid;
  gap: 6px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.kpi-card:hover {
  transform: translateY(-2px);
  border-color: rgba(146, 212, 255, 0.55);
}

.kpi-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ec2ea;
}

.kpi-value {
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

.kpi-sub {
  color: #b7cde7;
  font-size: 0.74rem;
  font-weight: 600;
}

.event-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(166, 202, 247, 0.2);
  border-radius: 14px;
  padding: 10px;
  background: rgba(13, 31, 57, 0.44);
}

.event-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2eb9ff, #4d76ff);
  margin-top: 5px;
}

.event-content {
  min-width: 0;
}

.event-date {
  margin: 0;
  color: #9bc2ea;
  font-size: 0.72rem;
  font-weight: 700;
}

.event-text {
  margin: 3px 0 0;
  color: #e3f0ff;
  font-size: 0.82rem;
  line-height: 1.45;
}

.stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(167, 200, 241, 0.22);
  background: rgba(16, 35, 64, 0.46);
}

.stat-label {
  color: #c8d9ee;
  font-size: 0.8rem;
  font-weight: 600;
}

.stat-value {
  color: #ecf6ff;
  font-size: 0.8rem;
  font-weight: 800;
  text-align: right;
}

.empty-state {
  margin: 0;
  border: 1px dashed rgba(166, 201, 244, 0.34);
  border-radius: 12px;
  padding: 12px;
  color: #a8c2e0;
  font-size: 0.82rem;
}

.wob-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(172, 208, 250, 0.26);
  background: linear-gradient(140deg, rgba(10, 23, 49, 0.88) 0%, rgba(11, 32, 65, 0.84) 100%);
  backdrop-filter: blur(4px);
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d7ebff;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #94dcff;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  border: 1px solid rgba(179, 216, 255, 0.34);
  background: rgba(21, 47, 87, 0.72);
  color: #dff0ff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-social:hover {
  transform: translateY(-2px);
  background: rgba(39, 79, 144, 0.86);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-ripple]::after {
  content: "";
  position: absolute;
  top: var(--ripple-y, 50%);
  left: var(--ripple-x, 50%);
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
}

[data-ripple].is-rippling::after {
  animation: wob-ripple 0.58s ease-out;
}

@keyframes wob-ripple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(24);
    opacity: 0;
  }
}

input,
select,
textarea {
  border: 1px solid rgba(152, 191, 237, 0.4);
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(9, 27, 50, 0.66);
  color: #e2f0ff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(91, 177, 255, 0.9);
  outline: none;
  box-shadow: 0 0 0 3px rgba(92, 181, 255, 0.2);
}

@media (min-width: 992px) {
  .wob-main {
    padding-top: 96px;
  }

  .wob-header-inner {
    padding: 12px 14px;
    gap: 18px;
  }

  .mobile-menu-btn {
    display: none;
  }

  .mobile-nav-panel {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    gap: 10px;
    align-items: center;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .wob-nav-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-panel {
    padding: 26px;
  }

  .kpi-value {
    font-size: 1.2rem;
  }
}
