:root {
  --sk-bg-deep: #07110f;
  --sk-bg-ocean: #0a171b;
  --sk-bg-panel: #0d222b;
  --sk-cyan: #4db0bd;
  --sk-cyan-bright: #67e8f9;
  --sk-cyan-soft: rgba(77, 176, 189, 0.22);
  --sk-text-main: #f4fafc;
  --sk-text-secondary: #a9bbc3;
  --sk-warm: #fbbf77;
  --sk-border: rgba(103, 232, 249, 0.24);
  --sk-border-strong: rgba(103, 232, 249, 0.52);
  --navigator-bg: rgba(7, 17, 15, 0.78);
  --navigator-panel: rgba(13, 34, 43, 0.84);
  --navigator-panel-strong: rgba(13, 34, 43, 0.94);
  --navigator-line: var(--sk-border);
  --navigator-line-strong: var(--sk-border-strong);
  --navigator-text: var(--sk-text-main);
  --navigator-muted: var(--sk-text-secondary);
  --navigator-green: var(--sk-cyan-bright);
  --navigator-cyan: var(--sk-cyan-bright);
  --navigator-blue: var(--sk-cyan);
  --navigator-ink: #062126;
}

.seekami-navigator {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 2147483000;
  color: var(--navigator-text);
  font-family:
    Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial,
    sans-serif;
}

.seekami-navigator,
.seekami-navigator * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.navigator-entry {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 37px minmax(0, auto);
  align-items: center;
  gap: 9px;
  min-height: 50px;
  max-width: min(272px, calc(100vw - 28px));
  border: 1px solid rgba(103, 232, 249, 0.34);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(52, 211, 153, 0.18), rgba(96, 165, 250, 0.12)),
    var(--navigator-bg);
  color: var(--navigator-text);
  padding: 7px 12px 7px 8px;
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 20px rgba(52, 211, 153, 0.08);
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.navigator-entry::before {
  position: absolute;
  inset: auto 16px 9px 58px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(103, 232, 249, 0.95), transparent);
  content: "";
  transform: translateX(-120%);
}

.navigator-entry::after {
  position: absolute;
  right: 22px;
  bottom: 5px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--navigator-cyan);
  box-shadow: 0 0 14px rgba(103, 232, 249, 0.8);
  content: "";
  opacity: 0;
}

.navigator-entry:hover,
.navigator-entry:focus-visible {
  border-color: rgba(103, 232, 249, 0.58);
  outline: 0;
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 28px rgba(52, 211, 153, 0.2);
  transform: translateY(-1px);
}

.navigator-entry:hover::before,
.navigator-entry:focus-visible::before {
  animation: seekami-route-line 1.4s ease-in-out infinite;
}

.navigator-entry:hover::after,
.navigator-entry:focus-visible::after {
  animation: seekami-route-dot 1.4s ease-in-out infinite;
}

.navigator-orb {
  position: relative;
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 999px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: radial-gradient(circle at 38% 28%, rgba(255,255,255,0.18) 0%, transparent 60%), #071c2c;
  box-shadow:
    0 0 0 6px rgba(96, 165, 250, 0.06),
    0 0 18px rgba(103, 232, 249, 0.2),
    inset 0 2px 8px rgba(255,255,255,0.25),
    inset 0 -3px 8px rgba(0,0,0,0.5);
}

/* glass highlight overlay */
.navigator-orb::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 999px;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 32% 22%, rgba(255,255,255,0.82) 0 7%, transparent 8%),
    radial-gradient(circle at 68% 78%, rgba(255,255,255,0.12) 0%, transparent 40%);
}

.navigator-orb video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

.navigator-orb::after {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(103, 232, 249, 0.18);
  border-top-color: rgba(52, 211, 153, 0.64);
  border-radius: 999px;
  content: "";
  animation: seekami-orbit 5s linear infinite;
}

.navigator-entry-text {
  display: grid;
  min-width: 0;
  gap: 2px;
  text-align: left;
}

.navigator-entry-text strong {
  color: var(--navigator-text);
  font-size: 14px;
  font-weight: 950;
  line-height: 1.1;
}

