:root {
  --accent: #7ab8e0;
  --accent-hover: #9acbed;
  --accent-ink: #0f1b24;
  --panel: #1a1a1a;
  --panel-2: #222;
  --border: #2c2c2c;
  --muted: #a8a8a8;
}

.hero {
  padding: 96px 32px 80px;
  text-align: center;
  background: radial-gradient(1200px 500px at 50% -100px, rgba(122, 184, 224, 0.14), transparent 60%);
}

.hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--accent);
  margin: 0 0 16px;
}

.hero h1 {
  font-size: 96px;
  line-height: 1;
  margin: 0 0 16px;
  letter-spacing: -1.5px;
}

.hero-tagline {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 500;
  color: #e6e6e6;
  margin: 0 0 20px;
}

.lede {
  font-size: 18px;
  color: #d0d0d0;
  max-width: 680px;
  margin: 0 auto 28px;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.05s ease;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges li {
  font-size: 13px;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #181818;
}

.services,
.experience,
.client-login {
  padding: 72px 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.services h2,
.experience h2,
.client-login h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 10px;
}

.services h2,
.experience h2 {
  font-size: 44px;
  margin-bottom: 16px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  margin: 0 auto 40px;
  max-width: 620px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin: 0 auto;
}

.service {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  max-width: 760px;
  margin: 0 auto;
}

.service h3 {
  margin: 0 0 12px;
  font-size: 22px;
  color: var(--accent);
}

.service p {
  margin: 0;
  font-size: 16px;
  color: #c8c8c8;
  line-height: 1.6;
}

.experience-map {
  position: relative;
  width: min(100%, 80vmin);
  max-width: 900px;
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel);
  line-height: 0;
  cursor: grab;
  user-select: none;
  touch-action: none;
  container-type: inline-size;
}

.experience-map.is-grabbing {
  cursor: grabbing;
}

.experience-map-stage {
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
}

.experience-map-stage img {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.map-pin {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  line-height: 1;
  --angle: 50deg;
  --label-distance: clamp(50px, 16cqi, 160px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.experience-map.is-visible .map-pin {
  opacity: 1;
}

.experience-map.is-visible .map-pin:nth-of-type(1) { transition-delay: 0s; }
.experience-map.is-visible .map-pin:nth-of-type(2) { transition-delay: 0.4s; }
.experience-map.is-visible .map-pin:nth-of-type(3) { transition-delay: 0.8s; }
.experience-map.is-visible .map-pin:nth-of-type(4) { transition-delay: 1.2s; }
.experience-map.is-visible .map-pin:nth-of-type(5) { transition-delay: 1.6s; }
.experience-map.is-visible .map-pin:nth-of-type(n+6) { transition-delay: 2s; }

@media (prefers-reduced-motion: reduce) {
  .map-pin { opacity: 1; transition: none; }
}

.map-pin-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(5px, 0.9cqi, 8px);
  height: clamp(5px, 0.9cqi, 8px);
  border-radius: 50%;
  background: #3a3a3a;
  box-shadow: 0 0 0 1.5px #888, 0 0 4px rgba(0, 0, 0, 0.6);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.map-pin-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 0;
  background: #a8a8a8;
  transform-origin: 50% 100%;
  transform: translate(-50%, -100%) rotate(var(--angle));
}

.map-pin-box {
  position: absolute;
  left: calc(sin(var(--angle)) * var(--label-distance));
  top: calc(cos(var(--angle)) * var(--label-distance) * -1);
  transform: translate(-50%, -50%);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: clamp(3px, 0.7cqi, 6px) clamp(4px, 1.1cqi, 10px);
  text-align: left;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.map-pin-name {
  font-size: clamp(10px, 1.6cqi, 14px);
  font-weight: 600;
  color: var(--accent);
}

.map-pin-meta {
  font-size: clamp(9px, 1.4cqi, 12px);
  font-weight: 500;
  color: var(--accent);
  opacity: 0.75;
}

@media (max-width: 640px) {
  .experience .section-sub { padding: 0 16px; }
}

.client-login {
  text-align: center;
}

.client-login-inner {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 48px 32px;
  max-width: 720px;
  margin: 0 auto;
}

.client-login p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.client-login .btn {
  margin-top: 8px;
}

@media (max-width: 640px) {
  .hero { padding: 64px 20px 56px; }
  .hero h1 { font-size: 32px; }
  .lede { font-size: 16px; }
  .services { padding: 56px 20px; }
}
