:root {
  color-scheme: light;
  --gp-bg: #f7fbff;
  --gp-panel: rgba(255, 255, 255, 0.9);
  --gp-ink: #142237;
  --gp-muted: #607086;
  --gp-line: rgba(72, 104, 136, 0.18);
  --gp-blue: #1a70e8;
  --gp-cyan: #18b6c7;
  --gp-green: #0b8a68;
  --gp-gold: #c99332;
  --gp-shadow: 0 26px 86px rgba(30, 64, 96, 0.16);
  --gp-radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body.geo-publish-page {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% -4%, rgba(24, 182, 199, 0.18), transparent 34rem),
    radial-gradient(circle at 88% 4%, rgba(26, 112, 232, 0.14), transparent 36rem),
    linear-gradient(180deg, #fff 0%, var(--gp-bg) 50%, #fafdff 100%);
  color: var(--gp-ink);
  line-height: 1.56;
  -webkit-font-smoothing: antialiased;
}
body.geo-publish-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 34, 55, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 34, 55, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 76%);
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
:where(a, button, input, textarea):focus-visible { outline: 2px solid rgba(26, 112, 232, 0.75); outline-offset: 3px; }

.gp-nav {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(1220px, calc(100% - 28px));
  min-height: 74px;
  margin: 14px auto 0;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  border: 1px solid var(--gp-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 58px rgba(38, 73, 109, 0.13);
}
.gp-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; white-space: nowrap; }
.gp-brand img { border-radius: 9px; }
.gp-nav nav {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  min-width: min(100%, 360px);
  color: var(--gp-muted);
  font-size: 13px;
  font-weight: 780;
  overflow: visible;
  scrollbar-width: none;
}
.gp-nav nav::-webkit-scrollbar { display: none; }
.gp-nav nav a[aria-current="page"], .gp-nav nav a:hover { color: var(--gp-ink); }
.gp-pill, .gp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--gp-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 850;
}
.gp-pill { color: var(--gp-blue); background: rgba(26, 112, 232, 0.07); }
.gp-button.primary {
  border-color: transparent;
  color: white;
  background: linear-gradient(135deg, var(--gp-blue), var(--gp-cyan));
  box-shadow: 0 18px 42px rgba(26, 112, 232, 0.22);
}

main { width: min(1220px, calc(100% - 28px)); margin: 0 auto; position: relative; z-index: 1; }
.gp-hero {
  padding: clamp(42px, 5.5vw, 76px) 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.gp-eyebrow {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gp-cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.gp-eyebrow::before { content: ""; width: 26px; height: 2px; border-radius: 999px; background: var(--gp-cyan); }
.gp-hero h1, .gp-section h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(42px, 6.6vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}
.gp-section h2 { max-width: 14ch; font-size: clamp(30px, 4.3vw, 56px); }
.gp-lead, .gp-section-head p, .gp-video-copy p { max-width: 62ch; color: var(--gp-muted); font-size: 17px; }
.gp-actions, .gp-proof-row, .gp-output-actions, .gp-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.gp-proof-row { margin-top: 22px; }
.gp-proof-row span {
  padding: 9px 12px;
  border: 1px solid var(--gp-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--gp-muted);
  font-size: 12px;
  font-weight: 820;
}

.gp-visual {
  min-height: 520px;
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1200px;
}
.gp-visual img {
  width: min(100%, 640px);
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--gp-radius);
  box-shadow: var(--gp-shadow);
  transform: rotateX(7deg) rotateY(-10deg);
}
.gp-orbit {
  position: absolute;
  border: 1px solid rgba(26, 112, 232, 0.18);
  border-radius: 999px;
  pointer-events: none;
  animation: gp-orbit 10s linear infinite;
}
.gp-orbit-a { width: 74%; height: 42%; transform: rotate(-12deg); }
.gp-orbit-b { width: 58%; height: 58%; transform: rotate(28deg); animation-duration: 14s; }
.gp-float-card {
  position: absolute;
  width: 168px;
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(72, 104, 136, 0.2);
  border-radius: var(--gp-radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(38, 73, 109, 0.15);
  backdrop-filter: blur(14px);
  animation: gp-float 4.8s ease-in-out infinite;
}
.gp-float-card b { display: block; font-size: 18px; }
.gp-float-card span { display: block; color: var(--gp-muted); font-size: 13px; }
.gp-float-card.one { top: 16%; left: 4%; }
.gp-float-card.two { right: 2%; top: 34%; animation-delay: -1.2s; }
.gp-float-card.three { left: 16%; bottom: 9%; animation-delay: -2.4s; }
@keyframes gp-orbit { to { rotate: 360deg; } }
@keyframes gp-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -16px; } }