.navigator-entry-text span {
  color: var(--navigator-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.navigator-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  overflow: hidden;
  display: none;
  width: min(430px, calc(100vw - 28px));
  max-height: min(740px, calc(100vh - 104px));
  border: 1px solid var(--navigator-line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 0%, rgba(103, 232, 249, 0.15), transparent 28%),
    radial-gradient(circle at 92% 20%, rgba(52, 211, 153, 0.12), transparent 32%),
    linear-gradient(150deg, rgba(5, 14, 27, 0.96), rgba(2, 10, 18, 0.92));
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 46px rgba(96, 165, 250, 0.12);
  backdrop-filter: blur(22px);
}

.seekami-navigator.is-open .navigator-panel {
  display: grid;
}

.navigator-contact-panel {
  width: min(440px, calc(100vw - 28px));
  border-color: rgba(255, 255, 255, .16);
  background:
    radial-gradient(circle at 92% 0%, rgba(103, 232, 249, .12), transparent 34%),
    linear-gradient(145deg, rgba(13, 23, 29, .98), rgba(5, 10, 13, .98));
}

.navigator-contact-inner {
  position: relative;
  display: grid;
  gap: 26px;
  padding: 28px;
}

.navigator-contact-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navigator-contact-head p {
  margin: 0;
  color: var(--navigator-cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
}

.navigator-contact-title h2 {
  margin: 0;
  color: #f3f7f8;
  font-size: 34px;
  font-weight: 760;
  letter-spacing: -.045em;
}

.navigator-contact-title p {
  margin: 9px 0 0;
  color: #87939a;
  font-size: 14px;
}

.navigator-contact-options { display: grid; gap: 10px; }

.navigator-contact-option {
  min-height: 96px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 18px;
  background: rgba(255, 255, 255, .035);
}

.contact-channel-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(103, 232, 249, .28);
  border-radius: 14px;
  background: rgba(103, 232, 249, .08);
  color: #d9f9fd;
  font-size: 13px;
  font-weight: 850;
}

.navigator-contact-option div { display: grid; gap: 5px; }
.navigator-contact-option small { color: #65737b; font-size: 9px; font-weight: 850; letter-spacing: .16em; }
.navigator-contact-option strong { color: #e9edef; font-size: 20px; font-weight: 650; }
.navigator-contact-option i { color: #69757c; font-size: 11px; font-style: normal; }
.navigator-contact-note { margin: -6px 0 0; color: #5f6d74; font-size: 11px; line-height: 1.6; }

.navigator-panel::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(103, 232, 249, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 232, 249, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 82%);
  pointer-events: none;
}

.navigator-panel-inner {
  position: relative;
  overflow: auto;
  display: grid;
  max-height: inherit;
  gap: 16px;
  padding: 18px;
}

.navigator-panel-head {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 34px;
  gap: 12px;
  align-items: start;
}

.navigator-shark {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 999px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  background: radial-gradient(circle at 38% 28%, rgba(255,255,255,0.18) 0%, transparent 60%), #071c2c;
  box-shadow:
    0 0 28px rgba(52, 211, 153, 0.2),
    inset 0 2px 8px rgba(255,255,255,0.25),
    inset 0 -3px 8px rgba(0,0,0,0.5);
}

.navigator-shark::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 999px;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 32% 22%, rgba(255,255,255,0.82) 0 7%, transparent 8%),
    radial-gradient(circle at 68% 78%, rgba(255,255,255,0.12) 0%, transparent 40%);
}

.navigator-shark video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

.navigator-panel-title {
  margin: 0;
  color: var(--navigator-text);
  font-size: 22px;
  font-weight: 980;
  line-height: 1.14;
}

.navigator-panel-copy {
  margin: 7px 0 0;
  color: var(--navigator-muted);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.48;
}

.navigator-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  padding: 2px 0 0;
}

.navigator-progress span {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  min-width: 0;
  border: 1px solid rgba(125, 211, 252, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(168, 189, 199, 0.82);
  padding: 5px 8px 5px 5px;
}

.navigator-progress i {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: rgba(103, 232, 249, 0.1);
  color: var(--navigator-cyan);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
}

.navigator-progress b {
  overflow: hidden;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.navigator-progress span.is-active {
  border-color: rgba(103, 232, 249, 0.42);
  background: rgba(103, 232, 249, 0.08);
  color: var(--navigator-text);
  box-shadow: 0 0 22px rgba(103, 232, 249, 0.08);
}

.navigator-progress span.is-active i,
.navigator-progress span.is-complete i {
  background: linear-gradient(135deg, var(--navigator-green), var(--navigator-cyan));
  color: var(--navigator-ink);
}

.navigator-progress span.is-complete {
  border-color: rgba(52, 211, 153, 0.28);
  color: rgba(244, 251, 255, 0.86);
}

.navigator-stage {
  display: none;
  min-width: 0;
  animation: seekami-stage-in 220ms ease both;
}

.navigator-stage.is-active {
  display: grid;
  gap: 12px;
}

.navigator-stage-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(103, 232, 249, 0.18);
  border-radius: 999px;
  background: rgba(103, 232, 249, 0.08);
  color: var(--navigator-cyan);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 950;
}

.navigator-close {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--navigator-muted);
  font-size: 20px;
}

.navigator-close:hover,
.navigator-close:focus-visible {
  border-color: rgba(103, 232, 249, 0.52);
  color: var(--navigator-text);
  outline: 0;
}

.navigator-goal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.navigator-goal-card {
  position: relative;
  display: grid;
  min-height: 92px;
  align-content: start;
  gap: 8px;
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 16px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022)),
    rgba(8, 22, 38, 0.66);
  color: var(--navigator-text);
  padding: 12px;
  text-align: left;
}

