html { scroll-behavior: smooth; }
body { background: #F5F5F5; color: #0A0A0A; }

.bg-ink { background-color: #F5F5F5; }
.bg-ink-2 { background-color: #EEEEEE; }
.bg-ink\/90 { background-color: rgba(245, 245, 245, 0.92); }
.bg-ink\/50 { background-color: rgba(255, 255, 255, 0.72); }
.bg-panel { background-color: #FFFFFF; }
.bg-panel-2 { background-color: #FAFAFA; }
.border-line { border-color: #E0E0E0; }
.text-cream { color: #0A0A0A; }
.text-mute { color: #757575; }
.text-amber { color: #1976D2; }
.bg-amber { background-color: #1976D2; }
.text-ink { color: #FFFFFF; }
.text-ok { color: #00C853; }
.text-info { color: #1565C0; }
.text-go { color: #E53935; }
.bg-ok { background-color: #00C853; }
.bg-amber\/10 { background-color: rgba(25, 118, 210, 0.1); }
.bg-amber\/15 { background-color: rgba(25, 118, 210, 0.15); }
.bg-amber\/20 { background-color: rgba(25, 118, 210, 0.2); }
.hover\:bg-amber\/90:hover { background-color: rgba(25, 118, 210, 0.9); }
.hover\:border-amber\/40:hover { border-color: rgba(25, 118, 210, 0.4); }
.hover\:text-amber:hover { color: #1976D2; }
.border-amber\/30 { border-color: rgba(25, 118, 210, 0.3); }
.border-amber\/40 { border-color: rgba(25, 118, 210, 0.4); }
.bg-ok\/10 { background-color: rgba(0, 200, 83, 0.1); }
.bg-ok\/15 { background-color: rgba(0, 200, 83, 0.15); }
.bg-info\/10 { background-color: rgba(21, 101, 192, 0.08); }
.bg-info\/15 { background-color: rgba(21, 101, 192, 0.12); }

.float-slow { animation: float 7s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .float-slow { animation: none !important; }
}

.phone-frame {
  width: 280px;
  height: 608px;
  padding: 12px;
  border-radius: 2.75rem;
  background: linear-gradient(180deg, #FFFFFF, #EEEEEE);
  box-shadow: 0 30px 80px rgba(21, 101, 192, 0.12), 0 0 0 1px #E0E0E0;
  overflow: hidden;
  display: flex;
  flex: none;
  flex-shrink: 0;
  align-self: center;
}
@media (min-width: 1024px) {
  .phone-frame { width: 310px; height: 672px; }
}
.phone-screen {
  flex: 1;
  min-height: 0;
  width: 100%;
  border-radius: 2.1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #F5F5F5;
  border: 1px solid #E0E0E0;
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 9px;
  border-radius: 999px;
  background: #D0D0D0;
  z-index: 4;
}
.mock-gis {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.mock-gis-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 42%;
}
.mock-gis-status {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 3;
  padding: 1.35rem 0.9rem 0.4rem;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #0A0A0A;
  background: linear-gradient(180deg, rgba(245,245,245,0.92), rgba(245,245,245,0));
}
.mock-radar {
  position: absolute;
  left: 52%;
  top: 46%;
  width: 58%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 2px dashed rgba(25, 118, 210, 0.85);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(25, 118, 210, 0.12);
  pointer-events: none;
  z-index: 1;
}
.mock-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -90%) rotate(-45deg);
  border: 2px solid #fff;
  box-shadow: 0 2px 5px rgba(15, 15, 15, 0.35);
  z-index: 2;
}
.mock-pin-nurse { background: #1976D2; }
.mock-pin-home { background: #E53935; }
.mock-card {
  position: absolute;
  left: 10px; right: 10px; bottom: 10px;
  z-index: 3;
  background: rgba(255,255,255,0.95);
  border: 1px solid #E0E0E0;
  border-radius: 1rem;
  padding: 0.65rem 0.75rem;
  box-shadow: 0 8px 24px rgba(15,15,15,0.1);
}
.mock-gis-credit {
  position: absolute;
  right: 8px;
  bottom: 88px;
  z-index: 3;
  font-size: 8px;
  color: #3F3F46;
  background: rgba(255,255,255,0.8);
  padding: 2px 6px;
  border-radius: 999px;
}
.phone-tabs {
  min-height: 48px;
  flex-shrink: 0;
  position: relative;
  z-index: 5;
}
.desk-frame {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  box-shadow: 0 20px 50px rgba(21, 101, 192, 0.1);
}
.desk-chrome {
  background: #F5F5F5;
  border-bottom: 1px solid #E0E0E0;
}
.desk-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #F5F5F5;
  border-bottom: 1px solid #E0E0E0;
}
.desk-dot { width: 8px; height: 8px; border-radius: 999px; background: #D0D0D0; }
.mock-gis--split {
  flex: 1;
  min-height: 168px;
}
.mock-gis--split .mock-gis-credit {
  bottom: 8px;
}
.mock-ops {
  flex-shrink: 0;
  background: #FFFFFF;
  padding: 8px 10px 10px;
  border-top: 1px solid #E0E0E0;
}
.mock-accept {
  background: #1976D2;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  border-radius: 8px;
  padding: 7px 8px;
}

.grid-dots {
  background-image: radial-gradient(rgba(25, 118, 210, 0.14) 1px, transparent 1px);
  background-size: 22px 22px;
}
.amber-ring { box-shadow: 0 0 0 1px rgba(25, 118, 210, 0.35), 0 12px 40px rgba(15, 15, 15, 0.06); }

.logo-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 12px;
  background: #FFFFFF;
  flex-shrink: 0;
}
.logo-geotactics {
  height: 40px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  filter: none;
}

footer { background-color: #F4F4F5; color: #52525B; }
footer a { color: #3F3F46; }
footer a:hover { color: #1976D2; }

.cookie-bar {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 80;
  max-width: 42rem;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 1rem;
  padding: 1rem 1.15rem;
  box-shadow: 0 16px 50px rgba(15, 15, 15, 0.1);
}
.cookie-bar p { color: #757575; font-size: 0.8125rem; line-height: 1.5; }
.cookie-bar a { color: #1976D2; text-decoration: underline; }

nav a.nav-link { color: #757575; }
nav a.nav-link:hover { color: #0A0A0A; }
nav a.nav-link.is-active { color: #1976D2; }

::selection { background: rgba(25, 118, 210, 0.22); color: #0A0A0A; }