.gp-flow-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(110px, 1fr));
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 54px rgba(38, 73, 109, 0.09);
  overflow-x: auto;
}
.gp-flow-strip span {
  min-height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(26, 112, 232, 0.12);
  border-radius: 6px;
  color: var(--gp-muted);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.gp-section { padding: clamp(56px, 7vw, 92px) 0; }
.gp-section-head { margin-bottom: 28px; }
.gp-console-grid, .gp-two-col, .gp-video-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 24px;
  align-items: start;
}
.gp-form, .gp-output, .gp-card-grid article, .gp-video-band {
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius);
  background: var(--gp-panel);
  box-shadow: 0 20px 70px rgba(38, 73, 109, 0.1);
}
.gp-form, .gp-output { padding: 18px; }
.gp-form { display: grid; gap: 14px; }
.gp-form label { display: grid; gap: 8px; color: var(--gp-muted); font-size: 13px; font-weight: 820; }
.gp-form input, .gp-form textarea {
  width: 100%;
  border: 1px solid var(--gp-line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.82);
  padding: 12px;
  resize: vertical;
}
.gp-output pre {
  min-height: 340px;
  max-height: 520px;
  margin: 16px 0;
  padding: 14px;
  overflow: auto;
  border: 1px solid rgba(72, 104, 136, 0.16);
  border-radius: 7px;
  background: #f5f9ff;
  color: #26374f;
  font-size: 12px;
}
.gp-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.gp-card-grid article { padding: 18px; }
.gp-card-grid span { color: var(--gp-cyan); font-weight: 900; }
.gp-card-grid b { display: block; margin: 8px 0; font-size: 18px; }
.gp-card-grid p { margin: 0; color: var(--gp-muted); }
.gp-video-band {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  padding: 18px;
  align-items: center;
}
.gp-video-band video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 7px;
}
.gp-manual ol {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  counter-reset: gp-steps;
  list-style: none;
}
.gp-manual li {
  counter-increment: gp-steps;
  padding: 18px 18px 18px 56px;
  position: relative;
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius);
  background: rgba(255, 255, 255, 0.76);
  color: var(--gp-muted);
}
.gp-manual li::before {
  content: counter(gp-steps);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--gp-blue);
  font-size: 12px;
  font-weight: 900;
}
.gp-manual code { color: var(--gp-blue); font-weight: 800; }
.gp-footer {
  width: min(1220px, calc(100% - 28px));
  margin: 0 auto;
  padding: 30px 0 46px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--gp-muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .gp-nav { align-items: flex-start; border-radius: 18px; padding: 14px; flex-wrap: wrap; }
  .gp-nav nav { order: 3; flex-basis: 100%; justify-content: flex-start; }
  .gp-hero, .gp-console-grid, .gp-two-col, .gp-video-band { grid-template-columns: 1fr; }
  .gp-visual { min-height: 360px; }
  .gp-flow-strip { grid-template-columns: repeat(4, minmax(120px, 1fr)); }
}

@media (max-width: 640px) {
  .gp-hero h1, .gp-section h2 { font-size: 38px; }
  .gp-card-grid { grid-template-columns: 1fr; }
  .gp-flow-strip { grid-template-columns: repeat(2, minmax(120px, 1fr)); }
  .gp-float-card { width: 142px; }
}