.navigator-goal-card::before {
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--navigator-green), var(--navigator-cyan));
  content: "";
}

.navigator-goal-card strong {
  color: var(--navigator-text);
  font-size: 14px;
  font-weight: 950;
  line-height: 1.2;
}

.navigator-goal-card span {
  color: var(--navigator-muted);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.34;
}

.navigator-goal-card:hover,
.navigator-goal-card:focus-visible,
.navigator-goal-card.is-selected {
  border-color: rgba(52, 211, 153, 0.72);
  outline: 0;
  background:
    linear-gradient(160deg, rgba(52, 211, 153, 0.14), rgba(96, 165, 250, 0.08)),
    rgba(8, 22, 38, 0.8);
  box-shadow: 0 0 26px rgba(52, 211, 153, 0.1);
}

.navigator-intake {
  border: 1px solid rgba(103, 232, 249, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(140deg, rgba(103, 232, 249, 0.075), rgba(52, 211, 153, 0.055)),
    rgba(2, 13, 23, 0.62);
  padding: 14px;
}

.navigator-intake-head {
  display: grid;
  gap: 6px;
}

.navigator-intake-head span,
.navigator-intake-summary span,
.navigator-snapshot-title {
  color: var(--navigator-cyan);
  font-size: 12px;
  font-weight: 950;
}

.navigator-intake-head strong {
  color: var(--navigator-text);
  font-size: 19px;
  font-weight: 980;
  line-height: 1.15;
}

.navigator-intake-head p {
  margin: 0;
  color: var(--navigator-muted);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.44;
}

.navigator-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.navigator-field {
  display: grid;
  min-width: 0;
  gap: 6px;
}

.navigator-field-wide {
  grid-column: 1 / -1;
}

.navigator-field span {
  color: rgba(244, 251, 255, 0.86);
  font-size: 12px;
  font-weight: 900;
}

.navigator-field input,
.navigator-field select,
.navigator-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(125, 211, 252, 0.19);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--navigator-text);
  font: inherit;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.3;
  outline: 0;
}

.navigator-field input,
.navigator-field select {
  min-height: 42px;
  padding: 0 11px;
}

.navigator-field textarea {
  min-height: 76px;
  resize: vertical;
  padding: 10px 11px;
}

.navigator-field select option {
  background: #061425;
  color: var(--navigator-text);
}

.navigator-field input::placeholder,
.navigator-field textarea::placeholder {
  color: rgba(168, 189, 199, 0.64);
}

.navigator-field input:focus,
.navigator-field select:focus,
.navigator-field textarea:focus {
  border-color: rgba(52, 211, 153, 0.68);
  box-shadow:
    0 0 0 3px rgba(52, 211, 153, 0.12),
    0 0 24px rgba(103, 232, 249, 0.08);
}

.navigator-intake-summary {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(52, 211, 153, 0.24);
  border-radius: 14px;
  background: rgba(52, 211, 153, 0.075);
  padding: 10px;
}

