/* GeoSightOps — 2-col tabs | Mac/iPhone slider */
.gso-show {
  margin: 28px 0 32px;
  max-width: 1100px;
  font-family: Inter, "IBM Plex Sans", Manrope, sans-serif;
}
.gso-show__head {
  margin: 0 0 16px;
  max-width: 42rem;
}
.gso-show__lbl {
  display: block;
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #61a5e5;
}
.gso-show__head h3 {
  margin: 0 0 10px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #00132b;
}
.gso-show__head p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  color: #656a71;
}
.gso-show__modes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}
.gso-show__mode {
  appearance: none;
  border: 1px solid rgba(0, 19, 43, 0.14);
  background: #f4f6f9;
  color: #00132b;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 3px;
  cursor: pointer;
}
.gso-show__mode[aria-selected="true"] {
  background: #00132b;
  border-color: #00132b;
  color: #ffffff;
}

/* 2-column: left tabs | right slider */
.gso-show__split {
  display: grid;
  grid-template-columns: minmax(160px, 210px) minmax(0, 1fr);
  gap: 20px 28px;
  align-items: start;
}
.gso-show__rail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}
.gso-show__tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
}
.gso-show__tabs[data-for="desktop"] { display: flex; }
.gso-show__tabs[data-for="mobile"] { display: none; }
.gso-show.is-mobile .gso-show__tabs[data-for="desktop"] { display: none; }
.gso-show.is-mobile .gso-show__tabs[data-for="mobile"] { display: flex; }

.gso-show__tab {
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  color: #656a71;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 3px;
  cursor: pointer;
  text-align: left;
  border-left: 2px solid transparent;
}
.gso-show__tab[aria-selected="true"] {
  color: #00132b;
  background: rgba(97, 165, 229, 0.14);
  border-left-color: #61a5e5;
}
.gso-show__tab:hover { color: #00132b; background: rgba(0, 19, 43, 0.04); }

.gso-show__canvas { min-width: 0; }
.gso-show__stage { display: none; }
.gso-show__stage.is-on { display: block; }

@media (max-width: 820px) {
  .gso-show__split { grid-template-columns: 1fr; }
  .gso-show__tabs { flex-direction: row; flex-wrap: wrap; }
  .gso-show__tab { border-left: none; border-bottom: 2px solid transparent; }
  .gso-show__tab[aria-selected="true"] { border-bottom-color: #61a5e5; }
}

/* Mobile device mode: center the iPhone, tabs stay usable */
.gso-show.is-mobile .gso-show__split {
  grid-template-columns: minmax(140px, 180px) minmax(0, 1fr);
}
.gso-show.is-mobile .gso-phone-wrap {
  justify-content: center;
  width: 100%;
}
@media (max-width: 820px) {
  .gso-show.is-mobile .gso-show__split { grid-template-columns: 1fr; }
}

.gso-mac {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 0;
}
.gso-mac__lid {
  position: relative;
  background: #1c1f26;
  border-radius: 14px 14px 0 0;
  padding: 10px 10px 8px;
  box-shadow: 0 18px 48px rgba(0, 19, 43, 0.22);
}
.gso-mac__camera {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0a0c10;
  z-index: 2;
}
.gso-mac__screen {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #0b1220;
  aspect-ratio: 16 / 10;
}
.gso-mac__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  margin: 0;
}
.gso-mac__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.gso-mac__slide img,
.gso-mac__slide video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #0b1220;
  border: 0;
}
.gso-mac__nav {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
}
.gso-mac__nav button {
  pointer-events: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(0, 19, 43, 0.55);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.gso-mac__base {
  height: 12px;
  margin: 0 auto;
  width: 104%;
  margin-left: -2%;
  background: #c5cad2;
  border-radius: 0 0 10px 10px;
  position: relative;
}
.gso-mac__base::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 18%;
  height: 5px;
  background: #9aa1ab;
  border-radius: 0 0 4px 4px;
}

.gso-phone-wrap {
  display: flex;
  justify-content: center;
  padding: 8px 0 12px;
}
.gso-phone {
  position: relative;
  width: min(260px, 72vw);
  aspect-ratio: 9 / 19.4;
  padding: 12px;
  border-radius: 42px;
  background: #0c0e12;
  border: 1px solid #3a3f4a;
  box-shadow: 0 22px 48px rgba(11, 18, 32, 0.28);
}
.gso-phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #000;
}
.gso-phone__screen::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 22%;
  height: 4px;
  border-radius: 999px;
  background: #0a0a0a;
  z-index: 6;
  pointer-events: none;
  box-shadow: 0 0 0 0.5px rgba(255,255,255,0.12);
}
.gso-phone__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  margin: 0;
}
.gso-phone__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.gso-phone__slide img,
.gso-phone__slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.gso-phone__slide.is-mobile-ui img,
.gso-phone__slide.is-mobile-ui video {
  object-fit: cover;
  object-position: center top;
  background: #0b1220;
}
.gso-phone__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.gso-phone__nav button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 19, 43, 0.18);
  background: #f4f6f9;
  color: #00132b;
  cursor: pointer;
  font-size: 18px;
}

.gso-show__meta {
  margin: 16px 0 0;
  text-align: left;
}
.gso-show__meta strong {
  display: block;
  font-family: Manrope, Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #00132b;
  margin-bottom: 6px;
}
.gso-show__meta span {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  color: #656a71;
}