.navigator-intake-summary strong {
  color: var(--navigator-text);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.navigator-step-actions {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8px;
}

.navigator-step-primary,
.navigator-step-secondary,
.navigator-adjust {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
}

.navigator-step-primary {
  border: 1px solid var(--navigator-green);
  background: var(--navigator-green);
  color: var(--navigator-ink);
  box-shadow: 0 0 26px rgba(52, 211, 153, 0.16);
}

.navigator-step-secondary,
.navigator-adjust {
  border: 1px solid rgba(125, 211, 252, 0.24);
  background: rgba(255, 255, 255, 0.055);
  color: var(--navigator-text);
}

.navigator-step-primary:hover,
.navigator-step-primary:focus-visible,
.navigator-step-secondary:hover,
.navigator-step-secondary:focus-visible,
.navigator-adjust:hover,
.navigator-adjust:focus-visible {
  border-color: rgba(103, 232, 249, 0.62);
  outline: 0;
  transform: translateY(-1px);
}

.navigator-accepted {
  gap: 12px;
  border: 1px solid rgba(52, 211, 153, 0.44);
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 0%, rgba(52, 211, 153, 0.17), transparent 34%),
    linear-gradient(140deg, rgba(52, 211, 153, 0.13), rgba(96, 165, 250, 0.07)),
    rgba(2, 13, 23, 0.72);
  padding: 14px;
}

.navigator-notify-animation {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  align-items: center;
  min-height: 62px;
  border: 1px solid rgba(125, 211, 252, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(rgba(103, 232, 249, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 232, 249, 0.04) 1px, transparent 1px),
    rgba(255, 255, 255, 0.035);
  background-size: 24px 24px;
  padding: 9px;
}

.notify-sender,
.notify-inbox {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: rgba(4, 18, 31, 0.88);
}

.notify-sender {
  border: 1px solid rgba(103, 232, 249, 0.28);
  box-shadow: 0 0 18px rgba(103, 232, 249, 0.12);
  color: rgba(103, 232, 249, 0.72);
}

.notify-sender svg {
  width: 22px;
  height: 22px;
}

.notify-inbox {
  border: 1px solid rgba(52, 211, 153, 0.42);
  box-shadow: 0 0 22px rgba(52, 211, 153, 0.22);
  color: rgba(52, 211, 153, 0.9);
}

.notify-inbox svg {
  width: 22px;
  height: 22px;
}

.notify-inbox-check {
  stroke-dasharray: 14;
  stroke-dashoffset: 14;
  transition: stroke-dashoffset 0.5s ease 1.6s;
}

.is-ready .notify-inbox-check {
  stroke-dashoffset: 0;
}

.notify-route {
  position: relative;
  display: block;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(103, 232, 249, 0.12), rgba(103, 232, 249, 0.54), rgba(52, 211, 153, 0.22));
}

.notify-route::before,
.notify-route::after {
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--navigator-cyan);
  box-shadow: 0 0 16px rgba(103, 232, 249, 0.72);
  content: "";
  transform: translateY(-50%);
}

.notify-route::before {
  left: 12%;
}

.notify-route::after {
  right: 12%;
  background: var(--navigator-green);
  box-shadow: 0 0 16px rgba(52, 211, 153, 0.72);
}

.notify-route i {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--navigator-text);
  box-shadow:
    0 0 0 5px rgba(103, 232, 249, 0.14),
    0 0 22px rgba(103, 232, 249, 0.75);
  transform: translate(-50%, -50%);
  animation: seekami-notify-flight 1.8s cubic-bezier(0.34, 0.7, 0.2, 1) both;
}

.navigator-notify-copy {
  display: grid;
  gap: 6px;
}

.navigator-notify-copy span {
  color: var(--navigator-cyan);
  font-size: 12px;
  font-weight: 950;
}

.navigator-notify-copy h3 {
  margin: 0;
  color: var(--navigator-text);
  font-size: 21px;
  font-weight: 980;
  line-height: 1.18;
}

.navigator-notify-copy p {
  margin: 0;
  color: var(--navigator-muted);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.48;
}

.navigator-notify-steps {
  display: grid;
  gap: 7px;
}

.navigator-notify-steps span {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 34px;
  border: 1px solid rgba(125, 211, 252, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(168, 189, 199, 0.76);
  padding: 7px 9px;
  font-size: 12px;
  font-weight: 880;
}

.navigator-notify-steps i {
  width: 10px;
  height: 10px;
  justify-self: center;
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.3);
}

.navigator-notify-steps span.is-active {
  border-color: rgba(52, 211, 153, 0.34);
  color: var(--navigator-text);
  background: rgba(52, 211, 153, 0.08);
}

.navigator-notify-steps span.is-active i {
  background: var(--navigator-green);
  box-shadow: 0 0 18px rgba(52, 211, 153, 0.72);
  animation: seekami-notify-pulse 900ms ease-out both;
}

.navigator-snapshot {
  border: 1px solid rgba(125, 211, 252, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.028);
  padding: 9px;
}

.navigator-adjust {
  width: 100%;
}

.navigator-mission-card {
  display: none;
  gap: 12px;
  border: 1px solid rgba(52, 211, 153, 0.44);
  border-radius: 18px;
  background:
    linear-gradient(140deg, rgba(52, 211, 153, 0.13), rgba(96, 165, 250, 0.07)),
    rgba(2, 13, 23, 0.72);
  padding: 14px;
}

.navigator-mission-card.is-visible {
  display: grid;
}

.mission-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(52, 211, 153, 0.38);
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.12);
  color: var(--navigator-green);
  padding: 0 10px;
  font-size: 12px;
  font-weight: 950;
}

.navigator-mission-card h3 {
  margin: 0;
  color: var(--navigator-text);
  font-size: 20px;
  font-weight: 980;
  line-height: 1.18;
}

.navigator-mission-card p {
  margin: 0;
  color: var(--navigator-muted);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.48;
}

.mission-detail-grid {
  display: grid;
  gap: 8px;
}

.mission-detail {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(125, 211, 252, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  padding: 9px;
}

.mission-detail span {
  color: var(--navigator-cyan);
  font-size: 12px;
  font-weight: 950;
}

.mission-detail strong {
  color: var(--navigator-text);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.mission-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px;
}

.mission-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.mission-primary {
  border: 1px solid var(--navigator-green);
  background: var(--navigator-green);
  color: var(--navigator-ink);
}

.mission-secondary {
  border: 1px solid rgba(125, 211, 252, 0.24);
  background: rgba(255, 255, 255, 0.055);
  color: var(--navigator-text);
}

.navigator-wave {
  position: relative;
  overflow: hidden;
  min-height: 34px;
  border: 1px solid rgba(125, 211, 252, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.navigator-wave::before,
.navigator-wave::after {
  position: absolute;
  left: -12%;
  width: 124%;
  height: 18px;
  border-top: 1px solid rgba(103, 232, 249, 0.22);
  border-radius: 50%;
  content: "";
}

.navigator-wave::before {
  top: 10px;
  animation: seekami-wave 4.5s ease-in-out infinite;
}

.navigator-wave::after {
  top: 17px;
  border-color: rgba(52, 211, 153, 0.18);
  animation: seekami-wave 5.5s ease-in-out infinite reverse;
}

@keyframes seekami-orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes seekami-route-line {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes seekami-route-dot {
  0% {
    opacity: 0;
    transform: translateX(-120px);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(8px);
  }
}

@keyframes seekami-wave {
  0%,
  100% {
    transform: translateX(-3%) translateY(0);
  }

  50% {
    transform: translateX(3%) translateY(3px);
  }
}

@keyframes seekami-stage-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes seekami-notify-flight {
  0% {
    left: 0;
    opacity: 0;
  }

  16% {
    opacity: 1;
  }

  78% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes seekami-notify-pulse {
  0% {
    transform: scale(0.65);
  }

  60% {
    transform: scale(1.18);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 620px) {
  .seekami-navigator {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .navigator-entry {
    width: 100%;
    max-width: none;
  }

  .navigator-panel {
    right: 0;
    bottom: 72px;
    width: 100%;
    max-height: min(720px, calc(100vh - 94px));
  }

  .navigator-goal-grid,
  .navigator-form-grid,
  .navigator-step-actions,
  .mission-actions {
    grid-template-columns: 1fr;
  }

  .navigator-field-wide {
    grid-column: auto;
  }

  .navigator-progress b {
    display: none;
  }

  .navigator-panel-title {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .navigator-entry,
  .navigator-entry::before,
  .navigator-entry::after,
  .navigator-orb::after,
  .navigator-stage,
  .notify-route i,
  .navigator-notify-steps span.is-active i,
  .navigator-wave::before,
  .navigator-wave::after {
    animation: none !important;
    transition: none !important;
  }

  .navigator-entry:hover,
  .navigator-entry:focus-visible {
    transform: none;
  }
}
