@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800&display=swap');

:root {
  --ink: #121212;
  --primary: #3d60c9;
  --primary-2: #5b7ddf;
  --accent: #5b7ddf;
  --gradient-blue: linear-gradient(135deg, #3d60c9 0%, #5b7ddf 100%);
  --surface: #f5f6f8;
  --surface-2: #eceef2;
  --white: #ffffff;
  --line: rgba(19, 19, 19, 0.1);
  --wrap: min(1180px, calc(100% - 2.75rem));
  --font-heading: "Work Sans", system-ui, sans-serif;
  --heading-weight: 500;
  --font-body: "Work Sans", system-ui, sans-serif;
  --text-body: #212529;
  --text-heading: #000000;
  --shadow-sm: 0 4px 20px rgba(61, 96, 201, 0.08);
  --shadow-md: 0 16px 48px rgba(61, 96, 201, 0.12);
  --shadow-lg: 0 28px 70px rgba(61, 96, 201, 0.16);
  --radius: 14px;
  --radius-sm: 10px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 19.2px;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  font-kerning: auto;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.hero-kicker,
.page-hero h1,
.page-hero h2,
.page-hero h3,
.stat strong {
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
}

h1, h2, h3, h4,
.cap h3,
.quick-card h3,
.timeline-item h3,
.endpoint-card h3,
.portfolio-card h3,
.info-card h3,
.feature-table th,
.tile-name,
.map-group-title,
.footer-col h4,
.kicker,
.pricing h2,
.price-extra h3,
.compat-card h2,
.compat-card h3,
.video-band h3,
.close-inner h2,
.close-inner h3,
.doc-section h4 {
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  font-style: normal;
  font-variant: normal;
  font-kerning: auto;
  font-optical-sizing: auto;
  font-stretch: 100%;
}

h1, h2, h3, h4 {
  line-height: 1.1;
  margin: 0 0 0.85rem;
  letter-spacing: normal;
  color: var(--text-heading);
}

h1 { font-size: clamp(2.25rem, 5vw, 60px); }
h2 { font-size: clamp(1.75rem, 3.2vw, 42px); }
h3 { font-size: clamp(1.25rem, 2.2vw, 28px); }
h4 { font-size: 22px; }
p { margin: 0 0 1rem; color: var(--text-body); font-weight: 400; }
ul { margin: 0 0 1rem; padding-left: 1.15rem; color: var(--text-body); }
li { color: var(--text-body); font-weight: 400; }
li + li { margin-top: 0.4rem; }

.wrap { width: var(--wrap); margin-inline: auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  font-weight: var(--heading-weight);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-label::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-right: auto;
  font-size: 1.02rem;
  color: var(--ink);
}

.brand-text {
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.nav { display: flex; align-items: center; gap: 0.15rem; }

.nav-link {
  padding: 0.55rem 0.9rem;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 400;
  color: rgba(20, 41, 60, 0.82);
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: rgba(87, 164, 232, 0.14);
}

.nav-drop { position: relative; }

.nav-drop-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  border: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 400;
  color: rgba(20, 41, 60, 0.82);
  cursor: pointer;
  border-radius: 999px;
}

.nav-drop-btn::after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
}

.nav-drop.open .nav-drop-btn { color: var(--primary); background: rgba(87, 164, 232, 0.14); }
.nav-drop.open .nav-drop-btn::after { transform: rotate(-135deg) translateY(1px); }

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 240px;
  padding: 0.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.22s ease;
}

.nav-drop.open .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.nav-drop-menu a {
  display: block;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  border-radius: 8px;
}

.nav-drop-menu a:hover {
  background: var(--surface);
  color: var(--primary);
}

.btn-header {
  display: none;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  padding: 0.45rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 2px;
}

/* Buttons */
.btn, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-transform: none;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(61, 96, 201, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover, .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(61, 96, 201, 0.38);
  color: var(--white);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 0;
  padding: 0.2rem 0.2rem 0.2rem 1.15rem;
  background: #ffffff;
  color: #131313;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 18.8313px;
  font-weight: 500;
  font-style: normal;
  font-variant: normal;
  letter-spacing: normal;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  border: 0;
  border-radius: 8.5px;
  overflow: visible;
  box-shadow: 0 2px 8px rgba(20, 35, 58, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(61, 96, 201, 0.18);
  color: #131313;
}

.btn-cta-label {
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin: 0;
  line-height: 1;
  color: #131313;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 18.8313px;
  font-weight: 500;
  font-style: normal;
}

.btn-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  min-width: 2.15rem;
  height: 2.15rem;
  border-radius: 7px;
  background: #ffffff;
  flex-shrink: 0;
}

.btn-cta-arrow img {
  display: block;
  width: 20px;
  height: auto;
  filter: none;
}

/* View Capabilities only — color reverse: blue button + white square arrow box */
.btn-cta-ref {
  background: linear-gradient(135deg, #3d60c9 0%, #5b7ddf 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(61, 96, 201, 0.28);
}

.btn-cta-ref .btn-cta-label {
  color: #ffffff;
}

.btn-cta-ref:hover {
  color: #ffffff;
  box-shadow: 0 5px 14px rgba(61, 96, 201, 0.35);
}

.btn-cta-ref .btn-cta-arrow {
  background: #ffffff;
  border-radius: 7px;
}

.btn-cta-ref .btn-cta-arrow img {
  filter: none;
}

/* Feature-page teal CTA. Use only on Windows Tile Server buttons off feature pages. */
.btn-cta.btn-cta-feat,
a.btn-cta-feat {
  background: #056F91 !important;
  background-image: none !important;
  color: #ffffff !important;
  border-radius: 9px !important;
  box-shadow: 0 10px 26px rgba(5, 111, 145, 0.28) !important;
}
.btn-cta-feat:hover {
  background: #045a77 !important;
  color: #ffffff !important;
  box-shadow: 0 14px 32px rgba(5, 111, 145, 0.4) !important;
}
.btn-cta-feat .btn-cta-label {
  color: #ffffff !important;
}
.btn-cta-feat .btn-cta-arrow {
  background: #ffffff !important;
  border-radius: 7px !important;
}
.btn-cta-feat .btn-cta-arrow img {
  filter: none !important;
}

/* Silver CTA — light metal gray body + blue square arrow */
.btn-cta-silver {
  background: #d4d7dc;
  color: #131313;
  box-shadow: 0 2px 8px rgba(20, 35, 58, 0.1);
}

.btn-cta-silver .btn-cta-label {
  color: #131313;
}

.btn-cta-silver:hover {
  background: #c8ccd2;
  color: #131313;
  box-shadow: 0 5px 14px rgba(20, 35, 58, 0.14);
}

/* Secondary — same size/radius as .btn-cta; dark body + silver rim */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: calc(2.15rem + 0.4rem);
  padding: 0 1.35rem;
  box-sizing: border-box;
  color: #ffffff;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 18.8313px;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  text-transform: capitalize;
  border: none;
  border-radius: 8.5px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(#66666640, #66666626, #666666d9);
  border-radius: 8.5px;
  z-index: -1;
}

.btn-secondary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 5px);
  height: calc(100% - 5px);
  background-color: #191919;
  z-index: -1;
  border-radius: 6.5px;
  transition: background-color 0.15s ease-in;
}

.btn-secondary:hover {
  color: #ffffff;
}

.btn-secondary:hover::after {
  background-color: #2b2b2b;
}

a.btn-secondary {
  text-decoration: none;
}

.doc-section > h2 {
  margin-top: 0;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid rgba(61, 96, 201, 0.15);
}

.doc-section h3 {
  margin-top: 1.75rem;
  color: var(--text-heading);
}

.doc-section h3:first-child { margin-top: 0; }

.doc-section h4 {
  font-size: 20px;
  color: var(--text-heading);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.25rem;
  background: #d1d1d1;
  color: #131313;
  border: 0;
  border-radius: 8.5px;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 18.8313px;
  font-weight: 500;
  font-style: normal;
  font-variant: normal;
  letter-spacing: normal;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  transition: background 0.2s;
}

.btn-header { display: none; }

.btn-outline:hover {
  background: #c4c4c4;
  color: #131313;
  border-color: transparent;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.35rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  backdrop-filter: blur(8px);
  transition: background 0.2s;
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.18); }

/* Clean homepage layout */
.hero-clean {
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--line);
}

.hero-clean-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: var(--heading-weight);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-lead {
  font-size: 19.2px;
  font-weight: 400;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-product-shot {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.hero-product-shot img { width: 100%; height: auto; }

.content-flow {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.doc-section {
  padding: 2.75rem 0;
  border-bottom: 1px solid var(--line);
}

.doc-section-tint {
  background: var(--surface);
  margin-inline: -1.25rem;
  padding-inline: 1.25rem;
}

.doc-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}

.callout-inline {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border-left: 4px solid var(--accent);
  font-weight: 600;
}

.product-photo-band {
  margin: 0;
  padding: 0;
  background: var(--ink);
}

.product-photo-band img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* Data showcase + image slider */
.data-showcase {
  width: 100%;
  margin: 0;
}

.data-showcase-banner {
  padding: 2.25rem 0;
  background: linear-gradient(90deg, #352f2f 0%, #393939 100%);
}

.data-showcase-banner h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.35;
  text-align: center;
}

.data-showcase-body {
  background: var(--white);
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.data-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.data-showcase-text {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.data-showcase-text h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.data-showcase-text p {
  margin: 0;
  font-size: 19.2px;
}

.image-slider {
  position: relative;
  background: #eef4fb;
  min-height: 360px;
}

.image-slider-viewport {
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.image-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s ease;
}

.image-slide {
  flex: 0 0 100%;
  margin: 0;
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.image-slide img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(20, 41, 60, 0.12);
}

.image-slide img[src*="tak-server-capabilities"],
.image-slide img[src*="game-engine-vr"] {
  background: #0a0a0a;
}

/* Game Engine highlighted section */
.game-engine-highlight {
  width: 100%;
  margin: 0;
  padding: 2rem 0 5rem;
  background:
    radial-gradient(ellipse 70% 55% at 15% 0%, rgba(20, 61, 100, 0.35), transparent 60%),
    radial-gradient(ellipse 50% 45% at 95% 100%, rgba(126, 7, 20, 0.18), transparent 55%),
    linear-gradient(165deg, #352f2f 0%, #2a2525 45%, #393939 100%);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.game-engine-highlight-inner {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.game-engine-highlight-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.game-engine-highlight-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.2;
}

.game-engine-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.game-engine-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.35rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}

.game-engine-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(28, 84, 132, 0.55);
  transform: translateY(-3px);
}

.game-engine-card-icon {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #143d64 0%, #1c5484 100%);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
}

.game-engine-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.55;
}

.game-engine-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 220px 220px 180px;
  gap: 0.85rem;
}

.mosaic-cell {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  background: #0a0a0a;
}

.mosaic-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.mosaic-cell:hover img {
  transform: scale(1.04);
}

.mosaic-vr {
  grid-column: 1 / span 6;
  grid-row: 1 / span 2;
}

.mosaic-vr img {
  object-fit: contain;
  background: #000000;
}

.mosaic-castle {
  grid-column: 1 / span 12;
  grid-row: 1 / span 2;
}

.mosaic-desert {
  grid-column: 1 / span 4;
  grid-row: 3;
}

.mosaic-terrain {
  grid-column: 5 / span 3;
  grid-row: 3;
}

.mosaic-mountains {
  grid-column: 8 / span 3;
  grid-row: 3;
}

.mosaic-forest {
  grid-column: 11 / span 2;
  grid-row: 3;
}

.game-engine-cta {
  margin: 0.5rem 0 0;
  text-align: center;
}

.btn-game-engine {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.75rem;
  background: linear-gradient(135deg, #3d60c9 0%, #5b7ddf 100%);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  border: 0;
  box-shadow: 0 8px 24px rgba(61, 96, 201, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-game-engine:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(61, 96, 201, 0.45);
  color: #ffffff;
}

/* Integration / tested software band */
.integration-band {
  width: 100%;
  padding: 4rem 0;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--surface) 100%);
  border-block: 1px solid var(--line);
}

.integration-band-inner {
  max-width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.integration-band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.integration-panel {
  margin: 0;
  padding: 2rem 2.15rem;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(20, 41, 60, 0.08);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.integration-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.integration-panel-gis::before {
  background: linear-gradient(90deg, #7e0714 0%, #8f1416 100%);
}

.integration-panel-xr::before {
  background: linear-gradient(90deg, #143d64 0%, #1c5484 100%);
}

.integration-panel p {
  margin: 0;
  font-size: 19.2px;
  line-height: 1.65;
  color: var(--text-body);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 50%;
  background: rgba(20, 41, 60, 0.55);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
}

.slider-btn:hover {
  background: var(--primary);
}

.slider-prev { left: 0.75rem; }
.slider-next { right: 0.75rem; }

.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.85rem;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  z-index: 2;
}

.slider-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.slider-dot.is-active {
  background: var(--primary);
  transform: scale(1.2);
}

.inline-product-photo {
  margin: 1.5rem 0;
  text-align: center;
}

.inline-product-photo img {
  max-width: min(100%, 720px);
  width: 100%;
  height: auto;
  border-radius: 0;
  border: 0;
  background: transparent;
}

.cap {
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.cap h3 { margin-bottom: 0.5rem; }
.cap p { margin: 0; }

@media (max-width: 960px) {
  .hero-clean-grid, .doc-columns, .pricing-panel, .pricing-showcase, .data-showcase-grid { grid-template-columns: 1fr; }
  .pricing-panel-main { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-product-shot { order: -1; }
  .data-showcase-text { padding: 2rem 1.25rem 2.5rem; }
  .image-slider, .image-slider-viewport, .image-slide { min-height: 280px; }
  .game-engine-cards { grid-template-columns: 1fr; }
  .game-engine-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .mosaic-vr,
  .mosaic-castle,
  .mosaic-desert,
  .mosaic-terrain,
  .mosaic-mountains,
  .mosaic-forest {
    grid-column: auto;
    grid-row: auto;
    min-height: 200px;
  }
  .mosaic-vr,
  .mosaic-castle {
    grid-column: 1 / -1;
    min-height: 220px;
  }
  .integration-band-grid { grid-template-columns: 1fr; }
  .integration-panel { padding: 1.5rem 1.25rem; }
}

.integration-band-grid-solo {
  grid-template-columns: 1fr;
  max-width: 52rem;
}

/* WiFi / ATAK compatibility — text panel + drone photo */
.compat-showcase {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 1.5rem 0 1.25rem;
  padding-left: 0;
}

.compat-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  align-items: stretch;
  width: 100%;
  min-height: 0;
}

.compat-showcase-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  margin: 1rem 0;
  margin-right: -2.5rem; /* text block image ke qareeb */
  padding-top: 1.35rem;
  padding-right: 0.75rem;
  padding-bottom: 1.35rem;
  padding-left: 18em;
  background: #f7f9fc;
  border: 2px solid #7b68c8;
  line-height: 1.45;
}

.compat-showcase-copy h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.28rem, 2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-heading);
  max-width: 28rem;
}

.compat-showcase-copy h3 {
  margin: 0 0 0.45rem;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--text-heading);
  max-width: 34rem; /* fewer lines */
  line-height: 1.35;
}

.compat-showcase-copy p {
  margin: 0 0 0.45rem;
  font-size: 17.5px;
  color: var(--text-body);
  max-width: 34rem; /* "more)." upar wali line pe */
  line-height: 1.4;
}

.compat-showcase-copy p:last-child {
  margin-bottom: 0;
}

.compat-showcase-copy::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48px;
  transform: translateX(55%);
  background: linear-gradient(to right, #f7f9fc 0%, rgba(247, 249, 252, 0.35) 40%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.compat-showcase-media {
  position: relative;
  margin: 0;
  min-width: 0;
  width: 100%;
  max-width: none;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
}

.compat-showcase-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 32%;
  z-index: 2;
  background: linear-gradient(to right, #f0f5f9 0%, rgba(240, 245, 249, 0.85) 28%, rgba(240, 245, 249, 0.35) 55%, transparent 100%);
  pointer-events: none;
}

.compat-showcase-media img {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  min-height: 280px !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center;
  display: block !important;
  margin: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 22%);
  mask-image: linear-gradient(to right, transparent 0%, black 22%);
}

@media (max-width: 960px) {
  .compat-showcase {
    padding: 1.25rem 0 0;
  }

  .compat-showcase-grid {
    grid-template-columns: 1fr;
  }

  .compat-showcase-copy {
    order: 1;
    width: 95%;
    max-width: 95%;
    margin: 0 auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .compat-showcase-copy h2,
  .compat-showcase-copy h3,
  .compat-showcase-copy p {
    max-width: none;
  }

  .compat-showcase-copy::after {
    display: none;
  }

  .compat-showcase-media {
    order: 2;
  }

  .compat-showcase-media::before {
    display: none;
  }

  .compat-showcase-media {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    margin-inline: 0;
  }

  .compat-showcase-media img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 200px !important;
    max-height: 280px !important;
    object-fit: cover !important;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* Legacy hero (subpages) */
.hero-premium {
  position: relative;
  padding: 5.5rem 0 5rem;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(87, 164, 232, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(19, 87, 168, 0.4), transparent 50%),
    linear-gradient(165deg, var(--ink) 0%, #0c3558 45%, var(--primary) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black 20%, transparent 90%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0.45rem 1rem 0.45rem 0.55rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
}

.hero-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 12px #4ade80;
}

.hero-premium h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 14ch;
}

.hero-premium .hero-sub {
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 36rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-actions .btn-primary {
  /* uses shared white + square arrow CTA */
}

.hero-actions .btn-primary:hover {
  color: #131313;
}

.hero-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(87, 164, 232, 0.45), transparent 60%);
  pointer-events: none;
}

.hero-visual img {
  position: relative;
  width: 100%;
  height: auto;
}

.store-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.store-row img {
  width: 158px;
  height: auto;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.25));
  transition: transform 0.2s;
}
.store-row a:hover img { transform: translateY(-3px); }

.platform-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.platform-strip span {
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

/* Quick links bento */
.quick-links {
  margin-top: -3rem;
  position: relative;
  z-index: 5;
  padding-bottom: 1rem;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.quick-card {
  position: relative;
  padding: 1.5rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}

.quick-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  opacity: 0;
  transition: opacity 0.25s;
}

.quick-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(87, 164, 232, 0.45);
}

.quick-card:hover::before { opacity: 1; }

.quick-card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.quick-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
}

.quick-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: var(--surface);
  border-radius: 10px;
  color: var(--primary);
  font-size: 1.1rem;
}

/* Sections */
.section { padding: 5rem 0; }
.section-white { background: var(--white); }
.section-tint { background: var(--surface); }

.section-intro { max-width: 720px; margin-bottom: 2.75rem; }
.section-intro p { font-size: 1.05rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.stack { display: flex; flex-direction: column; gap: 1.5rem; }
.stack-lg { display: flex; flex-direction: column; gap: 2.25rem; }
.mt { margin-top: 2.5rem; }

.content-panel {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.section-tint .content-panel { background: var(--white); }

.list-check, .list-plain { list-style: none; padding: 0; margin: 0 0 1.15rem; }

.list-check li, .list-plain li {
  position: relative;
  padding-left: 1.5rem;
  font-family: var(--font-body);
  color: var(--text-body);
  font-weight: 400;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(87, 164, 232, 0.25);
}

.list-plain li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.callout {
  padding: 1.75rem;
  background: linear-gradient(135deg, rgba(87, 164, 232, 0.12), rgba(19, 87, 168, 0.06));
  border: 1px solid rgba(87, 164, 232, 0.3);
  border-radius: var(--radius);
}

.callout p { margin: 0; font-weight: 600; color: var(--ink); font-size: 1.05rem; }

.prose { max-width: 820px; }

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.cap {
  padding: 1.65rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.25s, box-shadow 0.25s;
}

.cap:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cap-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  border-radius: 12px;
  color: var(--primary);
}

.cap h3 { margin-bottom: 0.55rem; color: var(--text-heading); }
.cap p { font-family: var(--font-body); font-size: 19.2px; font-weight: 400; color: var(--text-body); margin-bottom: 0.45rem; }

.tak-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.tak-grid p {
  margin: 0;
  padding: 1.35rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--accent);
  color: var(--ink);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

.video-band {
  margin-top: 1.75rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--ink), var(--primary));
  border-radius: var(--radius);
  color: var(--white);
}

.video-band h3 { color: var(--accent); margin-bottom: 0.5rem; }
.video-band p { margin: 0; color: rgba(255, 255, 255, 0.9); }

.media-band {
  margin: 0;
  padding: 3rem 1rem;
  background: var(--ink);
  text-align: center;
}

.media-band img {
  width: min(900px, 100%);
  margin-inline: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.media-inline { margin-top: 2rem; text-align: center; }
.media-inline img {
  width: min(860px, 100%);
  margin-inline: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.pricing-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) 1.05fr;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(19, 87, 168, 0.18);
  border: 1px solid rgba(19, 87, 168, 0.15);
}

.pricing-showcase-left {
  padding: 2.75rem 2.5rem;
  background: linear-gradient(145deg, #352f2f 0%, #393939 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.pricing-tag {
  display: inline-block;
  width: fit-content;
  padding: 0.35rem 0.85rem;
  background: linear-gradient(135deg, #143d64 0%, #1c5484 100%);
  border: 0;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: var(--heading-weight);
  letter-spacing: 0.16em;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(20, 61, 100, 0.25);
}

.pricing-amount {
  margin: 0.25rem 0 0;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: var(--heading-weight);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.03em;
}

.pricing-currency {
  font-size: 0.55em;
  vertical-align: super;
  opacity: 0.9;
}

.pricing-period {
  font-size: 0.32em;
  font-weight: var(--heading-weight);
  opacity: 0.85;
  margin-left: 0.15rem;
}

.pricing-trial {
  display: inline-block;
  width: fit-content;
  padding: 0.4rem 0.9rem;
  background: rgba(87, 164, 232, 0.25);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: #e8f4ff;
}

.pricing-copy {
  margin: 0.5rem 0 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  max-width: 26rem;
}

.pricing-showcase-right {
  padding: 2.75rem 2.5rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-showcase-right h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--text-heading);
}

.pricing-showcase-right p {
  margin: 0 0 0.85rem;
  color: var(--text-body);
}

.pricing-showcase-right p:last-child {
  margin-bottom: 0;
}

.pricing-note {
  padding: 1rem 1.15rem;
  background: var(--surface);
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  font-size: 0.98rem;
}

.pricing-panel {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(19, 87, 168, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.pricing-panel-main {
  padding: 2.5rem 2.25rem;
  background: linear-gradient(160deg, var(--surface) 0%, var(--white) 55%, var(--white) 100%);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.pricing-panel-main::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--primary));
}

.pricing-panel-main h2 {
  margin-bottom: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.pricing-panel-main .price-line {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: var(--heading-weight);
  line-height: 1.35;
  color: var(--text-heading);
  text-align: left;
}

.pricing-panel-extra {
  padding: 2.5rem 2.25rem;
  text-align: left;
}

.pricing-panel-extra h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.pricing-panel-extra p {
  margin-bottom: 0.85rem;
}

.pricing-panel-extra p:last-child {
  margin-bottom: 0;
}

/* Legacy pricing (subpages if any) */
.pricing {
  width: 100%;
  margin-inline: 0;
  text-align: left;
  padding: 2.5rem 2.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.pricing h2 {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.price-line {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: var(--heading-weight);
  color: var(--ink);
  margin: 1rem 0 1.75rem;
}

.price-extra { text-align: left; border-top: 1px solid var(--line); padding-top: 1.5rem; margin-top: 1.5rem; }

.tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.75rem 0 1rem;
}

.tools span {
  padding: 0.55rem 1.15rem;
  background: linear-gradient(135deg, #e8edf1 0%, #d2d7da 100%);
  border: 0;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  font-size: 0.85rem;
  color: #352f2f;
  box-shadow: 0 4px 12px rgba(210, 215, 218, 0.45);
}

.tools-app-badges span:nth-child(1),
.tools-app-badges span:nth-child(3) {
  background: linear-gradient(135deg, #e8edf1 0%, #d2d7da 100%);
  color: #352f2f;
  box-shadow: 0 4px 12px rgba(210, 215, 218, 0.45);
}

.tools-app-badges span:nth-child(2) {
  background: linear-gradient(135deg, #352f2f 0%, #393939 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(53, 47, 47, 0.25);
}

.std-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
  margin-bottom: 2rem;
}

.std-row + p {
  margin-top: 0;
}

.std-row span {
  padding: 0.55rem 1.15rem;
  border: 0;
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(53, 47, 47, 0.15);
}

.std-row span:nth-child(1) {
  background: linear-gradient(135deg, #7e0714 0%, #8f1416 100%);
  color: #ffffff;
}

.std-row span:nth-child(2) {
  background: linear-gradient(135deg, #e8edf1 0%, #d2d7da 100%);
  color: #352f2f;
  box-shadow: 0 4px 12px rgba(210, 215, 218, 0.45);
}

.std-row span:nth-child(3) {
  background: linear-gradient(135deg, #352f2f 0%, #393939 100%);
  color: #ffffff;
}

.kicker {
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0.65rem;
}

.lead { font-family: var(--font-body); font-size: 19.2px; font-weight: 400; color: var(--text-body); max-width: 900px; }
.edge-block { padding-top: 2rem; border-top: 1px solid var(--line); }

.section-close {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--ink), #0a1f2e);
  text-align: center;
  color: var(--white);
}

.close-inner { max-width: 580px; margin-inline: auto; }
.close-icon { width: 84px; height: 84px; margin: 0 auto 1.35rem; border-radius: 20px; box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.close-inner h2 { color: var(--accent); font-size: clamp(1.6rem, 3vw, 2.2rem); }
.close-inner h3 { color: var(--white); }
.close-inner p { color: rgba(255, 255, 255, 0.82); margin-bottom: 1.75rem; }

/* Subpages */
.page-hero {
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(87, 164, 232, 0.25), transparent 50%),
    linear-gradient(135deg, var(--ink) 0%, var(--primary) 100%);
  color: var(--white);
}

.page-hero h1,
.page-hero h2,
.page-hero h3 {
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  color: var(--white);
}
.page-hero .lead { color: rgba(255, 255, 255, 0.85); margin: 0; font-weight: 500; }

.matrix-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-md); }

.feature-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.92rem;
}

.feature-table th,
.feature-table td {
  padding: 1rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.feature-table th {
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.feature-table td:nth-child(2),
.feature-table td:nth-child(3),
.feature-table td:nth-child(4) {
  text-align: center;
  width: 100px;
  font-weight: var(--heading-weight);
  color: var(--primary);
}

.feature-table tr:hover td { background: var(--surface); }
.feature-table tr:last-child td { border-bottom: 0; }

.timeline { display: flex; flex-direction: column; gap: 1.25rem; }

.timeline-item {
  padding: 1.75rem 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
}

.timeline-item h3 { margin-bottom: 0.65rem; }
.timeline-item ul { margin: 0; }

.endpoint-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.endpoint-card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}

.endpoint-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.endpoint-card h3 { font-size: 1.02rem; margin-bottom: 0.5rem; }
.endpoint-card p { margin: 0; font-size: 0.9rem; }

.price-badge {
  display: inline-block;
  margin: 1rem 0;
  padding: 0.5rem 1.25rem;
  background: var(--surface);
  border-radius: 999px;
  font-size: 1.5rem;
  font-weight: var(--heading-weight);
  color: var(--primary);
}

.video-frame {
  margin: 2rem auto;
  max-width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  max-height: min(70vh, 540px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ink);
}

.video-frame video {
  width: 100%;
  height: 100%;
  max-height: min(70vh, 540px);
  object-fit: contain;
  display: block;
  background: #000;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.portfolio-card {
  padding: 1.65rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}

.portfolio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.portfolio-card h3 { margin-bottom: 0.5rem; }
.portfolio-card p { margin: 0; font-size: 0.9rem; }

.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; }

.contact-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  margin-bottom: 1.1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 19.2px;
  font-weight: 400;
  color: var(--text-body);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(87, 164, 232, 0.2);
}

.contact-form textarea { min-height: 150px; resize: vertical; }

.info-card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.info-card h3 { margin-bottom: 0.4rem; }
.info-card p { margin: 0; }

.use-case-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.use-case {
  padding: 1.25rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}

/* Maps */
.maps-theme .tile-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.maps-theme .tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.maps-theme .tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.maps-theme .tile-media {
  aspect-ratio: 16/10;
  background: var(--ink);
  overflow: hidden;
}

.maps-theme .tile-media img { width: 100%; height: 100%; object-fit: cover; }

.maps-theme .tile-name {
  margin: 0;
  padding: 1rem 1.1rem;
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  font-size: 0.92rem;
  color: var(--ink);
  border-top: 3px solid var(--accent);
}

.map-group-title {
  margin: 2.5rem 0 1rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: var(--heading-weight);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
}

.gallery-grid img { width: 100%; height: 140px; object-fit: cover; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--surface);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  font-weight: var(--heading-weight);
}

.footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { color: rgba(241, 247, 255, 0.78); font-size: 0.92rem; font-weight: 500; }
.footer-col a:hover { color: var(--accent); }

.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.15rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-bottom p { margin: 0; font-size: 0.85rem; color: rgba(241, 247, 255, 0.55); }
.footer-bottom a { color: var(--accent); font-weight: 600; }

/* Stats strip */
.stats-bar {
  position: relative;
  z-index: 6;
  margin-top: -2.5rem;
  padding-bottom: 0.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(87, 164, 232, 0.35);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.stat {
  padding: 1.35rem 1.25rem;
  background: var(--white);
  text-align: center;
}

.stat strong {
  display: block;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: var(--heading-weight);
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(20, 41, 60, 0.65);
  letter-spacing: 0.02em;
}

/* Showcase layouts */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.showcase-reverse { direction: rtl; }
.showcase-reverse > * { direction: ltr; }

.showcase-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.showcase-media img {
  width: 100%;
  height: auto;
  display: block;
}

.showcase-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 41, 60, 0.08));
  pointer-events: none;
}

.showcase-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: var(--heading-weight);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.dark-band {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(87, 164, 232, 0.18), transparent 55%),
    linear-gradient(165deg, var(--ink) 0%, #0c3558 100%);
  color: var(--white);
}

.dark-band h2, .dark-band h3 { color: var(--white); }
.dark-band p, .dark-band li { color: rgba(255, 255, 255, 0.82); }

.standards-band {
  padding: 2.5rem 0;
  background: var(--ink);
  border-block: 1px solid rgba(87, 164, 232, 0.25);
}

.standards-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
}

.standards-inner p {
  margin: 0;
  font-weight: var(--heading-weight);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.standards-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.standards-pills span {
  padding: 0.6rem 1.15rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(87, 164, 232, 0.35);
  border-radius: 999px;
  font-weight: var(--heading-weight);
  font-size: 0.88rem;
  color: var(--white);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature-chip {
  padding: 1.25rem 1.35rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.feature-chip p {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.pricing-glow {
  position: relative;
  border-radius: 22px;
  padding: 2px;
  background: linear-gradient(135deg, var(--accent), var(--primary), var(--accent));
  box-shadow: 0 24px 60px rgba(19, 87, 168, 0.22);
}

.pricing-glow .pricing {
  margin: 0;
  border: 0;
  border-radius: 20px;
}

.compatibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.compat-card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.compat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.compat-card h3 {
  color: var(--ink);
  margin-bottom: 0.65rem;
}

.compat-card p { margin: 0; font-size: 0.92rem; }

.maps-theme .map-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.maps-theme .map-jump a {
  padding: 0.55rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  transition: background 0.2s;
}

.maps-theme .map-jump a:hover {
  background: rgba(255, 255, 255, 0.22);
}

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.is-in { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 960px) {
  .nav, .btn-header { display: none; }
  .nav-toggle { display: block; }
  .site-header.menu-open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 0.85rem;
    box-shadow: var(--shadow-md);
  }
  .site-header.menu-open .nav-drop-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding-left: 0.75rem;
  }
  .hero-grid, .split, .cap-grid, .tak-grid, .quick-grid,
  .endpoint-grid, .portfolio-grid, .contact-grid, .use-case-list,
  .maps-theme .tile-grid, .gallery-grid, .showcase, .stats-grid,
  .feature-row, .compatibility-grid { grid-template-columns: 1fr; }
  .showcase-reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr; }
  .quick-links { margin-top: 2rem; }
}

@media (max-width: 600px) {
  :root { --wrap: calc(100% - 1.35rem); }
  .hero-premium { padding: 4rem 0 3rem; }
  .section { padding: 3.5rem 0; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   Release Notes — Meta DINOv3 Performance-style light theme
   ========================================================= */
.page-release {
  --rn-bg: #f0f5f9;
  --rn-panel: #ffffff;
  --rn-head: #d7e6f4;
  --rn-highlight: #eaf3fb;
  --rn-text: #14233a;
  --rn-muted: #4a5b70;
  --rn-line: rgba(20, 35, 58, 0.08);
  background: var(--rn-bg);
  color: var(--rn-muted);
  font-family: "Work Sans", system-ui, sans-serif;
}

.page-release .site-header {
  background: rgba(240, 245, 249, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rn-line);
}

.page-release .brand,
.page-release .brand-text,
.page-release .nav-link,
.page-release .nav-drop-btn {
  color: var(--rn-text);
}

.page-release .nav-link,
.page-release .nav-drop-btn {
  font-size: 15.5px;
  font-weight: 400;
  color: rgba(20, 35, 58, 0.72);
}

.page-release .nav-link:hover,
.page-release .nav-link.active,
.page-release .nav-drop-btn:hover {
  color: var(--rn-text);
  background: rgba(20, 35, 58, 0.06);
}

.page-release .nav-toggle span {
  background: var(--rn-text);
}

.page-release .site-header.menu-open .nav {
  background: #ffffff;
  border: 1px solid var(--rn-line);
}

.release-main {
  padding: 3.5rem 0 5rem;
}

.release-intro {
  max-width: 820px;
  margin: 0 auto 2.75rem;
  padding: 0 1.25rem;
  text-align: center;
}

.release-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3d60c9;
}

.release-intro h1 {
  margin: 0 0 1.15rem;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--rn-text);
}

.release-lead {
  margin: 0 auto;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--rn-muted);
}

.release-panel {
  background: var(--rn-panel);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(20, 35, 58, 0.08);
  border: 1px solid rgba(20, 35, 58, 0.1);
}

.release-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.release-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #ffffff;
}

.release-table th,
.release-table td {
  border: 1px solid rgba(20, 35, 58, 0.07);
  vertical-align: top;
  text-align: left;
}

.release-table thead th {
  padding: 0.95rem 1.25rem;
  background: var(--rn-head);
  border-color: rgba(20, 35, 58, 0.08);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rn-text);
}

.release-table tbody td {
  padding: 1.25rem;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--rn-muted);
  border-color: rgba(20, 35, 58, 0.07);
}

/* Alternate: light / slightly darker / light / slightly darker */
.release-table tbody tr:nth-child(odd) td {
  background: #ffffff;
}

.release-table tbody tr:nth-child(even) td {
  background: #eaf2f8;
}

.release-table tbody tr.is-featured td {
  background: #f7fbfe;
}

.release-table tbody tr.is-featured:nth-child(even) td {
  background: #e8f1f9;
}

.release-table thead th:first-child {
  background: #dfeaf6;
}

.release-table tbody tr:nth-child(odd) td:first-child {
  background: #f4f8fc;
}

.release-table tbody tr:nth-child(even) td:first-child {
  background: #dde8f3;
}

.release-table th:nth-child(1),
.release-table td:nth-child(1) {
  width: 160px;
}

.release-table th:nth-child(2),
.release-table td:nth-child(2) {
  width: 140px;
  font-weight: 600;
  color: var(--rn-text);
}

.release-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.release-meta strong {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--rn-text);
}

.release-date {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--rn-muted);
}

.release-table td h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--rn-text);
}

.release-table td p {
  margin: 0 0 0.55rem;
  color: var(--rn-muted);
}

.release-table td ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.release-table td li {
  position: relative;
  padding-left: 1.35rem;
}

.release-table td li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: #3d60c9;
  font-weight: 600;
  font-size: 0.95em;
  line-height: 1.65;
}

.release-table td li + li {
  margin-top: 0.55rem;
}

.page-release .site-footer {
  background: #0f1722;
}

@media (max-width: 800px) {
  .release-table {
    table-layout: auto;
    min-width: 680px;
  }
}

/* Homepage — Meta DINOv3 light theme (NOT dark) */
.page-home {
  --meta-bg: #f0f5f9;
  --meta-panel: #ffffff;
  --meta-text: #14233a;
  --meta-muted: #4a5b70;
  --meta-line: rgba(20, 35, 58, 0.1);
  --meta-soft: #eaf2f8;
  color: var(--meta-muted);
  background: var(--meta-bg);
}

.page-home h1,
.page-home h2,
.page-home h3,
.page-home h4 {
  color: var(--meta-text);
}

.page-home p,
.page-home li,
.page-home .lead,
.page-home .hero-lead {
  color: var(--meta-muted);
}

.page-home .site-header {
  background: rgba(240, 245, 249, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--meta-line);
}

.page-home .brand,
.page-home .brand-text {
  color: var(--meta-text);
}

.page-home .nav-link,
.page-home .nav-drop-btn {
  color: rgba(20, 35, 58, 0.72);
  font-size: 15.5px;
  font-weight: 400;
}

.page-home .nav-link:hover,
.page-home .nav-link.active,
.page-home .nav-drop-btn:hover {
  color: var(--meta-text);
  background: rgba(20, 35, 58, 0.06);
}

.page-home .nav-drop.open .nav-drop-btn {
  color: var(--meta-text);
  background: rgba(61, 96, 201, 0.12);
}

.page-home .nav-drop-menu {
  background: #ffffff;
  border: 1px solid var(--meta-line);
  box-shadow: 0 16px 40px rgba(20, 35, 58, 0.12);
}

.page-home .nav-drop-menu a {
  color: var(--meta-muted);
}

.page-home .nav-drop-menu a:hover {
  color: var(--meta-text);
  background: var(--meta-soft);
}

.page-home .nav-toggle span {
  background: var(--meta-text);
}

.page-home .site-header.menu-open .nav {
  background: #ffffff;
  border: 1px solid var(--meta-line);
}

.page-home .hero-clean {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(61, 96, 201, 0.08), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--meta-bg) 100%);
  border-bottom: 1px solid var(--meta-line);
}

.page-home .hero-clean::before {
  display: none;
}

.page-home .hero-kicker {
  color: #3d60c9;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.page-home .hero-clean h1 {
  color: var(--meta-text);
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: none;
}

.page-home .hero-product-shot {
  border: 1px solid var(--meta-line);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(20, 35, 58, 0.1);
  background: #ffffff;
}

.page-home .hero-cta-row .btn-outline {
  background: #d1d1d1;
  color: #131313;
  border: 0;
  border-radius: 8.5px;
}

.page-home .hero-cta-row .btn-outline:hover {
  background: #c4c4c4;
  color: #131313;
}

.page-home .content-flow {
  max-width: 980px;
}

.page-home .doc-section {
  border-bottom-color: var(--meta-line);
}

.page-home .doc-section-tint {
  background: rgba(255, 255, 255, 0.65);
  border-block: 1px solid var(--meta-line);
}

.page-home .callout-inline {
  background: #ffffff;
  border-left-color: #5b7ddf;
  color: var(--meta-text);
  box-shadow: 0 8px 24px rgba(20, 35, 58, 0.06);
}

.page-home .list-check li::marker {
  color: #3d60c9;
}

.page-home .product-photo-band {
  background: #ffffff;
  border-block: 1px solid var(--meta-line);
}

.page-home .data-showcase-banner {
  background: linear-gradient(90deg, #d7e6f4 0%, #eaf2f8 50%, #d7e6f4 100%);
  border-block: 1px solid var(--meta-line);
}

.page-home .data-showcase-banner h2 {
  color: var(--meta-text);
}

.page-home .data-showcase-body {
  background: #ffffff;
  border-bottom: 1px solid var(--meta-line);
}

.page-home .data-showcase-copy,
.page-home .data-showcase-copy p,
.page-home .data-showcase-copy li {
  color: var(--meta-muted);
}

.page-home .data-showcase-copy h3 {
  color: var(--meta-text);
}

.page-home .image-slider {
  background: var(--meta-soft);
  border: 1px solid var(--meta-line);
  border-radius: 16px;
  overflow: hidden;
}

.page-home .slider-btn {
  background: #ffffff;
  color: var(--meta-text);
  border-color: var(--meta-line);
}

.page-home .slider-btn:hover {
  background: var(--gradient-blue);
  color: #ffffff;
}

.page-home .game-engine-highlight {
  background: #ffffff;
  border-block: 1px solid var(--meta-line);
  padding-top: 1.75rem;
}

.page-home .game-engine-highlight-head h2,
.page-home .game-engine-kicker {
  color: var(--meta-text);
}

.page-home .game-engine-kicker {
  color: #3d60c9;
}

.page-home .game-engine-card {
  background: var(--meta-soft);
  border: 1px solid var(--meta-line);
  box-shadow: none;
}

.page-home .game-engine-card:hover {
  background: #e2ecf5;
  border-color: rgba(61, 96, 201, 0.35);
}

.page-home .game-engine-card p {
  color: var(--meta-muted);
}

.page-home .game-engine-card-icon {
  background: var(--gradient-blue);
  color: #ffffff;
}

.page-home .game-engine-mosaic .mosaic-cell {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--meta-line);
}

.page-home .integration-band {
  background: var(--meta-bg);
  border-block: 1px solid var(--meta-line);
}

.page-home .integration-panel {
  background: #ffffff;
  border: 1px solid var(--meta-line);
  box-shadow: 0 12px 32px rgba(20, 35, 58, 0.06);
}

.page-home .integration-panel p {
  color: var(--meta-muted);
}

.page-home .compat-showcase {
  background: var(--meta-bg);
  padding-top: 1.25rem;
  padding-bottom: 1rem;
}

.page-home .compat-showcase-copy {
  background: var(--meta-soft);
  border: 2px solid #7b68c8;
}

.page-home .compat-showcase-copy::after {
  background: linear-gradient(to right, var(--meta-soft) 0%, rgba(234, 242, 248, 0.35) 40%, transparent 100%);
}

.page-home .compat-showcase-copy h2 {
  color: var(--meta-text);
}

.page-home .compat-showcase-copy h3 {
  color: var(--meta-text);
  font-size: 22px;
  font-weight: 500;
}

.page-home .compat-showcase-copy p {
  color: var(--meta-muted);
  font-size: 17.5px;
}

.page-home .compat-showcase-media::before {
  background: linear-gradient(to right, var(--meta-bg) 0%, rgba(240, 245, 249, 0.85) 28%, rgba(240, 245, 249, 0.35) 55%, transparent 100%);
}

.page-home .pricing-showcase-left {
  background: linear-gradient(160deg, #d7e6f4 0%, #eaf2f8 100%);
  color: var(--meta-text);
}

.page-home .pricing-showcase-right {
  background: #ffffff;
  border: 1px solid var(--meta-line);
}

.page-home .pricing-showcase,
.page-home .price-extra,
.page-home .price-extra h3,
.page-home .pricing-showcase p,
.page-home .pricing-showcase li {
  color: var(--meta-muted);
}

.page-home .pricing-showcase h2,
.page-home .pricing-showcase h3,
.page-home .pricing-tag,
.page-home .pricing-amount,
.page-home .pricing-trial {
  color: var(--meta-text);
}

.page-home .section-close {
  background: #ffffff;
  border-top: 1px solid var(--meta-line);
}

.page-home .section-close .close-inner h2,
.page-home .section-close .close-inner h3 {
  color: var(--meta-text);
}

.page-home .section-close .close-inner p {
  color: var(--meta-muted);
}

.page-home .site-footer {
  background: #0f1722;
  border-top: 0;
}

.page-home .footer-col a {
  color: rgba(245, 245, 245, 0.7);
}

.page-home .footer-col a:hover {
  color: #5b7ddf;
}

.page-home .std-row span {
  border-color: rgba(20, 35, 58, 0.1);
}

/* Game Engine page — cinematic hero (ai-robots style) */
/* Game Engine page — Unitree G1 / dxpreview style */
.page-game-engine {
  background: #121212;
  color: #cbcbcb;
  font-family: "Work Sans", system-ui, sans-serif;
}

.page-game-engine h1,
.page-game-engine h2,
.page-game-engine h3,
.page-game-engine .ge-banner-title,
.page-game-engine .ge-hero-title,
.page-game-engine .ge-unlock-title {
  font-family: "Work Sans", system-ui, sans-serif;
}

.page-game-engine .ge-site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: transparent !important;
  background-color: transparent !important;
  border-bottom: 0;
  box-shadow: none;
}

.page-game-engine .ge-site-header .brand,
.page-game-engine .ge-site-header .nav-link,
.page-game-engine .ge-site-header .nav-drop-btn {
  color: #ffffff;
}

.page-game-engine .ge-site-header .nav-link:hover,
.page-game-engine .ge-site-header .nav-drop-btn:hover {
  color: rgba(255, 255, 255, 0.85);
}

.page-game-engine .ge-site-header .nav-toggle span {
  background: #ffffff;
}

.page-game-engine .ge-site-header.menu-open .nav {
  background: rgba(18, 18, 18, 0.96);
}

/* Full-screen cinematic hero — download.webp BG */
.ge-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  background: #121212;
  text-align: center;
}

.ge-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ge-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(0.72) saturate(0.95);
}

.ge-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.25) 28%,
      rgba(0, 0, 0, 0.35) 55%,
      rgba(18, 18, 18, 0.85) 82%,
      #121212 100%);
}

.ge-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
  padding: 7.5rem 0 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ge-hero-eyebrow {
  margin: 0 0 1.35rem;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.78);
}

.ge-hero-title {
  margin: 0 0 1.75rem;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: clamp(2.6rem, 6.2vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-wrap: balance;
}

.ge-hero-lead {
  margin: 0 auto 2.5rem;
  max-width: 640px;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: clamp(16px, 1.5vw, 18.36px);
  font-weight: 400;
  line-height: 1.65;
  color: #cbcbcb;
}

.ge-hero-cta {
  display: flex;
  justify-content: center;
}

.ge-banner-split {
  padding: 2.5rem 0 3.5rem;
  background: #121212;
}

.ge-banner-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
  border-radius: 40px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 420px;
}

.ge-banner-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.25rem 3rem 3.25rem 3.5rem;
  background: linear-gradient(160deg, #161616 0%, #0c0c0c 100%);
}

.ge-banner-kicker {
  display: inline-block;
  margin: 0 0 1.25rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #131313;
  background: #d1d1d1;
  border-radius: 4px;
}

.ge-banner-title {
  margin: 0 0 1.35rem;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: clamp(2rem, 3.8vw, 48px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.ge-banner-desc {
  margin: 0 0 2rem;
  max-width: 480px;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: #cbcbcb;
}

.ge-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.ge-banner-visual {
  margin: 0;
  position: relative;
  min-height: 100%;
  background: #000;
}

.ge-banner-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: none;
}

/* Engine logos strip */
.ge-logos {
  padding: 1.75rem 0;
  background: #0e0e0e;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ge-logos-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.ge-logos-label {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
}

.ge-logos-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 2.75rem;
}

.ge-logos-row li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 64px;
}

.ge-logos-row img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 160px;
  max-height: 64px;
  object-fit: contain;
  opacity: 1;
}

/* Game Engine Compatibility — light left / navy right */
.ge-compat {
  background: #e8eaee;
}

.ge-compat-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 320px;
  max-width: 1400px;
  margin: 0 auto;
}

.ge-compat-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3.5rem;
  background: linear-gradient(90deg, #f4f5f7 0%, #e8eaee 100%);
}

.ge-compat-copy h2 {
  margin: 0 0 1.35rem;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 600;
  color: #2a2a2a;
  line-height: 1.15;
}

.ge-compat-list {
  margin: 0;
  padding-left: 1.15rem;
  color: #3a3a3a;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  max-width: 420px;
}

.ge-compat-list li + li {
  margin-top: 0.65rem;
}

.ge-compat-media {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  background: #0b1f3a;
  position: relative;
  overflow: hidden;
}

.ge-compat-media::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(90deg, #e8eaee 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.ge-compat-photo {
  margin: 0;
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 300px;
}

.ge-compat-photo img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.ge-compat-brands {
  list-style: none;
  margin: 0;
  padding: 2rem 2rem 2rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.ge-compat-brands img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 160px;
}

@media (max-width: 900px) {
  .ge-compat-inner {
    grid-template-columns: 1fr;
  }

  .ge-compat-media {
    grid-template-columns: 1fr 1fr;
    min-height: 260px;
  }

  .ge-compat-media::before {
    display: none;
  }

  .ge-compat-copy {
    padding: 2.25rem 1.5rem;
  }
}

@media (max-width: 560px) {
  .ge-compat-media {
    grid-template-columns: 1fr;
  }

  .ge-compat-brands {
    align-items: center;
    padding: 1.5rem;
  }
}

/* Primary — compact height, bigger arrow, left padding */
.ge-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 0;
  padding: 0.2rem 0.2rem 0.2rem 1.15rem;
  background: #ffffff;
  color: #131313;
  border-radius: 8.5px;
  font-family: "Work Sans", sans-serif;
  font-size: 18.8313px;
  font-weight: 500;
  font-style: normal;
  font-variant: normal;
  letter-spacing: normal;
  text-align: center;
  text-transform: capitalize;
  line-height: 1;
  overflow: visible;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}

.ge-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.18);
  color: #131313;
}

.ge-btn-label {
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin: 0;
  line-height: 1;
  color: #131313;
  font-family: "Work Sans", sans-serif;
  font-size: 18.8313px;
  font-weight: 500;
  font-style: normal;
}

.ge-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  min-width: 2.15rem;
  height: 2.15rem;
  border-radius: 7px;
  background: #ffffff;
  flex-shrink: 0;
}

.ge-btn-arrow img {
  display: block;
  width: 20px;
  height: auto;
  filter: none;
}

.ge-btn-sm {
  font-size: 16px;
  gap: 0.5rem;
  padding: 0.16rem 0.16rem 0.16rem 0.95rem;
}

.ge-btn-sm .ge-btn-label {
  padding: 0;
  font-size: 16px;
  font-weight: 500;
}

.ge-btn-sm .ge-btn-arrow {
  width: 1.9rem;
  min-width: 1.9rem;
  height: 1.9rem;
  border-radius: 7px;
}

.ge-btn-sm .ge-btn-arrow img {
  width: 16px;
}

/* Secondary — compact, #D1D1D1 / #131313 */
.ge-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.25rem;
  background: #d1d1d1;
  border: 0;
  border-radius: 8.5px;
  color: #131313;
  font-family: "Work Sans", sans-serif;
  font-size: 18.8313px;
  font-weight: 500;
  font-style: normal;
  font-variant: normal;
  letter-spacing: normal;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  transition: background 0.2s, transform 0.2s;
}

.ge-btn-secondary:hover {
  background: #c4c4c4;
  color: #131313;
}

.ge-btn-secondary:hover {
  background: #c4c4c4;
  color: #131313;
}

.ge-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9.5rem;
  height: calc(2.15rem + 0.4rem);
  min-height: calc(2.15rem + 0.4rem);
  padding: 0 1.35rem;
  box-sizing: border-box;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8.5px;
  color: #ffffff;
  font-family: "Work Sans", sans-serif;
  font-size: 18.8313px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1;
  text-align: center;
  text-transform: none;
  box-shadow: none;
  transition: background 0.2s, border-color 0.2s;
}

.ge-btn-ghost:hover {
  background: #1f1f1f;
  border-color: rgba(255, 255, 255, 0.32);
  color: #ffffff;
}

/* Unlock section — 3 product cards */
.ge-unlock {
  padding: 4rem 0 5rem;
  background: #000000;
}

.ge-unlock-title {
  margin: 0 0 2.5rem;
  text-align: center;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.15;
}

.ge-product-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.ge-product-card {
  padding: 2rem 1.75rem;
  background: linear-gradient(180deg, #1a1a1a 0%, #121212 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  text-align: center;
}

.ge-product-card h3 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 500;
  color: #ffffff;
}

.ge-product-card p {
  margin: 0 0 1.75rem;
  font-size: 16px;
  line-height: 1.6;
  color: #cbcbcb;
}

.ge-product-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
}

/* Device screens behind each engine SDK — captured from the app that serves them */
.ge-device-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 2.5rem 0 0;
}

.ge-device-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: #121212;
}

.ge-device-grid :is(img, video),
.ge-data-demo video {
  display: block;
  width: 100%;
  max-width: 240px;
  height: auto;
  margin-inline: auto;
  aspect-ratio: 1080 / 2400;
  object-fit: contain;
  background: #000000;
}

.ge-device-grid figcaption,
.ge-data-demo figcaption {
  padding: 0.8rem 0.95rem 1rem;
  color: #cbcbcb;
  font-size: 0.85rem;
  line-height: 1.5;
}

.ge-device-grid figcaption b {
  display: block;
  margin-bottom: 0.2rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
}

.ge-data-demo {
  max-width: 300px;
  margin: 2rem auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: #121212;
}

@media (max-width: 1080px) {
  .ge-device-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .ge-device-grid { grid-template-columns: 1fr; }
}

.ge-product-actions .btn-secondary {
  height: calc(1.9rem + 0.32rem);
  padding: 0 1.2rem;
  box-sizing: border-box;
  font-size: 16px;
  text-decoration: none;
}

/* Bottom CTA split */
.ge-cta-split {
  padding: 5rem 0;
  background: #1f1f1f;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ge-cta-split-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.ge-cta-split-copy h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.15;
}

.ge-cta-split-badges {
  display: flex;
  justify-content: center;
}

@media (max-width: 960px) {
  .ge-banner-card,
  .ge-cta-split-grid,
  .ge-product-cards {
    grid-template-columns: 1fr;
  }

  .ge-banner-card {
    border-radius: 28px;
  }

  .ge-banner-visual {
    order: -1;
    min-height: 280px;
  }

  .ge-banner-visual img {
    min-height: 280px;
    max-height: 340px;
  }

  .ge-banner-copy {
    padding: 2.25rem 1.75rem 2.5rem;
  }

  .ge-hero-content {
    padding: 6.5rem 0 4.5rem;
  }

  .ge-hero-title {
    font-size: clamp(2.1rem, 9vw, 2.85rem);
  }
}

/* Gallery */
.ge-gallery {
  padding: 4rem 0 5rem;
  background: #0a0a0a;
}

.ge-gallery-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.ge-gallery-head h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500;
  color: #ffffff;
}

.ge-gallery-head p {
  margin: 0 auto;
  max-width: 540px;
  font-size: 18.36px;
  color: #cbcbcb;
}

.ge-gallery-sub {
  margin: 0 0 1.25rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ge-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.ge-gallery-engines {
  grid-template-columns: repeat(6, 1fr);
}

.ge-gallery-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #121212;
  aspect-ratio: 16 / 10;
}

.ge-gallery-wide {
  grid-column: span 3;
  aspect-ratio: 21 / 9;
}

.ge-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.ge-gallery-item:hover img {
  transform: scale(1.04);
}

.ge-gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #ffffff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}

.ge-data-panel {
  padding: 2rem 2.25rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #1a1a1a 0%, #121212 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ge-data-panel h3 {
  margin: 0 0 1.25rem;
  font-size: 36px;
  font-weight: 500;
  color: #ffffff;
  text-align: left;
}

.ge-data-panel .ge-data-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ge-data-panel .ge-data-list li {
  flex: 1 1 0;
  min-height: 7.25rem;
  box-sizing: border-box;
  align-items: center;
}

.ge-data-panel .ge-data-list li:first-child {
  align-items: center;
}

.ge-data-panel .ge-data-list li:first-child .ge-data-list-icon {
  margin-top: 0;
  align-self: center;
}

.ge-data-list {
  margin: 0;
  padding-left: 1.2rem;
  color: #cbcbcb;
  font-size: 16px;
  line-height: 1.7;
}

.ge-data-list li + li {
  margin-top: 0.75rem;
}

.ge-gallery-mapping {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.ge-gallery-mapping .ge-gallery-sub {
  margin-bottom: 1.25rem;
}

.ge-mapping-band {
  padding: 4.5rem 0;
  background: #121212;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.ge-mapping-copy {
  margin: 0 auto 1.25rem;
  max-width: 760px;
  font-size: 18.36px;
  line-height: 1.65;
  color: #cbcbcb;
}

.ge-mapping-copy:last-of-type {
  margin-bottom: 2rem;
}

.page-game-engine .ge-mapping-vimeo {
  max-width: min(920px, 100%);
  max-height: min(70vh, 520px);
  margin: 0 auto 0.75rem;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.page-game-engine .ge-mapping-vimeo video {
  width: 100%;
  height: 100%;
  max-height: min(70vh, 520px);
  object-fit: contain;
  display: block;
  pointer-events: none;
  background: #000;
}

.ge-mapping-vimeo-caption {
  margin: 0 auto 1.5rem;
  max-width: 760px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #8a96a8;
  text-align: center;
}

.ge-mapping-actions {
  justify-content: center;
}

@media (max-width: 960px) {
  .ge-gallery-grid,
  .ge-gallery-engines {
    grid-template-columns: 1fr 1fr;
  }

  .ge-gallery-wide {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .ge-gallery-grid,
  .ge-gallery-engines {
    grid-template-columns: 1fr;
  }

  .ge-gallery-wide {
    grid-column: span 1;
    aspect-ratio: 16 / 9;
  }
}

.ge-intro {
  padding: 2.5rem 0;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ge-intro-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.ge-intro-inner p {
  margin: 0;
  font-size: 19.2px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.page-game-engine .game-engine-highlight.ge-page-body {
  margin: 0;
  padding: 4rem 0 5rem;
}

.ge-data-inline {
  padding: 0;
  background: transparent;
  border: 0;
  margin: 0 0 2.25rem;
}

.ge-data-inline h3 {
  margin: 0 0 1.25rem;
  text-align: center;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: #ffffff;
}

.ge-integration-dark {
  background: #111111;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ge-integration-dark .integration-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.ge-integration-dark .integration-panel p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 19.2px;
}

.ge-integration-single {
  max-width: 920px;
  margin: 0 auto;
}

.ge-cta-logo {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  margin: 0 auto 1.25rem;
  display: block;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.ge-cta-tag {
  margin: 0 0 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.ge-store-row {
  justify-content: center;
  margin-bottom: 1.75rem;
}

.ge-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.ge-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.35rem 0.35rem 0.35rem 1.35rem;
  background: #ffffff;
  color: #111111;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.ge-pill-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
  color: #111111;
}

.ge-pill-btn-icon {
  width: 2.15rem;
  height: 2.15rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #143d64 0%, #1c5484 100%);
  color: #ffffff;
  font-size: 1rem;
  line-height: 1;
}

.ge-pill-btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.ge-pill-btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.ge-stats {
  padding: 0 0 2rem;
  margin-top: -4rem;
  position: relative;
  z-index: 5;
  background: #0a0a0a;
}

.ge-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: transparent;
  border-radius: 16px;
  overflow: visible;
  box-shadow: none;
}

.ge-stat {
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  text-align: center;
}

.ge-stat p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.ge-platform-note {
  margin: 1.75rem auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}

.ge-platform-note a {
  color: #57a4e8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ge-platform-note a:hover {
  color: #ffffff;
}

.ge-feature {
  padding: 5rem 0;
  background: #0a0a0a;
  color: #ffffff;
}

.ge-feature-dark {
  background: #111111;
  color: #ffffff;
}

.ge-feature h2,
.ge-feature-dark h2 {
  color: #ffffff;
}

.ge-feature p,
.ge-feature-dark p {
  color: rgba(255, 255, 255, 0.82);
}

.ge-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ge-feature-reverse .ge-feature-copy {
  order: 2;
}

.ge-feature-reverse .ge-feature-media {
  order: 1;
}

.ge-feature-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  color: #ffffff;
}

.ge-feature-copy p {
  margin: 0;
  font-size: 19.2px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.ge-feature-media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000000;
}

.ge-feature-media img {
  width: 100%;
  height: auto;
  display: block;
}

.ge-gallery {
  padding: 5rem 0;
  background: #111111;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ge-gallery-head {
  max-width: 780px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.ge-gallery-head p {
  margin: 0;
  font-size: 19.2px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.ge-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.ge-gallery-grid figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000000;
}

/* Game engine page uses global site footer — keep DARK, light text/icons */
.page-game-engine .ge-footer.site-footer {
  background: #0a0a0a;
  color: #e8eef6;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-game-engine .ge-footer .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: #ffffff;
}

.page-game-engine .ge-footer .footer-brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  display: block;
}

.page-game-engine .ge-footer .footer-brand-text {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #ffffff;
}

.page-game-engine .ge-footer .footer-tag {
  margin: 0.85rem 0 0;
  max-width: 22rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(232, 238, 246, 0.72);
}

.page-game-engine .ge-footer .social-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1rem;
}

.page-game-engine .ge-footer .social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  transition: color 0.2s ease, transform 0.2s ease;
}

.page-game-engine .ge-footer .social-btn:hover {
  transform: translateY(-1px);
}

.page-game-engine .ge-footer .social-facebook:hover { color: #1877f2; }
.page-game-engine .ge-footer .social-instagram:hover { color: #e4405f; }
.page-game-engine .ge-footer .social-x:hover { color: #ffffff; }
.page-game-engine .ge-footer .social-linkedin:hover { color: #0a66c2; }

.page-game-engine .ge-footer .footer-col h4 {
  color: #ffffff;
}

.page-game-engine .ge-footer .footer-col a {
  color: rgba(232, 238, 246, 0.78);
}

.page-game-engine .ge-footer .footer-col a:hover {
  color: #8eb4ff;
}

.page-game-engine .ge-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
}

.page-game-engine .ge-footer .footer-bottom p {
  color: rgba(232, 238, 246, 0.55);
}

.page-game-engine .ge-footer .footer-bottom a {
  color: #8eb4ff;
}

.page-game-engine .ge-footer .footer-bottom a:hover {
  color: #ffffff;
}

.ge-data-block {
  padding: 3.5rem 0;
  background: #111111;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ge-data-inner h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #ffffff;
  text-align: center;
}

.ge-data-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  max-width: none;
  width: 100%;
}

.ge-data-list li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  align-items: center;
  column-gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 19.2px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.ge-data-list li:first-child {
  align-items: start;
}

.ge-data-list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.ge-data-list-icon svg {
  display: block;
  width: 2rem;
  height: 2rem;
}

.ge-data-list li:first-child .ge-data-list-icon {
  align-self: start;
  margin-top: 0.15rem;
}

.ge-data-list-text {
  min-width: 0;
}

.ge-integration-band {
  padding: 3.5rem 0;
  background: #0a0a0a;
}

.ge-integration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.ge-integration-panel {
  margin: 0;
  padding: 2rem 1.75rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ge-integration-panel::before {
  content: "";
  display: block;
  height: 4px;
  margin: -2rem -1.75rem 1.25rem;
  border-radius: 16px 16px 0 0;
}

.ge-integration-gis::before {
  background: linear-gradient(90deg, #7e0714 0%, #8f1416 100%);
}

.ge-integration-xr::before {
  background: linear-gradient(90deg, #143d64 0%, #1c5484 100%);
}

.ge-integration-panel p {
  margin: 0;
  font-size: 19.2px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}

.ge-showcase {
  padding: 4rem 0 5rem;
  background: #0a0a0a;
}

.ge-showcase-label {
  margin: 0 0 1.75rem;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: var(--heading-weight);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.ge-proven {
  padding: 3.5rem 0;
  background: #111111;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ge-proven-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.ge-proven-inner p {
  margin: 0;
  font-size: 19.2px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.ge-cta-sub {
  margin: 0 auto 2rem;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
}

.ge-section-title {
  margin: 0 0 1.75rem;
  text-align: center;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: #ffffff;
  line-height: 1.2;
}

@media (max-width: 960px) {
  .ge-integration-grid { grid-template-columns: 1fr; }
}

.ge-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.ge-gallery-grid figure:hover img {
  transform: scale(1.04);
}

.ge-cta-band {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(20, 61, 100, 0.35), transparent 55%),
    linear-gradient(165deg, #352f2f 0%, #1a1a1a 50%, #393939 100%);
  color: #ffffff;
  text-align: center;
}

.ge-cta-inner h2 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.15;
}

.ge-cta-inner p {
  margin: 0 auto 2rem;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

@media (max-width: 960px) {
  .ge-stats-grid,
  .ge-feature-grid,
  .ge-gallery-grid {
    grid-template-columns: 1fr;
  }

  .ge-stats {
    margin-top: -2rem;
  }

  .ge-feature-reverse .ge-feature-copy,
  .ge-feature-reverse .ge-feature-media {
    order: unset;
  }

  .ge-hero {
    min-height: 88vh;
  }
}

/* =========================================================
   Home Sample — Meta DINOv3 layout (scoped)
   https://ai.meta.com/research/dinov3/
   ========================================================= */
.page-home-sample {
  --hs-bg: #f0f5f9;
  --hs-panel: #ffffff;
  --hs-soft: #e8f0f7;
  --hs-text: #212529;
  --hs-muted: #212529;
  --hs-line: rgba(28, 43, 58, 0.1);
  --hs-blue: #0668e1;
  --hs-blue-dark: #0456bf;
  background: var(--hs-bg);
  color: #212529;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
}

.page-home-sample :is(p, li, h1, h2, h3, h4),
.page-home-sample .hs-dino-lead,
.page-home-sample .hs-dino-card p,
.page-home-sample .hs-dino-list li,
.page-home-sample .hs-feature-card p,
.page-home-sample .hs-app-card p,
.page-home-sample .hs-card-list li,
.page-home-sample .hs-news-panel :is(h3, p),
.page-home-sample .hs-overview-lead,
.page-home-sample .hs-overview-title,
.page-home-sample .hs-section-lead,
.page-home-sample .hs-h2,
.page-home-sample .hs-anchor-explore,
.page-home-sample .hs-anchor-links a {
  color: #212529;
}

.page-home-sample,
.page-home-sample :is(p, li),
.page-home-sample .hs-overview-lead,
.page-home-sample .hs-section-lead,
.page-home-sample .hs-dino-lead,
.page-home-sample .hs-dino-card p,
.page-home-sample .hs-dino-list li,
.page-home-sample .hs-feature-card p,
.page-home-sample .hs-app-card p,
.page-home-sample .hs-card-list li,
.page-home-sample .hs-news-panel p,
.page-home-sample .hs-lead,
.page-home-sample .hs-ftabs-tab p {
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #212529;
}

/* Keep hero / dark banner text light */
.page-home-sample .hs-cesium :is(h1, h2, h3, p, .hs-lead),
.page-home-sample .hs-cesium-copy h1 {
  color: #ffffff !important;
}

.page-home-sample .hs-cesium .hs-lead {
  color: rgba(255, 255, 255, 0.78) !important;
}

.page-home-sample .hs-header.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent !important;
  background-color: transparent !important;
  border-bottom: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

.page-home-sample .hs-header.site-header.menu-open {
  background: transparent !important;
  background-color: transparent !important;
  backdrop-filter: none !important;
}

.page-home-sample .hs-header .brand-mark {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: contain;
}

.page-home-sample .hs-header .brand-text {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.page-home-sample .hs-header .nav-link,
.page-home-sample .hs-header .nav-drop-btn {
  color: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.page-home-sample .hs-header .nav-link:hover:not(.active),
.page-home-sample .hs-header .nav-drop-btn:hover {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.55);
}

.page-home-sample .hs-header .nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.page-home-sample .hs-header .nav-link.active:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.page-home-sample .hs-header .nav-toggle span {
  background: #ffffff;
}

/* Cesium-style hero: CSS globe + copy */
.hs-cesium {
  position: relative;
  background: #050c18;
  color: #ffffff;
  overflow: hidden;
  padding-top: 4%;
  padding-bottom: 3%;
}

.hs-cesium-stage {
  position: relative;
  min-height: min(72vh, 680px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.hs-globe-wrap,
.hs-hero-media {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hs-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hs-hero-video-fade,
.hs-globe-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, transparent 40%, rgba(5, 12, 24, 0.55) 62%, rgba(5, 12, 24, 0.88) 82%, #050c18 100%),
    linear-gradient(180deg, rgba(5, 12, 24, 0.35) 0%, transparent 22%, transparent 70%, rgba(5, 12, 24, 0.55) 100%);
  pointer-events: none;
}

.hs-globe-orbit {
  position: absolute;
  left: 15%;
  top: 50%;
  transform: translateY(-50%);
  width: min(58vw, 640px);
  height: min(58vw, 640px);
}

.hs-globe-sphere {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    url("assets/wts/globe/earth-blue-marble.jpg") 0 50% / 200% 100% repeat-x;
  animation: hs-globe-spin 48s linear infinite;
  box-shadow:
    inset -28px 0 50px rgba(0, 0, 0, 0.55),
    inset 12px 0 28px rgba(120, 190, 255, 0.12),
    0 0 60px rgba(70, 150, 255, 0.22);
}

.hs-globe-shade {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.14) 0%, transparent 28%),
    linear-gradient(90deg, transparent 42%, rgba(2, 6, 14, 0.55) 78%, rgba(2, 6, 14, 0.78) 100%);
  box-shadow: 0 0 0 1px rgba(140, 190, 255, 0.12);
}

@keyframes hs-globe-spin {
  from { background-position: 0 50%; }
  to { background-position: -200% 50%; }
}

.hs-cesium-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 0.95fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  min-height: min(52vh, 480px);
}

.hs-cesium-spacer { min-height: 1px; }

.hs-cesium-copy {
  max-width: 36rem;
  margin-left: auto;
  margin-top: 0;
  align-self: center;
}

.page-home-sample .hs-cesium-copy h1 {
  margin: 0 0 1rem;
  max-width: 34rem;
  font-size: clamp(34px, 4.2vw, 48px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #ffffff !important;
}

.hs-cesium .hs-lead {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.page-home-sample .hs-cesium .hs-hero-actions .btn-secondary {
  text-decoration: none;
}

.page-home-sample .hs-cesium .btn-secondary.hs-btn-ghost::before,
.page-home-sample .hs-cesium .btn-secondary.hs-btn-ghost::after {
  display: none !important;
  content: none !important;
}

.page-home-sample .hs-cesium .btn-secondary.hs-btn-ghost {
  position: relative;
  z-index: 1;
  overflow: visible;
  height: auto !important;
  min-height: 0 !important;
  padding: 0.65rem 1.2rem !important;
  background: transparent !important;
  color: #f4f6f8 !important;
  border: 1.5px solid rgba(244, 246, 248, 0.55) !important;
  border-radius: 8.5px !important;
  box-shadow: none !important;
  font-size: 18.8313px !important;
  font-weight: 600 !important;
}

.page-home-sample .hs-cesium .btn-secondary.hs-btn-ghost:hover {
  background: rgba(244, 246, 248, 0.1) !important;
  color: #ffffff !important;
  border-color: rgba(244, 246, 248, 0.85) !important;
}

.page-home-sample .hs-cesium .hs-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1.2rem;
}

.hs-btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hs-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.hs-trust {
  margin-top: 1.75rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hs-trust-label {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hs-trust-logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.15rem 1.6rem;
}

.hs-trust-logos li {
  margin: 0;
  line-height: 0;
  opacity: 0.9;
}

.hs-trust-logos img {
  display: block;
  height: 22px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  background: none !important;
}

.hs-trust-logos img[src*="nvidia"] { height: 20px; }

/* News slider band — below architecture */
.hs-news-band {
  background: #f0f5f9;
  padding: clamp(2.5rem, 5vh, 3.5rem) 0;
}

/* News slider — left image | right text (no full-bleed overlay) */
.hs-news {
  position: relative;
  z-index: 3;
  margin-top: 0;
}

.hs-news-full {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: clamp(0.5rem, 2vw, 1.25rem);
}

.hs-news-row {
  display: grid;
  grid-template-columns: 2.75rem 1fr 2.75rem;
  align-items: center;
  gap: 0.35rem;
}

.hs-news-viewport {
  overflow: hidden;
  border-radius: 4px;
  background: transparent;
}

.hs-news-track {
  display: flex;
  width: 100%;
  transition: transform 0.55s ease;
  will-change: transform;
}

.hs-news-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 1.85fr minmax(280px, 0.85fr);
  align-items: center;
  min-height: clamp(360px, 40vw, 520px);
  height: clamp(360px, 40vw, 520px);
  background: transparent;
  overflow: hidden;
  gap: 0.85rem;
}

.hs-news-media {
  position: relative;
  margin: 0;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  background: transparent;
  border-radius: 4px;
}

.hs-news-media img,
.hs-news-media video,
.hs-news-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: transparent;
}

.hs-news-panel {
  position: relative;
  width: 100%;
  height: auto;
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: none;
  overflow: hidden;
}

.page-home-sample .hs-news-panel h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  color: #212529;
}

.hs-news-panel p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #212529;
}

.hs-news-nav {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #14233a;
  cursor: pointer;
  padding: 0;
}

.hs-news-nav:hover { opacity: 0.65; }

.hs-news-nav svg {
  display: block;
  width: 28px;
  height: 28px;
}

.hs-news-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
}

.hs-news-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(20, 35, 58, 0.22);
  cursor: pointer;
}

.hs-news-dot.is-active {
  background: #3d60c9;
}

@media (max-width: 980px) {
  .hs-cesium-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hs-cesium-spacer { display: none; }

  .hs-globe-orbit {
    left: 50%;
    top: 7%;
    transform: translateX(-50%);
    width: min(72vw, 320px);
    height: min(72vw, 320px);
    opacity: 0.85;
  }

  .hs-hero-video-fade,
  .hs-globe-fade {
    background:
      linear-gradient(180deg, rgba(5, 12, 24, 0.25) 0%, transparent 30%, rgba(5, 12, 24, 0.55) 62%, #050c18 88%);
  }

  .page-home-sample .hs-cesium-copy h1 {
    max-width: none;
  }

  .hs-cesium-copy {
    margin: 7.5rem auto 0;
    max-width: 40rem;
  }

  .hs-news-row {
    grid-template-columns: 2rem 1fr 2rem;
    gap: 0.15rem;
  }

  .hs-news-slide {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .hs-news-media {
    min-height: 260px;
    height: 260px;
  }

  .hs-news-panel {
    padding: 1.35rem 1.4rem;
  }

  .page-home-sample .hs-news-panel h3 {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hs-globe-sphere { animation: none; }
}

.page-home-sample h1,
.page-home-sample h2,
.page-home-sample h3 {
  color: var(--hs-text);
  font-family: "Work Sans", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Full-bleed hero — edge-to-edge, sharp corners (no phone/card radius) */
.hs-hero,
.hs-hero-media,
.hs-hero-media video,
.hs-hero-bg,
.hs-hero-overlay {
  border-radius: 0;
}

.hs-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: min(88vh, 760px);
  padding:
    clamp(3.5rem, 10vh, 6rem)
    clamp(1.5rem, 6vw, 3.5rem)
    clamp(3.5rem, 10vh, 6rem)
    12%;
  text-align: left;
  overflow: hidden;
  background: #050505;
  color: #ffffff;
}

.hs-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hs-hero-media video,
.hs-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hs-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.4) 42%, rgba(0, 0, 0, 0.15) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.32) 100%);
  pointer-events: none;
}

.hs-hero-inner {
  position: relative;
  z-index: 3;
  width: 40%;
  max-width: 40rem;
  min-width: min(100%, 20rem);
  margin: 0;
}

.hs-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.hs-hero h1 {
  margin: 0 0 1.25rem;
  font-size: 60px;
  line-height: 1.1;
  font-weight: 600;
  color: #ffffff;
}

.hs-lead {
  margin: 0 0 2rem;
  max-width: 36rem;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.hs-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-start;
  margin-bottom: 1.75rem;
}

.hs-store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}

.hs-overview {
  padding: 5rem clamp(1.25rem, 5vw, 4rem) 4.75rem;
  background: #ffffff;
  border-bottom: 1px solid var(--hs-line);
  text-align: center;
}

.hs-overview-inner {
  max-width: 1180px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 0;
}

.hs-overview-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hs-blue);
}

.hs-overview-title {
  margin: 0 auto 1.15rem;
  max-width: 820px;
  font-size: 39px;
  line-height: 1.15;
  font-weight: 600;
  color: var(--hs-text);
}

.hs-overview-lead {
  margin: 0 auto 1.75rem;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--hs-muted);
}

.hs-overview-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.hs-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
  padding-left: 0;
  padding-right: 0;
}

.hs-feature-card {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hs-feature-card-media {
  position: relative;
  margin: 0 0 1.25rem;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  background: #dfe8f1;
}

.hs-feature-card-media img,
.hs-feature-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0b1220;
}

.hs-feature-pill {
  position: absolute;
  left: 50%;
  bottom: 0.95rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  background: #ffffff;
  border-radius: 999px;
  color: #131313;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(20, 35, 58, 0.14);
}

.hs-feature-card h3 {
  margin: 0 0 0.7rem;
  padding: 0;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #212529;
  text-align: left;
}

.hs-feature-card p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #212529;
  text-align: left;
}

.hs-text-clamp {
  --clamp-lines: 5;
}

.hs-text-clamp:not(.is-expanded) > p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--clamp-lines);
  overflow: hidden;
}

.hs-text-clamp-six {
  --clamp-lines: 6;
}

.hs-view-more {
  display: none;
  margin-top: 0.4rem;
  padding: 0;
  border: 0;
  background: none;
  color: #0668e1;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hs-view-more.is-visible {
  display: inline-block;
}

.hs-view-more:hover {
  color: #0456bf;
}

.hs-text-clamp.is-expanded .hs-view-more {
  display: none;
}

.hs-text-clamp.is-expanded > p {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.hs-ftabs-tab .hs-text-clamp > p {
  margin: 0;
}

.hs-dino-card .hs-text-clamp > p {
  margin: 0 0 1.1rem;
}

@media (max-width: 900px) {
  .hs-overview {
    padding: 3.5rem 0 3rem;
  }

  .hs-overview-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .hs-feature-card-media {
    aspect-ratio: 1 / 1;
    max-width: 420px;
    margin-inline: auto;
  }

  .hs-feature-card h3,
  .hs-feature-card p {
    text-align: left;
    max-width: 420px;
    margin-inline: auto;
  }

  .hs-feature-card h3 { margin-bottom: 0.7rem; }
}

@media (max-width: 900px) {
  .hs-hero,
  .hs-hero-media,
  .hs-hero-media video,
  .hs-hero-bg,
  .hs-hero-overlay {
    border-radius: 0;
  }

  .hs-hero {
    min-height: min(72vh, 620px);
    padding: 3rem 1.35rem;
  }

  .hs-hero h1 {
    font-size: clamp(34px, 9vw, 48px);
    line-height: 1.1;
  }

  .hs-overview-title {
    font-size: clamp(28px, 7vw, 39px);
    line-height: 1.15;
  }

  .hs-hero-inner {
    max-width: 100%;
    width: 100%;
  }
}

.hs-anchor {
  position: sticky;
  top: 64px;
  z-index: 30;
  background: #f4f6f8;
  border-bottom: 1px solid var(--hs-line);
}

.page-home-sample .hs-anchor {
  position: sticky;
  top: 0;
  z-index: 45;
  box-shadow: 0 1px 0 rgba(28, 43, 58, 0.08);
}

.page-home-sample .hs-anchor.is-pinned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 4px 18px rgba(28, 43, 58, 0.1);
}

.page-home-sample .hs-anchor-spacer {
  width: 100%;
}

.hs-anchor-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 3.25rem;
}

.hs-anchor-explore {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--hs-text);
  font-size: 16.5px;
  font-weight: 400;
  white-space: nowrap;
}

.hs-anchor-explore span {
  font-size: 0.85rem;
  line-height: 1;
}

.hs-anchor-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 1.35rem;
}

.hs-anchor-links a {
  position: relative;
  padding: 0.95rem 0;
  color: var(--hs-muted);
  font-size: 16.5px;
  font-weight: 400;
}

.hs-anchor-links a:hover {
  color: var(--hs-text);
}

.hs-anchor-links a.is-active {
  color: var(--hs-text);
}

.hs-anchor-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--hs-text);
}

@media (max-width: 900px) {
  .hs-anchor-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0.75rem;
    padding-bottom: 0.35rem;
    gap: 0.35rem;
  }

  .hs-anchor-links {
    width: 100%;
    justify-content: flex-start;
    gap: 0.25rem 1rem;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .hs-anchor-links a {
    white-space: nowrap;
  }
}

.hs-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.45rem;
  background: var(--hs-blue);
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.2s;
}

.hs-btn-primary:hover {
  background: var(--hs-blue-dark);
  color: #fff;
}

.hs-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.45rem;
  background: transparent;
  color: var(--hs-text);
  border: 1px solid var(--hs-line);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
}

.hs-btn-secondary:hover {
  background: var(--hs-panel);
  border-color: rgba(28, 43, 58, 0.2);
  color: var(--hs-text);
}

.hs-store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}

.hs-section {
  padding: 4.5rem 0;
}

.hs-game-engines-section {
  padding-top: 5%;
}

.hs-section-soft {
  background: var(--hs-soft);
}

.hs-compat-section {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--hs-soft);
}

.hs-compat-section.hs-section {
  padding-top: 0;
  padding-bottom: 0;
}

.hs-compat-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  align-items: stretch;
  width: 100%;
  min-height: 0;
}

.hs-compat-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--hs-soft);
  border: none;
  margin: 0;
  margin-right: -2.5rem;
  padding-top: 1.35rem;
  padding-right: 0.75rem;
  padding-bottom: 1.35rem;
  padding-left: 18em;
  line-height: 1.45;
}

.hs-compat-copy .hs-h2 {
  margin: 0 0 0.55rem;
  max-width: none;
  line-height: 1.2;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 37.6px;
  font-weight: 600;
  font-style: normal;
  font-variant: normal;
  font-kerning: auto;
  font-optical-sizing: auto;
  color: #212529;
  background-color: transparent;
}

.hs-compat-copy .hs-h3 {
  margin: 0 0 0.45rem;
  max-width: 34rem;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0.01em;
}

.hs-compat-copy .hs-section-lead {
  margin: 0 0 0.45rem;
  max-width: 34rem;
  font-size: 17.5px;
  line-height: 1.4;
}

.hs-compat-copy .hs-section-lead:last-child {
  margin-bottom: 0;
}

.hs-compat-copy::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48px;
  transform: translateX(55%);
  background: linear-gradient(to right, var(--hs-soft) 0%, rgba(232, 240, 247, 0.35) 40%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hs-compat-media {
  position: relative;
  margin: 0;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.hs-compat-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 32%;
  z-index: 2;
  background: linear-gradient(to right, var(--hs-soft) 0%, rgba(232, 240, 247, 0.85) 28%, rgba(232, 240, 247, 0.35) 55%, transparent 100%);
  pointer-events: none;
}

.hs-compat-media img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 22%);
  mask-image: linear-gradient(to right, transparent 0%, black 22%);
}

@media (max-width: 960px) {
  .hs-compat-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hs-compat-copy {
    order: 1;
    width: 100%;
    max-width: none;
    margin: 0;
    margin-right: 0;
    padding: 1.5rem 1.25rem;
  }

  .hs-compat-copy .hs-h2 {
    font-size: clamp(1.45rem, 6vw, 2rem);
  }

  .hs-compat-copy .hs-h2 br {
    display: none;
  }

  .hs-compat-copy .hs-h3,
  .hs-compat-copy .hs-section-lead {
    max-width: none;
    font-size: 1rem;
  }

  .hs-compat-copy .hs-h3 {
    font-size: 1.05rem;
  }

  .hs-compat-copy::after {
    display: none;
  }

  .hs-compat-media {
    order: 2;
    min-height: 220px;
  }

  .hs-compat-media::before {
    display: none;
  }

  .hs-compat-media img {
    width: 100%;
    max-width: 100%;
    min-height: 220px;
    max-height: 280px;
    height: auto;
    object-fit: cover;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hs-game-engines-section {
    padding-top: 5%;
    padding-left: 0;
    padding-right: 0;
  }
}

#wifi {
  background: #ffffff;
}

/* Meta-style Applications / DINO-in-action layout */
.hs-dino {
  padding: clamp(4.5rem, 9vh, 6.5rem) 0;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  overflow-x: clip;
}

.hs-dino > .wrap.hs-dino-grid {
  overflow: visible;
}

.hs-dino-grid {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.hs-dino-copy {
  max-width: 22rem;
}

.hs-dino-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.hs-dino-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
}

.hs-dino-head .hs-dino-kicker {
  margin: 0;
}

#tak .hs-dino-copy > .hs-dino-head,
#tak .hs-dino-copy > h2,
#tak .hs-dino-copy > .hs-plain-list,
#tak .hs-dino-copy > .btn-cta,
#tak .hs-dino-copy > .hs-dino-controls,
.page-pts #tak .hs-dino-copy > .pts-kicker,
.page-pts #tak .hs-dino-copy > .pts-h2,
.page-pts #tak .hs-dino-copy > .pts-list,
.page-pts #tak .hs-dino-copy > .pts-apps-cta,
.page-pts #tak .hs-dino-copy > .hs-dino-controls {
  margin-left: 0;
}

#tak .hs-dino-copy > h2 {
  margin-top: 0;
  margin-bottom: 0.85rem;
  margin-right: 0;
  padding-left: 0;
  max-width: none;
}

#tak .hs-dino-copy .hs-plain-list {
  margin-top: 0;
  margin-bottom: 1.25rem;
  margin-right: 0;
  padding: 0;
  line-height: 1.45;
  list-style-position: inside;
}

#tak .hs-dino-copy .hs-plain-list li + li {
  margin-top: 0.35rem;
}

.hs-dino-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1c1e21;
}

.page-home-sample .hs-dino-copy h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.035em;
  color: #1c1e21;
}

.hs-dino-lead {
  margin: 0 0 1.35rem;
  font-size: 17px;
  line-height: 1.5;
  color: #65676b;
}

.page-home-sample .hs-overview-cta .ge-btn-secondary,
.hs-dino-copy .btn-cta {
  text-decoration: none;
}

.hs-dino-controls {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.85rem;
}

.hs-dino-nav {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1.5px solid rgba(28, 30, 33, 0.35);
  background: transparent;
  color: #1c1e21;
  cursor: pointer;
  padding: 0;
}

.hs-dino-nav:hover {
  border-color: #1c1e21;
}

.hs-dino-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.45rem;
}

.hs-dino-dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(28, 30, 33, 0.2);
  cursor: pointer;
}

.hs-dino-dot.is-active {
  background: #0668e1;
}

/* Portable Tile Server — apps slider (left text + right back/next shots) */
.page-pts .pts-apps {
  overflow-x: clip;
}

.page-pts .pts-apps .hs-dino-copy {
  max-width: 24rem;
}

.page-pts .pts-apps .pts-h2 {
  margin: 0 0 1rem;
}

.page-pts .pts-apps .pts-lead {
  margin: 0 0 1.25rem;
  max-width: 22rem;
}

.page-pts .pts-apps-cta {
  display: inline-flex;
  margin: 0 0 1.35rem;
}

.page-pts .pts-apps .hs-dino-controls {
  margin-top: 0.25rem;
}

.page-pts .pts-apps .hs-dino-nav {
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.page-pts .pts-apps .hs-dino-nav:hover {
  border-color: #0784ab;
  color: #0784ab;
}

.page-pts .pts-apps .hs-dino-dot {
  background: rgba(255, 255, 255, 0.25);
}

.page-pts .pts-apps .hs-dino-dot.is-active {
  background: #0784ab;
}

.page-pts .pts-apps .hs-dino-card h3 {
  margin: 0 0 0.45rem;
  color: var(--pts-head);
  font-family: var(--pts-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.page-pts .pts-apps .hs-dino-card p {
  margin: 0 0 0.75rem;
  color: var(--pts-muted) !important;
  font-size: 0.92rem;
  line-height: 1.5;
}

.page-pts .pts-apps .hs-dino-more {
  color: #0784ab;
}

.page-pts .pts-apps .hs-dino-media {
  background: #0b121a;
}

.page-pts .pts-apps .hs-dino-media img {
  object-fit: cover;
  object-position: top center;
}

html[data-theme="light"] .page-pts .pts-apps .hs-dino-nav {
  border-color: rgba(28, 30, 33, 0.35);
  color: #1c1e21;
}

html[data-theme="light"] .page-pts .pts-apps .hs-dino-nav:hover {
  border-color: #0784ab;
  color: #0784ab;
}

html[data-theme="light"] .page-pts .pts-apps .hs-dino-dot {
  background: rgba(28, 30, 33, 0.2);
}

html[data-theme="light"] .page-pts .pts-apps .hs-dino-dot.is-active {
  background: #0784ab;
}

html[data-theme="light"] .page-pts .pts-apps .hs-dino-media {
  background: #eef2f6;
}

html[data-theme="light"] .page-pts .pts-apps .hs-dino-card h3 {
  color: #1c2430;
}

html[data-theme="light"] .page-pts .pts-apps .hs-dino-card p {
  color: #3d4a5c !important;
}

.hs-dino-rail {
  overflow: hidden;
  min-width: 0;
  /* Meta: cards bleed to the right edge */
  width: calc(100% + max(0px, (100vw - 1180px) / 2) + 1.375rem);
  max-width: none;
}

.hs-dino-track {
  display: flex;
  width: max-content;
  gap: 1.25rem;
  transition: transform 0.45s ease;
  will-change: transform;
}

.hs-dino-card {
  flex: 0 0 min(300px, calc((100% - 1.15rem) / 2));
  width: min(300px, calc((100% - 1.15rem) / 2));
  min-width: 0;
  max-width: 300px;
  box-sizing: border-box;
  background: transparent;
  overflow: visible;
}

.page-pts .pts-apps .hs-dino-card {
  flex: 0 0 min(300px, calc((100% - 1.15rem) / 2)) !important;
  width: min(300px, calc((100% - 1.15rem) / 2)) !important;
  max-width: 300px !important;
}

.hs-dino-media {
  margin: 0 0 1.1rem;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: #eef2f6;
}

.hs-dino-media img,
.hs-dino-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hs-dino-media-play {
  position: relative;
}

.hs-dino-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(10, 16, 28, 0.28);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.hs-dino-play svg {
  width: 3.25rem;
  height: 3.25rem;
  padding: 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #0668e1;
  box-shadow: 0 12px 32px rgba(6, 104, 225, 0.28);
}

.hs-dino-play:hover {
  background: rgba(10, 16, 28, 0.42);
}

.hs-dino-play:hover svg {
  transform: scale(1.05);
}

.hs-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.hs-video-modal[hidden] {
  display: none;
}

.hs-video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 20, 0.88);
}

.hs-video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  line-height: 0;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.hs-video-modal-dialog video:not([hidden]),
.hs-video-modal-dialog img:not([hidden]) {
  display: block;
  width: 100%;
  max-height: min(80vh, 720px);
  background: #000;
  object-fit: contain;
}

.hs-video-modal-dialog img:not([hidden]) {
  background: #fff;
  max-height: min(92vh, 980px);
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}

.hs-video-modal-dialog iframe:not([hidden]) {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: min(72vh, 640px);
  border: 0;
  background: #000;
}

.hs-video-modal-dialog video[hidden],
.hs-video-modal-dialog img[hidden],
.hs-video-modal-dialog iframe[hidden] {
  display: none !important;
}

.hs-video-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 2.35rem;
  height: 2.35rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #121212;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

body.hs-video-modal-open {
  overflow: hidden;
}

.page-home-sample .hs-dino-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #1c1e21;
  overflow-wrap: break-word;
}

.hs-dino-card p,
.hs-dino-list,
.hs-dino-list li {
  margin: 0 0 1.1rem;
  font-size: 15px !important;
  line-height: 1.5;
  color: #65676b;
  overflow-wrap: break-word;
}

.hs-dino-list {
  padding-left: 1.1rem;
  margin-bottom: 1.1rem;
}

.hs-dino-list li {
  margin: 0 0 0.4rem;
}

.hs-dino-list li:last-child {
  margin-bottom: 0;
}

.hs-dino-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1c1e21;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.hs-dino-more:hover { color: #0668e1; }

.hs-dino-more-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1.5px solid rgba(28, 30, 33, 0.3);
  color: #1c1e21;
}

@media (max-width: 980px) {
  .hs-dino-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hs-dino-copy {
    max-width: 40rem;
  }

  .hs-dino-rail {
    width: calc(100% + 1.375rem);
  }

  .hs-dino-card {
    flex: 0 0 min(78%, 300px);
    width: min(78%, 300px);
    max-width: none;
  }
}

.hs-h2 {
  margin: 0 0 1rem;
  max-width: 820px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.2;
  font-weight: 600;
}

.hs-h3 {
  margin: 0 0 0.85rem;
  max-width: 820px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--hs-text);
}

.hs-plain-list,
.hs-card-list {
  margin: 0 0 1rem;
  padding: 0 1.25rem 0 2.25rem;
  color: var(--hs-muted);
  font-size: 16px;
  line-height: 1.55;
}

.hs-card-list li {
  font-size: 16px;
  line-height: 1.55;
}

.hs-app-card .hs-card-list + h3,
.hs-app-card .hs-card-list + p,
.hs-app-card h3,
.hs-app-card > p {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.hs-app-card > p:last-child,
.hs-app-card h3 + p {
  margin-bottom: 1.35rem;
}

.hs-perf-copy h3 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
}

.hs-perf-copy p {
  margin: 0 0 1rem;
  line-height: 1.6;
}

.hs-section-lead {
  margin: 0 0 2rem;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.7;
}

.hs-inline-link {
  margin: 0 0 2.5rem;
}

.hs-inline-link a {
  color: var(--hs-blue);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hs-game-cta {
  margin: 0.75rem 0 0;
}

.hs-game-cta .btn-secondary {
  text-decoration: none;
}

.hs-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hs-feature {
  padding: 0;
  background: transparent;
}

.hs-feature h3 {
  margin: 0 0 0.85rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.hs-feature p {
  margin: 0 0 0.85rem;
  font-size: 0.98rem;
  line-height: 1.65;
}

.hs-perf-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--hs-panel);
  border: 1px solid var(--hs-line);
  border-radius: 16px;
}

.hs-perf-media {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #dfe8f1;
}

.hs-perf-media img {
  width: 100%;
  height: auto;
  display: block;
}

.hs-perf-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hs-perf-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.6rem;
  border-bottom: 1px solid var(--hs-line);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--hs-text);
}

.hs-perf-list li:last-child {
  border-bottom: 0;
}

.hs-perf-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--hs-blue);
  font-weight: 600;
}

/* Feature tabs — left image / right vertical tabs */
.hs-ftabs {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: stretch;
  margin-top: 1.75rem;
}

.hs-ftabs-stage {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #1a1a1a;
  min-height: clamp(280px, 36vw, 440px);
  aspect-ratio: 16 / 11;
}

.hs-ftabs-media {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
}

.hs-ftabs-media.is-active {
  opacity: 1;
  visibility: visible;
  position: absolute;
}

.hs-ftabs-media[hidden] {
  display: block !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hs-ftabs-media img,
.hs-ftabs-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0b1220;
}

.hs-ftabs-media img[src*="available-tiles"],
.hs-ftabs-media img[src*="cloud-native-browser"],
.hs-ftabs-media img[src*="edge-data-distribution"] {
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

.hs-ftabs-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  align-self: stretch;
  height: 100%;
}

.hs-ftabs-tab {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 0;
  width: 100%;
  min-height: 0;
  text-align: left;
  border: 0;
  border-left: 3px solid transparent;
  background: transparent;
  padding: 1.05rem 0 1.05rem 1.15rem;
  cursor: pointer;
  color: #212529;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.hs-ftabs-tab h3 {
  margin: 0 0 0.4rem;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.3;
  color: #212529;
}

.hs-ftabs-tab p {
  margin: 0;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.55;
  color: #212529;
  text-transform: none;
}

.hs-ftabs-tab.is-active {
  border-left-color: #212529;
}

.hs-ftabs-tab.is-active h3,
.hs-ftabs-tab:not(.is-active) h3,
.hs-ftabs-tab:hover h3 {
  color: #212529;
}

@media (max-width: 900px) {
  .hs-ftabs {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hs-ftabs-stage {
    aspect-ratio: 16 / 10;
    min-height: 240px;
  }
}

.hs-tak-wrap {
  width: min(100% - 2.5rem, 1280px);
  max-width: 1280px;
}

.hs-app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  width: 100%;
}

.hs-app-card {
  background: #ffffff;
  border: 1px solid rgba(28, 43, 58, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(20, 35, 58, 0.05);
}

.hs-app-media {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dfe8f1;
  border-radius: 12px 12px 0 0;
}

.hs-app-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hs-app-card h3,
.hs-app-card p {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.hs-app-card h3 {
  margin: 1.15rem 0 0.65rem;
  font-size: 1.15rem;
}

.hs-app-card p,
.hs-app-card .hs-card-list,
.hs-app-card .hs-card-list li {
  margin: 0 0 1.35rem;
  font-size: 16px;
  line-height: 1.55;
}

.hs-app-card .hs-card-list {
  margin-bottom: 1rem;
}

.hs-app-card .hs-card-list li {
  margin: 0 0 0.45rem;
}

.hs-approach {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.hs-approach-copy p {
  margin: 0 0 1rem;
  max-width: 560px;
  line-height: 1.65;
}

.hs-approach-media {
  margin: 0;
  border-radius: 0;
  overflow: visible;
  border: 0;
  background: transparent;
}

.hs-approach-media img {
  width: 118%;
  max-width: none;
  height: auto;
  display: block;
  margin-left: -4%;
}

.hs-evo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-bottom: 2rem;
}

.hs-evo-card {
  padding: 1.5rem 1.35rem;
  background: var(--hs-panel);
  border: 1px solid var(--hs-line);
  border-radius: 14px;
}

.hs-evo-card.is-featured {
  background: #e3eef8;
  border-color: rgba(6, 104, 225, 0.18);
}

.hs-evo-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.12rem;
}

.hs-evo-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.hs-std-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hs-std-row span {
  padding: 0.55rem 1.15rem;
  border: 0;
  border-radius: 999px;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(53, 47, 47, 0.15);
}

.hs-std-row span:nth-child(1) {
  background: linear-gradient(135deg, #7e0714 0%, #8f1416 100%);
  color: #ffffff;
}

.hs-std-row span:nth-child(2) {
  background: linear-gradient(135deg, #e8edf1 0%, #d2d7da 100%);
  color: #352f2f;
  box-shadow: 0 4px 12px rgba(210, 215, 218, 0.45);
}

.hs-std-row span:nth-child(3) {
  background: linear-gradient(135deg, #352f2f 0%, #393939 100%);
  color: #ffffff;
}

.hs-engine-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin: 0 0 2rem;
}

.hs-engine-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.45rem 1.3rem 1.35rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid rgba(28, 43, 58, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(28, 43, 58, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hs-engine-card-cesium {
  border-top: 3px solid #6caddf;
}

.hs-engine-card-esri {
  border-top: 3px solid #00734c;
}

.hs-engine-card-mapbox {
  border-top: 3px solid #1c2b3a;
}

.hs-engine-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(28, 43, 58, 0.11);
  border-color: rgba(6, 104, 225, 0.18);
}

.hs-engine-card-head {
  display: flex;
  align-items: center;
  column-gap: 0.85rem;
  min-height: 75px;
}

.hs-engine-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 75px;
  flex-shrink: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hs-engine-card-icon img {
  display: block;
  width: auto;
  height: 50px;
  max-width: 50px;
  object-fit: contain;
  object-position: center;
}

.hs-engine-card-esri .hs-engine-card-icon {
  width: 75px;
  height: 75px;
}

.hs-engine-card-esri .hs-engine-card-icon img {
  height: 75px;
  max-width: 75px;
}

.hs-engine-card-mapbox .hs-engine-card-icon img {
  height: 50px;
  max-width: 50px;
}

.hs-engine-card-cesium .hs-engine-card-icon,
.hs-engine-card-esri .hs-engine-card-icon,
.hs-engine-card-mapbox .hs-engine-card-icon {
  background: transparent;
}

.hs-engine-card-label {
  margin: 0;
  align-self: center;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: #1c2b3a;
}

.hs-engine-card p {
  margin: 0;
  color: var(--hs-text);
  font-size: 0.98rem;
  line-height: 1.55;
  min-height: calc(1.55em * 2);
}

.hs-engine-card-mapbox p {
  min-height: calc(1.55em * 2);
}

#mapping-software .hs-vimeo-feature,
#game-engines .hs-engine-vimeo {
  margin: 0 0 0.45rem;
  aspect-ratio: 21 / 9;
  border-radius: 16px;
}

.hs-vimeo-caption,
.hs-engine-vimeo-caption {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--hs-muted);
  text-align: center;
}

.hs-check-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.hs-check-row li {
  padding: 1.15rem 1.2rem;
  background: var(--hs-panel);
  border: 1px solid var(--hs-line);
  border-radius: 12px;
  color: var(--hs-text);
  font-size: 0.98rem;
  line-height: 1.5;
}

.hs-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hs-mosaic figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #dfe8f1;
}

.hs-mosaic-branded {
  position: relative;
  background: #000;
}

.hs-mosaic-branded .hs-mosaic-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(25%, 96px);
  height: auto;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  transform: translate(-50%, -50%);
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  filter: none;
  pointer-events: none;
}

.hs-mosaic figure:first-child {
  grid-row: 1 / span 2;
}

.hs-mosaic figure > img:not(.hs-mosaic-logo),
.hs-mosaic video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 140px;
}

.hs-pricing-section {
  background: #f0f5f9;
}

.hs-pricing {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.05fr;
  align-items: stretch;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 0 0 1px rgba(6, 104, 225, 0.08),
    0 24px 60px rgba(10, 10, 10, 0.18);
}

.hs-pricing-card {
  position: relative;
  padding: clamp(2.1rem, 4vw, 3rem) clamp(1.6rem, 3vw, 2.6rem);
  background: #0a0a0a;
  color: #ffffff !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  isolation: isolate;
  overflow: hidden;
}

.hs-pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/pricing-card-bg.webp") center / cover no-repeat;
  z-index: 0;
  pointer-events: none;
}

.hs-pricing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0.78) 100%),
    radial-gradient(ellipse 90% 70% at 0% 0%, rgba(6, 104, 225, 0.32), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.hs-pricing-card > * {
  position: relative;
  z-index: 1;
}

.hs-pricing-card .hs-price,
.hs-pricing-card .hs-price span,
.hs-pricing-card .hs-pricing-note-sm {
  color: #ffffff !important;
}

.hs-pricing-tag {
  display: none;
}

.hs-price {
  margin: 0;
  font-size: 46px;
  font-weight: 500;
  color: #ffffff !important;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.hs-price-currency {
  font-size: 20px;
  font-weight: 500;
  vertical-align: super;
  margin-right: 0.08em;
  color: #ffffff !important;
}

.hs-price-amount {
  font-size: 46px;
  font-weight: 500;
  color: #ffffff !important;
}

.hs-price-period {
  font-size: 20px;
  font-weight: 500;
  vertical-align: baseline;
  margin-left: 0.12em;
  color: rgba(255, 255, 255, 0.92) !important;
}

.hs-price span:first-child {
  font-size: 20px;
  font-weight: 500;
  vertical-align: super;
  margin-right: 0.08em;
  color: #ffffff !important;
}

.hs-price span:last-child {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92) !important;
  margin-left: 0.12em;
}

.hs-trial {
  margin: 0;
  display: inline-flex;
  align-self: flex-start;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 0;
  background: #ffffff !important;
  color: #0a0a0a !important;
  font-family: "Work Sans", system-ui, sans-serif !important;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 0 0 4px rgba(6, 104, 225, 0.22), 0 10px 28px rgba(6, 104, 225, 0.28);
}

.hs-pricing-note-sm {
  margin: 0.15rem 0 0.35rem;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92) !important;
  max-width: 24rem;
}

.hs-pricing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.55rem;
}

.hs-pricing-card .btn-secondary {
  height: calc(1.9rem + 0.32rem);
  padding: 0 1.2rem;
  box-sizing: border-box;
  font-size: 16px;
  text-decoration: none;
  color: #ffffff !important;
}

.hs-pricing-card .btn-secondary:hover {
  color: #ffffff !important;
}

.hs-pricing-copy {
  padding: clamp(2.1rem, 4vw, 3rem) clamp(1.6rem, 3vw, 2.6rem);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hs-pricing-copy h3 {
  margin: 0 0 1rem;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: clamp(1.3rem, 2.3vw, 1.65rem);
  font-weight: 600;
  line-height: 1.3;
  color: #212529 !important;
}

.hs-pricing-copy p {
  margin: 0 0 0.9rem;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #212529 !important;
}

.hs-pricing-note {
  margin: 0.25rem 0 0 !important;
  padding: 1.05rem 1.2rem;
  background: #f3f7fb;
  border-left: 4px solid #0668e1;
  border-radius: 0 12px 12px 0;
  color: #212529 !important;
  box-shadow: inset 0 0 0 1px rgba(6, 104, 225, 0.08);
}

.hs-prose {
  max-width: 820px;
}

.hs-prose p {
  margin: 0 0 1rem;
  line-height: 1.7;
}

.hs-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.hs-tools span {
  padding: 0.5rem 0.9rem;
  background: var(--hs-panel);
  border: 1px solid var(--hs-line);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--hs-text);
}

.hs-mapview-section {
  background: linear-gradient(180deg, #f4f8fc 0%, #eef3f8 100%);
  border-top: 1px solid rgba(28, 43, 58, 0.06);
}

.hs-mapview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
  margin: 0 0 1.25rem;
}

.hs-mapview-card {
  position: relative;
  overflow: hidden;
  padding: 1.35rem 1.3rem 1.4rem;
  background: #ffffff;
  border: 1px solid rgba(28, 43, 58, 0.08);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(28, 43, 58, 0.06);
}

.hs-mapview-card > * {
  position: relative;
  z-index: 1;
}

.hs-mapview-card-2d::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -4%;
  height: 68%;
  background: url("assets/mapview/2d-map-overlay.png") center bottom / cover no-repeat;
  opacity: 0.52;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.65) 50%, transparent 92%);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.65) 50%, transparent 92%);
}

.hs-mapview-card-3d::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -4%;
  height: 68%;
  background: url("assets/mapview/3d-map-overlay.png") center bottom / cover no-repeat;
  opacity: 0.52;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.65) 50%, transparent 92%);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.65) 50%, transparent 92%);
}

.hs-mapview-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: #1c2b3a;
}

.hs-mapview-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--hs-muted);
}

.hs-mapview-badge {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(6, 104, 225, 0.1);
  color: #0668e1;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hs-mapview-badge-3d {
  background: rgba(0, 115, 76, 0.1);
  color: #00734c;
}

.hs-mapview-catalog {
  margin: 0 0 1.15rem;
  max-width: 820px;
  padding: 0.95rem 1.1rem;
  background: rgba(255, 255, 255, 0.72);
  border-left: 4px solid #0668e1;
  border-radius: 0 12px 12px 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--hs-text);
}

.hs-mapview-tools span {
  background: #ffffff;
  border-color: rgba(6, 104, 225, 0.14);
  box-shadow: 0 6px 18px rgba(28, 43, 58, 0.05);
  font-weight: 600;
}

.hs-resources {
  padding: 4.5rem 0;
  background: #0f1c2a;
  color: rgba(255, 255, 255, 0.78);
}

.hs-resources .hs-h2 {
  color: #fff;
  margin-bottom: 2rem;
}

.hs-resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.hs-resource {
  display: flex;
  align-items: flex-end;
  min-height: 120px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: #fff;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
}

.hs-resource:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.hs-close {
  padding: 4.5rem 0;
  text-align: center;
  background: #ffffff;
}

.hs-close-inner {
  max-width: 560px;
  margin: 0 auto;
}

.hs-close-inner > img {
  margin: 0 auto 1rem;
  border-radius: 16px;
}

.hs-close h2 {
  margin: 0 0 0.35rem;
  font-size: 1.75rem;
}

.hs-close h3 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--hs-muted);
}

.hs-close p {
  margin: 0 0 1.5rem;
  line-height: 1.65;
}

.page-home-sample .site-footer {
  background: #f5f7fb;
  color: #14233a;
  border-top: 1px solid rgba(20, 35, 58, 0.08);
  padding-top: 3.5rem;
}

.page-home-sample .hs-footer-grid {
  align-items: start;
  gap: 2.75rem;
}

.page-home-sample .footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 24rem;
}

.page-home-sample .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}

.page-home-sample .footer-brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain;
  display: block;
}

.page-home-sample .footer-brand-text {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #14233a;
}

.page-home-sample .footer-logo img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 20px rgba(20, 35, 58, 0.1);
}

.page-home-sample .footer-tag {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #4a5b70;
}

.page-home-sample .social-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.page-home-sample .social-btn {
  width: auto;
  height: auto;
  min-width: 28px;
  min-height: 28px;
  padding: 0;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #65676b;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.page-home-sample .social-btn svg {
  display: block;
  width: 23px;
  height: 23px;
}

.page-home-sample .social-x svg {
  width: 21px;
  height: 21px;
}

.page-home-sample .social-btn:hover {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  transform: translateY(-1px);
}

.page-home-sample .social-facebook:hover {
  color: #1877f2;
}

.page-home-sample .social-instagram:hover {
  color: #e4405f;
}

.page-home-sample .social-x:hover {
  color: #000000;
}

.page-home-sample .social-linkedin:hover {
  color: #0a66c2;
}

.page-home-sample .footer-col h4 {
  color: #14233a;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.page-home-sample .footer-col a {
  color: #4a5b70;
}

.page-home-sample .footer-col a:hover {
  color: #3d60c9;
}

.page-home-sample .footer-bottom {
  border-top: 1px solid rgba(20, 35, 58, 0.08);
  margin-top: 0.75rem;
  background: #eef2f7;
}

.page-home-sample .footer-bottom p {
  color: #5a6b80;
}

.page-home-sample .footer-bottom a {
  color: #3d60c9;
}

.page-home-sample .footer-bottom a:hover {
  color: #1f3f9a;
}

@media (max-width: 960px) {
  .page-home-sample .hs-footer-grid {
    grid-template-columns: 1fr;
  }

  .page-home-sample .footer-nav {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .hs-feature-grid,
  .hs-app-grid,
  .hs-evo-grid,
  .hs-engine-cards,
  .hs-mapview-grid,
  .hs-check-row,
  .hs-resource-grid,
  .hs-perf-panel,
  .hs-approach,
  .hs-pricing {
    grid-template-columns: 1fr;
  }

  .hs-engine-cards {
    gap: 1rem;
  }

  .hs-engine-card {
    padding: 1.25rem 1.15rem;
  }

  .hs-engine-card-head {
    min-height: 60px;
  }

  .hs-engine-card-icon {
    width: 50px;
    height: 60px;
  }

  .hs-engine-card-icon img {
    height: 50px;
    max-width: 50px;
  }

  .hs-engine-card-esri .hs-engine-card-icon {
    width: 60px;
    height: 60px;
  }

  .hs-engine-card-esri .hs-engine-card-icon img {
    height: 60px;
    max-width: 60px;
  }

  .hs-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .hs-mosaic figure:first-child {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .hs-hero,
  .hs-hero-media,
  .hs-hero-media video,
  .hs-hero-bg,
  .hs-hero-overlay {
    border-radius: 0;
  }

  .hs-hero {
    min-height: min(72vh, 620px);
    padding: 3rem 1.35rem;
  }

  .hs-hero-actions,
  .hs-store-row {
    justify-content: flex-start;
  }

  .hs-lead {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .hs-mosaic {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Shared Meta light theme for Feature Matrix / Maps / Tile Server
   ========================================================= */
.page-meta {
  --meta-bg: #f0f5f9;
  --meta-panel: #ffffff;
  --meta-text: #14233a;
  --meta-muted: #4a5b70;
  --meta-line: rgba(20, 35, 58, 0.1);
  --meta-soft: #eaf2f8;
  --meta-blue: #3d60c9;
  color: var(--meta-muted);
  background: var(--meta-bg);
  font-family: "Work Sans", system-ui, sans-serif;
}

.page-meta h1,
.page-meta h2,
.page-meta h3,
.page-meta h4 {
  color: var(--meta-text);
  font-family: "Work Sans", system-ui, sans-serif;
}

.page-meta .site-header {
  background: rgba(240, 245, 249, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--meta-line);
}

.page-meta .brand,
.page-meta .brand-text {
  color: var(--meta-text);
}

.page-meta .nav-link,
.page-meta .nav-drop-btn {
  color: rgba(20, 35, 58, 0.72);
  font-size: 15.5px;
  font-weight: 400;
}

.page-meta .nav-link:hover,
.page-meta .nav-link.active,
.page-meta .nav-drop-btn:hover {
  color: var(--meta-text);
  background: rgba(20, 35, 58, 0.06);
}

.page-meta .nav-drop.open .nav-drop-btn {
  color: var(--meta-text);
  background: rgba(61, 96, 201, 0.12);
}

.page-meta .nav-drop-menu {
  background: #ffffff;
  border: 1px solid var(--meta-line);
  box-shadow: 0 16px 40px rgba(20, 35, 58, 0.12);
}

.page-meta .nav-drop-menu a {
  color: var(--meta-muted);
}

.page-meta .nav-drop-menu a:hover,
.page-meta .nav-drop-menu a.is-active {
  color: var(--meta-text);
  background: var(--meta-soft);
}

.page-meta .nav-toggle span {
  background: var(--meta-text);
}

.page-meta .site-header.menu-open .nav {
  background: #ffffff;
  border: 1px solid var(--meta-line);
}

.hs-globe-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, transparent 46%, rgba(5, 12, 24, 0.7) 68%, #050c18 86%),
    linear-gradient(180deg, rgba(5, 12, 24, 0.25) 0%, transparent 28%, transparent 72%, rgba(5, 12, 24, 0.5) 100%);
  pointer-events: none;
}

.hs-hero-video,
.hs-hero-video-fade {
  display: none;
}

/* Map page hero — video banner */
.maps-theme .page-hero.maps-hero-banner {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  color: #ffffff;
  background: #050c18;
  border-bottom: 0;
}

.maps-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.maps-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.maps-hero-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 12, 24, 0.72) 0%, rgba(5, 12, 24, 0.45) 45%, rgba(5, 12, 24, 0.55) 100%),
    linear-gradient(180deg, rgba(5, 12, 24, 0.35) 0%, transparent 30%, rgba(5, 12, 24, 0.55) 100%);
}

.maps-theme .maps-hero-banner .page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-meta.maps-theme .page-hero.maps-hero-banner .kicker,
.page-meta.maps-theme .page-hero.maps-hero-banner h1,
.page-meta.maps-theme .page-hero.maps-hero-banner .lead {
  color: #ffffff !important;
  background: transparent !important;
}

.page-meta.maps-theme .page-hero.maps-hero-banner .lead {
  color: rgba(255, 255, 255, 0.92) !important;
}

.maps-theme .maps-hero-banner .map-jump a {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.28);
}

.maps-theme .maps-hero-banner .map-jump a:hover {
  background: rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.maps-theme .maps-hero-banner .btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
}

.page-meta .page-hero {
  padding: 4.25rem 0 3.25rem;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(61, 96, 201, 0.08), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--meta-bg) 100%);
  color: var(--meta-text);
  border-bottom: 1px solid var(--meta-line);
}

.page-meta .page-hero h1,
.page-meta .page-hero h2,
.page-meta .page-hero h3 {
  color: var(--meta-text);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.page-meta .page-hero .lead,
.page-meta .page-hero .kicker,
.page-meta .page-hero .section-label {
  color: var(--meta-muted);
}

.page-meta .page-hero .kicker,
.page-meta .page-hero .section-label {
  color: #045A77;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
}

.page-meta .page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.page-meta .price-badge {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.55rem 1rem;
  background: var(--meta-panel);
  border: 1px solid var(--meta-line);
  border-radius: 8.5px;
  color: var(--meta-text);
  font-weight: 600;
  font-size: 1.25rem;
}

.page-meta .section {
  background: transparent;
}

.page-meta .section-white {
  background: var(--meta-panel);
  border-block: 1px solid var(--meta-line);
}

.page-meta .section-tint {
  background: var(--meta-soft);
  border-block: 1px solid var(--meta-line);
}

.page-meta .section-intro h2,
.page-meta .content-panel h3,
.page-meta .endpoint-card h3 {
  color: var(--meta-text);
}

.page-meta .section-intro p,
.page-meta .content-panel p,
.page-meta .endpoint-card p {
  color: var(--meta-muted);
}

.page-meta .endpoint-card,
.page-meta .content-panel {
  background: var(--meta-panel);
  border: 1px solid var(--meta-line);
  box-shadow: 0 12px 32px rgba(20, 35, 58, 0.06);
  border-radius: 14px;
}

.page-meta .matrix-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--meta-line);
  box-shadow: 0 16px 40px rgba(20, 35, 58, 0.08);
  background: var(--meta-panel);
}

.page-meta .feature-table {
  background: var(--meta-panel);
  font-family: "Work Sans", system-ui, sans-serif;
}

.page-meta .feature-table th {
  background: #d7e6f4;
  color: var(--meta-text);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--meta-line);
}

.page-meta .feature-table td {
  color: var(--meta-muted);
  border-bottom: 1px solid var(--meta-line);
}

.page-meta .feature-table td:nth-child(2),
.page-meta .feature-table td:nth-child(3),
.page-meta .feature-table td:nth-child(4) {
  color: var(--meta-blue);
  font-weight: 600;
}

.page-meta .feature-table tr:nth-child(even) td {
  background: #f7fafc;
}

.page-meta .feature-table tr:hover td {
  background: var(--meta-soft);
}

.page-meta .tools span,
.page-meta .use-case {
  background: var(--meta-panel);
  border: 1px solid var(--meta-line);
  color: var(--meta-text);
  border-radius: 8.5px;
}

.page-meta .site-footer {
  background: #0f1c2a;
  color: rgba(255, 255, 255, 0.72);
  border-top: 0;
}

.page-meta .site-footer a,
.page-meta .site-footer h4 {
  color: rgba(255, 255, 255, 0.85);
}

.page-meta .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Maps under Meta theme */
.page-meta.maps-theme .map-jump a {
  background: var(--meta-panel);
  border: 1px solid var(--meta-line);
  color: var(--meta-text);
  border-radius: 8.5px;
  font-weight: 500;
}

.page-meta.maps-theme .map-jump a:hover {
  background: var(--meta-soft);
  border-color: rgba(61, 96, 201, 0.35);
  color: var(--meta-blue);
}

.page-meta.maps-theme .tile {
  background: var(--meta-panel);
  border: 1px solid var(--meta-line);
  box-shadow: 0 10px 28px rgba(20, 35, 58, 0.06);
  border-radius: 14px;
}

.page-meta.maps-theme .tile-name {
  color: var(--meta-text);
}

.page-meta .video-frame {
  border: 1px solid var(--meta-line);
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  max-width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  max-height: min(70vh, 540px);
}

.page-meta .video-frame video {
  width: 100%;
  height: 100%;
  max-height: min(70vh, 540px);
  object-fit: contain;
  display: block;
}

/* Window Tile Caching — demo block */
.wtc-demo {
  max-width: min(960px, 100%);
  margin: 0 auto;
  text-align: center;
}

.wtc-demo-lead {
  margin: 0 0 1.25rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--meta-text, #14233a);
  text-align: center;
}

.wtc-demo-media {
  position: relative;
  margin: 0 auto 1.35rem;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
  border: 1px solid var(--meta-line, rgba(20, 35, 58, 0.1));
  box-shadow: 0 12px 32px rgba(20, 35, 58, 0.08);
}

.wtc-demo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.wtc-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0668e1;
  cursor: pointer;
}

.wtc-play svg {
  width: 3.5rem;
  height: 3.5rem;
  padding: 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #0668e1;
  box-shadow: 0 12px 32px rgba(6, 104, 225, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wtc-play:hover svg {
  transform: scale(1.06);
  box-shadow: 0 16px 36px rgba(6, 104, 225, 0.35);
}

.wtc-demo-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.wtc-demo-actions .btn-cta,
.wtc-demo-actions .btn-secondary {
  margin: 0;
}

.wtc-demo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0 auto;
  padding: 0.55rem 0.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #3d60c9;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  text-decoration: none;
}

.wtc-demo-btn:hover {
  color: #1f3f9a;
  text-decoration: underline;
  background: transparent !important;
}

.page-meta.maps-theme .map-jump {
  margin-top: 1.5rem;
}

.page-meta .split {
  gap: 1.25rem;
}

.page-meta .endpoint-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.page-meta .endpoint-card,
.page-meta .content-panel {
  padding: 1.35rem 1.25rem;
}

@media (max-width: 960px) {
  .page-meta .endpoint-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Media + Collaboration Architecture (home-sample)
   Blue / black palette — sharp corners, animated flow
   ========================================================= */
.hs-arch {
  --arch-ink: #121212;
  --arch-muted: #4a5b70;
  --arch-line: rgba(18, 18, 18, 0.12);
  --arch-blue: #3d60c9;
  --arch-blue-2: #5b7ddf;
  --arch-blue-soft: #eef2fb;
  --arch-navy: #1a2744;
  --arch-navy-soft: #f3f5f9;
  --arch-ctrl: #6b7c99;
  --arch-out: #e8ecf5;
  --arch-green: #0d8f5f;
  --arch-purple: #6d4bd8;
  padding: 4.75rem 0 5.25rem;
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(61, 96, 201, 0.14), transparent 58%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(26, 39, 68, 0.08), transparent 50%),
    linear-gradient(180deg, #f5f8fc 0%, #eef3f8 100%);
}

.hs-arch-wrap {
  max-width: min(1120px, calc(100% - 2.5rem));
}

.hs-arch-head {
  text-align: center;
  margin-bottom: 2rem;
}

.hs-arch-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--arch-blue);
}

.hs-arch-title {
  margin: 0 0 1rem;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #121212 0%, #1a2744 55%, #3d60c9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hs-arch-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.hs-arch-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hs-arch-tag-video {
  color: var(--arch-blue);
  background: rgba(61, 96, 201, 0.1);
  border: 1px solid rgba(61, 96, 201, 0.22);
}

.hs-arch-tag-fluxer {
  color: var(--arch-navy);
  background: rgba(26, 39, 68, 0.08);
  border: 1px solid rgba(26, 39, 68, 0.16);
}

.hs-arch-sub {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  color: #8a96a8;
  text-transform: uppercase;
}

.hs-arch-board {
  position: relative;
  padding: 1.85rem 1.6rem 1.45rem;
  background:
    radial-gradient(circle at 8% 0%, rgba(61, 96, 201, 0.12), transparent 40%),
    radial-gradient(circle at 92% 100%, rgba(26, 39, 68, 0.1), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  border: 1px solid rgba(61, 96, 201, 0.14);
  border-radius: 18px;
  box-shadow:
    0 24px 60px rgba(26, 39, 68, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.75) inset,
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  overflow: hidden;
}

.hs-arch-board::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(61, 96, 201, 0.35), rgba(26, 39, 68, 0.08), rgba(61, 96, 201, 0.2));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.65;
}

.hs-arch-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61, 96, 201, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 96, 201, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  pointer-events: none;
  opacity: 0.7;
}

.hs-arch-cross {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 14px;
  height: 14px;
  opacity: 0.35;
  pointer-events: none;
}
.hs-arch-cross::before,
.hs-arch-cross::after {
  content: "";
  position: absolute;
  background: var(--arch-blue);
}
.hs-arch-cross::before {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}
.hs-arch-cross::after {
  top: 50%;
  left: 0;
  height: 1px;
  width: 100%;
  transform: translateY(-50%);
}
.hs-arch-cross-tr { left: auto; right: 12px; }
.hs-arch-cross-bl { top: auto; bottom: 12px; }
.hs-arch-cross-br { top: auto; bottom: 12px; left: auto; right: 12px; }

.hs-arch-sectors {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hs-arch-sector {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.hs-arch-sector-1 {
  color: var(--arch-blue);
  background: rgba(61, 96, 201, 0.08);
}

.hs-arch-sector-2 {
  color: var(--arch-navy);
  background: rgba(26, 39, 68, 0.07);
}

.hs-arch-source {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: min(340px, 72%);
  margin: 0 auto;
  padding: 0.95rem 1.15rem;
  text-align: left;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  border: 1.5px solid rgba(61, 96, 201, 0.35);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(61, 96, 201, 0.12);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  transition-delay: calc(var(--d, 0) * 0.08s);
}

.hs-arch-chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  color: var(--arch-blue);
  background: rgba(61, 96, 201, 0.1);
  flex-shrink: 0;
}

.hs-arch-chip-icon-dark {
  color: #ffffff;
  background: linear-gradient(135deg, var(--arch-navy) 0%, #2a3d66 100%);
  box-shadow: 0 6px 16px rgba(26, 39, 68, 0.22);
}
.hs-arch-source::after {
  content: "";
  position: absolute;
  top: 0.7rem;
  right: 0.75rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  animation: archLive 1.8s ease-out infinite;
}
.hs-arch-source:hover {
  border-color: var(--arch-blue);
  box-shadow: 0 12px 28px rgba(61, 96, 201, 0.18);
}
.hs-arch-source strong {
  display: block;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--arch-ink);
  line-height: 1.3;
}

.hs-arch-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 42px;
  margin: 0 auto;
  width: min(720px, 92%);
  position: relative;
}
.hs-arch-pipe {
  position: relative;
  display: block;
}
.hs-arch-pipe::before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 2px;
  background: linear-gradient(180deg, var(--arch-blue), transparent);
}
.hs-arch-pipe-l::before {
  right: 22%;
  background: linear-gradient(180deg, var(--arch-blue), var(--arch-blue-2));
  box-shadow: 0 0 10px rgba(61, 96, 201, 0.45);
  animation: archPulse 2.2s ease-in-out infinite;
}
.hs-arch-pipe-l::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(22% - 3px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--arch-blue-2);
  box-shadow: 0 0 12px rgba(91, 125, 223, 0.9);
  animation: archFlowDown 1.6s linear infinite;
}
.hs-arch-pipe-r::before {
  left: 22%;
  width: 0;
  border-left: 2px dashed var(--arch-ctrl);
  background: none;
  animation: archDash 1.6s linear infinite;
  background-size: 100% 12px;
}

.hs-arch-mid {
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(110px, 0.55fr) minmax(280px, 1.15fr);
  gap: 0.75rem 0.5rem;
  align-items: stretch;
  margin-top: 0.35rem;
}

.hs-arch-col-label {
  margin: 0 0 0.55rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--arch-muted);
}
.hs-arch-col-label-right { text-align: right; color: var(--arch-navy); }

.hs-arch-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1rem;
  border: 1.5px dashed rgba(61, 96, 201, 0.42);
  background:
    linear-gradient(180deg, rgba(61, 96, 201, 0.08), rgba(61, 96, 201, 0.02));
  border-radius: 14px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.55),
    0 8px 24px rgba(61, 96, 201, 0.06);
}

.hs-arch-node {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border: 1.5px solid transparent;
  border-radius: 11px;
  background: #fff;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
  transition-delay: calc(var(--d, 0) * 0.1s);
}

.hs-arch-step {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--arch-blue);
  background: rgba(61, 96, 201, 0.12);
}

.hs-arch-node-body {
  min-width: 0;
}

.hs-arch-node-video {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
  border-color: rgba(61, 96, 201, 0.42);
  box-shadow: 0 8px 20px rgba(61, 96, 201, 0.08);
}
.hs-arch-board.is-in .hs-arch-node,
.hs-arch-board.is-in .hs-arch-source,
.hs-arch-board.is-in .hs-arch-fluxer,
.hs-arch-board.is-in .hs-arch-out {
  opacity: 1;
  transform: translateY(0);
}

.hs-arch-node-video:hover {
  border-color: var(--arch-blue);
  box-shadow: 0 12px 30px rgba(61, 96, 201, 0.18);
  transform: translateY(-2px);
}

.hs-arch-node-video:hover .hs-arch-step {
  background: var(--arch-blue);
  color: #ffffff;
}
.hs-arch-node strong,
.hs-arch-fluxer strong,
.hs-arch-out strong {
  display: block;
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--arch-ink);
  margin-bottom: 0.2rem;
}
.hs-arch-node span,
.hs-arch-out span {
  display: block;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--arch-muted);
}

.hs-arch-vlink {
  display: flex;
  justify-content: center;
  height: 28px;
  position: relative;
}
.hs-arch-vlink span {
  width: 2px;
  height: 100%;
  background: var(--arch-blue);
  position: relative;
  overflow: hidden;
}
.hs-arch-vlink span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background: var(--arch-blue);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  animation: archDrop 1.8s linear infinite;
}
.hs-arch-vlink span::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid var(--arch-blue);
  transform: translateX(-50%);
}

.hs-arch-sync {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 2.6rem 0 0.5rem;
  min-height: 100%;
}
.hs-arch-sync-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.35rem;
  opacity: 0;
  transform: scaleX(0.85);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: calc(var(--d, 0) * 0.12s);
}
.hs-arch-board.is-in .hs-arch-sync-row {
  opacity: 1;
  transform: scaleX(1);
}
.hs-arch-sync-row i {
  position: relative;
  height: 0;
  border-top: 1.5px dashed var(--arch-ctrl);
  display: block;
  overflow: visible;
  background: linear-gradient(90deg, transparent, rgba(61, 96, 201, 0.65), transparent);
  background-size: 36% 100%;
  background-repeat: no-repeat;
  animation: archSweep 2.2s linear infinite;
  animation-delay: calc(var(--d, 0) * 0.35s);
}
.hs-arch-sync-row i::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--arch-blue-2);
  box-shadow: 0 0 10px rgba(91, 125, 223, 0.85);
  animation: archDotX 2.2s linear infinite;
  animation-delay: calc(var(--d, 0) * 0.35s);
}
.hs-arch-sync-row span {
  font-size: 11px;
  font-weight: 700;
  color: var(--arch-blue);
  letter-spacing: 0.07em;
  white-space: nowrap;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(61, 96, 201, 0.1);
  border: 1px solid rgba(61, 96, 201, 0.18);
  box-shadow: 0 4px 12px rgba(61, 96, 201, 0.08);
}

.hs-arch-fluxer {
  position: relative;
  z-index: 1;
  padding: 0;
  background:
    linear-gradient(160deg, #ffffff 0%, var(--arch-navy-soft) 100%);
  border: 1.5px solid rgba(26, 39, 68, 0.38);
  border-radius: 14px;
  min-height: 100%;
  opacity: 0;
  transform: translateY(16px);
  box-shadow: 0 12px 32px rgba(26, 39, 68, 0.1);
  overflow: hidden;
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  transition-delay: calc(var(--d, 0) * 0.1s);
}

.hs-arch-fluxer::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--arch-navy) 0%, var(--arch-blue) 100%);
}

.hs-arch-fluxer-head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.1rem 1.25rem 0.85rem;
}

.hs-arch-fluxer-head strong {
  margin-bottom: 0.15rem;
}

.hs-arch-fluxer ul {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1rem;
}
.hs-arch-fluxer:hover {
  border-color: var(--arch-navy);
  box-shadow: 0 14px 34px rgba(26, 39, 68, 0.14);
  transform: translateY(-2px);
}
.hs-arch-fluxer em {
  display: block;
  margin: 0;
  font-style: normal;
  font-size: 13.5px;
  color: var(--arch-muted);
  line-height: 1.4;
}
.hs-arch-fluxer li {
  position: relative;
  padding-left: 0.9rem;
  font-size: 13px;
  line-height: 1.4;
  color: var(--arch-muted);
}
.hs-arch-fluxer li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0;
  height: 0;
  border-left: 5px solid var(--arch-blue);
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
}
.hs-arch-fluxer li b {
  color: var(--arch-ink);
  font-weight: 600;
}

.hs-arch-feedback {
  display: flex;
  justify-content: center;
  margin: 0.65rem 0 0.35rem;
}
.hs-arch-feedback span {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--arch-ctrl);
  border-bottom: 1.5px dashed var(--arch-ctrl);
  animation: archBlink 2.8s ease-in-out infinite;
}

.hs-arch-down {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 36px;
  margin: 0.15rem 0 0.35rem;
}
.hs-arch-down span {
  position: relative;
}
.hs-arch-down span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--arch-blue), var(--arch-blue-2));
  box-shadow: 0 0 8px rgba(61, 96, 201, 0.35);
}
.hs-arch-down-c::before {
  border-left: 2px dashed var(--arch-ctrl);
  width: 0;
  background: none;
  box-shadow: none;
}
.hs-arch-down span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid var(--arch-blue);
  animation: archArrowPulse 1.6s ease-in-out infinite;
}
.hs-arch-down-c::after { border-top-color: var(--arch-ctrl); }
.hs-arch-down-l::after { animation-delay: 0s; }
.hs-arch-down-c::after { animation-delay: 0.25s; }
.hs-arch-down-r::after { animation-delay: 0.5s; }

.hs-arch-outputs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.hs-arch-out {
  position: relative;
  padding: 1.05rem 1.05rem 1rem 1.15rem;
  background: linear-gradient(180deg, #ffffff, var(--arch-out));
  border: 1.5px solid rgba(61, 96, 201, 0.24);
  border-radius: 12px;
  text-align: left;
  opacity: 0;
  transform: translateY(16px);
  box-shadow: 0 10px 24px rgba(61, 96, 201, 0.08);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  transition-delay: calc(var(--d, 0) * 0.1s);
  overflow: hidden;
}

.hs-arch-out::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--arch-blue);
}

.hs-arch-out-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  margin-bottom: 0.55rem;
  border-radius: 9px;
  color: var(--arch-blue);
  background: rgba(61, 96, 201, 0.1);
}

.hs-arch-out-viewer::before {
  background: linear-gradient(90deg, var(--arch-blue), var(--arch-blue-2));
}

.hs-arch-out-collab::before {
  background: linear-gradient(90deg, var(--arch-green), #14b87a);
}

.hs-arch-out-collab {
  border-color: rgba(13, 143, 95, 0.22);
}

.hs-arch-out-collab .hs-arch-out-icon {
  color: var(--arch-green);
  background: rgba(13, 143, 95, 0.1);
}

.hs-arch-out-ops::before {
  background: linear-gradient(90deg, var(--arch-purple), #8b6df0);
}

.hs-arch-out-ops {
  border-color: rgba(109, 75, 216, 0.22);
}

.hs-arch-out-ops .hs-arch-out-icon {
  color: var(--arch-purple);
  background: rgba(109, 75, 216, 0.1);
}
.hs-arch-out:hover {
  border-color: var(--arch-blue);
  box-shadow: 0 12px 28px rgba(61, 96, 201, 0.16);
  transform: translateY(-3px);
}

.hs-arch-sidechan {
  margin: 0.85rem auto 0.35rem;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #8a96a8;
  border-top: 1px dotted rgba(107, 124, 153, 0.55);
  width: min(420px, 70%);
  padding-top: 0.45rem;
}

.hs-arch-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-top: 1.15rem;
  flex-wrap: wrap;
}
.hs-arch-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
}
.hs-arch-leg {
  position: relative;
  padding-left: 2rem;
  font-size: 12.5px;
  color: var(--arch-muted);
}
.hs-arch-leg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.5rem;
  height: 0;
  transform: translateY(-50%);
}
.hs-arch-leg-data::before {
  border-top: 2px solid var(--arch-blue);
}
.hs-arch-leg-ctrl::before {
  border-top: 2px dashed var(--arch-ctrl);
}
.hs-arch-note {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #5a6a88;
}

@keyframes archDrop {
  0% { top: -10%; opacity: 0; }
  20% { opacity: 1; }
  100% { top: 90%; opacity: 0; }
}
@keyframes archSweep {
  0% { background-position: -40% 0; }
  100% { background-position: 140% 0; }
}
@keyframes archPulse {
  0%, 100% { opacity: 0.45; filter: brightness(1); }
  50% { opacity: 1; filter: brightness(1.25); }
}
@keyframes archDash {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}
@keyframes archBlink {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}
@keyframes archLive {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
@keyframes archFlowDown {
  0% { top: 0; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { top: calc(100% - 8px); opacity: 0; }
}
@keyframes archDotX {
  0% { left: 0; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { left: calc(100% - 7px); opacity: 0; }
}
@keyframes archArrowPulse {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.65; }
  50% { transform: translateX(-50%) translateY(3px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hs-arch-vlink span::after,
  .hs-arch-sync-row i,
  .hs-arch-sync-row i::after,
  .hs-arch-pipe-l::before,
  .hs-arch-pipe-l::after,
  .hs-arch-pipe-r::before,
  .hs-arch-feedback span,
  .hs-arch-source::after,
  .hs-arch-down span::after {
    animation: none !important;
  }
  .hs-arch-node,
  .hs-arch-source,
  .hs-arch-fluxer,
  .hs-arch-out,
  .hs-arch-sync-row {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  .hs-arch-mid {
    grid-template-columns: 1fr;
  }
  .hs-arch-sync {
    padding: 0.35rem 0;
    gap: 0.45rem;
  }
  .hs-arch-col-label-right { text-align: left; }
  .hs-arch-fluxer ul { grid-template-columns: 1fr; }
  .hs-arch-outputs { grid-template-columns: 1fr; }
  .hs-arch-down { display: none; }
  .hs-arch-split { height: 28px; }
  .hs-arch-title { font-size: clamp(24px, 7vw, 34px); }
}

/* =========================================================
   Windows Tile Server — Meta light, high-fi product page
   ========================================================= */
.page-wts {
  --wts-ink: #14233a;
  --wts-muted: #4a5b70;
  --wts-soft: #f0f2f5;
  --wts-bg: #f4f5f7;
  --wts-line: rgba(20, 35, 58, 0.1);
  --meta-blue: #14233a;
  background: var(--wts-bg);
}

.page-wts .site-header {
  background: rgba(244, 245, 247, 0.94);
}

.page-wts .wts-kicker,
.page-wts .kicker {
  color: var(--wts-muted);
}

.wts-banner {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid var(--wts-line);
  padding: clamp(2.5rem, 6vh, 4rem) 0;
}

.wts-banner-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.15fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}

.wts-banner-copy {
  max-width: 36rem;
}

.wts-kicker {
  margin: 0 0 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wts-muted);
}

.wts-banner h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(40px, 5.5vw, 60px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--wts-ink);
}

.wts-lead {
  margin: 0 0 0.7rem;
  max-width: 40rem;
  font-size: 18px;
  line-height: 1.55;
  color: var(--wts-muted);
}

.wts-banner-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.6rem;
}

.wts-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
}

.wts-buy-btn {
  display: inline-flex;
  line-height: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.wts-buy-btn img {
  width: auto;
  height: calc(2.15rem + 0.4rem);
  display: block;
  background: none;
}

.wts-buy-btn:hover {
  transform: translateY(-2px);
  opacity: 0.94;
}

.wts-main-web-btn {
  background: #121212 !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  text-decoration: none;
}

.wts-main-web-btn .btn-cta-label {
  color: #ffffff !important;
}

.wts-main-web-btn:hover {
  background: #000000 !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  transform: translateY(-2px);
}

.page-wts .price-badge {
  border-radius: 8.5px;
}

/* Right column — auto fade images, no panel bg */
.wts-banner-visual {
  position: relative;
  width: 100%;
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

.wts-banner-slides {
  position: relative;
  aspect-ratio: 4 / 3;
  background: transparent;
}

.wts-banner-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1s ease, visibility 1s ease;
  background: transparent;
}

.wts-banner-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  pointer-events: auto;
}

.wts-banner-slide img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: scale(0.985);
  transition: transform 3.5s ease;
}

.wts-banner-slide.is-active img {
  transform: scale(1);
}

.wts-banner-visual:hover .wts-banner-slide.is-active img {
  transform: scale(1.04);
  transition: transform 0.55s ease;
}

.wts-feature-band {
  padding: 1rem 0 2rem;
  background: #ffffff;
}

.wts-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2.75rem, 6vh, 4.5rem) 0;
  border-bottom: 1px solid var(--wts-line);
}

.wts-feature:last-child { border-bottom: 0; }

.wts-feature-reverse {
  grid-template-columns: minmax(320px, 1.15fr) minmax(260px, 0.85fr);
}

.wts-feature-reverse .wts-feature-text { order: 2; }
.wts-feature-reverse .wts-feature-shot { order: 1; }

.wts-feature-text h2 {
  margin: 0 0 1rem;
  font-size: clamp(28px, 3.4vw, 39px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--wts-ink);
}

.wts-feature-text p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--wts-muted);
  max-width: 28rem;
}

.wts-feature-shot {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  display: grid;
  place-items: center;
  min-height: 0;
  box-shadow: none;
  transition: transform 0.35s ease;
}

.wts-feature:hover .wts-feature-shot {
  transform: translateY(-4px);
  box-shadow: none;
}

.wts-feature-shot img {
  width: auto;
  max-width: 100%;
  max-height: 420px;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 0;
  background: transparent;
  filter: none;
  box-shadow: none;
}

.wts-gallery {
  padding: clamp(3.5rem, 8vh, 5rem) 0;
  background: var(--wts-bg);
}

.wts-gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 240px 240px auto;
  gap: 0.9rem;
  margin-bottom: 2.25rem;
}

.wts-g {
  margin: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.wts-g-lg { grid-row: 1 / 3; }

.wts-g-wide {
  grid-column: 1 / -1;
  max-height: 280px;
}

.wts-g img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

.wts-g:hover img { transform: scale(1.03); }

.wts-support-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.wts-support {
  padding: 1.75rem 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(20, 35, 58, 0.08);
  box-shadow: 0 8px 28px rgba(20, 35, 58, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wts-support:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(20, 35, 58, 0.08);
}

.wts-support h3 {
  margin: 0 0 0.7rem;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--wts-ink);
}

.wts-support p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--wts-muted);
}

.wts-endpoints {
  padding: clamp(3.5rem, 8vh, 5rem) 0;
  background: #ffffff;
}

.wts-sec-head {
  max-width: 40rem;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.wts-sec-head h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(28px, 3.5vw, 39px);
  line-height: 1.15;
  color: var(--wts-ink);
}

.wts-sec-head p:last-child {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--wts-muted);
}

.wts-endpoint-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.wts-endpoint {
  padding: 1.55rem 1.4rem;
  background: #ffffff;
  border: 1px solid rgba(20, 35, 58, 0.08);
  box-shadow: 0 8px 28px rgba(20, 35, 58, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wts-endpoint:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(20, 35, 58, 0.09);
}

.wts-endpoint-icon {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 0 0.95rem;
  padding: 0;
  color: #2a3441;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.wts-endpoint-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  background: transparent;
}

.wts-endpoint:hover .wts-endpoint-icon {
  color: #14181f;
}

.wts-endpoint h3 {
  margin: 0 0 0.55rem;
  font-size: 18px;
  color: var(--wts-ink);
}

.wts-endpoint p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--wts-muted);
}

.wts-viewer {
  padding: clamp(3.5rem, 8vh, 5rem) 0;
  background: var(--wts-soft);
}

.wts-viewer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: center;
}

.wts-viewer-copy h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(28px, 3.2vw, 36px);
  color: var(--wts-ink);
}

.wts-viewer-copy h3 {
  margin: 1.5rem 0 0.55rem;
  font-size: 20px;
  color: var(--wts-ink);
}

.wts-viewer-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--wts-muted);
}

.wts-viewer-media {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.wts-viewer-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: 420px;
  margin-inline: auto;
  background: transparent;
}

.wts-close {
  padding: clamp(3.5rem, 8vh, 5rem) 0 5rem;
  background: #ffffff;
}

.wts-mapsvc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin-bottom: 2.25rem;
}

.wts-mapsvc {
  background: transparent;
  border: 0;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.25s ease;
}

.wts-mapsvc:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.wts-mapsvc figure {
  margin: 0;
  aspect-ratio: 16 / 11;
  background: transparent;
  overflow: hidden;
}

.wts-mapsvc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.wts-mapsvc:hover img { transform: scale(1.04); }

.wts-mapsvc h3 {
  margin: 0;
  padding: 0.85rem 0.95rem;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--wts-ink);
  border-top: 1px solid var(--wts-line);
}

.wts-why {
  padding: clamp(3.5rem, 8vh, 5.5rem) 0;
  background: var(--wts-bg);
  border-top: 1px solid var(--wts-line);
}

.wts-why-head {
  max-width: 40rem;
  margin: 0 0 2.5rem;
}

.wts-why-head h2 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 39px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--wts-ink);
}

.wts-why-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.wts-why-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.35rem;
}

.wts-why-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.wts-why-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: block;
  flex-shrink: 0;
  color: #2a3441;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0;
  margin: 0.15rem 0 0;
}

.wts-why-points p {
  margin: 0.35rem 0 0;
  font-size: 17px;
  line-height: 1.5;
  color: var(--wts-ink);
}

.wts-why-aside {
  display: grid;
  gap: 1.75rem;
  padding-top: 0.15rem;
}

.wts-why-block {
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--wts-line);
}

.wts-why-block:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.wts-why-block h3 {
  margin: 0 0 0.65rem;
  font-size: 20px;
  line-height: 1.3;
  color: var(--wts-ink);
}

.wts-why-block p {
  margin: 0 0 0.65rem;
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--wts-muted);
}

.wts-why-block p:last-child { margin-bottom: 0; }

.wts-why-apps {
  color: var(--wts-ink) !important;
  font-size: 15.5px !important;
  line-height: 1.45 !important;
}

.wts-why .wts-cta-row {
  margin-top: 0.25rem;
  align-items: center;
}

.wts-why .wts-buy-btn,
.wts-why .btn-cta {
  height: calc(2.15rem + 0.4rem);
}

.wts-why .wts-buy-btn img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  .wts-banner-slide,
  .wts-feature-shot,
  .wts-g img,
  .wts-endpoint {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 980px) {
  .wts-banner-grid,
  .wts-feature,
  .wts-feature-reverse,
  .wts-viewer-grid,
  .wts-why-grid {
    grid-template-columns: 1fr;
  }

  .wts-banner-visual {
    width: 100%;
    order: -1;
  }

  .wts-support-row,
  .wts-endpoint-grid,
  .wts-mapsvc-grid {
    grid-template-columns: 1fr 1fr;
  }

  .wts-feature-reverse .wts-feature-text,
  .wts-feature-reverse .wts-feature-shot {
    order: initial;
  }

  .wts-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .wts-g-lg {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 240px;
  }

  .wts-banner-slides { aspect-ratio: 4 / 3; }
}

@media (max-width: 640px) {
  .wts-gallery-grid,
  .wts-endpoint-grid,
  .wts-mapsvc-grid,
  .wts-support-row { grid-template-columns: 1fr; }
  .wts-why-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Portable Tile Server — enterprise dark landing (.page-pts)
   ========================================================= */
.page-pts {
  --pts-bg: #06090f;
  --pts-panel: #0e141d;
  --pts-panel-2: #121a26;
  --pts-line: rgba(140, 180, 220, 0.14);
  --pts-text: #d7e0ea;
  --pts-muted: rgba(215, 224, 234, 0.72);
  --pts-head: #f4f7fb;
  --pts-cyan: #7ec8ff;
  --pts-accent: #3d7dff;
  background: var(--pts-bg);
  color: var(--pts-text);
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 16px;
}

.page-pts :is(h1, h2, h3, h4) { color: var(--pts-head); }
.page-pts :is(p, li) { color: var(--pts-muted); }

.page-pts .pts-header.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 300;
  background: #050b14;
  border-bottom: 1px solid var(--pts-line);
  backdrop-filter: none;
}

.page-pts .pts-header .header-inner {
  width: min(1240px, calc(100% - 2rem));
  min-height: 72px;
  flex-wrap: nowrap;
  gap: 0.65rem;
  overflow: visible;
}

.page-pts .pts-header .brand {
  flex: 0 0 auto;
  gap: 0.55rem;
  margin-right: 0.4rem;
}

.page-pts .pts-header .brand-text {
  white-space: nowrap;
  font-family: "IBM Plex Sans", "Work Sans", system-ui, sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
  color: #e8f4fb;
}

.page-pts .pts-header .nav {
  flex: 1 1 auto;
  justify-content: flex-end;
  flex-wrap: nowrap;
  min-width: 0;
}

.page-pts .pts-header .nav-link,
.page-pts .pts-header .nav-drop-btn {
  white-space: nowrap;
  font-family: "IBM Plex Sans", "Work Sans", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 0.4rem 0.55rem;
  color: #e8f4fb;
}

.page-pts .pts-header .pts-header-cta,
.page-pts .pts-header .pts-cta-orange {
  flex: 0 0 auto;
  display: inline-flex;
}

.page-pts .pts-header .pts-theme-toggle {
  flex: 0 0 auto;
  flex-shrink: 0;
}

.page-pts .pts-header .brand-text,
.page-pts .pts-header .nav-link,
.page-pts .pts-header .nav-drop-btn {
  color: #e8f4fb;
}

.page-pts .pts-header .brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.page-pts .pts-footer .footer-brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.page-pts .pts-app-icon {
  width: 72px;
  height: 72px;
}

.page-pts .pts-tmg-mark {
  display: block;
  width: min(240px, 100%);
  height: auto;
  margin: 0.85rem 0 0;
  object-fit: contain;
}

.page-pts .pts-header .nav-link:hover:not(.active),
.page-pts .pts-header .nav-drop-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.page-pts .pts-header .nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.page-pts .pts-header .nav-toggle span { background: #ffffff; }

.page-pts .pts-header .nav-drop-menu {
  background: #121a26;
  border-color: var(--pts-line);
}

.page-pts .pts-header .nav-drop-menu a { color: #f4f7fb; }
.page-pts .pts-header .nav-drop-menu a:hover {
  background: rgba(126, 200, 255, 0.12);
  color: #7ec8ff;
}

.page-pts .pts-header-cta {
  margin-left: 0.5rem;
  text-decoration: none;
  height: 2.4rem;
  font-size: 14px;
  padding: 0 1.05rem;
}

.page-pts .pts-hero { padding-top: 5%; }
.page-pts .pts-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pts-cyan);
}

.page-pts .pts-kicker-on-dark { color: var(--pts-cyan); }

.page-pts .pts-hero-copy h1 {
  color: #ffffff !important;
  max-width: 22rem;
}

.page-pts .pts-hero-copy .hs-lead {
  color: rgba(255, 255, 255, 0.78) !important;
  max-width: 38rem;
}

.page-pts .pts-anchor.hs-anchor {
  position: sticky;
  top: 0;
  z-index: 45;
  background: rgba(8, 12, 20, 0.92);
  border-top: 1px solid var(--pts-line);
  border-bottom: 1px solid var(--pts-line);
  backdrop-filter: blur(16px);
}

.page-pts .pts-header.site-header.menu-open {
  background: #06090f;
}

@media (max-width: 960px) {
  .page-pts .pts-header-cta { display: none; }
  .page-pts .pts-header.site-header.menu-open .nav {
    background: #0e141d;
    border-bottom-color: var(--pts-line);
  }
}

.page-pts .hs-anchor-explore,
.page-pts .hs-anchor-links a {
  color: rgba(244, 247, 251, 0.72) !important;
}

.page-pts .hs-anchor-links a.is-active {
  color: #ffffff !important;
  border-bottom-color: var(--pts-cyan);
}

.page-pts .pts-section {
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--pts-line);
}

.page-pts .pts-section-tight { padding-top: 1.5rem; }

.page-pts .pts-h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
}

.page-pts .pts-lead {
  max-width: 46rem;
  margin: 0 0 1.8rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.page-pts .pts-mod-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.page-pts .pts-mod-chip {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.4rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--pts-line);
  border-radius: 10px;
  background: var(--pts-panel);
  color: var(--pts-head);
  font-size: 0.92rem;
  font-weight: 500;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.page-pts .pts-mod-chip span {
  flex-shrink: 0;
  font-family: "Work Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--pts-cyan);
}

.page-pts .pts-mod-chip:hover {
  border-color: rgba(126, 200, 255, 0.45);
  background: var(--pts-panel-2);
}

.page-pts .pts-module {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  margin: 0 0 2.5rem;
  padding: 1.15rem;
  background: var(--pts-panel);
  border: 1px solid var(--pts-line);
  border-radius: 16px;
}

.page-pts .pts-module-flip { grid-template-columns: 0.95fr 1.05fr; }
.page-pts .pts-module-flip .pts-module-media { order: 2; }
.page-pts .pts-module-flip .pts-module-body { order: 1; }

.page-pts .pts-module-media {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #070b12;
  min-height: 240px;
}

.page-pts .pts-module-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
}

.page-pts .pts-module-media-panel {
  display: flex;
  align-items: stretch;
}

.page-pts .pts-mod-id {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pts-cyan);
}

.page-pts .pts-module-body h3 {
  margin: 0 0 0.65rem;
  font-size: 1.55rem;
}

.page-pts .pts-tree {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.page-pts .pts-tree li {
  position: relative;
  margin: 0;
  padding: 0.38rem 0 0.38rem 1.45rem;
  border-top: 1px solid var(--pts-line);
  color: var(--pts-text);
  font-size: 0.95rem;
}

/* Tab panels: checklist / row headings */
.page-pts .pts-tab-panel .pts-tree li {
  font-family: "IBM Plex Sans", "Work Sans", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
  line-height: 1.35;
  letter-spacing: normal;
  text-transform: none;
  color: #056f91 !important;
  padding: 0.55rem 0 0.55rem 2.15rem;
}

.page-pts .pts-tab-panel .pts-tree li::before {
  top: 0.85rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #056f91;
}

.page-pts .pts-tree li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.9rem;
  height: 0.9rem;
  border: 0;
  transform: none;
  border-radius: 50%;
  background-color: #44c8f5;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='7' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M4.2 8.2l2.4 2.4 5.2-5.2'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='7' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M4.2 8.2l2.4 2.4 5.2-5.2'/%3E%3C/svg%3E") center / contain no-repeat;
}

.page-pts .pts-tree code {
  font-size: 0.88em;
  color: var(--pts-cyan);
}

.page-pts .pts-hud {
  width: 100%;
  padding: 1.4rem 1.5rem;
  background:
    linear-gradient(160deg, rgba(61, 125, 255, 0.18), transparent 42%),
    #0a121c;
  border: 1px solid var(--pts-line);
}

.page-pts .pts-hud-label {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pts-cyan);
}

.page-pts .pts-hud-title {
  margin: 0.35rem 0 1rem;
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
}

.page-pts .pts-hud ul,
.page-pts .pts-hud ol {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--pts-text);
}

.page-pts .pts-endpoint-grid,
.page-pts .pts-compat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.page-pts .pts-card {
  padding: 1.35rem 1.4rem 1.2rem;
  background: var(--pts-panel);
  border: 1px solid var(--pts-line);
  border-radius: 14px;
}

.page-pts .pts-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}

.page-pts .pts-logo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.page-pts .pts-logo-row img {
  object-fit: contain;
}

.page-pts .pts-theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  margin-left: 0.35rem;
  padding: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  outline: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
  color: #ffffff;
  cursor: pointer;
  visibility: visible;
  opacity: 1;
  z-index: 5;
}

.page-pts .pts-theme-toggle:hover,
.page-pts .pts-theme-toggle:focus {
  background: rgba(255, 255, 255, 0.22);
  border-color: #ffffff;
  box-shadow: none;
  opacity: 1;
  color: #ffffff;
}

.page-pts .pts-theme-toggle:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.page-pts .pts-theme-toggle svg {
  display: block;
  width: 18px;
  height: 18px;
  color: inherit;
}

.page-pts .pts-theme-toggle-dark svg circle {
  fill: currentColor;
}

.page-pts .pts-theme-toggle-dark svg path {
  fill: none;
  stroke: currentColor;
}

.page-pts .pts-theme-toggle-light svg path {
  fill: currentColor;
  stroke: none;
}

.page-pts .pts-theme-toggle-dark,
.page-pts .pts-theme-toggle-light {
  display: none !important;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: inherit;
}

html[data-theme="dark"] .page-pts .pts-theme-toggle-dark {
  display: inline-flex !important;
  color: #ffffff;
}

html[data-theme="light"] .page-pts .pts-theme-toggle-light {
  display: inline-flex !important;
}

html[data-theme="dark"] .page-pts .pts-theme-toggle {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

/* The shared nav dropdown ships light; follow the active theme instead. */
.page-pts .nav-drop-menu {
  background: #08131d;
  border-color: var(--pts-line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.page-pts .nav-drop-menu a { color: #d7e6f2; }

.page-pts .nav-drop-menu a:hover {
  background: rgba(68, 200, 245, 0.14);
  color: #ffffff;
}

html[data-theme="light"] .page-pts .nav-drop-menu {
  background: #ffffff;
  border-color: rgba(16, 24, 40, 0.14);
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.14);
}

html[data-theme="light"] .page-pts .nav-drop-menu a { color: #10151c; }

html[data-theme="light"] .page-pts .nav-drop-menu a:hover {
  background: #eef4fa;
  color: #0b5cad;
}

.page-pts .pts-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.page-pts .pts-mosaic figure {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--pts-line);
  min-height: 180px;
}

.page-pts .pts-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 180px;
}

.page-pts .pts-close {
  padding: 4.5rem 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(61, 125, 255, 0.22), transparent 55%),
    #05080d;
  text-align: center;
}

.page-pts .pts-close-inner img {
  margin: 0 auto 1rem;
  border-radius: 16px;
}

.page-pts .pts-close h2 { color: #ffffff; }
.page-pts .pts-close p {
  max-width: 36rem;
  margin: 0 auto 1.4rem;
}

.page-pts .pts-close .btn-cta { text-decoration: none; }

.page-pts .pts-footer.site-footer {
  background: #05080d;
  border-top: 1px solid var(--pts-line);
  color: var(--pts-muted);
}

.page-pts .pts-footer .footer-brand-text,
.page-pts .pts-footer .footer-col h4 { color: #ffffff; }
.page-pts .pts-footer a { color: var(--pts-muted); }
.page-pts .pts-footer a:hover { color: var(--pts-cyan); }
.page-pts .pts-footer .footer-bottom {
  border-top: 1px solid var(--pts-line);
  color: var(--pts-muted);
}

@media (max-width: 1080px) {
  .page-pts .pts-mod-index,
  .page-pts .pts-endpoint-grid,
  .page-pts .pts-compat-grid { grid-template-columns: repeat(2, 1fr); }
  .page-pts .pts-module,
  .page-pts .pts-module-flip {
    grid-template-columns: 1fr;
  }
  .page-pts .pts-module-flip .pts-module-media,
  .page-pts .pts-module-flip .pts-module-body { order: unset; }
  .page-pts .pts-mosaic { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .page-pts .pts-header-cta { display: none; }
  .page-pts .pts-mod-index,
  .page-pts .pts-endpoint-grid,
  .page-pts .pts-compat-grid,
  .page-pts .pts-mosaic { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .page-pts .hs-globe-sphere,
  .page-pts .pts-hero-globe-sphere { animation: none; }
}

html[data-theme="light"] .page-pts {
  --pts-bg: #f4f6f9;
  --pts-panel: #ffffff;
  --pts-panel-2: #eef2f6;
  --pts-line: rgba(28, 43, 58, 0.12);
  --pts-text: #1c2430;
  --pts-muted: #3d4a5c;
  --pts-head: #10151c;
  --pts-cyan: #1c2430;
  background: var(--pts-bg);
  color: var(--pts-text);
}

html[data-theme="light"] .page-pts :is(h1, h2, h3, h4) { color: var(--pts-head); }
html[data-theme="light"] .page-pts :is(p, li) { color: var(--pts-muted); }

html[data-theme="light"] .page-pts .pts-header.site-header {
  background: rgba(244, 246, 249, 0.92);
}

html[data-theme="light"] .page-pts .pts-header .brand-text,
html[data-theme="light"] .page-pts .pts-header .nav-link,
html[data-theme="light"] .page-pts .pts-header .nav-drop-btn,
html[data-theme="light"] .page-pts .pts-header .nav-toggle span {
  color: #122033;
  background-color: transparent;
}

html[data-theme="light"] .page-pts .pts-header .nav-toggle span { background: #122033; }

html[data-theme="light"] .page-pts .pts-header .nav-link:hover:not(.active),
html[data-theme="light"] .page-pts .pts-header .nav-drop-btn:hover {
  color: #0b5cad;
  background: rgba(11, 92, 173, 0.08);
}

html[data-theme="light"] .page-pts .pts-header .nav-link.active {
  color: #0b5cad;
  background: rgba(11, 92, 173, 0.12);
}

html[data-theme="light"] .page-pts .pts-header .nav-drop-menu {
  background: #ffffff;
}

html[data-theme="light"] .page-pts .pts-header .nav-drop-menu a { color: #122033; }

html[data-theme="light"] .page-pts .pts-theme-toggle {
  border: 1.5px solid rgba(28, 43, 58, 0.28);
  background: rgba(16, 24, 40, 0.06);
  color: #122033;
}

html[data-theme="light"] .page-pts .pts-theme-toggle:hover,
html[data-theme="light"] .page-pts .pts-theme-toggle:focus {
  background: rgba(11, 92, 173, 0.1);
  border-color: rgba(11, 92, 173, 0.4);
  color: #0b5cad;
}

html[data-theme="light"] .page-pts .pts-anchor.hs-anchor {
  background: rgba(244, 246, 249, 0.94);
}

html[data-theme="light"] .page-pts .hs-anchor-explore,
html[data-theme="light"] .page-pts .hs-anchor-links a {
  color: #3d4a5c !important;
}

html[data-theme="light"] .page-pts .hs-anchor-links a.is-active {
  color: #1c2430 !important;
}

html[data-theme="light"] .page-pts .pts-tree li { color: var(--pts-text); }
html[data-theme="light"] .page-pts .pts-logo-unity { filter: invert(1); }
html[data-theme="light"] .page-pts .pts-hud {
  background: linear-gradient(160deg, rgba(11, 92, 173, 0.1), transparent 42%), #eef4fb;
}
html[data-theme="light"] .page-pts .pts-hud-title { color: #10151c; }
html[data-theme="light"] .page-pts .pts-close {
  background: radial-gradient(ellipse at 50% 0%, rgba(11, 92, 173, 0.12), transparent 55%), #eef2f6;
}
html[data-theme="light"] .page-pts .pts-close h2 { color: #10151c; }
html[data-theme="light"] .page-pts .pts-footer.site-footer {
  background: #e8edf3;
}
html[data-theme="light"] .page-pts .pts-footer .footer-brand-text,
html[data-theme="light"] .page-pts .pts-footer .footer-col h4 { color: #10151c; }
html[data-theme="light"] .page-pts .pts-footer a { color: #3d4a5c; }

@media (max-width: 960px) {
  html[data-theme="light"] .page-pts .pts-header.site-header.menu-open .nav {
    background: #ffffff;
  }
}

.page-pts .pts-mod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.page-pts .pts-mod-card {
  padding: 1.25rem 1.2rem 1.15rem;
  background: var(--pts-panel);
  border: 1px solid var(--pts-line);
  border-radius: 14px;
}

.page-pts .pts-mod-icon {
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.65rem;
  color: var(--pts-cyan);
}

.page-pts .pts-mod-icon svg { width: 100%; height: 100%; }

.page-pts .pts-mod-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.12rem;
  color: var(--pts-head);
}

.page-pts .pts-card-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--pts-cyan);
  font-weight: 600;
  font-size: 0.92rem;
}

.page-pts .pts-hw-frame {
  margin-top: 0.5rem;
  overflow: auto;
  border: 1px solid var(--pts-line);
  border-radius: 16px;
  background: var(--pts-panel);
}

.page-pts .pts-hw-svg {
  display: block;
  width: 100%;
  height: auto;
  color: var(--pts-text);
}

.page-pts .pts-hw-label,
.page-pts .pts-hw-sub,
.page-pts .pts-hw-nodes text {
  fill: var(--pts-head);
  font-family: "Work Sans", system-ui, sans-serif;
}

.page-pts .pts-hw-label { font-size: 15px; font-weight: 600; }
.page-pts .pts-hw-sub { font-size: 12px; fill: var(--pts-muted); }
.page-pts .pts-hw-nodes text { font-size: 14px; font-weight: 600; }
.page-pts .pts-hw-nodes rect { fill: var(--pts-panel-2); stroke: var(--pts-line); }

.page-pts .hs-engine-card {
  background: linear-gradient(180deg, #08131d 0%, #060e16 100%);
  border-color: var(--pts-line);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
}

.page-pts .hs-engine-card:hover {
  border-color: rgba(68, 200, 245, 0.4);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.48);
}

.page-pts .hs-engine-card-label { color: var(--pts-head); }
.page-pts .hs-engine-card p { color: var(--pts-body); }

/* Monochrome navy mark needs inverting on the dark surface. */
.page-pts .hs-engine-card-mapbox .hs-engine-card-icon img { filter: invert(1) brightness(1.6); }

.page-pts .hs-game-cta { margin-top: 1.25rem; }

.page-pts .pts-tak-hero { padding-top: 6.5rem; }
.page-pts .pts-tak-hero-inner { text-align: left; }
.page-pts .pts-tak-badge {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 1rem;
}
.page-pts .pts-tak-clients {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 1080px) {
  .page-pts .pts-mod-grid { grid-template-columns: repeat(2, 1fr); }
  .page-pts .pts-tak-clients { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .page-pts .pts-mod-grid,
  .page-pts .pts-tak-clients { grid-template-columns: 1fr; }
}

/* Brand palette from TechMaven marketing boards */
.page-pts {
  --pts-bg: #050b14;
  --pts-panel: #0b1522;
  --pts-panel-2: #101c2c;
  --pts-line: rgba(68, 200, 245, 0.28);
  --pts-text: #e8f4fb;
  --pts-muted: #c8d7e4;
  --pts-head: #ffffff;
  --pts-cyan: #44c8f5;
  --pts-gold: #ffd15a;
  --pts-orange: #00a0d1;
  --pts-display: Inter, "IBM Plex Sans", system-ui, sans-serif;
  --pts-body: "IBM Plex Sans", "Work Sans", system-ui, sans-serif;
  background:
    radial-gradient(ellipse at 80% -10%, rgba(68, 200, 245, 0.12), transparent 42%),
    linear-gradient(#050b14, #050b14);
  font-family: var(--pts-body);
}

.page-pts :is(h1, h2, h3, h4),
.page-pts .pts-kicker,
.page-pts .pts-pill,
.page-pts .brand-text {
  font-family: var(--pts-display);
}

.page-pts .pts-cta-orange,
.page-pts a.pts-cta-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  padding: 0 1.2rem;
  border: 0;
  border-radius: 8px;
  background: #0784ab;
  color: #ffffff !important;
  font-family: var(--pts-display);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-pts .pts-cta-orange:hover { filter: brightness(1.08); color: #ffffff !important; background: #056f91; }
.page-pts .pts-cta-wide { min-width: 18rem; height: 3rem; }
.page-pts .pts-cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  padding: 0 1.15rem;
  border: 1px solid #121418;
  border-radius: 8px;
  background: #121418;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.page-pts .pts-header.site-header {
  background: #050b14;
}

.page-pts .pts-hero-brand {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #050b14;
}

.page-pts .pts-hero-globe {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-pts .pts-hero-globe-orbit {
  position: absolute;
  right: -4%;
  top: 48%;
  transform: translateY(-50%);
  width: min(56vw, 640px);
  height: min(56vw, 640px);
  overflow: hidden;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(68, 200, 245, 0.28),
    0 0 0 32px rgba(68, 200, 245, 0.07),
    0 0 0 64px rgba(68, 200, 245, 0.045),
    0 0 0 98px rgba(68, 200, 245, 0.03),
    0 0 90px rgba(68, 200, 245, 0.22);
}

.page-pts .pts-cesium-globe,
.page-pts .pts-cesium-globe .cesium-viewer,
.page-pts .pts-cesium-globe .cesium-viewer-cesiumWidgetContainer,
.page-pts .pts-cesium-globe .cesium-widget,
.page-pts .pts-cesium-globe canvas {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.page-pts .pts-cesium-globe .cesium-viewer-bottom,
.page-pts .pts-cesium-globe .cesium-viewer-toolbar,
.page-pts .pts-cesium-globe .cesium-viewer-animationContainer,
.page-pts .pts-cesium-globe .cesium-viewer-timelineContainer,
.page-pts .pts-cesium-globe .cesium-credit-logoContainer,
.page-pts .pts-cesium-globe .cesium-credit-textContainer,
.page-pts .pts-cesium-globe .cesium-widget-credits {
  display: none !important;
}

.page-pts .pts-hero-photo {
  position: absolute;
  inset: 0 0 0 38%;
  background: url("assets/visuals/earth-night.jpg") center / cover no-repeat;
}

.page-pts .pts-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #050b14 0%, #050b14 40%, rgba(5, 11, 20, 0.62) 58%, rgba(5, 11, 20, 0.18) 100%);
}

.page-pts .pts-hero-grid,
.page-pts .pts-hero-radar {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* The banner stays clean — the map layer only runs through the sections below. */
.page-pts .pts-hero-grid { display: none; }

.page-pts .pts-hero-radar {
  background:
    repeating-radial-gradient(circle at 78% 42%, rgba(68, 200, 245, 0.16) 0 1px, transparent 1px 72px);
  opacity: 0.55;
}

.page-pts .pts-hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
  padding: 7.25rem 0 3.25rem;
}

.page-pts .pts-hero-brand-copy { max-width: 40rem; }

.page-pts .pts-hero-brand h1 {
  margin: 0 0 1rem;
  font-family: var(--pts-display);
  font-size: 76px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.page-pts .pts-h2 em {
  font-style: normal;
  color: var(--pts-cyan);
}

.page-pts .pts-hero-brand h1 em {
  font-style: normal;
  color: var(--pts-cyan);
}

@media (max-width: 960px) {
  .page-pts .pts-hero-brand h1 { font-size: clamp(36px, 10vw, 76px); }
}

.page-pts .pts-hero-brand .hs-lead {
  color: rgba(255, 255, 255, 0.82) !important;
  max-width: 36rem;
}

.page-pts .pts-pill,
.page-pts .pts-pill-inline {
  display: inline-flex;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--pts-cyan);
  border-radius: 999px;
  color: var(--pts-cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-pts .pts-pill-inline { margin: 0.85rem 0 0; }

.page-pts .pts-chip-row,
.page-pts .pts-chip-row-static {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  margin: 1.1rem 0 2rem;
  padding: 0;
  padding-inline-start: 0;
  list-style: none;
}

/* Chips sit above capability tabs — keep left edge flush + clear gap below */
.page-pts .pts-lead + .pts-chip-row {
  margin-top: 0.85rem;
  margin-bottom: 2.25rem;
}

.page-pts .pts-board .pts-lead:has(+ .pts-chip-row) {
  margin-bottom: 0.85rem;
}

.page-pts .pts-chip-row + .pts-icon-grid {
  margin-top: 0;
}

.page-pts .pts-chip-row li,
.page-pts .pts-chip-row-static span {
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--pts-line);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-pts .pts-chip-row li.is-black,
.page-pts .pts-chip-row-static span.is-black {
  background: #121418;
  border-color: #121418;
  color: #ffffff;
}

.page-pts .pts-chip-row li.is-gold,
.page-pts .pts-chip-row-static span.is-gold {
  border-color: var(--pts-gold);
  color: var(--pts-gold);
}

.page-pts .pts-phone {
  width: min(320px, 100%);
  margin-left: auto;
  padding: 1.15rem 1rem 1.2rem;
  border: 1px solid var(--pts-cyan);
  border-radius: 28px;
  background: linear-gradient(180deg, #0b1826, #071018);
  box-shadow: 0 0 80px rgba(68, 200, 245, 0.22);
}

.page-pts .pts-phone img {
  width: 48px;
  height: 48px;
  margin-bottom: 0.65rem;
}

.page-pts .pts-phone p {
  margin: 0;
  color: var(--pts-cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-pts .pts-phone :is(h2, h3) {
  margin: 0.2rem 0 0.85rem;
  font-size: 1.35rem;
  color: #ffffff;
}

.page-pts .pts-status {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-pts .pts-status li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-top: 1px solid var(--pts-line);
  color: #ffffff;
  font-size: 0.9rem;
}

.page-pts .pts-status b {
  color: #5dff9a;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-pts .pts-phone-foot {
  margin-top: 0.85rem !important;
  color: rgba(255, 255, 255, 0.62) !important;
  letter-spacing: 0.06em;
}

.page-pts .pts-phone-home {
  display: block;
  width: 62px;
  height: 9px;
  margin: 1.1rem auto 0.15rem;
  border: 1px solid rgba(68, 200, 245, 0.55);
  border-radius: 999px;
}

/* ——— Slim device treatment for the ALL-in-ONE status card ——— */

.page-pts .pts-phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 2.5rem 0;
}

.page-pts .pts-phone-stage::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(30rem, 108%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68, 200, 245, 0.24) 0%, transparent 64%);
  pointer-events: none;
}

/* Radar behind the device: pulsing rings plus a slow rotating sweep. */
.page-pts .pts-phone-radar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(27rem, 104%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.page-pts .pts-radar-ring,
.page-pts .pts-radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.page-pts .pts-radar-ring {
  border: 1px solid rgba(68, 200, 245, 0.38);
  animation: pts-radar-pulse 4.8s ease-out infinite;
}

.page-pts .pts-radar-ring:nth-child(2) { animation-delay: 1.6s; }
.page-pts .pts-radar-ring:nth-child(3) { animation-delay: 3.2s; }

.page-pts .pts-radar-sweep {
  background: conic-gradient(from 0deg, rgba(68, 200, 245, 0.3) 0deg, transparent 55deg, transparent 360deg);
  mask-image: radial-gradient(circle, #000 38%, transparent 72%);
  animation: pts-radar-spin 7s linear infinite;
}

@keyframes pts-radar-pulse {
  0% { transform: scale(0.42); opacity: 0; }
  18% { opacity: 0.9; }
  100% { transform: scale(1); opacity: 0; }
}

@keyframes pts-radar-spin {
  to { transform: rotate(360deg); }
}

.page-pts .pts-phone.pts-phone-device {
  position: relative;
  z-index: 1;
  width: min(272px, 100%);
  margin: 0;
  padding: 1.9rem 1rem 1.1rem;
  border: 3px solid transparent;
  border-radius: 26px;
  background:
    linear-gradient(180deg, #121820 0%, #080c12 100%) padding-box,
    linear-gradient(145deg, #d7dbe1 0%, #8f969e 28%, #4a5158 62%, #1e2328 100%) border-box;
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.page-pts .pts-phone-ear {
  position: absolute;
  top: 0.8rem;
  left: 50%;
  width: 56px;
  height: 6px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(190, 214, 235, 0.4);
}

.page-pts .pts-phone-head {
  text-align: center;
  margin-bottom: 0.9rem;
}

.page-pts .pts-phone-device .pts-phone-head img {
  width: 88px;
  height: 88px;
  margin: 0 auto 0.7rem;
}

.page-pts .pts-phone-device .pts-phone-head :is(h2, h3) {
  margin: 0.25rem 0 0;
  font-size: 1.28rem;
}

/* Fixed viewport so the full feature list can scroll inside the screen. */
.page-pts .pts-status-view {
  position: relative;
  height: 12.5rem;
  overflow: hidden;
  mask-image: linear-gradient(180deg, transparent 0, #000 12%, #000 88%, transparent 100%);
}

.page-pts .pts-status-marquee {
  animation: pts-status-scroll 34s linear infinite;
}

.page-pts .pts-status-view:hover .pts-status-marquee { animation-play-state: paused; }

@keyframes pts-status-scroll {
  to { transform: translateY(-100%); }
}

.page-pts .pts-phone-device .pts-status li {
  padding: 0.5rem 0;
  font-size: 0.84rem;
}

.page-pts .pts-phone-device .pts-status b {
  font-size: 0.64rem;
  animation: pts-status-blink 2.4s ease-in-out infinite;
}

@keyframes pts-status-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

@media (prefers-reduced-motion: reduce) {
  .page-pts .pts-radar-ring,
  .page-pts .pts-radar-sweep,
  .page-pts .pts-status-marquee,
  .page-pts .pts-phone-device .pts-status b {
    animation: none;
  }
}

.page-pts .pts-lead-cyan { color: var(--pts-cyan) !important; }

.page-pts .pts-hub {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(220px, 280px) 1fr;
  gap: 1.35rem;
  align-items: center;
  margin-top: 1.5rem;
  isolation: isolate;
  overflow: hidden;
}

.page-pts .pts-hub-links {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.page-pts .pts-hub-link {
  fill: none;
  stroke: #44c8f5;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-dasharray: 7 11;
  opacity: 0.42;
  animation: pts-hub-dash 1.4s linear infinite;
}

.page-pts .pts-hub-link:nth-child(2) { animation-delay: 0.15s; }
.page-pts .pts-hub-link:nth-child(3) { animation-delay: 0.3s; }
.page-pts .pts-hub-link:nth-child(4) { animation-delay: 0.1s; }
.page-pts .pts-hub-link:nth-child(5) { animation-delay: 0.25s; }
.page-pts .pts-hub-link:nth-child(6) { animation-delay: 0.4s; }

@keyframes pts-hub-dash {
  to { stroke-dashoffset: -36; }
}

.page-pts .pts-hub-col {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.page-pts .pts-hub .pts-client {
  position: relative;
  overflow: hidden;
  padding: 1rem 1.1rem;
  border: 1px solid transparent !important;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(232, 244, 252, 0.96) 100%) !important;
  box-shadow:
    0 10px 28px rgba(16, 40, 70, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85) !important;
  transform: translateY(0);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  animation: pts-client-rise 0.7s ease both;
}

.page-pts .pts-hub-col:first-of-type .pts-client:nth-child(1) {
  background: linear-gradient(145deg, #eef7ff 0%, #d9ecff 48%, #c8e4ff 100%) !important;
  border-color: rgba(46, 130, 210, 0.28) !important;
  animation-delay: 0.05s;
}

.page-pts .pts-hub-col:first-of-type .pts-client:nth-child(2) {
  background: linear-gradient(145deg, #eefcf8 0%, #d5f4ec 48%, #c2ebe3 100%) !important;
  border-color: rgba(28, 150, 130, 0.28) !important;
  animation-delay: 0.15s;
}

.page-pts .pts-hub-col:first-of-type .pts-client:nth-child(3) {
  background: linear-gradient(145deg, #f3f0ff 0%, #e4defe 48%, #d5d0fb 100%) !important;
  border-color: rgba(90, 80, 190, 0.22) !important;
  animation-delay: 0.25s;
}

.page-pts .pts-hub-col:last-of-type .pts-client:nth-child(1) {
  background: linear-gradient(145deg, #fff8eb 0%, #ffe9c4 48%, #ffd9a0 100%) !important;
  border-color: rgba(200, 140, 40, 0.28) !important;
  animation-delay: 0.1s;
}

.page-pts .pts-hub-col:last-of-type .pts-client:nth-child(2) {
  background: linear-gradient(145deg, #eef6ff 0%, #dcecff 48%, #c8dffc 100%) !important;
  border-color: rgba(40, 110, 200, 0.28) !important;
  animation-delay: 0.2s;
}

.page-pts .pts-hub-col:last-of-type .pts-client:nth-child(3) {
  background: linear-gradient(145deg, #f0fbf4 0%, #d9f2e2 48%, #c4e8d2 100%) !important;
  border-color: rgba(40, 150, 90, 0.28) !important;
  animation-delay: 0.3s;
}

.page-pts .pts-hub .pts-client::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.15));
  opacity: 0.85;
  pointer-events: none;
}

.page-pts .pts-hub .pts-client::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -30%;
  width: 55%;
  height: 180%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.55) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: pts-client-shine 4.8s ease-in-out infinite;
  pointer-events: none;
}

.page-pts .pts-hub-col:first-of-type .pts-client:nth-child(1)::after { animation-delay: 0.2s; }
.page-pts .pts-hub-col:first-of-type .pts-client:nth-child(2)::after { animation-delay: 1s; }
.page-pts .pts-hub-col:first-of-type .pts-client:nth-child(3)::after { animation-delay: 1.8s; }
.page-pts .pts-hub-col:last-of-type .pts-client:nth-child(1)::after { animation-delay: 0.6s; }
.page-pts .pts-hub-col:last-of-type .pts-client:nth-child(2)::after { animation-delay: 1.4s; }
.page-pts .pts-hub-col:last-of-type .pts-client:nth-child(3)::after { animation-delay: 2.2s; }

.page-pts .pts-hub .pts-client:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 34px rgba(16, 40, 70, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
}

.page-pts .pts-hub .pts-client small {
  color: #3d5a78 !important;
  letter-spacing: 0.12em;
}

.page-pts .pts-hub .pts-client h3 {
  color: #122033 !important;
  font-weight: 800;
}

.page-pts .pts-hub .pts-client p {
  color: #3d4a5c !important;
}

@keyframes pts-client-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pts-client-shine {
  0%, 55% { transform: translateX(-130%) skewX(-16deg); }
  75%, 100% { transform: translateX(280%) skewX(-16deg); }
}

@media (prefers-reduced-motion: reduce) {
  .page-pts .pts-hub .pts-client,
  .page-pts .pts-hub .pts-client::after {
    animation: none;
  }
}

.page-pts .pts-client,
.page-pts .pts-gear-card,
.page-pts .pts-mod-card,
.page-pts .pts-flow-card {
  border: 1px solid var(--pts-line);
  background: rgba(11, 21, 34, 0.88);
  box-shadow: 0 0 0 1px rgba(68, 200, 245, 0.06);
}

.page-pts .pts-client {
  padding: 0.9rem 1rem;
  border-radius: 12px;
}

.page-pts .pts-client small,
.page-pts .pts-gear-card p,
.page-pts .pts-flow-card p {
  display: block;
  margin: 0 0 0.3rem;
  color: var(--pts-cyan);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-pts .pts-client h3,
.page-pts .pts-gear-card h3,
.page-pts .pts-flow-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.05rem;
}

.page-pts .pts-client p { margin: 0.25rem 0 0; }

.page-pts .pts-hub-core {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 280px;
  overflow: hidden;
}

.page-pts .pts-hub-orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  overflow: visible;
}

.page-pts .pts-hub-ring {
  position: absolute;
  inset: 0;
  display: block !important;
  border: 1px solid rgba(68, 200, 245, 0.38);
  border-radius: 50%;
  background: none !important;
  box-shadow: none !important;
  animation: pts-hub-pulse 4.2s ease-out infinite;
}

.page-pts .pts-hub-ring--2 {
  inset: -10%;
  opacity: 0.7;
  animation-delay: 0.7s;
}

.page-pts .pts-hub-ring--3 {
  inset: -20%;
  opacity: 0.45;
  animation-delay: 1.4s;
}

@keyframes pts-hub-pulse {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.04); opacity: 0.9; }
}

.page-pts .pts-hub-core-card {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0.85rem 0.5rem;
  text-align: center;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.page-pts .pts-hub-core-card img {
  width: 7rem;
  height: 7rem;
  margin: 0 auto 0.65rem;
}

.page-pts .pts-hub-core-card p {
  margin: 0;
  color: var(--pts-cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-pts .pts-hub-core-card h3 {
  margin: 0.35rem 0 0;
  color: #ffffff;
  font-size: 1.15rem;
}

.page-pts .pts-gear {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}

.page-pts .pts-gear-3 { grid-template-columns: repeat(3, 1fr); }

.page-pts .pts-gear-card {
  padding: 1.1rem 1rem;
  border-radius: 12px;
}

.page-pts .pts-gear-card span {
  display: block;
  margin-top: 0.4rem;
  color: var(--pts-muted);
  font-size: 0.92rem;
}

.page-pts .pts-mod-card {
  border-radius: 14px;
}

.page-pts .pts-mod-card.is-wide { grid-column: span 2; }

.page-pts .pts-data-note {
  margin: 1.25rem 0 0;
  color: var(--pts-muted);
  font-size: 0.95rem;
}

.page-pts .pts-data-note a {
  color: var(--pts-cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-pts .pts-flow + .pts-chip-row {
  margin-top: 0.2rem;
  margin-bottom: 1.35rem;
}

.page-pts .pts-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.35rem minmax(0, 1fr) 1.35rem minmax(0, 1fr);
  align-items: stretch;
  gap: 0.55rem;
  margin: 1.75rem 0 1.15rem;
}

.page-pts .pts-flow-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 1.05rem 1rem 1.1rem;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(68, 200, 245, 0.1), rgba(7, 20, 31, 0.96));
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.page-pts .pts-flow-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(9, 143, 181, 0.18);
}

.page-pts .pts-flow-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.65rem;
}

.page-pts .pts-flow-step {
  font-family: var(--pts-display);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #098fb5;
  background: linear-gradient(135deg, #5ec8e8 0%, #098fb5 48%, #066a8a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 0 rgba(9, 143, 181, 0.2));
  transition: transform 0.35s ease, filter 0.35s ease, letter-spacing 0.35s ease;
}

.page-pts .pts-flow-card:hover .pts-flow-step {
  transform: translateY(-2px) scale(1.06);
  letter-spacing: 0.1em;
  filter: drop-shadow(0 4px 10px rgba(9, 143, 181, 0.45));
}

@media (prefers-reduced-motion: reduce) {
  .page-pts .pts-flow-card,
  .page-pts .pts-flow-step {
    transition: none;
  }
  .page-pts .pts-flow-card:hover,
  .page-pts .pts-flow-card:hover .pts-flow-step {
    transform: none;
  }
}

.page-pts .pts-flow-ico {
  display: none !important;
}

.page-pts .pts-flow-ico svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-pts .pts-flow-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.page-pts .pts-flow-note {
  margin: 0.55rem 0 0 !important;
  color: #9eb6c8 !important;
  font-size: 0.88rem !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  line-height: 1.45;
}

.page-pts .pts-flow > .pts-flow-arrow {
  display: grid;
  place-items: center;
  align-self: center;
  width: 1.35rem;
  color: var(--pts-cyan);
  font-size: 0;
}

.page-pts .pts-flow > .pts-flow-arrow svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(68, 200, 245, 0.55));
}

.page-pts .pts-close-brand {
  background: #050b14;
}

html[data-theme="light"] .page-pts {
  --pts-bg: #f3f6f9;
  --pts-panel: #ffffff;
  --pts-panel-2: #eef3f7;
  --pts-line: rgba(11, 92, 173, 0.2);
  --pts-text: #1c2430;
  --pts-muted: #3d4a5c;
  --pts-head: #10151c;
  --pts-cyan: #1c2430;
}

html[data-theme="light"] .page-pts .pts-phone,
html[data-theme="light"] .page-pts .pts-gear-card,
html[data-theme="light"] .page-pts .pts-mod-card,
html[data-theme="light"] .page-pts .pts-flow-card {
  background: #ffffff;
}

html[data-theme="light"] .page-pts .pts-chip-row li,
html[data-theme="light"] .page-pts .pts-chip-row-static span,
html[data-theme="light"] .page-pts .pts-client h3,
html[data-theme="light"] .page-pts .pts-gear-card h3 {
  color: var(--pts-head);
}

@media (max-width: 1080px) {
  .page-pts .pts-hero-split,
  .page-pts .pts-hub,
  .page-pts .pts-gear,
  .page-pts .pts-gear-3 { grid-template-columns: 1fr; }
  .page-pts .pts-phone { margin: 0 auto; }
  .page-pts .pts-mod-card.is-wide { grid-column: span 2; }
}

@media (max-width: 960px) {
  .page-pts .pts-cta-orange.pts-header-cta,
  .page-pts header .pts-cta-orange { display: none; }
}

@media (max-width: 720px) {
  .page-pts .pts-mod-card.is-wide { grid-column: span 1; }
}

.page-pts .pts-h2 {
  font-family: var(--pts-display);
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--pts-head);
}

.page-pts .pts-h2 em.is-gold {
  color: var(--pts-gold);
  text-shadow: none;
}

/* ——— Stacked hero heading, typed one line after another ——— */

.page-pts .pts-h2-stack {
  display: flex;
  flex-direction: column;
  font-size: clamp(2.15rem, 4vw, 3.3rem);
}

.page-pts .pts-h2-stack > span { display: block; }

.page-pts .pts-h2-amber { color: #eec460; }
.page-pts .pts-h2-cyan { color: #44c8f5; }

/* Reserve the line box so typing does not shift the layout below. */
.page-pts .pts-type {
  min-height: 1.2em;
}

.page-pts .pts-type.is-typing::after {
  content: "";
  display: inline-block;
  width: 0.06em;
  height: 0.82em;
  margin-left: 0.06em;
  vertical-align: -0.06em;
  background: var(--pts-cyan);
  animation: pts-caret 0.75s step-end infinite;
}

@keyframes pts-caret {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .page-pts .pts-type.is-typing::after { animation: none; }
}

.page-pts .pts-usbc {
  display: block;
  width: 46px;
  height: 9px;
  margin: 1rem auto 0.15rem;
  border: 1.6px solid var(--pts-cyan);
  border-radius: 9px;
  background: #050b14;
  box-shadow: inset 0 0 0 1px rgba(68, 200, 245, 0.35), 0 0 12px rgba(68, 200, 245, 0.35);
}

.page-pts .pts-board {
  padding: 6.25rem 0;
  border-bottom: 1px solid var(--pts-line);
  background-image: none;
}

.page-pts .pts-board .pts-lead { margin-bottom: 2.25rem; }

.page-pts .pts-pill-white {
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}

.page-pts .pts-graph,
.page-pts .pts-hw {
  margin: 0.5rem 0 0;
  overflow: auto;
}

.page-pts .pts-graph svg {
  display: block;
  width: 100%;
  height: auto;
  min-width: 640px;
}

.page-pts .pts-hw-bar {
  margin: 1.25rem 0 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--pts-line);
  border-radius: 8px;
  color: #ffffff;
  font-family: var(--pts-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.page-pts .pts-rows { margin-top: 1rem; }

.page-pts .pts-row {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr) minmax(12rem, 18rem);
  gap: 1.15rem 1.4rem;
  align-items: center;
  padding: 1.15rem 0;
  border-top: 0;
  background: none;
  box-shadow: none;
}

.page-pts .pts-row + .pts-row {
  margin-top: 0.35rem;
}

.page-pts .pts-row h3 {
  margin: 0 0 0.3rem;
  font-size: 1.35rem;
  color: #ffffff;
}

.page-pts .pts-row p { margin: 0; }

.page-pts .pts-spec {
  margin: 0;
  color: var(--pts-cyan);
  font-family: var(--pts-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: right;
}

.page-pts .pts-ico {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  color: #7ec8e0;
  border: 1px solid rgba(180, 190, 200, 0.28);
  border-radius: 10px;
  background: linear-gradient(145deg, #3a4149 0%, #1c2127 55%, #12161b 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.page-pts .pts-row:hover .pts-ico {
  transform: translateY(-3px) scale(1.05);
  border-color: rgba(210, 218, 226, 0.45);
  background: linear-gradient(145deg, #4a525c 0%, #252b32 55%, #161a20 100%);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.page-pts .pts-ico svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-pts .pts-geo-icons {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.85rem;
}

.page-pts .pts-geo-point {
  width: 12px;
  height: 12px;
  border: 2px solid var(--pts-cyan);
  border-radius: 50%;
}

.page-pts .pts-geo-line {
  width: 36px;
  height: 10px;
  border: 2px solid var(--pts-cyan);
  border-radius: 999px;
}

.page-pts .pts-geo-poly {
  width: 16px;
  height: 16px;
  border: 2px solid var(--pts-cyan);
  clip-path: polygon(50% 0, 100% 38%, 82% 100%, 18% 100%, 0 38%);
  background: transparent;
  box-shadow: inset 0 0 0 2px var(--pts-cyan);
}

.page-pts .pts-tiles-demo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.page-pts .pts-tiles-demo .pts-flow-arrow {
  color: var(--pts-gold);
  font-size: 1.4rem;
  font-weight: 700;
}

.page-pts .pts-vec-in {
  position: relative;
  width: min(280px, 100%);
  height: 160px;
  border: 1px solid var(--pts-line);
  border-radius: 14px;
  background: #071018;
}

.page-pts .pts-vec-in span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pts-cyan);
  box-shadow: 0 0 10px var(--pts-cyan);
}

.page-pts .pts-vec-in span:nth-child(1) { top: 28%; left: 22%; }
.page-pts .pts-vec-in span:nth-child(2) { top: 58%; left: 48%; }
.page-pts .pts-vec-in span:nth-child(3) { top: 36%; left: 72%; }

.page-pts .pts-vec-in i {
  position: absolute;
  left: 18%;
  top: 62%;
  width: 58%;
  height: 3px;
  background: var(--pts-gold);
  transform: rotate(-28deg);
  box-shadow: 0 0 10px var(--pts-gold);
}

.page-pts .pts-tile-out {
  display: grid;
  grid-template-columns: repeat(4, 48px);
  gap: 8px;
  transform: perspective(420px) rotateX(18deg);
}

.page-pts .pts-tile-out b {
  display: block;
  width: 48px;
  height: 48px;
  border: 1px solid var(--pts-cyan);
  background: rgba(68, 200, 245, 0.12);
  box-shadow: 0 0 12px rgba(68, 200, 245, 0.18);
}

.page-pts .pts-ai-wrap { text-align: center; }
.page-pts .pts-ai-wrap .pts-lead { margin-inline: auto; }

.page-pts .pts-ai-hub {
  position: relative;
  width: min(420px, 100%);
  height: min(420px, 70vw);
  margin: 2.5rem auto 0;
}

.page-pts .pts-ai-core {
  position: absolute;
  inset: 34%;
  display: grid;
  place-items: center;
  border: 1px solid var(--pts-cyan);
  border-radius: 50%;
  color: var(--pts-cyan);
  font-family: var(--pts-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  box-shadow: 0 0 0 28px rgba(68, 200, 245, 0.06), 0 0 40px rgba(68, 200, 245, 0.28);
}

.page-pts .pts-ai-sat {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--pts-line);
  border-radius: 999px;
  background: #071018;
  color: #ffffff;
  font-family: var(--pts-display);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-pts .pts-board-3d {
  background: linear-gradient(180deg, transparent 58%, rgba(68, 200, 245, 0.08) 100%);
}

@media (max-width: 860px) {
  .page-pts .pts-row {
    grid-template-columns: 3rem 1fr;
  }
  .page-pts .pts-spec {
    grid-column: 2;
    text-align: left;
  }
}

.page-pts .pts-logo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  justify-content: center;
  gap: 1.1rem;
  width: min(48rem, 100%);
  margin: 0.5rem auto 1.9rem;
  padding: 0;
  list-style: none;
  background: transparent;
}

.page-pts .pts-logo-strip li {
  display: grid;
  place-items: center;
  width: 100%;
  height: 8.25rem;
  min-height: 8.25rem;
  padding: 1rem 1.15rem;
  background: #0b121a;
  border: 1px solid rgba(68, 200, 245, 0.16);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

/* Shared logo footprint */
.page-pts .pts-logo-strip img {
  width: auto;
  max-width: 11rem;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  object-position: center;
}

/* Unity (first) — slightly smaller */
.page-pts .pts-logo-strip li:nth-child(1) img {
  max-width: 9.5rem;
  max-height: 60px;
}

/* Unreal (middle) — larger mark */
.page-pts .pts-logo-strip li:nth-child(2) img {
  max-width: 7.5rem;
  max-height: 120px;
}

/* Dark theme balance: Unity up, Unreal down */
.page-pts .pts-logo-strip li:nth-child(1) img.pts-logo-img--dark {
  max-width: 10.5rem;
  max-height: 70px;
}

.page-pts .pts-logo-strip li:nth-child(2) img.pts-logo-img--dark {
  max-width: 6.25rem;
  max-height: 92px;
}

/* Dark theme: only original white logos (fixes ghost overlap) */
.page-pts .pts-logo-strip img.pts-logo-img--dark { display: block; }
.page-pts .pts-logo-strip img.pts-logo-img--light { display: none; }

/* Light theme: light boxes + dark logos */
html[data-theme="light"] .page-pts .pts-logo-strip img.pts-logo-img--dark { display: none; }
html[data-theme="light"] .page-pts .pts-logo-strip img.pts-logo-img--light { display: block; }

html[data-theme="light"] .page-pts .pts-logo-strip li {
  background: #ffffff;
  border: 1px solid rgba(16, 24, 40, 0.14);
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.07);
}

@media (max-width: 720px) {
  .page-pts .pts-logo-strip {
    grid-template-columns: 1fr;
    width: min(18rem, 100%);
  }
}

/* Theme-adaptive ecosystem infographic (dark + light assets) */
.page-pts .pts-ecosystem {
  margin: 0;
  position: relative;
}

.page-pts .pts-ecosystem img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
}

.page-pts .pts-ecosystem-img--light { display: none; }

html[data-theme="light"] .page-pts .pts-ecosystem-img--dark { display: none; }
html[data-theme="light"] .page-pts .pts-ecosystem-img--light { display: block; }

.page-pts .pts-copbag .pts-ecosystem {
  margin: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.page-pts .pts-copbag .pts-ecosystem img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  border-radius: 10px;
}

.page-pts .pts-two {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 3rem;
  align-items: center;
}

.page-pts .pts-two-follow { margin-top: 2rem; }

.page-pts .pts-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--pts-line);
  border-radius: 16px;
  background: #071018;
}

.page-pts .pts-media img {
  display: block;
  width: 100%;
  height: auto;
}

.page-pts .pts-list {
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
}

.page-pts .pts-list li {
  position: relative;
  margin: 0;
  padding: 0.62rem 0 0.62rem 1.7rem;
  border-top: 1px solid var(--pts-line);
  color: var(--pts-text) !important;
  font-size: 1.02rem;
  line-height: 1.55;
}

.page-pts .pts-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78rem;
  width: 1.05rem;
  height: 1.05rem;
  border: 0;
  transform: none;
  border-radius: 50%;
  background-color: #44c8f5;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='7' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M4.2 8.2l2.4 2.4 5.2-5.2'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='7' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M4.2 8.2l2.4 2.4 5.2-5.2'/%3E%3C/svg%3E") center / contain no-repeat;
}

.page-pts .pts-prose {
  max-width: 46rem;
  margin: 0 0 1rem;
  color: var(--pts-muted) !important;
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-pts .pts-story {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0 1.75rem;
}

.page-pts .pts-story-2 { grid-template-columns: 1fr 1fr; }

.page-pts .pts-story figure {
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-pts .pts-story .ipm {
  max-width: 300px;
}

.page-pts .pts-story .ipm-screen img {
  height: 100% !important;
}

.page-pts .pts-story figcaption {
  padding: 0.9rem 1rem 1.05rem;
  color: var(--pts-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.page-pts .pts-story b {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--pts-cyan);
  font-family: var(--pts-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .page-pts .pts-two { grid-template-columns: 1fr; }
  .page-pts .pts-story,
  .page-pts .pts-story-2 { grid-template-columns: 1fr; }
  .page-pts .pts-story figure:first-child img,
  .page-pts .pts-story img { height: 200px; }
}

@media (max-width: 1180px) {
  .page-pts .pts-header .nav { display: none; }
  .page-pts .pts-header .nav-toggle { display: block; }
  .page-pts .pts-header .pts-header-cta { display: none; }
  .page-pts .pts-header.menu-open .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 301;
    background: #050b14;
    border-bottom: 1px solid var(--pts-line);
    padding: 0.85rem 1rem 1.1rem;
  }
}

/* Cinematic brand boards — photo backgrounds + overlay copy */
.page-pts .pts-board.pts-scene,
.page-pts .hs-game-engines-section.pts-scene,
.page-pts .pts-close.pts-scene {
  background-image: none;
}

.page-pts .pts-scene {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #050b14;
}

.page-pts .pts-hero-brand {
  min-height: 92vh;
}

.page-pts .pts-chip-row li.is-gold,
.page-pts .pts-chip-row-static span.is-gold {
  background: #5a4614;
  border-color: #c9a227;
  color: #ffffff;
}

.page-pts .pts-scene-tall {
  min-height: 78vh;
}

.page-pts .pts-scene-photo,
.page-pts .pts-scene-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-pts .pts-scene-photo {
  z-index: 0;
  background-color: #050b14;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  transform: scale(1.04);
}

.page-pts .pts-scene-photo--cover {
  background-position: center;
}

.page-pts .pts-scene-photo--earth {
  background-image: url("assets/brand/earth-to-3d.jpg");
}

.page-pts .pts-scene-photo--device {
  background-image: url("assets/brand/device-server.jpg");
}

.page-pts .pts-scene-photo--hub {
  background-image: url("assets/brand/hub-ecosystem.jpg");
}

.page-pts .pts-scene-photo--gis {
  background-image: url("assets/brand/gis-transactional.jpg");
}

.page-pts .pts-scene-photo--tiles {
  background-image: url("assets/brand/live-tiles.jpg");
}

.page-pts .pts-scene-photo--cop {
  background-image: url("assets/brand/cop-picture.jpg");
}

.page-pts .pts-scene-photo--ai {
  background-image: url("assets/brand/ai-core.jpg");
}

.page-pts .pts-scene-photo--engines {
  background-image: url("assets/brand/backend-3d.jpg");
}

.page-pts .pts-scene-photo--edge {
  background-image: url("assets/brand/edge-is-server.jpg");
}

.page-pts .pts-scene-veil {
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(5, 11, 20, 0.88) 0%, rgba(5, 11, 20, 0.62) 46%, rgba(5, 11, 20, 0.28) 100%);
}

.page-pts .pts-scene-veil--hero {
  background:
    linear-gradient(105deg, rgba(5, 11, 20, 0.92) 0%, rgba(5, 11, 20, 0.72) 36%, rgba(5, 11, 20, 0.28) 68%, rgba(5, 11, 20, 0.18) 100%),
    linear-gradient(180deg, rgba(5, 11, 20, 0.28) 0%, transparent 32%, rgba(5, 11, 20, 0.55) 100%);
}

.page-pts .pts-scene-veil--split {
  background:
    linear-gradient(90deg, rgba(5, 11, 20, 0.9) 0%, rgba(5, 11, 20, 0.55) 52%, rgba(5, 11, 20, 0.22) 100%);
}

.page-pts .pts-scene-veil--heavy {
  background:
    linear-gradient(180deg, rgba(5, 11, 20, 0.82) 0%, rgba(5, 11, 20, 0.72) 42%, rgba(5, 11, 20, 0.86) 100%);
}

.page-pts .pts-scene-veil--close {
  background:
    linear-gradient(180deg, rgba(5, 11, 20, 0.78) 0%, rgba(5, 11, 20, 0.7) 100%);
}

.page-pts .pts-scene-inner,
.page-pts .pts-hero-split {
  position: relative;
  z-index: 2;
}

.page-pts .pts-hero-brand .pts-scene-photo,
.page-pts .pts-hero-brand .pts-scene-veil {
  position: absolute;
  inset: 0;
}

.page-pts .pts-hero-grid,
.page-pts .pts-hero-radar {
  z-index: 1;
  opacity: 0.35;
}

.page-pts .pts-scene .pts-h2,
.page-pts .pts-scene h2,
.page-pts .pts-scene h3,
.page-pts .pts-close-brand h2 {
  color: #ffffff;
}

.page-pts .pts-scene .pts-lead,
.page-pts .pts-scene .pts-prose,
.page-pts .pts-scene .pts-list li,
.page-pts .pts-scene .pts-row p {
  color: rgba(244, 248, 252, 0.88) !important;
}

.page-pts .pts-shot {
  margin: 1.6rem 0 0;
  border: 1px solid rgba(68, 200, 245, 0.38);
  border-radius: 16px;
  overflow: hidden;
  background: #071018;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.5),
    0 0 48px rgba(68, 200, 245, 0.14);
}

.page-pts .pts-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.page-pts .pts-shot-wide {
  margin-top: 2rem;
}

.page-pts .pts-scene .pts-flow-card,
.page-pts .pts-scene .pts-row,
.page-pts .pts-scene .pts-chip-row li,
.page-pts .pts-scene .pts-chip-row-static span {
  background: rgba(7, 16, 24, 0.72);
  backdrop-filter: blur(10px);
}

.page-pts .pts-scene .pts-chip-row li,
.page-pts .pts-scene .pts-chip-row-static span {
  border-color: rgba(68, 200, 245, 0.45);
}

.page-pts .pts-scene .pts-chip-row li.is-gold,
.page-pts .pts-scene .pts-chip-row-static span.is-gold {
  background: #5a4614;
  border-color: #c9a227;
  color: #ffffff;
}

.page-pts .hs-game-engines-section.pts-scene {
  padding: 6.25rem 0;
  border-bottom: 1px solid var(--pts-line);
}

.page-pts .pts-close.pts-scene {
  position: relative;
  overflow: hidden;
}

html[data-theme="light"] .page-pts .pts-scene,
html[data-theme="light"] .page-pts .pts-hero-brand {
  --pts-head: #ffffff;
  --pts-muted: rgba(244, 248, 252, 0.86);
  --pts-cyan: #44c8f5;
}

html[data-theme="light"] .page-pts .pts-scene .pts-h2,
html[data-theme="light"] .page-pts .pts-hero-brand h1,
html[data-theme="light"] .page-pts .pts-scene h3 {
  color: #ffffff;
}

.page-pts .pts-scene .pts-story figcaption,
.page-pts .pts-scene .pts-story b {
  color: #ffffff;
}

.page-pts .pts-scene .pts-story figure {
  background: rgba(7, 16, 24, 0.55);
  border: 1px solid rgba(68, 200, 245, 0.28);
}

@media (max-width: 960px) {
  .page-pts .pts-scene-veil--hero,
  .page-pts .pts-scene-veil--split {
    background: linear-gradient(180deg, rgba(5, 11, 20, 0.9) 0%, rgba(5, 11, 20, 0.78) 100%);
  }
  .page-pts .pts-scene-tall { min-height: 0; }
}

/* Designed boards — layouts matching the brand graphics, not dumped posters */
.page-pts .pts-mod-squares {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  align-content: center;
}

.page-pts .pts-mod-squares span {
  display: grid;
  place-items: center;
  min-height: 4.5rem;
  border: 1px solid rgba(68, 200, 245, 0.4);
  border-radius: 12px;
  background: rgba(7, 16, 24, 0.88);
  color: #ffffff;
  font-family: var(--pts-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-pts .pts-mod-squares span.is-gold {
  grid-column: span 2;
  background: #5a4614;
  border-color: #c9a227;
}

.page-pts .pts-board-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 2.25rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.page-pts .pts-board-foot span:last-child {
  color: var(--pts-cyan);
  font-family: var(--pts-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-pts .pts-split-panel {
  display: grid;
  grid-template-columns: 1.7fr 0.9fr;
  gap: 1.1rem;
  margin-top: 2.25rem;
  align-items: stretch;
}

.page-pts .pts-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.page-pts .pts-get {
  border: 1px solid rgba(68, 200, 245, 0.32);
  border-radius: 14px;
  background: rgba(7, 16, 24, 0.92);
}

.page-pts .pts-feat small,
.page-pts .pts-get p {
  display: block;
  margin: 0 0 0.35rem;
  color: var(--pts-cyan);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-pts .pts-feat h3 {
  margin: 0;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.page-pts .pts-get {
  padding: 1.15rem 1.2rem;
}

.page-pts .pts-get ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-pts .pts-get li {
  padding: 0.7rem 0;
  border-top: 1px solid rgba(68, 200, 245, 0.18);
  color: #ffffff !important;
  font-weight: 600;
}

.page-pts .pts-get li:first-child { border-top: 0; }

.page-pts .pts-hub::before {
  display: none !important;
}

.page-pts .pts-ai-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.page-pts .pts-ai-lines line {
  stroke: #44c8f5;
  stroke-width: 1.6;
  opacity: 0.55;
}

.page-pts .pts-flow-card {
  min-height: 0;
}

@media (max-width: 960px) {
  .page-pts .pts-split-panel,
  .page-pts .pts-feat-grid { grid-template-columns: 1fr; }
  .page-pts .pts-mod-squares span.is-gold { grid-column: span 1; }
  .page-pts .pts-hub::before,
  .page-pts .pts-hub-links { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .page-pts .pts-hub-link,
  .page-pts .pts-hub-ring {
    animation: none;
  }
}

.page-pts .pts-pill-center {
  display: flex;
  justify-self: center;
  margin: 2.4rem auto 1.35rem;
  width: fit-content;
}

.page-pts .pts-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.page-pts .pts-icon-card {
  display: grid;
  grid-template-columns: 3.6rem 1fr;
  gap: 0.95rem;
  align-items: center;
  min-height: 7.4rem;
  padding: 1.05rem 1.1rem;
  border: 1.5px solid rgba(68, 200, 245, 0.55);
  border-radius: 8px;
  background: rgba(6, 14, 22, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(68, 200, 245, 0.18),
    0 0 22px rgba(68, 200, 245, 0.16);
}

.page-pts .pts-icon-card-svg {
  display: grid;
  place-items: center;
  width: auto;
  height: auto;
  padding: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #0784ab;
}

.page-pts .pts-icon-card-svg svg {
  width: 3.35rem;
  height: 3.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: none;
}

/* Three accent colors for capability tabs */
.page-pts .pts-icon-card.is-teal {
  border-color: rgba(5, 111, 145, 0.55);
}

.page-pts .pts-icon-card.is-teal .pts-icon-card-svg,
.page-pts .pts-icon-card.is-teal h3 {
  color: #056f91;
}

.page-pts .pts-icon-card.is-blue {
  border-color: rgba(11, 92, 173, 0.5);
}

.page-pts .pts-icon-card.is-blue .pts-icon-card-svg,
.page-pts .pts-icon-card.is-blue h3 {
  color: #0b5cad;
}

.page-pts .pts-icon-card.is-gold {
  border-color: rgba(200, 160, 50, 0.5);
}

.page-pts .pts-icon-card.is-gold .pts-icon-card-svg,
.page-pts .pts-icon-card.is-gold h3 {
  color: #b8922e;
}

/* Brand marks ship with their own gradients, so they render larger and unstyled. */
.page-pts .pts-icon-card-svg.is-brand {
  width: 3.9rem;
  flex: 0 0 3.9rem;
}

.page-pts .pts-icon-card-svg.is-brand img {
  display: block;
  width: 3.9rem;
  height: 3.9rem;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(68, 200, 245, 0.4));
}

.page-pts .pts-icon-card h3 {
  margin: 0 0 0.35rem;
  color: var(--pts-cyan);
  font-family: var(--pts-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-pts .pts-icon-card p {
  margin: 0;
  color: rgba(232, 244, 251, 0.82) !important;
  font-size: 0.82rem;
  line-height: 1.45;
}

.page-pts .pts-get-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  margin-top: 1.15rem;
  padding: 0.95rem 1.15rem;
}

.page-pts .pts-get-row p {
  margin: 0;
  white-space: nowrap;
}

.page-pts .pts-get-row ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-pts .pts-get-row li {
  padding: 0;
  border: 0;
  color: #ffffff !important;
}

.page-pts .pts-copbag-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-bottom: 2.25rem;
}

.page-pts .pts-copbag-intro {
  flex: 1 1 16rem;
  min-width: 0;
}

.page-pts .pts-copbag-intro .pts-lead {
  margin-bottom: 0;
}

.page-pts .pts-copbag-alert {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
  margin: 0;
  padding: 0.62rem 1rem 0.62rem 0.85rem;
  border: 1px solid rgba(7, 132, 171, 0.35);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(7, 132, 171, 0.18) 0%, rgba(7, 132, 171, 0.08) 100%);
  color: #7ee0ff;
  font-family: var(--pts-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.page-pts .pts-copbag-alert-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #0784ab;
  box-shadow: 0 0 0 3px rgba(7, 132, 171, 0.28), 0 0 10px rgba(7, 132, 171, 0.55);
  flex: 0 0 auto;
}

.page-pts .pts-copbag-grid {
  display: grid;
  grid-template-columns: minmax(15rem, 0.95fr) minmax(0, 1.35fr) minmax(12rem, 0.85fr);
  gap: clamp(1rem, 2.2vw, 1.6rem);
  align-items: stretch;
}

.page-pts .pts-copbag-list,
.page-pts .pts-copbag-tiles {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Left stack = same card language as right tiles */
.page-pts .pts-copbag-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  align-content: stretch;
}

.page-pts .pts-copbag-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 7.2rem;
  padding: 0.85rem 0.65rem 0.9rem;
  border: 1px solid rgba(255, 209, 90, 0.4);
  border-radius: 8px;
  background: rgba(8, 16, 26, 0.55);
  text-align: center;
}

.page-pts .pts-copbag-list li > div {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  min-width: 0;
}

.page-pts .pts-copbag-list strong {
  display: block;
  color: #ffd15a;
  font-family: var(--pts-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.35;
}

.page-pts .pts-copbag-list span:last-child {
  color: rgba(232, 244, 251, 0.82) !important;
  font-size: 0.78rem;
  line-height: 1.4;
  font-weight: 500;
}

.page-pts .pts-copbag-ico {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
  color: #ffd15a;
  border: 1px solid rgba(255, 209, 90, 0.45);
  border-radius: 8px;
  background: rgba(255, 209, 90, 0.08);
}

.page-pts .pts-copbag-ico.is-alert {
  color: #ffd15a;
  border-color: rgba(255, 209, 90, 0.45);
  background: rgba(255, 209, 90, 0.08);
}

.page-pts .pts-copbag-list li:has(.is-alert) {
  border-color: rgba(255, 209, 90, 0.4);
}

.page-pts .pts-copbag-list li:has(.is-alert) strong {
  color: #ffd15a;
}

.page-pts .pts-copbag-ico svg,
.page-pts .pts-copbag-tiles svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-pts .pts-copbag-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  align-content: stretch;
}

.page-pts .pts-copbag-tiles li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 7.2rem;
  padding: 0.85rem 0.5rem;
  border: 1px solid rgba(255, 209, 90, 0.4);
  border-radius: 8px;
  background: rgba(8, 16, 26, 0.55);
  color: #ffd15a;
  text-align: center;
  font-family: var(--pts-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
}

.page-pts .pts-copbag .pts-hw {
  margin: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.page-pts .pts-copbag .pts-hw img {
  width: 100%;
  height: 100%;
  min-height: 15rem;
  object-fit: cover;
  border-radius: 10px;
}

.page-pts .pts-copbag .pts-ecosystem.pts-hw img {
  height: auto;
  min-height: 0;
  object-fit: contain;
  background: transparent;
}

.page-pts .pts-hw-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1.1rem;
  margin: 2rem 0 0;
  padding: 0.85rem 1.15rem;
  border: 1px solid rgba(7, 132, 171, 0.28);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(7, 132, 171, 0.14) 0%, rgba(7, 132, 171, 0.05) 100%);
}

.page-pts .pts-hw-bar-kit {
  color: rgba(232, 244, 251, 0.92);
  font-family: var(--pts-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-pts .pts-hw-bar-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem 0.35rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(7, 132, 171, 0.4);
  background: rgba(7, 132, 171, 0.16);
  color: #7ee0ff;
  font-family: var(--pts-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-pts .pts-hw-bar b {
  color: #7ee0ff;
  font-weight: 800;
}

.page-pts .pts-copbag .pts-prose {
  margin: 1.75rem auto 0;
  max-width: 52rem;
  text-align: center;
}

.page-pts .pts-copbag .pts-data-note {
  margin: 1.15rem auto 0;
  max-width: 46rem;
  text-align: center;
}

.page-pts .pts-board.pts-copbag {
  padding-bottom: 7rem;
}

@media (max-width: 1080px) {
  .page-pts .pts-icon-grid { grid-template-columns: 1fr 1fr; }
  .page-pts .pts-copbag-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }
  .page-pts .pts-copbag .pts-hw { order: -1; }
  .page-pts .pts-copbag .pts-hw img { min-height: 12rem; }
}

@media (max-width: 720px) {
  .page-pts .pts-icon-grid { grid-template-columns: 1fr; }
  .page-pts .pts-copbag-list,
  .page-pts .pts-copbag-tiles {
    grid-template-columns: 1fr 1fr;
  }
}

.page-pts .pts-hero-globe,
.page-pts .pts-hero-photo,
.page-pts .pts-hero-veil { z-index: 0; pointer-events: none; }
.page-pts .pts-hero-veil { z-index: 1; }
.page-pts .pts-hero-radar { z-index: 1; opacity: 0.55; }
.page-pts .pts-hero-grid { z-index: 1; opacity: 0.22; }

.page-pts button.pts-icon-card {
  width: 100%;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  appearance: none;
}

.page-pts .pts-icon-card {
  border-color: rgba(68, 200, 245, 0.7);
  background: #07141f;
}

.page-pts .pts-icon-card.is-active {
  border-color: #44c8f5;
  box-shadow:
    inset 0 0 0 1px rgba(68, 200, 245, 0.35),
    0 0 28px rgba(68, 200, 245, 0.28);
}

.page-pts .pts-icon-card h3 { color: #7ee0ff; }
.page-pts .pts-icon-card p { color: #e8f4fb !important; }

.page-pts .pts-tab-panels {
  margin-top: 1.75rem;
}

.page-pts .pts-tab-panel {
  padding: 0.35rem 0 0.5rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-pts .pts-tab-panel h3 {
  margin: 0 0 0.4rem;
  font-family: "IBM Plex Sans", "Work Sans", system-ui, sans-serif;
  font-size: 38px;
  font-weight: 600;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  text-transform: none;
  color: #e8f4fb;
}

.page-pts .pts-tab-panel p {
  margin: 0;
  color: #d7e6f2 !important;
  font-size: 1rem;
  line-height: 1.55;
}

.page-pts .pts-client,
.page-pts .pts-phone {
  border-color: rgba(68, 200, 245, 0.55);
  background: #07141f;
}

.page-pts .pts-flow-card {
  border-color: rgba(68, 200, 245, 0.55);
}

.page-pts .pts-chip-row li,
.page-pts .pts-chip-row-static span {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(7, 20, 31, 0.88);
}

.page-pts .pts-worlds {
  display: grid;
  grid-template-columns: minmax(22rem, 0.92fr) minmax(18rem, 1.08fr);
  min-height: 78vh;
  background: #050b14;
  border-bottom: 1px solid var(--pts-line);
}

.page-pts .pts-worlds-copy {
  position: relative;
  z-index: 2;
  padding: 5.5rem clamp(1.25rem, 5vw, 4.5rem) 3.5rem;
  max-width: 42rem;
}

.page-pts .pts-worlds-ghost { display: none !important; }

.page-pts .pts-worlds .pts-list li {
  color: #edf5fb !important;
  border-top-color: rgba(255, 255, 255, 0.12);
}

.page-pts .pts-worlds-visual {
  position: relative;
  overflow: hidden;
  background: #0b1520;
}

.page-pts .pts-worlds-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
}

.page-pts .pts-worlds-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #050b14 0%, transparent 28%);
  pointer-events: none;
}

.page-pts .pts-powered {
  color: rgba(255, 255, 255, 0.78) !important;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 960px) {
  .page-pts .pts-worlds { grid-template-columns: 1fr; }
  .page-pts .pts-hero-globe-orbit {
    right: auto;
    left: 50%;
    top: 38%;
    transform: translate(-50%, -50%);
    width: min(88vw, 420px);
    height: min(88vw, 420px);
    opacity: 0.55;
  }
  .page-pts .pts-hero-photo { inset: 0; opacity: 0.35; }
  .page-pts .pts-hero-veil {
    background: linear-gradient(180deg, rgba(5, 11, 20, 0.9), rgba(5, 11, 20, 0.78));
  }
  .page-pts .pts-worlds-ghost { display: none; }
}

/* Light mode: readable cards, grid page, dark device mock */
html[data-theme="light"] .page-pts {
  --pts-bg: #f4f6f9;
  --pts-panel: #ffffff;
  --pts-panel-2: #eef3f7;
  --pts-line: rgba(11, 92, 173, 0.18);
  --pts-text: #16202b;
  --pts-muted: #3d4a5c;
  --pts-head: #10151c;
  --pts-cyan: #1c2430;
  background: #f4f6f9;
  color: var(--pts-text);
}

html[data-theme="light"] .page-pts .pts-board {
  background-color: transparent;
  background-image: none;
}

html[data-theme="light"] .page-pts .pts-h2,
html[data-theme="light"] .page-pts h2,
html[data-theme="light"] .page-pts h3,
html[data-theme="light"] .page-pts h4 {
  color: #10151c;
}

/* Accent / typed heading phrases — light mode */
html[data-theme="light"] .page-pts .pts-h2 em,
html[data-theme="light"] .page-pts .pts-h2 em.is-gold,
html[data-theme="light"] .page-pts .pts-h2-amber,
html[data-theme="light"] .page-pts .pts-h2-cyan,
html[data-theme="light"] .page-pts .pts-h2-stack .pts-h2-amber,
html[data-theme="light"] .page-pts .pts-h2-stack .pts-h2-cyan,
html[data-theme="light"] .page-pts .pts-hb-title em,
html[data-theme="light"] .page-pts .pts-hb .pts-hb-title em,
html[data-theme="light"] .page-pts .pts-hero-brand h1 em {
  color: #098fb5 !important;
  text-shadow: none !important;
}

html[data-theme="light"] .page-pts .pts-list li::before,
html[data-theme="light"] .page-pts .pts-tree li::before {
  background-color: #0b5cad;
}

html[data-theme="light"] .page-pts .pts-tab-panel .pts-tree li {
  color: #056f91 !important;
}

html[data-theme="light"] .page-pts .pts-tab-panel .pts-tree li::before {
  background-color: #056f91;
}

html[data-theme="light"] .page-pts .pts-tab-panel h3 {
  color: #056f91 !important;
}

html[data-theme="light"] .page-pts .pts-lead,
html[data-theme="light"] .page-pts .pts-prose,
html[data-theme="light"] .page-pts .pts-list li,
html[data-theme="light"] .page-pts .pts-row p {
  color: #2c3948 !important;
}

html[data-theme="light"] .page-pts .pts-kicker {
  color: #1c2430;
}

html[data-theme="light"] .page-pts .pts-pill {
  color: #1c2430;
  border-color: #0b5cad;
  background: #ffffff;
}

html[data-theme="light"] .page-pts .pts-pill-white {
  color: #1c2430;
  border-color: rgba(11, 92, 173, 0.35);
}

html[data-theme="light"] .page-pts .pts-icon-card,
html[data-theme="light"] .page-pts .pts-flow-card,
html[data-theme="light"] .page-pts .pts-get,
html[data-theme="light"] .page-pts .pts-mod-squares span {
  background: #ffffff;
  border-color: rgba(11, 92, 173, 0.22);
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
}

html[data-theme="light"] .page-pts .pts-tab-panel {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

html[data-theme="light"] .page-pts .pts-hub-core-card {
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

html[data-theme="light"] .page-pts .pts-hub-core-card h3 {
  color: #1c2430;
}

html[data-theme="light"] .page-pts .pts-hub-link {
  stroke: #0b7fb8;
  opacity: 0.45;
}

html[data-theme="light"] .page-pts .pts-hub-ring {
  border-color: rgba(11, 127, 184, 0.35);
}

/* Hub client cards — dark mode: muted fills, low color radiation */
html[data-theme="dark"] .page-pts .pts-hub .pts-client {
  background: linear-gradient(145deg, #0c1420 0%, #101a28 100%) !important;
  border-color: rgba(120, 160, 190, 0.14) !important;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

html[data-theme="dark"] .page-pts .pts-hub-col:first-of-type .pts-client:nth-child(1) {
  background: linear-gradient(145deg, #0d1522 0%, #122033 55%, #0f1a2a 100%) !important;
  border-color: rgba(70, 130, 180, 0.22) !important;
}

html[data-theme="dark"] .page-pts .pts-hub-col:first-of-type .pts-client:nth-child(2) {
  background: linear-gradient(145deg, #0c1818 0%, #102422 55%, #0e1c1a 100%) !important;
  border-color: rgba(50, 140, 120, 0.2) !important;
}

html[data-theme="dark"] .page-pts .pts-hub-col:first-of-type .pts-client:nth-child(3) {
  background: linear-gradient(145deg, #12141f 0%, #1a1830 55%, #121522 100%) !important;
  border-color: rgba(100, 90, 160, 0.2) !important;
}

html[data-theme="dark"] .page-pts .pts-hub-col:last-of-type .pts-client:nth-child(1) {
  background: linear-gradient(145deg, #18140e 0%, #241c12 55%, #16120c 100%) !important;
  border-color: rgba(180, 130, 50, 0.2) !important;
}

html[data-theme="dark"] .page-pts .pts-hub-col:last-of-type .pts-client:nth-child(2) {
  background: linear-gradient(145deg, #0d1524 0%, #132033 55%, #0f1828 100%) !important;
  border-color: rgba(60, 120, 180, 0.2) !important;
}

html[data-theme="dark"] .page-pts .pts-hub-col:last-of-type .pts-client:nth-child(3) {
  background: linear-gradient(145deg, #0e1814 0%, #14241c 55%, #101c16 100%) !important;
  border-color: rgba(60, 140, 90, 0.2) !important;
}

html[data-theme="dark"] .page-pts .pts-hub .pts-client::after {
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.08) 50%, transparent 65%);
}

html[data-theme="dark"] .page-pts .pts-hub .pts-client:hover {
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

html[data-theme="dark"] .page-pts .pts-hub .pts-client small {
  color: rgba(180, 200, 220, 0.62) !important;
}

html[data-theme="dark"] .page-pts .pts-hub .pts-client h3 {
  color: #e6eef6 !important;
}

html[data-theme="dark"] .page-pts .pts-hub .pts-client p {
  color: rgba(190, 210, 225, 0.68) !important;
}

html[data-theme="dark"] .page-pts .pts-hub-link {
  stroke: #6ad4f0;
  stroke-width: 1.75;
  stroke-dasharray: 6 9;
  opacity: 0.62;
}

html[data-theme="dark"] .page-pts .pts-hub-ring {
  border: 1.5px dashed rgba(106, 212, 240, 0.58);
  opacity: 0.9;
}

html[data-theme="dark"] .page-pts .pts-hub-ring--2 {
  opacity: 0.72;
  border-color: rgba(106, 212, 240, 0.48);
}

html[data-theme="dark"] .page-pts .pts-hub-ring--3 {
  opacity: 0.55;
  border-color: rgba(106, 212, 240, 0.38);
}

html[data-theme="dark"] .page-pts .pts-hub-orbit {
  width: 240px;
  height: 240px;
}

html[data-theme="dark"] .page-pts .pts-hub-ring {
  animation-name: pts-hub-pulse-dark;
}

@keyframes pts-hub-pulse-dark {
  0%, 100% { transform: scale(1); opacity: 0.78; }
  50% { transform: scale(1.045); opacity: 1; }
}

html[data-theme="light"] .page-pts .pts-icon-card.is-active {
  border-color: #0b5cad;
  box-shadow: 0 0 0 1px #0b5cad, 0 8px 24px rgba(11, 92, 173, 0.12);
}

html[data-theme="light"] .page-pts .pts-client h3,
html[data-theme="light"] .page-pts .pts-flow-card h3,
html[data-theme="light"] .page-pts .pts-feat h3 {
  color: #1c2430;
}

/* Never force Marti / Collaboration / Browser headings to black */
html[data-theme="light"] .page-pts .pts-icon-card.is-teal h3,
html[data-theme="light"] .page-pts .pts-icon-card.is-teal .pts-icon-card-svg {
  color: #056f91 !important;
}

html[data-theme="light"] .page-pts .pts-icon-card.is-blue h3,
html[data-theme="light"] .page-pts .pts-icon-card.is-blue .pts-icon-card-svg {
  color: #7b1fa2 !important;
}

html[data-theme="light"] .page-pts .pts-icon-card.is-gold h3,
html[data-theme="light"] .page-pts .pts-icon-card.is-gold .pts-icon-card-svg {
  color: #c45c00 !important;
}

html[data-theme="light"] .page-pts #panel-marti > .pts-tab-split > div > h3 {
  color: #056f91 !important;
}

html[data-theme="light"] .page-pts #panel-collab > .pts-tab-split > div > h3 {
  color: #7b1fa2 !important;
}

html[data-theme="light"] .page-pts #panel-cop > .pts-tab-split > div > h3 {
  color: #c45c00 !important;
}

html[data-theme="light"] .page-pts .pts-icon-card p,
html[data-theme="light"] .page-pts .pts-tab-panel p,
html[data-theme="light"] .page-pts .pts-client p,
html[data-theme="light"] .page-pts .pts-get li,
html[data-theme="light"] .page-pts .pts-mod-squares span {
  color: #1c2430 !important;
}

html[data-theme="light"] .page-pts .pts-icon-card-svg,
html[data-theme="light"] .page-pts .pts-ico {
  color: #0784ab;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html[data-theme="light"] .page-pts .pts-row:hover .pts-ico {
  background: linear-gradient(145deg, #dff4fb 0%, #c5eaf5 100%) !important;
  box-shadow: 0 8px 18px rgba(9, 143, 181, 0.18) !important;
}

html[data-theme="light"] .page-pts .pts-row {
  border-top: 0;
}

html[data-theme="light"] .page-pts .pts-row h3 {
  color: #10151c;
}

html[data-theme="light"] .page-pts .pts-chip-row li,
html[data-theme="light"] .page-pts .pts-chip-row-static span {
  color: #10151c;
  background: #ffffff;
  border-color: rgba(16, 24, 40, 0.22);
}

html[data-theme="light"] .page-pts .pts-chip-row li.is-gold,
html[data-theme="light"] .page-pts .pts-chip-row-static span.is-gold {
  background: #e8d48a;
  border-color: #b8962e;
  color: #1c1504;
}

html[data-theme="light"] .page-pts .pts-phone,
html[data-theme="light"] .page-pts .pts-hero-brand .pts-phone {
  background: #ffffff;
}

html[data-theme="light"] .page-pts .pts-phone.pts-phone-device {
  background: #f6f8fb;
  border: 3px solid rgba(178, 212, 238, 0.55);
  box-shadow: 0 18px 40px rgba(16, 40, 70, 0.1);
}

html[data-theme="light"] .page-pts .pts-phone-device .pts-phone-head p,
html[data-theme="light"] .page-pts .pts-phone p {
  color: #0b7fb8 !important;
}

html[data-theme="light"] .page-pts .pts-phone-device .pts-phone-head :is(h2, h3),
html[data-theme="light"] .page-pts .pts-phone :is(h2, h3) {
  color: #10151c !important;
}

html[data-theme="light"] .page-pts .pts-phone-device .pts-status li,
html[data-theme="light"] .page-pts .pts-status li {
  color: #1c2430 !important;
  border-top-color: rgba(16, 24, 40, 0.12);
}

html[data-theme="light"] .page-pts .pts-phone-device .pts-status b,
html[data-theme="light"] .page-pts .pts-status b {
  color: #0c8a4a;
}

html[data-theme="light"] .page-pts .pts-phone-home {
  border-color: rgba(16, 24, 40, 0.35);
  background: rgba(16, 24, 40, 0.12);
}

html[data-theme="light"] .page-pts .pts-phone-stage::before {
  background: radial-gradient(circle, rgba(11, 92, 173, 0.16) 0%, transparent 64%);
}

html[data-theme="light"] .page-pts .pts-radar-ring {
  border-color: rgba(11, 92, 173, 0.32);
}

html[data-theme="light"] .page-pts .pts-radar-sweep {
  background: conic-gradient(from 0deg, rgba(11, 92, 173, 0.22) 0deg, transparent 55deg, transparent 360deg);
}

html[data-theme="light"] .page-pts .pts-hero-brand {
  --pts-head: #ffffff;
  --pts-muted: rgba(255, 255, 255, 0.86);
  --pts-cyan: #7ee0ff;
  background: #050b14;
}

html[data-theme="light"] .page-pts .pts-hero-brand h1,
html[data-theme="light"] .page-pts .pts-hero-brand .hs-lead,
html[data-theme="light"] .page-pts .pts-hero-brand .pts-kicker {
  color: #ffffff;
}

html[data-theme="light"] .page-pts .pts-hero-brand .pts-kicker {
  color: #7ee0ff;
}

html[data-theme="light"] .page-pts .pts-hero-brand .pts-pill {
  color: #7ee0ff;
  border-color: #7ee0ff;
  background: transparent;
}

html[data-theme="light"] .page-pts .pts-hero-brand .pts-chip-row li {
  color: #ffffff;
  background: rgba(7, 20, 31, 0.72);
  border-color: rgba(255, 255, 255, 0.35);
}

html[data-theme="light"] .page-pts .pts-hero-brand .pts-chip-row li.is-gold {
  background: #5a4614;
  border-color: #c9a227;
  color: #ffffff;
}

html[data-theme="light"] .page-pts .pts-worlds {
  background: #f4f6f9;
}

html[data-theme="light"] .page-pts .pts-worlds-copy .pts-h2,
html[data-theme="light"] .page-pts .pts-worlds-copy h2 {
  color: #10151c;
}

html[data-theme="light"] .page-pts .pts-worlds-ghost {
  color: rgba(16, 21, 28, 0.08);
}

html[data-theme="light"] .page-pts .pts-worlds .pts-list li {
  color: #2c3948 !important;
  border-top-color: rgba(16, 24, 40, 0.12);
}

html[data-theme="light"] .page-pts .pts-worlds-scan {
  background: linear-gradient(90deg, #f4f6f9 0%, transparent 28%);
}

html[data-theme="light"] .page-pts .pts-story {
  gap: 0.65rem;
}

html[data-theme="light"] .page-pts .pts-story figure {
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

html[data-theme="light"] .page-pts .pts-story figcaption {
  width: min(100%, 300px);
  margin: 0.55rem auto 0;
  padding: 0.7rem 0.85rem 0.8rem;
  border: 0 !important;
  border-radius: 6px;
  background: #12a5cb !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}

html[data-theme="light"] .page-pts .pts-story b {
  display: block;
  margin: 0 0 0.28rem;
  color: #ffffff !important;
  font-family: var(--pts-display);
  font-size: 14px !important;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

html[data-theme="light"] .page-pts .pts-board-foot {
  color: #5b6b7c;
}

html[data-theme="light"] .page-pts .pts-board-foot span:last-child {
  color: #1c2430;
}

html[data-theme="light"] .page-pts .pts-logo-strip {
  background: transparent;
}

html[data-theme="light"] .page-pts .pts-logo-strip li {
  background: #ffffff;
  border: 1px solid rgba(16, 24, 40, 0.14);
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.07);
}

html[data-theme="light"] .page-pts .hs-engine-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border-color: rgba(28, 43, 58, 0.1);
  box-shadow: 0 14px 36px rgba(28, 43, 58, 0.07);
}

html[data-theme="light"] .page-pts .hs-engine-card-label { color: #10151c; }
html[data-theme="light"] .page-pts .hs-engine-card p { color: #212529; }
html[data-theme="light"] .page-pts .hs-engine-card-mapbox .hs-engine-card-icon img { filter: none; }

html[data-theme="light"] .page-pts .pts-close-brand {
  background: #eef2f6;
}

html[data-theme="light"] .page-pts .pts-close-brand h2,
html[data-theme="light"] .page-pts .pts-close-brand p {
  color: #10151c;
}

html[data-theme="light"] .page-pts .pts-ai-core {
  color: #1c2430;
  background: #ffffff;
}

html[data-theme="light"] .page-pts .pts-ai-sat {
  background: #ffffff;
  color: #10151c;
  border-color: rgba(11, 92, 173, 0.28);
}

html[data-theme="light"] .page-pts .pts-ai-lines line {
  stroke: #0b5cad;
}

html[data-theme="light"] .page-pts .pts-copbag-list li,
html[data-theme="light"] .page-pts .pts-copbag-tiles li {
  background: #ffffff !important;
  border-color: rgba(184, 150, 46, 0.42) !important;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
}

html[data-theme="light"] .page-pts .pts-copbag-list strong,
html[data-theme="light"] .page-pts .pts-copbag-tiles li {
  color: #8a6a12 !important;
}

html[data-theme="light"] .page-pts .pts-copbag-list span:last-child {
  color: #3d4a5c !important;
}

html[data-theme="light"] .page-pts .pts-copbag-ico {
  color: #8a6a12;
  border-color: rgba(184, 150, 46, 0.4);
  background: linear-gradient(145deg, #fff8e6 0%, #f5e6b8 100%);
}

html[data-theme="light"] .page-pts .pts-copbag-ico.is-alert {
  color: #8a6a12;
  border-color: rgba(184, 150, 46, 0.4);
  background: linear-gradient(145deg, #fff8e6 0%, #f5e6b8 100%);
}

html[data-theme="light"] .page-pts .pts-copbag-list li:has(.is-alert) {
  border-color: rgba(184, 150, 46, 0.42) !important;
}

html[data-theme="light"] .page-pts .pts-copbag-list li:has(.is-alert) strong {
  color: #8a6a12 !important;
}

html[data-theme="light"] .page-pts .pts-copbag-alert {
  color: #056a8a;
  background: linear-gradient(145deg, #e8f7fc 0%, #d5f0f8 100%);
  border-color: rgba(7, 132, 171, 0.4);
  box-shadow: 0 4px 14px rgba(7, 132, 171, 0.12);
}

html[data-theme="light"] .page-pts .pts-copbag-alert-dot {
  background: #0784ab;
  box-shadow: 0 0 0 3px rgba(7, 132, 171, 0.2);
}

html[data-theme="light"] .page-pts .pts-hw-bar {
  background: linear-gradient(145deg, #e8f7fc 0%, #f4fafc 100%);
  color: #10151c;
  border-color: rgba(7, 132, 171, 0.28);
  box-shadow: 0 6px 18px rgba(7, 132, 171, 0.08);
}

html[data-theme="light"] .page-pts .pts-hw-bar-kit {
  color: #1c2430;
}

html[data-theme="light"] .page-pts .pts-hw-bar-tag {
  color: #056a8a;
  background: #ffffff;
  border-color: rgba(7, 132, 171, 0.4);
}

html[data-theme="light"] .page-pts .pts-hw-bar b {
  color: #056a8a;
}

html[data-theme="light"] .page-pts .pts-cta-ghost,
html[data-theme="light"] .page-pts .pts-hero-brand .pts-cta-ghost {
  background: #121418;
  border-color: #121418;
  color: #ffffff;
}

html[data-theme="light"] .page-pts .pts-powered {
  color: #3d4a5c !important;
}

html[data-theme="light"] .page-pts .pts-header.site-header {
  background: #f4f6f9;
  border-bottom: 1px solid rgba(11, 92, 173, 0.12);
}

.page-pts .pts-video-sec {
  background: #050b14;
  border-bottom: 1px solid var(--pts-line);
}

.page-pts .pts-video-sec .pts-worlds {
  border-bottom: 0;
  min-height: 72vh;
}

.page-pts .pts-video-sec .wrap {
  padding-bottom: 4.5rem;
}

html[data-theme="light"] .page-pts .pts-video-sec {
  background: #f4f6f9;
}

.page-pts .pts-copbag-stage {
  padding: 6.5rem 0 3.5rem;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(68, 200, 245, 0.08), transparent 52%),
    #0b110c;
  border-bottom: 1px solid var(--pts-line);
}

.page-pts .pts-copbag-frame {
  position: relative;
  padding: 1.5rem 1.35rem 1.35rem;
  border: 1px solid rgba(180, 196, 120, 0.28);
  background: rgba(8, 12, 10, 0.72);
}

.page-pts .pts-copbag-frame::before,
.page-pts .pts-copbag-frame::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid #c9b56a;
}

.page-pts .pts-copbag-frame::before {
  top: 8px;
  left: 8px;
  border-right: 0;
  border-bottom: 0;
}

.page-pts .pts-copbag-frame::after {
  right: 8px;
  bottom: 8px;
  border-left: 0;
  border-top: 0;
}

.page-pts .pts-copbag-top {
  display: grid;
  grid-template-columns: minmax(8rem, 14rem) 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.page-pts .pts-tak-patch {
  width: min(168px, 38vw);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.page-pts .pts-copbag-logo {
  width: min(220px, 100%);
  height: auto;
  margin-bottom: 0.55rem;
}

.page-pts .pts-copbag-titles h1 {
  margin: 0;
  font-family: var(--pts-display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: none;
  color: #f4f1e6;
  line-height: 1.15;
}

.page-pts .pts-copbag-titles p {
  margin: 0.35rem 0 0;
  color: #c8d4c0 !important;
  font-size: 0.95rem;
}

.page-pts .pts-copbag-body {
  display: grid;
  grid-template-columns: minmax(16rem, 0.95fr) minmax(0, 1.35fr) minmax(10rem, 0.7fr);
  gap: 1.15rem;
  align-items: center;
}

.page-pts .pts-copbag-hw {
  margin: 0;
}

.page-pts .pts-copbag-hw img,
.page-pts .pts-hw img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.page-pts .pts-copbag-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin: 1.25rem 0 0;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(180, 196, 120, 0.35);
  color: #d7e0c8;
  font-size: 0.82rem;
}

.page-pts .pts-copbag-meta p { margin: 0; color: #f4f1e6 !important; }
.page-pts .pts-copbag-meta span {
  display: inline-block;
  margin-right: 0.4rem;
  color: #c9b56a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 700;
}

.page-pts .pts-copbag-meta .is-ready::after {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-left: 0.45rem;
  border-radius: 50%;
  background: #5dff9a;
  box-shadow: 0 0 8px #5dff9a;
  vertical-align: middle;
}

.page-pts .pts-copbag-trust {
  margin: 0.85rem 0 0;
  color: #c9b56a !important;
  font-family: var(--pts-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: right;
}

/* ——— TAK hero: patch and title centred, supporting copy as plain text
   either side rather than boxed cards. ——— */

.page-pts .pts-tkhero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.75rem);
  align-items: center;
}

.page-pts .pts-tkhero-main {
  text-align: center;
}

.page-pts .pts-tkhero-patch {
  display: block;
  width: min(220px, 60%);
  height: auto;
  margin: 0 auto 1.05rem;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.45));
}

.page-pts .pts-tkhero-main h1 {
  margin: 0 0 1rem;
  font-family: var(--pts-display);
  font-size: clamp(1.55rem, 3.8vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-transform: none;
  white-space: nowrap;
  color: #f4f1e6;
}

.page-pts .pts-tkhero-sub {
  margin: 0.45rem 0 0;
  color: #c9b56a !important;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-pts .pts-tkhero-modes {
  margin: 0.3rem 0 0;
  color: var(--pts-cyan) !important;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.page-pts .pts-tkhero-kit {
  margin: 1.1rem auto 0;
  max-width: 26rem;
  color: #c8d4c0 !important;
  font-size: 0.9rem;
  line-height: 1.6;
}

.page-pts .pts-tkhero-side p {
  margin: 0 0 1.4rem;
  color: #c8d4c0 !important;
  font-size: 0.95rem;
  line-height: 1.65;
}

.page-pts .pts-tkhero-side p:last-child {
  margin-bottom: 0;
}

.page-pts .pts-tkhero-side strong {
  display: block;
  margin-bottom: 0.22rem;
  color: #f4f1e6;
  font-family: var(--pts-display);
  font-size: 1.02rem;
  font-weight: 700;
}

.page-pts .pts-copbag-stage .pts-copbag-trust {
  margin-top: 1.6rem;
  text-align: center;
}

@media (max-width: 1080px) {
  .page-pts .pts-tkhero { grid-template-columns: 1fr; }
  .page-pts .pts-tkhero-main { order: -1; }
}

html[data-theme="light"] .page-pts .pts-tkhero-main h1,
html[data-theme="light"] .page-pts .pts-tkhero-side strong {
  color: #10151c !important;
}

html[data-theme="light"] .page-pts .pts-tkhero-side p,
html[data-theme="light"] .page-pts .pts-tkhero-kit {
  color: #3d4a5c !important;
}

html[data-theme="light"] .page-pts .pts-tkhero-sub {
  color: #056f91 !important;
}

html[data-theme="light"] .page-pts .pts-copbag-stage {
  background:
    radial-gradient(ellipse at 50% 18%, rgba(5, 111, 145, 0.1), transparent 52%),
    #f4f6f9 !important;
  border-bottom-color: rgba(5, 111, 145, 0.14);
}

html[data-theme="light"] .page-pts .pts-copbag-frame {
  background: #ffffff;
  border-color: rgba(11, 92, 173, 0.18);
}

html[data-theme="light"] .page-pts .pts-copbag-titles h1 {
  color: #10151c;
}

html[data-theme="light"] .page-pts .pts-copbag-titles p,
html[data-theme="light"] .page-pts .pts-copbag-meta p {
  color: #3d4a5c !important;
}

html[data-theme="light"] .page-pts .pts-copbag-meta {
  border-color: rgba(11, 92, 173, 0.2);
}

html[data-theme="light"] .page-pts .pts-flow-card {
  background: linear-gradient(180deg, #f4f9fc, #ffffff);
}

html[data-theme="light"] .page-pts .pts-flow-card:hover {
  box-shadow: 0 12px 28px rgba(9, 143, 181, 0.16);
}

html[data-theme="light"] .page-pts .pts-flow-step {
  color: #098fb5;
  font-weight: 900;
  background: linear-gradient(135deg, #4fc0e0 0%, #098fb5 52%, #077a9c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

html[data-theme="light"] .page-pts .pts-flow-ico {
  display: none !important;
}

html[data-theme="light"] .page-pts .pts-flow-note {
  color: #3d4a5c !important;
}

html[data-theme="light"] .page-pts .pts-flow > .pts-flow-arrow {
  color: #0b5cad;
}

html[data-theme="light"] .page-pts .pts-flow > .pts-flow-arrow svg {
  filter: none;
}

@media (max-width: 900px) {
  .page-pts .pts-flow {
    grid-template-columns: 1fr;
  }
  .page-pts .pts-flow-card {
    min-height: 0;
  }
  .page-pts .pts-flow > .pts-flow-arrow {
    height: 1.6rem;
    transform: rotate(90deg);
  }
}

.page-pts .pts-phone.pts-phone-shot {
  padding: 0;
  overflow: hidden;
  background: #050b14;
}

.page-pts .pts-phone.pts-phone-shot img {
  width: 100%;
  height: auto;
  margin: 0;
  display: block;
  border-radius: 26px;
}

.page-pts .pts-media-phone {
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
  background: none;
  border: 0;
  overflow: visible;
}

.page-pts .pts-media-phone .ipm {
  max-width: 300px;
}

.page-pts .pts-media-wide {
  max-width: 28rem;
}

.page-pts .pts-media figcaption {
  padding: 0.7rem 0.9rem 0.85rem;
  color: #d7e6f2;
  font-size: 0.82rem;
  line-height: 1.45;
}

/* Media frames keep a dark letterbox in both themes, so the caption strip
   needs its own light surface here or the dark text lands on dark. */
html[data-theme="light"] .page-pts :is(.pts-media, .pts-shot-grid, .pts-tab-media, .pts-demo-media) figcaption {
  color: #ffffff !important;
  background: #12a5cb !important;
  border: 0 !important;
  border-top: 0 !important;
  font-size: 14px;
}

html[data-theme="light"] .page-pts .pts-shot-grid figcaption,
html[data-theme="light"] .page-pts .pts-demo-media figcaption,
html[data-theme="light"] .page-pts .pts-media figcaption,
html[data-theme="light"] .page-pts .pts-tab-media figcaption {
  width: min(100%, 300px);
  margin: 0.55rem auto 0;
  padding: 0.7rem 0.85rem 0.8rem;
  border-radius: 6px;
  text-align: left;
}

html[data-theme="light"] .page-pts .pts-shot-grid figure,
html[data-theme="light"] .page-pts .pts-media,
html[data-theme="light"] .page-pts .pts-demo-media,
html[data-theme="light"] .page-pts .pts-tab-media {
  border: 0 !important;
  background: none !important;
  box-shadow: none !important;
}

html[data-theme="light"] .page-pts :is(.pts-media, .pts-shot-grid, .pts-tab-media, .pts-demo-media, .pts-story, .pts-feat-phone) figcaption b,
html[data-theme="light"] .page-pts .pts-feat-phone figcaption {
  color: #ffffff !important;
  text-transform: uppercase;
}

.page-pts .pts-shot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem 1rem;
  margin: 1.75rem 0 0;
}

.page-pts .pts-shot-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-pts .pts-shot-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-pts .pts-shot-grid figure {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: none;
}

.page-pts .pts-shot-grid .ipm {
  max-width: 300px;
}

.page-pts .pts-shot-grid figure::before {
  display: none;
}

.page-pts .pts-shot-grid figcaption {
  width: min(100%, 270px);
  padding: 0.75rem 0.15rem 0;
  color: #d7e6f2;
  font-size: 0.82rem;
  text-align: center;
  background: none;
  border: 0;
}

@media (max-width: 1080px) {
  .page-pts .pts-shot-grid,
  .page-pts .pts-shot-grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .page-pts .pts-shot-grid,
  .page-pts .pts-shot-grid-4 {
    grid-template-columns: 1fr;
  }
}

html[data-theme="light"] .page-pts .pts-shot-grid figure {
  background: none !important;
  border: 0 !important;
}

html[data-theme="light"] .page-pts .pts-shot-grid figcaption {
  color: #ffffff !important;
  background: #12a5cb !important;
  border: 0 !important;
}

html[data-theme="light"] .page-pts .pts-feat-phone figcaption {
  background: #12a5cb !important;
  color: #ffffff !important;
  font-size: 14px !important;
  text-transform: uppercase;
  border: 0 !important;
}


.page-pts .pts-shot-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* ——— Tab panels that carry a screenshot beside their copy ——— */

.page-pts .pts-tab-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 340px);
  gap: clamp(1.35rem, 3vw, 2.5rem);
  align-items: start;
}

.page-pts .pts-tab-split > div {
  min-width: 0;
  max-width: none;
  padding-top: 0;
}

/* ——— Animated storyboards for TAK capability tabs ——— */

.page-pts .pts-storyboard {
  width: 100%;
  max-width: 340px;
  justify-self: end;
  border: 1px solid rgba(5, 111, 145, 0.28);
  border-radius: 14px;
  overflow: hidden;
  background: #0b1622;
  box-shadow: 0 14px 36px rgba(8, 20, 32, 0.18);
}

/* Under the checklist — fills the empty space below the list, not the phone column */
.page-pts .pts-storyboard--under {
  max-width: none;
  justify-self: stretch;
  margin-top: 1.35rem;
}

.page-pts .pts-storyboard-bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-pts .pts-storyboard-bar span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #5a6570;
}

.page-pts .pts-storyboard-bar span:nth-child(1) { background: #ff5f57; }
.page-pts .pts-storyboard-bar span:nth-child(2) { background: #febc2e; }
.page-pts .pts-storyboard-bar span:nth-child(3) { background: #28c840; }

.page-pts .pts-storyboard-bar em {
  margin-left: 0.55rem;
  color: rgba(232, 244, 251, 0.55);
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.72rem;
  font-style: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-pts .pts-storyboard-body {
  padding: 0.9rem 0.95rem 1rem;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.78rem;
  line-height: 1.55;
}

.page-pts .pts-storyboard-line {
  margin: 0 0 0.45rem;
  color: rgba(232, 244, 251, 0.88) !important;
  opacity: 0;
  transform: translateY(6px);
  animation: pts-story-line 0.55s ease forwards;
}

.page-pts .pts-storyboard-line:nth-child(1) { animation-delay: 0.15s; }
.page-pts .pts-storyboard-line:nth-child(2) { animation-delay: 0.45s; }
.page-pts .pts-storyboard-line:nth-child(3) { animation-delay: 0.75s; }
.page-pts .pts-storyboard-line.is-late { animation-delay: 1.35s; }
.page-pts .pts-storyboard-line.is-late2 { animation-delay: 1.65s; }

@keyframes pts-story-line {
  to { opacity: 1; transform: none; }
}

.page-pts .pts-storyboard .c-dim { color: #7aa0b8; }
.page-pts .pts-storyboard .c-key { color: #7ee0ff; }
.page-pts .pts-storyboard .c-ok { color: #3ddc97; }
.page-pts .pts-storyboard .c-lock { color: #e8c86a; font-weight: 700; }
.page-pts .pts-storyboard .c-pulse {
  color: #3ddc97;
  animation: pts-story-blink 1.1s ease-in-out infinite;
}

@keyframes pts-story-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.page-pts .pts-storyboard-graph {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 4.5rem;
  margin: 0.85rem 0 0.95rem;
  padding: 0.45rem 0.35rem 0;
  border-top: 1px dashed rgba(126, 224, 255, 0.2);
  border-bottom: 1px dashed rgba(126, 224, 255, 0.2);
}

.page-pts .pts-storyboard-bar-col {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #5ec8e8 0%, #056f91 100%);
  transform-origin: bottom;
  animation: pts-story-bars 2.4s ease-in-out infinite;
}

.page-pts .pts-storyboard-bar-col:nth-child(2) { animation-delay: 0.15s; }
.page-pts .pts-storyboard-bar-col:nth-child(3) { animation-delay: 0.3s; }
.page-pts .pts-storyboard-bar-col:nth-child(4) { animation-delay: 0.45s; }
.page-pts .pts-storyboard-bar-col:nth-child(5) { animation-delay: 0.6s; }
.page-pts .pts-storyboard-bar-col:nth-child(6) { animation-delay: 0.75s; }
.page-pts .pts-storyboard-bar-col:nth-child(7) { animation-delay: 0.9s; }

@keyframes pts-story-bars {
  0%, 100% { transform: scaleY(0.72); opacity: 0.75; }
  50% { transform: scaleY(1); opacity: 1; }
}

.page-pts .pts-storyboard--collab {
  padding: 0;
  background: #0b1622;
}

.page-pts .pts-storyboard-map {
  position: relative;
  height: 210px;
  margin: 0.75rem;
  border-radius: 10px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 40%, rgba(5, 111, 145, 0.22), transparent 42%),
    linear-gradient(160deg, #102033 0%, #0a1420 100%);
}

.page-pts .pts-storyboard-paths {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-pts .pts-storyboard-paths path {
  fill: none;
  stroke: #5ec8e8;
  stroke-width: 1.6;
  stroke-dasharray: 6 8;
  opacity: 0.55;
  animation: pts-hub-dash 1.6s linear infinite;
}

.page-pts .pts-storyboard-dot {
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #3ddc97;
  box-shadow: 0 0 0 4px rgba(61, 220, 151, 0.2);
  animation: pts-story-dot 3.2s ease-in-out infinite;
}

.page-pts .pts-storyboard-dot.d1 { left: 14%; top: 68%; }
.page-pts .pts-storyboard-dot.d2 { left: 38%; top: 28%; animation-delay: 0.4s; background: #7ee0ff; box-shadow: 0 0 0 4px rgba(126, 224, 255, 0.22); }
.page-pts .pts-storyboard-dot.d3 { left: 62%; top: 48%; animation-delay: 0.8s; background: #e8c86a; box-shadow: 0 0 0 4px rgba(232, 200, 106, 0.22); }
.page-pts .pts-storyboard-dot.d4 { left: 82%; top: 22%; animation-delay: 1.2s; }

@keyframes pts-story-dot {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.page-pts .pts-storyboard-tag {
  position: absolute;
  margin: 0;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: rgba(5, 111, 145, 0.35);
  color: #e8f4fb !important;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.page-pts .pts-storyboard-tag.t1 { left: 10%; top: 12%; }
.page-pts .pts-storyboard-tag.t2 { right: 10%; top: 58%; }
.page-pts .pts-storyboard-tag.t3 { left: 42%; bottom: 12%; }

.page-pts .pts-storyboard-foot {
  margin: 0;
  padding: 0.65rem 0.9rem 0.85rem;
  color: rgba(232, 244, 251, 0.7) !important;
  font-size: 0.82rem;
  text-align: center;
}

.page-pts .pts-storyboard--cop {
  background: #0b1622;
}

.page-pts .pts-storyboard-browser {
  display: flex;
  flex-direction: column;
  min-height: 240px;
}

.page-pts .pts-storyboard-cop {
  position: relative;
  flex: 1;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(5, 111, 145, 0.12), transparent 40%),
    #0e1a28;
}

.page-pts .pts-storyboard-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(94, 200, 232, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 200, 232, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle at 50% 45%, #000 30%, transparent 78%);
  animation: pts-story-grid 8s linear infinite;
}

@keyframes pts-story-grid {
  to { background-position: 22px 22px; }
}

.page-pts .pts-storyboard-token {
  position: relative;
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(94, 200, 232, 0.35);
  border-radius: 8px;
  background: rgba(5, 111, 145, 0.18);
  color: #b8eaf8;
  font-size: 0.72rem;
  font-weight: 600;
}

.page-pts .pts-storyboard-cop ul {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-pts .pts-storyboard-cop li {
  margin: 0;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(232, 244, 251, 0.82) !important;
  font-size: 0.8rem;
  font-weight: 600;
}

.page-pts .pts-storyboard-cop li.is-on {
  border-color: rgba(232, 200, 106, 0.45);
  background: rgba(232, 200, 106, 0.12);
  color: #f5e6b8 !important;
}

html[data-theme="light"] .page-pts .pts-storyboard {
  background: #ffffff;
  border-color: rgba(5, 111, 145, 0.22);
  box-shadow: 0 14px 32px rgba(16, 24, 40, 0.08);
}

html[data-theme="light"] .page-pts .pts-storyboard-bar {
  background: #f3f7fa;
  border-bottom-color: rgba(16, 24, 40, 0.08);
}

html[data-theme="light"] .page-pts .pts-storyboard-bar em {
  color: #5a6a7a;
}

html[data-theme="light"] .page-pts .pts-storyboard-line {
  color: #1c2430 !important;
}

html[data-theme="light"] .page-pts .pts-storyboard .c-dim { color: #5a6a7a; }
html[data-theme="light"] .page-pts .pts-storyboard .c-key { color: #056f91; }
html[data-theme="light"] .page-pts .pts-storyboard .c-ok { color: #1a8f5c; }
html[data-theme="light"] .page-pts .pts-storyboard .c-lock { color: #9a7a22; }

html[data-theme="light"] .page-pts .pts-storyboard-map {
  background:
    radial-gradient(circle at 30% 40%, rgba(5, 111, 145, 0.12), transparent 42%),
    linear-gradient(160deg, #eef6fa 0%, #e4eef5 100%);
}

html[data-theme="light"] .page-pts .pts-storyboard-paths path {
  stroke: #056f91;
}

html[data-theme="light"] .page-pts .pts-storyboard-tag {
  background: rgba(5, 111, 145, 0.12);
  color: #056f91 !important;
}

html[data-theme="light"] .page-pts .pts-storyboard-foot {
  color: #3d4a5c !important;
}

html[data-theme="light"] .page-pts .pts-storyboard-cop {
  background:
    linear-gradient(180deg, rgba(5, 111, 145, 0.08), transparent 40%),
    #f5f9fb;
}

html[data-theme="light"] .page-pts .pts-storyboard-token {
  border-color: rgba(5, 111, 145, 0.28);
  background: rgba(5, 111, 145, 0.08);
  color: #056f91;
}

html[data-theme="light"] .page-pts .pts-storyboard-cop li {
  border-color: rgba(16, 24, 40, 0.1);
  background: #ffffff;
  color: #1c2430 !important;
}

html[data-theme="light"] .page-pts .pts-storyboard-cop li.is-on {
  border-color: rgba(184, 146, 46, 0.45);
  background: #fff8e6;
  color: #6a5420 !important;
}

@media (max-width: 900px) {
  .page-pts .pts-tab-split {
    grid-template-columns: 1fr;
  }

  .page-pts .pts-storyboard {
    justify-self: stretch;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-pts .pts-storyboard-line,
  .page-pts .pts-storyboard-bar-col,
  .page-pts .pts-storyboard-dot,
  .page-pts .pts-storyboard-paths path,
  .page-pts .pts-storyboard-grid,
  .page-pts .pts-storyboard .c-pulse {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

.page-pts .pts-tab-panel {
  padding: 0.35rem 0 0.5rem;
  margin-top: 0.35rem;
}

.page-pts .pts-tab-panel h3 {
  margin-top: 0;
}

@media (max-width: 900px) {
  .page-pts .pts-tab-panel h3 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .page-pts .pts-tab-panel .pts-tree li {
    font-size: 22px;
  }
}

.page-pts .pts-tab-media {
  width: 100%;
  max-width: 340px;
  margin-inline: auto;
}

.page-pts .pts-tab-media .ipm {
  max-width: 320px;
  --ipm-max: 320px;
}

/* ——— "Rapidly serve" overview: centred intro over a three-up card grid,
   each card built around a portrait app screenshot. ——— */

.page-pts .pts-serve-inner {
  text-align: center;
}

.page-pts .pts-serve-title {
  margin: 0 auto 1.05rem;
  max-width: 52rem;
  font-family: var(--pts-display);
  font-size: clamp(1.6rem, 2.9vw, 2.4rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--pts-head);
}

.page-pts .pts-serve-lead {
  margin: 0 auto 1.75rem;
  max-width: 44rem;
  color: var(--pts-body);
  font-size: 1rem;
  line-height: 1.6;
}

.page-pts .pts-serve-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 2.75rem;
}

.page-pts .pts-serve-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  text-align: left;
}

.page-pts .pts-serve-media {
  position: relative;
  max-width: 300px;
  margin: 0 auto 1.2rem;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: none;
}

.page-pts .pts-serve-media .ipm {
  max-width: 300px;
}

.page-pts .pts-serve-pill {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0.9rem;
  transform: translateX(-50%);
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: rgba(10, 18, 27, 0.92);
  border: 1px solid rgba(68, 200, 245, 0.5);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.page-pts .pts-serve-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--pts-display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--pts-head);
}

.page-pts .pts-serve-card p {
  margin: 0;
  color: var(--pts-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

.page-pts .hs-view-more {
  font-family: inherit;
  color: var(--pts-cyan);
}

@media (max-width: 900px) {
  .page-pts .pts-serve-grid { grid-template-columns: 1fr; }
  .page-pts .pts-serve-card :is(h3, .hs-text-clamp) {
    max-width: 26rem;
    margin-inline: auto;
  }
}

/* ——— Field kit: numbered points + theme-aware hardware visual ——— */

.page-pts .pts-kit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: start;
}

.page-pts .pts-kit-layout--copy-only {
  grid-template-columns: 1fr;
  max-width: 40rem;
}

.page-pts .pts-kit-copy .pts-kicker {
  margin-bottom: 0.5rem;
}

.page-pts .pts-kit-copy .pts-h2 {
  margin: 0 0 0.85rem;
}

.page-pts .pts-kit-copy .pts-h2 em {
  color: #056f91;
  font-style: normal;
}

.page-pts .pts-kit-lead {
  margin: 0 0 1.75rem;
  max-width: 38rem;
  color: var(--pts-muted) !important;
  font-size: 1.05rem;
  line-height: 1.65;
}

.page-pts .pts-kit-lead em {
  color: #056f91;
  font-style: normal;
  font-weight: 600;
}

.page-pts .pts-kit-points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-pts .pts-kit-points li {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 0.85rem 1rem;
  align-items: start;
  margin: 0;
  padding: 1.1rem 0;
  border-top: 1px solid var(--pts-line);
  color: inherit;
}

.page-pts .pts-kit-points li:last-child {
  border-bottom: 1px solid var(--pts-line);
}

.page-pts .pts-kit-num {
  display: inline-grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border: 1.5px solid #056f91;
  border-radius: 999px;
  color: #056f91;
  font-family: "IBM Plex Sans", "Work Sans", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: rgba(5, 111, 145, 0.08);
}

.page-pts .pts-kit-points strong {
  display: block;
  margin: 0 0 0.35rem;
  font-family: "IBM Plex Sans", "Work Sans", system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--pts-head);
}

.page-pts .pts-kit-points p {
  margin: 0;
  color: var(--pts-muted) !important;
  font-size: 0.98rem;
  line-height: 1.55;
}

.page-pts .pts-kit-visual {
  position: sticky;
  top: 5.5rem;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: transparent;
}

.page-pts .pts-kit-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.page-pts .pts-kit-img--light { display: none; }
.page-pts .pts-kit-img--dark { display: block; }

html[data-theme="light"] .page-pts .pts-kit-img--dark { display: none; }
html[data-theme="light"] .page-pts .pts-kit-img--light { display: grid; }

.page-pts .pts-kit-shots {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
  padding: 0.65rem;
  border: 1.5px solid rgba(5, 111, 145, 0.22);
  border-radius: 14px;
  background: #ffffff;
}

.page-pts .pts-kit-shots img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  background: #f3f6f9;
}

@media (max-width: 960px) {
  .page-pts .pts-kit-layout {
    grid-template-columns: 1fr;
  }

  .page-pts .pts-kit-visual {
    position: static;
    order: -1;
  }
}

html[data-theme="light"] .page-pts .pts-kit-points strong {
  color: #1c2430;
}

html[data-theme="light"] .page-pts .pts-kit-points p,
html[data-theme="light"] .page-pts .pts-kit-lead {
  color: #3d4a5c !important;
}

html[data-theme="dark"] .page-pts .pts-kit-points strong {
  color: #e8f4fb;
}

html[data-theme="dark"] .page-pts .pts-kit-points p,
html[data-theme="dark"] .page-pts .pts-kit-lead {
  color: rgba(232, 244, 251, 0.75) !important;
}

html[data-theme="dark"] .page-pts .pts-kit-num {
  background: rgba(5, 111, 145, 0.16);
}

/* ——— Field kit: landscape photo beside plain heading, copy, and tree list ——— */

.page-pts .pts-kit-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  margin-top: 1.15rem;
}

.page-pts .pts-kit-split h2 {
  margin: 0 0 0.45rem;
  font-family: var(--pts-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--pts-head);
}

.page-pts .pts-kit-split > div > p {
  margin: 0;
  color: var(--pts-body);
  font-size: 1rem;
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .page-pts .pts-kit-split { grid-template-columns: 1fr; }
}

.page-pts .pts-tab-media {
  margin: 0;
  width: 100%;
  max-width: 340px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: end;
}

.page-pts .pts-tab-media .ipm {
  max-width: 320px;
  --ipm-max: 320px;
}

.page-pts .pts-tab-media figcaption {
  padding: 0.5rem 0.65rem 0.6rem;
  color: #d7e6f2;
  font-size: 0.75rem;
  line-height: 1.4;
}

/* ——— Capabilities: an open numbered list, no cards or panels. Structure
   comes from a hairline above each item rather than an enclosing box. ——— */

.page-pts .pts-caps {
  margin: 2.25rem 0 0;
  scroll-margin-top: 6rem;
}

.page-pts .pts-caps-open {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.75rem 2.25rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.page-pts .pts-caps-open li {
  position: relative;
  padding: 0.9rem 0 0;
  border: 0;
  border-top: 1px solid rgba(68, 200, 245, 0.45);
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.page-pts .pts-caps-num {
  display: block;
  margin-bottom: 0.4rem;
  padding: 0;
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: #44c8f5;
  font-family: var(--pts-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  -webkit-text-fill-color: #44c8f5;
}

.page-pts .pts-caps-open h3 {
  margin: 0 0 0.35rem;
  font-family: var(--pts-display);
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--pts-head);
}

.page-pts .pts-caps-open p {
  margin: 0;
  color: var(--pts-body);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ——— Demo reel: copy + phone walkthrough (no caption bar / pill cluster) ——— */

.page-pts .pts-demo-reel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 280px);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
  margin: 3rem 0 0;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--pts-line);
}

.page-pts .pts-demo-reel-copy .pts-kicker {
  margin-bottom: 0.45rem;
  color: #056f91;
}

.page-pts .pts-demo-reel-copy h3 {
  margin: 0 0 0.75rem;
  font-family: "IBM Plex Sans", "Work Sans", system-ui, sans-serif;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--pts-head);
}

.page-pts .pts-demo-reel-copy > p {
  margin: 0 0 1.25rem;
  max-width: 38rem;
  color: var(--pts-muted) !important;
  font-size: 1.02rem;
  line-height: 1.65;
}

.page-pts .pts-demo-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
}

.page-pts .pts-demo-steps li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.45rem 0.85rem 0.45rem 0.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "IBM Plex Sans", "Work Sans", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.2;
}

.page-pts .pts-demo-steps li span {
  display: inline-grid;
  place-items: center;
  min-width: 1.55rem;
  height: 1.55rem;
  padding: 0 0.2rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.55);
}

.page-pts .pts-demo-steps li.is-teal {
  color: #045a76 !important;
  background: linear-gradient(145deg, #e4f6fb 0%, #c8ebf5 100%);
  border-color: rgba(5, 111, 145, 0.35);
}

.page-pts .pts-demo-steps li.is-teal span {
  color: #ffffff;
  background: #056f91;
}

.page-pts .pts-demo-steps li.is-blue {
  color: #0b4f8a !important;
  background: linear-gradient(145deg, #e8f1fb 0%, #d0e3f7 100%);
  border-color: rgba(11, 92, 173, 0.32);
}

.page-pts .pts-demo-steps li.is-blue span {
  color: #ffffff;
  background: #0b5cad;
}

.page-pts .pts-demo-steps li.is-gold {
  color: #6a5420 !important;
  background: linear-gradient(145deg, #fff6df 0%, #f5e4b8 100%);
  border-color: rgba(180, 140, 40, 0.35);
}

.page-pts .pts-demo-steps li.is-gold span {
  color: #1c2430;
  background: #e8c86a;
}

html[data-theme="dark"] .page-pts .pts-demo-steps li.is-teal {
  color: #b8eaf8 !important;
  background: rgba(5, 111, 145, 0.22);
  border-color: rgba(5, 111, 145, 0.45);
}

html[data-theme="dark"] .page-pts .pts-demo-steps li.is-blue {
  color: #c5dbf5 !important;
  background: rgba(11, 92, 173, 0.22);
  border-color: rgba(68, 140, 220, 0.4);
}

html[data-theme="dark"] .page-pts .pts-demo-steps li.is-gold {
  color: #f5e6b8 !important;
  background: rgba(200, 160, 50, 0.18);
  border-color: rgba(232, 200, 106, 0.4);
}

html[data-theme="dark"] .page-pts .pts-demo-steps li.is-teal span,
html[data-theme="dark"] .page-pts .pts-demo-steps li.is-blue span {
  color: #ffffff;
}

html[data-theme="dark"] .page-pts .pts-demo-steps li.is-gold span {
  color: #1c2430;
  background: #e8c86a;
}

.page-pts .pts-demo-reel-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0.7rem 1.15rem;
  border: 1.5px solid #056f91;
  border-radius: 999px;
  background: transparent;
  color: #056f91;
  font-family: "IBM Plex Sans", "Work Sans", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.page-pts .pts-demo-reel-cta:hover {
  background: #056f91;
  color: #ffffff;
}

.page-pts .pts-demo-reel-cta-ico {
  display: inline-grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: rgba(5, 111, 145, 0.12);
}

.page-pts .pts-demo-reel-cta:hover .pts-demo-reel-cta-ico {
  background: rgba(255, 255, 255, 0.18);
}

.page-pts .pts-demo-reel-media {
  margin: 0;
  justify-self: end;
  width: 100%;
  max-width: 280px;
}

.page-pts .pts-demo-reel-media .pts-demo-stage {
  position: relative;
  width: 100%;
  max-width: 280px;
  margin: 0;
}

.page-pts .pts-demo-reel-media .hs-dino-play {
  z-index: 2;
}

@media (max-width: 860px) {
  .page-pts .pts-demo-reel {
    grid-template-columns: 1fr;
  }

  .page-pts .pts-demo-reel-media {
    justify-self: center;
    order: -1;
    max-width: 240px;
  }
}

html[data-theme="light"] .page-pts .pts-demo-reel-copy h3 {
  color: #1c2430;
}

html[data-theme="light"] .page-pts .pts-demo-reel-copy > p {
  color: #3d4a5c !important;
}

html[data-theme="dark"] .page-pts .pts-demo-reel-copy h3 {
  color: #e8f4fb;
}

html[data-theme="dark"] .page-pts .pts-demo-reel-copy > p {
  color: rgba(232, 244, 251, 0.75) !important;
}

/* ——— Demo clip: a phone-framed walkthrough video with its own label ——— */

.page-pts .pts-demo {
  display: grid;
  grid-template-columns: minmax(0, 258px) minmax(0, 1fr);
  gap: clamp(1.1rem, 3vw, 2.4rem);
  align-items: center;
  margin: 4.25rem 0 0;
}

.page-pts .pts-demo-media {
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-pts .pts-demo-media .ipm {
  max-width: 300px;
}

.page-pts .pts-demo-stage {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.page-pts .pts-demo-stage .hs-dino-play {
  z-index: 2;
  border-radius: inherit;
}

.page-pts .pts-demo-stage .ipm {
  max-width: 300px;
  margin-inline: auto;
}

.page-pts .pts-demo-media figcaption {
  padding: 0.7rem 0.9rem 0.85rem;
  color: #d7e6f2;
  font-size: 0.82rem;
  line-height: 1.45;
}

.page-pts .pts-demo-note .pts-kicker { margin-bottom: 0.45rem; }

.page-pts .pts-demo-note h3 {
  margin: 0 0 0.5rem;
  font-family: var(--pts-display);
  font-size: 1.3rem;
  color: var(--pts-head);
}

.page-pts .pts-demo-note p {
  margin: 0 0 0.85rem;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .page-pts .pts-tab-split { grid-template-columns: 1fr; }
  .page-pts .pts-tab-media {
    max-width: 320px;
    justify-self: center;
  }
  .page-pts .pts-tab-media .ipm {
    max-width: 300px;
    --ipm-max: 300px;
  }
  .page-pts .pts-demo { grid-template-columns: 1fr; }
  .page-pts .pts-demo-media { max-width: 300px; }
  .page-pts .pts-shot-grid-2 { grid-template-columns: 1fr; }
}

html[data-theme="light"] .page-pts .pts-tab-media,
html[data-theme="light"] .page-pts .pts-demo-media {
  border-color: rgba(11, 92, 173, 0.22);
  background: #ffffff;
}

@media (max-width: 1080px) {
  .page-pts .pts-copbag-top,
  .page-pts .pts-copbag-body {
    grid-template-columns: 1fr;
  }
  .page-pts .pts-copbag-trust { text-align: left; }
}

/* ==========================================================================
   Hero banner (.pts-hb) — copy left, globe right. Scoped to .pts-hb so no other section is affected.
   ========================================================================== */

.page-pts .pts-hb {
  --hb-orange: #0784ab;
  --hb-blue: #0784ab;
  --hb-gold: #d9a52b;
  --hb-heading: Inter, "IBM Plex Sans", system-ui, sans-serif;
  /* Cesium renders the earth at ~60% of the container, so the container is
     oversized to reach the globe scale in the reference banner. */
  --hb-globe: min(76vw, 1140px);
  position: relative;
  overflow: hidden;
  min-height: 0;
  background: #050b14;
}

/* Globe centred on the right, clear of the copy */
.page-pts .pts-hb .pts-hero-globe-orbit {
  left: calc(36% - var(--hb-globe) / 2);
  right: auto;
  top: 54%;
  transform: translateY(-50%);
  width: var(--hb-globe);
  height: var(--hb-globe);
  box-shadow: none;
}

/* NaturalEarthII with sun lighting reads very dark on a #050b14 canvas */
.page-pts .pts-hb .pts-cesium-globe {
  filter: saturate(1.25) brightness(1.45) contrast(1.04);
}

.page-pts .pts-hb .pts-hero-veil {
  background: linear-gradient(
    270deg,
    #050b14 0%,
    #050b14 33%,
    rgba(5, 11, 20, 0.7) 45%,
    rgba(5, 11, 20, 0.22) 64%,
    rgba(5, 11, 20, 0.04) 100%
  );
}

.page-pts .pts-hb .pts-hero-grid {
  mask-image: radial-gradient(ellipse at 70% 45%, #000 20%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 45%, #000 20%, transparent 72%);
}

/* The concentric radar rings read as a coloured border around the globe — keep the banner clean */
.page-pts .pts-hb .pts-hero-radar {
  display: none;
}

.page-pts .pts-hb .pts-hero-split,
.page-pts .pts-hb .pts-hb-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) !important;
  align-items: center;
  min-height: min(68vh, 640px);
  padding: clamp(2.75rem, 4.5vw, 4.75rem) 0 clamp(2.5rem, 4vw, 4rem);
}

.page-pts .pts-hb .pts-hb-visual,
.page-pts .pts-hb .pts-hb-devices,
.page-pts .pts-hb .pts-hb-phone,
.page-pts .pts-hb .pts-hb-phone-frame,
.page-pts .pts-hb .pts-hb-phone-screen,
.page-pts .pts-hb .ip17,
.page-pts .pts-hb img[src*="app-shots"],
.page-pts .pts-hb img[src*="iphone"],
.page-pts .pts-hb img[src*="hero-"] {
  display: none !important;
}

/* ——— Copy + actions (left); globe stays on the right ——— */

.page-pts .pts-hb .pts-hb-copy {
  order: 1;
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 36rem;
  margin-right: auto;
}

.page-pts .pts-hb .pts-hb-eyebrow {
  margin: 0 0 0.5rem;
  color: rgba(255, 255, 255, 0.56) !important;
  font-family: var(--hb-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.page-pts .pts-hb .pts-hb-eyebrow span {
  margin: 0 0.2rem;
  font-size: 0.58rem;
  vertical-align: 0.08em;
}

.page-pts .pts-hb .pts-hb-kicker {
  margin: 0 0 0.9rem;
  color: var(--hb-gold) !important;
  font-family: var(--hb-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.page-pts .pts-hb .pts-hb-title {
  margin: 0 0 1.1rem;
  font-family: var(--hb-heading);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.018em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.6);
}

.page-pts .pts-hb .pts-hb-title em {
  font-style: normal;
  color: var(--hb-blue);
}

.page-pts .pts-hb .pts-hb-lead {
  margin: 0 0 1.6rem;
  max-width: 33rem;
  color: rgba(233, 241, 248, 0.85) !important;
  font-family: var(--pts-body);
  font-size: clamp(14px, 1.05vw, 16.5px);
  font-weight: 400;
  line-height: 1.62;
}

.page-pts .pts-hb .pts-hb-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.3rem;
}

.page-pts .pts-hb a.pts-hb-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.27rem 0.28rem 0.27rem 1.15rem;
  border: 0;
  border-radius: 9px;
  background: var(--hb-orange);
  color: #ffffff;
  font-family: var(--hb-heading);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(7, 132, 171, 0.3);
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.page-pts .pts-hb a.pts-hb-cta:hover {
  background: #056f91;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(7, 132, 171, 0.42);
}

.page-pts .pts-hb .pts-hb-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 7px;
  background: #ffffff;
  color: var(--hb-orange);
}

.page-pts .pts-hb .pts-hb-cta-arrow svg { display: block; }

.page-pts .pts-hb a.pts-hb-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.6rem;
  padding: 0 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 9px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03) 45%, rgba(0, 0, 0, 0.52));
  color: #ffffff;
  font-family: var(--hb-heading);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.page-pts .pts-hb a.pts-hb-ghost:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05) 45%, rgba(0, 0, 0, 0.5));
  color: #ffffff;
}

.page-pts .pts-hb .pts-hb-stores {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}

.page-pts .pts-hb a.pts-hb-badge {
  display: inline-flex;
  overflow: hidden;
  border-radius: 7px;
  line-height: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.page-pts .pts-hb a.pts-hb-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}

.page-pts .pts-hb .pts-hb-badge img {
  display: block;
  width: auto;
  height: clamp(2.15rem, 2.6vw, 2.6rem);
  margin: 0;
}

/* ——— Responsive ——— */

@media (max-width: 1080px) {
  .page-pts .pts-hb .pts-hb-split {
    min-height: 0;
    padding: 2.75rem 0 3rem;
  }
  .page-pts .pts-hb .pts-hb-copy {
    max-width: 42rem;
    margin-left: 0;
  }
  .page-pts .pts-hb .pts-hero-globe-orbit {
    left: 50%;
    right: auto;
    top: 32%;
    transform: translate(-50%, -50%);
    width: min(88vw, 460px);
    height: min(88vw, 460px);
    opacity: 0.5;
  }
  .page-pts .pts-hb .pts-hero-veil {
    background: linear-gradient(180deg, rgba(5, 11, 20, 0.9), rgba(5, 11, 20, 0.8));
  }
}

@media (max-width: 560px) {
  .page-pts .pts-hb .pts-hb-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .page-pts .pts-hb a.pts-hb-cta { justify-content: space-between; }
}

/* ==========================================================================
   Hero banner globe — original CSS sphere (assets/wts/globe/earth-blue-marble.jpg).
   Scoped to .pts-hb so the home-sample hero keeps its own globe sizing.
   ========================================================================== */

.page-pts .pts-hb {
  --hb-sphere: min(42vw, 580px);
}

.page-pts .pts-hb .hs-globe-wrap {
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Centred on the right so the sphere stays clear of the copy */
.page-pts .pts-hb .hs-globe-orbit {
  display: block !important;
  position: absolute;
  left: auto;
  right: calc(24% - var(--hb-sphere) / 2);
  top: 50%;
  transform: translateY(-50%);
  width: var(--hb-sphere);
  height: var(--hb-sphere);
  overflow: visible;
}

.page-pts .pts-hb .hs-globe-sphere {
  display: block !important;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: url("assets/wts/globe/earth-blue-marble.jpg") 0 50% / 200% 100% repeat-x;
  animation: hs-globe-spin 48s linear infinite;
  box-shadow:
    inset -28px 0 50px rgba(0, 0, 0, 0.55),
    inset 12px 0 28px rgba(120, 190, 255, 0.12),
    0 0 60px rgba(70, 150, 255, 0.22);
}

.page-pts .pts-hb .hs-globe-shade {
  display: block !important;
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.14) 0%, transparent 28%),
    linear-gradient(90deg, transparent 42%, rgba(2, 6, 14, 0.55) 78%, rgba(2, 6, 14, 0.78) 100%);
}

/* .hs-globe-fade now owns the right-side falloff, so the old veil would double it */
.page-pts .pts-hb .pts-hero-veil {
  background: none;
}

/* Fades the globe into the banner on the left so the copy stays readable */
.page-pts .pts-hb .hs-globe-fade {
  display: block !important;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #050b14 0%,
    #050b14 30%,
    rgba(5, 11, 20, 0.72) 44%,
    rgba(5, 11, 20, 0.22) 64%,
    rgba(5, 11, 20, 0.04) 100%
  );
  pointer-events: none;
}

@media (max-width: 900px) {
  .page-pts .pts-hb { --hb-sphere: min(80vw, 420px); }

  .page-pts .pts-hb .hs-globe-orbit {
    left: 50%;
    right: auto;
    top: 30%;
    transform: translate(-50%, -50%);
    opacity: 0.55;
  }

  .page-pts .pts-hb .hs-globe-fade {
    background: linear-gradient(180deg, rgba(5, 11, 20, 0.55) 0%, rgba(5, 11, 20, 0.86) 45%, #050b14 82%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-pts .pts-hb .hs-globe-sphere { animation: none; }
}

/* ==========================================================================
   Master iPhone mockup — one size + radius for every phone screenshot
   ========================================================================== */

.ipm {
  --ipm-max: 300px;
  --ipm-pad: 6px;
  --ipm-radius: 22px;
  --ipm-screen-radius: 16px;
  position: relative;
  width: 100%;
  max-width: var(--ipm-max);
  margin-inline: auto;
  padding: var(--ipm-pad);
  border: none !important;
  outline: none !important;
  border-radius: var(--ipm-radius);
  background: #0d0d0d !important;
  background-image: none !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
  overflow: hidden;
}

/* Dark mode: visible silver / gunmetal phone frame */
html[data-theme="dark"] .ipm {
  background:
    linear-gradient(
      145deg,
      #d4d8de 0%,
      #9aa1a9 18%,
      #5c636b 42%,
      #2e3339 68%,
      #1a1e23 100%
    ) !important;
  background-image:
    linear-gradient(
      145deg,
      #d4d8de 0%,
      #9aa1a9 18%,
      #5c636b 42%,
      #2e3339 68%,
      #1a1e23 100%
    ) !important;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35) !important;
}

html[data-theme="light"] .ipm {
  background: #1a1c1f !important;
  background-image: none !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

.ipm--hero {
  --ipm-max: 340px;
}

.page-pts .pts-demo-media .ipm,
.page-pts .pts-tab-media .ipm,
.page-pts .pts-story .ipm,
.page-pts .pts-shot-grid .ipm,
.page-pts .pts-media-phone .ipm,
.page-pts .pts-serve-media .ipm,
.page-pts .pts-feat-phone .ipm,
.page-pts .pts-feat-phone .ipm--hero {
  max-width: var(--ipm-max);
}

.page-pts .pts-demo-media,
.page-pts .pts-tab-media {
  background: none;
  border: 0;
}

.ipm-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  border-radius: var(--ipm-screen-radius);
  background: #ffffff !important;
}

/* No Dynamic Island / notch / camera pill overlays */
.ipm-screen::before,
.ipm-screen::after {
  content: none !important;
  display: none !important;
}

.ipm-screen img,
.ipm-screen video {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  object-fit: cover;
  object-position: top center;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  max-width: none;
  aspect-ratio: auto;
  transition: opacity 0.22s ease;
}

/* ==========================================================================
   Modules — 3 cards | iPhone 17 Pro | 3 cards
   ========================================================================== */

.page-pts .pts-board.pts-mods {
  padding: 2rem 0 1.75rem;
  border-bottom: 1px solid var(--pts-line);
  background: none;
}

.page-pts .pts-board.pts-mods > .wrap {
  width: min(1280px, calc(100% - 1.5rem));
}

.page-pts .pts-feat {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) minmax(280px, 340px) minmax(210px, 1fr);
  gap: 1rem 1.25rem;
  align-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  overflow: visible;
}

.page-pts .pts-feat-col {
  display: grid;
  gap: 0.85rem;
  min-width: 0;
}

.page-pts .pts-feat-phone {
  min-width: 0;
  justify-self: center;
  width: 100%;
}

.page-pts .pts-feat-phone .ipm,
.page-pts .pts-feat-phone .ipm--hero {
  max-width: 340px;
}

.page-pts .pts-fcard {
  position: relative;
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  width: 100%;
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(16, 24, 40, 0.14);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  appearance: none;
}

.page-pts .pts-fcard-ico {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  overflow: hidden;
}

.page-pts .pts-fcard-ico img {
  display: block;
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
  object-position: center;
}

.page-pts .pts-fcard-body {
  min-width: 0;
}

.page-pts .pts-fcard h3 {
  margin: 0 0 0.22rem;
  color: #1c2430;
  font-family: var(--pts-display, "Inter", sans-serif);
  font-size: calc(0.92rem + 2px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  text-transform: none;
}

.page-pts .pts-fcard-badge {
  display: inline-block;
  margin: 0 0 0.3rem;
  color: #1c2430;
  font-size: calc(0.62rem + 2px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-pts .pts-fcard p {
  margin: 0;
  color: #3d4a5c !important;
  font-size: calc(0.8rem + 2px);
  line-height: 1.4;
}

.page-pts .pts-fcard.is-active {
  border-color: #1c2430;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.1);
}

html[data-theme="light"] .page-pts .pts-fcard {
  background: #ffffff !important;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06) !important;
  border-color: rgba(16, 24, 40, 0.14);
}

html[data-theme="light"] .page-pts .pts-fcard.is-active {
  border-color: #1c2430 !important;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.1) !important;
}

html[data-theme="dark"] .page-pts .pts-fcard {
  background: rgba(8, 16, 28, 0.85) !important;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28) !important;
}

html[data-theme="dark"] .page-pts .pts-fcard h3,
html[data-theme="dark"] .page-pts .pts-fcard-badge {
  color: #e8eef4;
}

html[data-theme="dark"] .page-pts .pts-fcard p {
  color: rgba(232, 244, 251, 0.72) !important;
}

html[data-theme="dark"] .page-pts .pts-fcard.is-active {
  border-color: #7ee0ff;
}

.page-pts .pts-feat-phone {
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
}

.page-pts .pts-feat-phone .ipm {
  width: 100%;
  max-width: 300px;
}

.page-pts .pts-feat .ip17,
.page-pts .pts-feat .ip17-body,
.page-pts .pts-feat .ip17-screen,
.page-pts .pts-feat .ip17-island,
.page-pts .pts-feat .ip17-shot,
.page-pts .pts-feat .ip17-btn,
.page-pts .pts-feat .ip17-chrome,
.page-pts .pts-feat-screen,
.page-pts .pts-feat-bezel,
.page-pts .pts-feat-island,
.page-pts .pts-feat-home {
  display: none !important;
}

.page-pts .pts-feat-phone figcaption {
  margin: 0.55rem 0 0;
  padding: 0.55rem 0.75rem;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  background: #12a5cb;
  border: 0;
  border-radius: 6px;
}

@media (max-width: 1080px) {
  .page-pts .pts-feat {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .page-pts .pts-feat-phone { order: -1; width: min(100%, 240px); }
  .page-pts .pts-feat-col {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .page-pts .pts-feat-col { grid-template-columns: 1fr; }
}


/* Page theme is the only fill — sections stay open so the site reads as one surface */
.page-pts .pts-board,
.page-pts .pts-feat,
.page-pts .pts-get,
.page-pts .pts-get-row,
.page-pts .pts-feat-card,
.page-pts .pts-flow-card,
.page-pts .pts-gear-card,
.page-pts .pts-mod-card,
.page-pts .pts-tab-panel,
.page-pts .pts-story figure,
.page-pts .pts-video-sec,
.page-pts .pts-demo-note,
.page-pts .pts-media,
.page-pts .pts-tab-media,
.page-pts .pts-demo-media,
.page-pts .pts-serve-card,
.page-pts .pts-mod-squares span,
html[data-theme="light"] .page-pts .pts-board,
html[data-theme="light"] .page-pts .pts-tab-panel,
html[data-theme="light"] .page-pts .pts-flow-card,
html[data-theme="light"] .page-pts .pts-get,
html[data-theme="light"] .page-pts .pts-mod-squares span,
html[data-theme="light"] .page-pts .pts-story figure,
html[data-theme="light"] .page-pts .pts-video-sec {
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

/* Chips + capability cards keep real color (not wiped open) */
html[data-theme="light"] .page-pts .pts-chip-row li,
html[data-theme="light"] .page-pts .pts-chip-row-static span {
  color: #056a8a !important;
  background: linear-gradient(145deg, #e8f7fc 0%, #d5f0f8 100%) !important;
  border-color: rgba(7, 132, 171, 0.45) !important;
  box-shadow: 0 2px 8px rgba(7, 132, 171, 0.1) !important;
}

html[data-theme="light"] .page-pts .pts-chip-row li.is-gold,
html[data-theme="light"] .page-pts .pts-chip-row-static span.is-gold {
  color: #1c1504 !important;
  background: linear-gradient(145deg, #f3e6b0 0%, #e8d48a 100%) !important;
  border-color: #b8962e !important;
  box-shadow: 0 2px 8px rgba(184, 150, 46, 0.18) !important;
}

html[data-theme="light"] .page-pts .pts-icon-card {
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.06) !important;
  border: 1px solid rgba(16, 24, 40, 0.08) !important;
}

/* Soft fills — no loud green outline. Headings stay in accent color. */
html[data-theme="light"] .page-pts .pts-icon-card.is-teal {
  background: linear-gradient(145deg, #e8f4ff 0%, #d4ebfc 55%, #c5e2f7 100%) !important;
  border-color: rgba(16, 24, 40, 0.08) !important;
}

html[data-theme="light"] .page-pts .pts-icon-card.is-teal.is-active {
  border-color: rgba(21, 101, 192, 0.35) !important;
  box-shadow: 0 10px 24px rgba(21, 101, 192, 0.12) !important;
}

html[data-theme="light"] .page-pts .pts-icon-card.is-blue {
  background: linear-gradient(145deg, #f6eafb 0%, #ead4f5 55%, #dfc2ef 100%) !important;
  border-color: rgba(16, 24, 40, 0.08) !important;
}

html[data-theme="light"] .page-pts .pts-icon-card.is-blue.is-active {
  border-color: rgba(123, 31, 162, 0.3) !important;
  box-shadow: 0 10px 24px rgba(123, 31, 162, 0.12) !important;
}

html[data-theme="light"] .page-pts .pts-icon-card.is-gold {
  background: linear-gradient(145deg, #fff6e8 0%, #ffe4c4 55%, #ffd7a8 100%) !important;
  border-color: rgba(16, 24, 40, 0.08) !important;
}

html[data-theme="light"] .page-pts .pts-icon-card.is-gold.is-active {
  border-color: rgba(239, 108, 0, 0.35) !important;
  box-shadow: 0 10px 24px rgba(239, 108, 0, 0.12) !important;
}

html[data-theme="light"] .page-pts .pts-icon-card.is-teal .pts-icon-card-svg,
html[data-theme="light"] .page-pts .pts-icon-card.is-teal h3 {
  color: #1565c0 !important;
}

html[data-theme="light"] .page-pts .pts-icon-card.is-blue .pts-icon-card-svg,
html[data-theme="light"] .page-pts .pts-icon-card.is-blue h3 {
  color: #7b1fa2 !important;
}

html[data-theme="light"] .page-pts .pts-icon-card.is-gold .pts-icon-card-svg,
html[data-theme="light"] .page-pts .pts-icon-card.is-gold h3 {
  color: #ef6c00 !important;
}

html[data-theme="light"] .page-pts #panel-marti h3 {
  color: #1565c0 !important;
}

html[data-theme="light"] .page-pts #panel-collab h3 {
  color: #7b1fa2 !important;
}

html[data-theme="light"] .page-pts #panel-cop h3 {
  color: #ef6c00 !important;
}

html[data-theme="light"] .page-pts .pts-icon-card-svg {
  width: auto !important;
  height: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html[data-theme="light"] .page-pts .pts-icon-card-svg svg {
  width: 3.35rem !important;
  height: 3.35rem !important;
  filter: none;
}

html[data-theme="dark"] .page-pts .pts-icon-card {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

html[data-theme="dark"] .page-pts .pts-icon-card.is-teal {
  background: linear-gradient(145deg, rgba(33, 150, 243, 0.28), rgba(8, 20, 36, 0.95)) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

html[data-theme="dark"] .page-pts .pts-icon-card.is-teal.is-active {
  border-color: rgba(100, 181, 246, 0.55) !important;
  box-shadow: 0 10px 24px rgba(33, 150, 243, 0.18) !important;
}

html[data-theme="dark"] .page-pts .pts-icon-card.is-blue {
  background: linear-gradient(145deg, rgba(156, 39, 176, 0.26), rgba(8, 20, 36, 0.95)) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

html[data-theme="dark"] .page-pts .pts-icon-card.is-blue.is-active {
  border-color: rgba(186, 104, 200, 0.55) !important;
  box-shadow: 0 10px 24px rgba(156, 39, 176, 0.18) !important;
}

html[data-theme="dark"] .page-pts .pts-icon-card.is-gold {
  background: linear-gradient(145deg, rgba(255, 152, 0, 0.26), rgba(8, 20, 36, 0.95)) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

html[data-theme="dark"] .page-pts .pts-icon-card.is-gold.is-active {
  border-color: rgba(255, 183, 77, 0.55) !important;
  box-shadow: 0 10px 24px rgba(255, 152, 0, 0.16) !important;
}

html[data-theme="dark"] .page-pts .pts-icon-card.is-teal .pts-icon-card-svg,
html[data-theme="dark"] .page-pts .pts-icon-card.is-teal h3 {
  color: #7EE0FF !important;
}

html[data-theme="dark"] .page-pts .pts-icon-card.is-blue .pts-icon-card-svg,
html[data-theme="dark"] .page-pts .pts-icon-card.is-blue h3 {
  color: #7EE0FF !important;
}

html[data-theme="dark"] .page-pts .pts-icon-card.is-gold .pts-icon-card-svg,
html[data-theme="dark"] .page-pts .pts-icon-card.is-gold h3 {
  color: #7EE0FF !important;
}

html[data-theme="dark"] .page-pts #panel-marti h3 {
  color: #7EE0FF !important;
}

html[data-theme="dark"] .page-pts #panel-collab h3 {
  color: #7EE0FF !important;
}

html[data-theme="dark"] .page-pts #panel-cop h3 {
  color: #7EE0FF !important;
}

html[data-theme="dark"] .page-pts .pts-icon-card-svg {
  width: auto !important;
  height: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html[data-theme="dark"] .page-pts .pts-icon-card-svg svg {
  width: 3.35rem !important;
  height: 3.35rem !important;
  filter: none;
}

html[data-theme="dark"] .page-pts .pts-chip-row li,
html[data-theme="dark"] .page-pts .pts-chip-row-static span {
  color: #e8f4fb !important;
  background: rgba(7, 20, 31, 0.92) !important;
  border-color: rgba(68, 200, 245, 0.42) !important;
}

html[data-theme="dark"] .page-pts .pts-chip-row li.is-gold,
html[data-theme="dark"] .page-pts .pts-chip-row-static span.is-gold {
  color: #ffffff !important;
  background: #5a4614 !important;
  border-color: #c9a227 !important;
}

/* ==========================================================================
   TAK page — color / type consistency with homepage
   ========================================================================== */

.page-pts .pts-copbag-stage {
  padding: 6.75rem 0 2.75rem;
  background:
    radial-gradient(ellipse at 50% 22%, rgba(9, 143, 181, 0.18), transparent 52%),
    radial-gradient(ellipse at 82% 70%, rgba(68, 200, 245, 0.06), transparent 42%),
    #050b14 !important;
  border-bottom: 1px solid rgba(9, 143, 181, 0.2);
}

.page-pts .pts-copbag-frame {
  display: none;
}

.page-pts .pts-tkhero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}

.page-pts .pts-tkhero-side {
  display: grid;
  gap: 0.9rem;
}

.page-pts .pts-tkhero-point {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  margin: 0;
  padding: 0.55rem 0.15rem;
  border: 0;
  border-radius: 0;
  background: none;
  transition: transform 0.3s ease;
}

.page-pts .pts-tkhero-point:hover {
  transform: translateY(-2px);
  border-color: transparent;
  box-shadow: none;
}

.page-pts .pts-tkhero-num {
  font-family: var(--pts-display);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #0784ab;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: #0784ab;
}

.page-pts .pts-tkhero-point strong {
  display: block;
  margin: 0 0 0.28rem;
  color: #ffffff !important;
  font-family: var(--pts-display);
  font-size: 0.98rem;
  font-weight: 700;
}

.page-pts .pts-tkhero-point p {
  margin: 0;
  color: rgba(200, 215, 228, 0.86) !important;
  font-size: 0.88rem;
  line-height: 1.5;
}

.page-pts .pts-tkhero-main {
  text-align: center;
}

.page-pts .pts-tkhero-kicker {
  display: block;
  width: 100%;
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  background: none;
  color: #ffffff !important;
  font-family: var(--pts-display);
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.page-pts .pts-tkhero-patch {
  display: block;
  width: min(240px, 68%);
  height: auto;
  margin: 0 auto 1.1rem;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.4));
}

.page-pts .pts-tkhero-main h1 {
  margin: 0 0 1rem;
  font-family: var(--pts-display);
  font-size: clamp(1.75rem, 3.8vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  white-space: nowrap;
  color: #ffffff !important;
}

.page-pts .pts-tkhero-patch {
  display: block;
  width: min(240px, 68%);
  height: auto;
  margin: 0 auto 1rem;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.4));
}

.page-pts .pts-tkhero-sub {
  margin: 0.5rem 0 0;
  color: #ffffff !important;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-pts .pts-tkhero-modes {
  margin: 0.4rem 0 0;
  color: #44c8f5 !important;
  font-size: 0.92rem;
}

.page-pts .pts-tkhero-kit {
  margin: 0.95rem auto 0;
  max-width: 28rem;
  color: rgba(200, 215, 228, 0.88) !important;
  font-size: 0.95rem;
  line-height: 1.55;
}

.page-pts .pts-tkhero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.35rem;
}

.page-pts .pts-tkhero-actions .pts-hb-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.78rem 1.15rem;
  border-radius: 6px;
  background: #0784ab;
  color: #ffffff !important;
  font-family: var(--pts-display);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.page-pts .pts-tkhero-actions .pts-hb-cta:hover {
  transform: translateY(-2px);
  background: #056f91;
}

.page-pts .pts-tkhero-actions .pts-hb-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 1.05rem;
  border: 1px solid #0784ab;
  border-radius: 6px;
  color: #0784ab !important;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.page-pts .pts-tkhero-actions .pts-hb-ghost:hover {
  border-color: #0784ab;
  color: #ffffff !important;
  background: #0784ab;
}

html[data-theme="light"] .page-pts .pts-tkhero-actions .pts-hb-ghost {
  color: #0784ab !important;
  border-color: #0784ab;
}

html[data-theme="light"] .page-pts .pts-tkhero-actions .pts-hb-ghost:hover {
  color: #ffffff !important;
  background: #0784ab;
}

.page-pts .pts-copbag-trust {
  margin: 1.75rem auto 0;
  text-align: center;
  color: #098fb5 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.page-pts .pts-caps-open li {
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.page-pts .pts-caps-open li:hover {
  transform: translateY(-2px);
  border-top-color: #44c8f5;
  background: none;
  box-shadow: none;
}

.page-pts .pts-caps-num {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #44c8f5;
  background: none;
  border: 0;
  -webkit-text-fill-color: #44c8f5;
  transition: color 0.25s ease;
}

.page-pts .pts-caps-open li:hover .pts-caps-num {
  letter-spacing: 0.06em;
  filter: none;
  border: 0;
  background: none;
  color: #7ee0ff;
  -webkit-text-fill-color: #7ee0ff;
}

.page-pts .pts-tak-clients .pts-card {
  border-radius: 8px;
  border: 1px solid rgba(9, 143, 181, 0.28);
  background: linear-gradient(145deg, rgba(16, 28, 42, 0.95), rgba(8, 14, 22, 0.98));
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.page-pts .pts-tak-clients .pts-card small {
  display: block;
  margin-bottom: 0.35rem;
  color: #098fb5 !important;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-pts .pts-tak-clients .pts-card:hover {
  transform: translateY(-3px);
  border-color: rgba(9, 143, 181, 0.55);
  box-shadow: 0 12px 28px rgba(9, 143, 181, 0.16);
}

.page-pts .pts-tak-clients .pts-card h3 {
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.page-pts .pts-tak-clients .pts-card p {
  color: rgba(200, 215, 228, 0.8) !important;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

/* Client connectivity — rail (no cards) */
.page-pts .pts-clients-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 300px);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.page-pts .pts-clients-copy .pts-lead {
  margin-bottom: 1.75rem;
  max-width: 36rem;
}

.page-pts .pts-clients-copy .pts-lead code {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.92em;
  color: #056f91;
}

.page-pts .pts-client-rail {
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 2px solid #44c8f5;
}

.page-pts .pts-client-rail li {
  position: relative;
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr);
  gap: 1rem 1.25rem;
  align-items: start;
  margin: 0;
  padding: 1.05rem 0 1.05rem 1.35rem;
  border-top: 1px solid var(--pts-line);
  color: inherit;
}

.page-pts .pts-client-rail li:first-child {
  border-top: 0;
  padding-top: 0.15rem;
}

.page-pts .pts-client-rail li::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 1.25rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-sizing: border-box;
  border: 2px solid #44c8f5;
  background:
    radial-gradient(circle at center, #44c8f5 0 3px, transparent 3.5px),
    #050b14;
  box-shadow: none;
}

.page-pts .pts-client-rail li:first-child::before {
  top: 0.45rem;
}

.page-pts .pts-client-rail-os {
  font-family: "IBM Plex Sans", "Work Sans", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #44c8f5 !important;
  padding-top: 0.35rem;
}

.page-pts .pts-client-rail strong {
  display: block;
  margin: 0 0 0.3rem;
  font-family: "IBM Plex Sans", "Work Sans", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--pts-head);
}

.page-pts .pts-client-rail p {
  margin: 0;
  max-width: 32rem;
  color: var(--pts-muted) !important;
  font-size: 0.98rem;
  line-height: 1.5;
}

.page-pts .pts-clients-phone {
  justify-self: center;
  width: 100%;
  max-width: 280px;
}

@media (max-width: 900px) {
  .page-pts .pts-clients-grid {
    grid-template-columns: 1fr;
  }

  .page-pts .pts-clients-phone {
    order: -1;
    max-width: 240px;
  }

  .page-pts .pts-client-rail li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

html[data-theme="light"] .page-pts .pts-client-rail {
  border-left-color: #056f91;
}

html[data-theme="light"] .page-pts .pts-client-rail li::before {
  border-color: #056f91;
  background:
    radial-gradient(circle at center, #056f91 0 3px, transparent 3.5px),
    #ffffff;
  box-shadow: none;
}

html[data-theme="light"] .page-pts .pts-client-rail-os {
  color: #056f91 !important;
}

html[data-theme="light"] .page-pts .pts-clients-copy .pts-lead code {
  color: #056f91;
}

html[data-theme="light"] .page-pts .pts-client-rail strong {
  color: #1c2430;
}

html[data-theme="light"] .page-pts .pts-client-rail p {
  color: #3d4a5c !important;
}

html[data-theme="dark"] .page-pts .pts-client-rail {
  border-left-color: #44c8f5;
}

html[data-theme="dark"] .page-pts .pts-client-rail li::before {
  border-color: #44c8f5;
  background:
    radial-gradient(circle at center, #44c8f5 0 3px, transparent 3.5px),
    #050b14;
  box-shadow: none;
}

html[data-theme="dark"] .page-pts .pts-client-rail-os {
  color: #44c8f5 !important;
}

html[data-theme="dark"] .page-pts .pts-clients-copy .pts-lead code {
  color: #44c8f5;
}

html[data-theme="dark"] .page-pts .pts-client-rail strong {
  color: #e8f4fb;
}

html[data-theme="dark"] .page-pts .pts-client-rail p {
  color: rgba(232, 244, 251, 0.78) !important;
}

.page-pts .pts-kit-split h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
}

@media (max-width: 1080px) {
  .page-pts .pts-tkhero {
    grid-template-columns: 1fr;
  }
  .page-pts .pts-tkhero-main { order: -1; }
  .page-pts .pts-tkhero-side {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .page-pts .pts-tkhero-side {
    grid-template-columns: 1fr;
  }
  .page-pts .pts-tkhero-kicker {
    white-space: normal;
    letter-spacing: 0.1em;
  }
  .page-pts .pts-tkhero-main h1 {
    font-size: clamp(1.35rem, 6.5vw, 1.85rem);
  }
}

html[data-theme="light"] .page-pts .pts-copbag-stage {
  background:
    radial-gradient(ellipse at 50% 18%, rgba(5, 111, 145, 0.1), transparent 52%),
    #f4f6f9 !important;
  border-bottom-color: rgba(5, 111, 145, 0.14);
}

html[data-theme="light"] .page-pts .pts-tkhero-point {
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

html[data-theme="light"] .page-pts .pts-tkhero-point strong,
html[data-theme="light"] .page-pts .pts-tkhero-main h1 {
  color: #10151c !important;
}

html[data-theme="light"] .page-pts .pts-tkhero-kicker,
html[data-theme="light"] .page-pts .pts-tkhero-sub {
  color: #056f91 !important;
}

html[data-theme="light"] .page-pts .pts-tkhero-modes,
html[data-theme="light"] .page-pts .pts-copbag-trust {
  color: #3d4a5c !important;
}

html[data-theme="light"] .page-pts .pts-tkhero-point p,
html[data-theme="light"] .page-pts .pts-tkhero-kit {
  color: #3d4a5c !important;
}

html[data-theme="light"] .page-pts .pts-tkhero-num {
  color: #056f91;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: #056f91;
}

html[data-theme="light"] .page-pts .pts-tkhero-actions .pts-hb-ghost {
  color: #056f91 !important;
  border-color: rgba(5, 111, 145, 0.35);
}

/* Storyboard follows theme — light in light mode, dark in dark mode */
html[data-theme="light"] .page-pts .pts-storyboard {
  background: #ffffff !important;
  border-color: rgba(5, 111, 145, 0.22) !important;
  box-shadow: 0 14px 32px rgba(16, 24, 40, 0.08) !important;
}

html[data-theme="light"] .page-pts .pts-storyboard-bar {
  background: #f3f7fa !important;
  border-bottom-color: rgba(16, 24, 40, 0.08) !important;
}

html[data-theme="light"] .page-pts .pts-storyboard-bar em,
html[data-theme="light"] .page-pts .pts-storyboard-line,
html[data-theme="light"] .page-pts .pts-storyboard-foot {
  color: #1c2430 !important;
}

html[data-theme="light"] .page-pts .pts-storyboard .c-dim { color: #5a6a7a !important; }
html[data-theme="light"] .page-pts .pts-storyboard .c-key { color: #056f91 !important; }
html[data-theme="light"] .page-pts .pts-storyboard .c-ok { color: #1a8f5c !important; }
html[data-theme="light"] .page-pts .pts-storyboard .c-lock { color: #9a7a22 !important; }
html[data-theme="light"] .page-pts .pts-storyboard .c-pulse { color: #1a8f5c !important; }

html[data-theme="light"] .page-pts .pts-caps-num {
  color: #056f91;
  border: 0;
  background: none;
  -webkit-text-fill-color: #056f91;
}

html[data-theme="light"] .page-pts .pts-caps-open li {
  border: 0;
  border-top: 1px solid rgba(5, 111, 145, 0.28);
  border-left: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0.9rem 0 0;
}

html[data-theme="light"] .page-pts .pts-caps-open li:hover {
  border-top-color: #056f91;
  background: none;
  box-shadow: none;
}

html[data-theme="light"] .page-pts .pts-caps-open li:hover .pts-caps-num {
  border: 0;
  background: none;
  color: #056f91;
  -webkit-text-fill-color: #056f91;
}

html[data-theme="light"] .page-pts .pts-copbag-trust,
html[data-theme="light"] .page-pts .pts-tak-clients .pts-card small {
  color: #0784ab !important;
}

html[data-theme="light"] .page-pts .pts-tak-clients .pts-card {
  background: #ffffff !important;
  border-color: rgba(16, 24, 40, 0.14) !important;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06) !important;
}

html[data-theme="light"] .page-pts .pts-tak-clients .pts-card h3 {
  color: #10151c !important;
}

html[data-theme="light"] .page-pts .pts-tak-clients .pts-card p {
  color: #3d4a5c !important;
}

html[data-theme="light"] .page-pts .pts-kit-split h2 {
  color: #10151c;
}
/* ——— Approved brand graphic stages (always dark) ——— */
.page-pts .pts-brand-stage {
  padding: 5.75rem 0 1.75rem;
  background: #050b14 !important;
  border-bottom: 1px solid rgba(9, 143, 181, 0.18);
}

.page-pts .pts-brand-stage--tight {
  padding: 1.75rem 0;
}

.page-pts .pts-brand-stage-inner {
  max-width: 1120px;
}

.page-pts .pts-brand-banner {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(94, 200, 232, 0.16);
  background: #0a121c;
}

.page-pts .pts-spritz.pts-brand-stage {
  padding: 2rem 0 2.5rem;
  background: #050b14 !important;
}

html[data-theme="light"] .page-pts .pts-brand-stage,
html[data-theme="light"] .page-pts .pts-spritz.pts-brand-stage {
  background: #050b14 !important;
  border-bottom-color: rgba(9, 143, 181, 0.18);
}

html[data-theme="light"] .page-pts .pts-board#webtak,
html[data-theme="light"] .page-pts .pts-board#capabilities,
html[data-theme="light"] .page-pts .pts-board#admin,
html[data-theme="light"] .page-pts .pts-board#field,
html[data-theme="light"] .page-pts .pts-board#clients {
  background: transparent;
}

/* ——— Banner restore: light mode + larger heading ——— */
.page-pts .pts-tkhero-alert {
  margin: 0 0 0.85rem;
  color: #b42318 !important;
  font-family: var(--pts-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-pts .pts-tkhero-main h1 {
  font-size: clamp(2.35rem, 5.2vw, 4rem) !important;
  line-height: 1.02 !important;
  white-space: normal !important;
}

.page-pts .pts-eud-foot {
  margin: 1.25rem 0 0;
  color: var(--pts-muted) !important;
  font-size: 0.88rem;
}

.page-pts .pts-spritz {
  padding: 2.75rem 0 3rem;
  background: #050b14 !important;
  border-top: 1px solid rgba(9, 143, 181, 0.2);
  border-bottom: 1px solid rgba(9, 143, 181, 0.2);
  color: #e8f4fb;
}

.page-pts .pts-spritz-brand {
  margin: 0 0 0.45rem;
  color: #7ee0ff !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-pts .pts-spritz-title {
  margin: 0 0 0.55rem;
  color: #ffffff !important;
  font-family: var(--pts-display);
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-pts .pts-spritz-sub,
.page-pts .pts-spritz-meta,
.page-pts .pts-spritz-tested {
  margin: 0 0 0.35rem;
  color: rgba(232, 244, 251, 0.78) !important;
  font-size: 0.98rem;
}

.page-pts .pts-spritz-pill {
  display: inline-block;
  margin: 0.85rem 0 1.5rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(94, 200, 232, 0.4);
  border-radius: 999px;
  color: #7ee0ff !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-pts .pts-spritz-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-pts .pts-spritz-card.pts-fcard {
  cursor: default;
  border: 1px solid transparent;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-pts .pts-spritz-card.pts-fcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(16, 24, 40, 0.12);
}

.page-pts .pts-spritz-card.is-geo {
  background: linear-gradient(145deg, #e8f4ff 0%, #d4ebfc 48%, #c5e2f7 100%) !important;
  border-color: rgba(33, 150, 243, 0.28) !important;
}

.page-pts .pts-spritz-card.is-tak {
  background: linear-gradient(145deg, #fff6e8 0%, #ffe4c4 48%, #ffd7a8 100%) !important;
  border-color: rgba(255, 152, 0, 0.3) !important;
}

.page-pts .pts-spritz-card.is-video {
  background: linear-gradient(145deg, #eaf8ee 0%, #d4efda 48%, #c2e6cb 100%) !important;
  border-color: rgba(76, 175, 80, 0.3) !important;
}

.page-pts .pts-spritz-card.is-ai {
  background: linear-gradient(145deg, #f6eafb 0%, #ead4f5 48%, #dfc2ef 100%) !important;
  border-color: rgba(156, 39, 176, 0.28) !important;
}

.page-pts .pts-spritz-card.is-game {
  background: linear-gradient(145deg, #e6fafc 0%, #c9f0f5 48%, #b3e8ef 100%) !important;
  border-color: rgba(0, 188, 212, 0.3) !important;
}

.page-pts .pts-spritz-card.is-phone {
  background: linear-gradient(145deg, #fde8f0 0%, #f8d0df 48%, #f3bcd2 100%) !important;
  border-color: rgba(233, 30, 99, 0.28) !important;
}

.page-pts .pts-spritz-card .pts-fcard h3,
.page-pts .pts-spritz-card h3 {
  color: #10151c !important;
}

.page-pts .pts-spritz-card .pts-fcard p,
.page-pts .pts-spritz-card p {
  color: #3d4a5c !important;
}

html[data-theme="dark"] .page-pts .pts-spritz-card.is-geo {
  background: linear-gradient(145deg, rgba(33, 150, 243, 0.28), rgba(8, 20, 36, 0.95)) !important;
  border-color: rgba(68, 200, 245, 0.35) !important;
}

html[data-theme="dark"] .page-pts .pts-spritz-card.is-tak {
  background: linear-gradient(145deg, rgba(255, 152, 0, 0.26), rgba(8, 20, 36, 0.95)) !important;
  border-color: rgba(255, 183, 77, 0.35) !important;
}

html[data-theme="dark"] .page-pts .pts-spritz-card.is-video {
  background: linear-gradient(145deg, rgba(76, 175, 80, 0.26), rgba(8, 20, 36, 0.95)) !important;
  border-color: rgba(129, 199, 132, 0.35) !important;
}

html[data-theme="dark"] .page-pts .pts-spritz-card.is-ai {
  background: linear-gradient(145deg, rgba(156, 39, 176, 0.26), rgba(8, 20, 36, 0.95)) !important;
  border-color: rgba(186, 104, 200, 0.35) !important;
}

html[data-theme="dark"] .page-pts .pts-spritz-card.is-game {
  background: linear-gradient(145deg, rgba(0, 188, 212, 0.26), rgba(8, 20, 36, 0.95)) !important;
  border-color: rgba(77, 208, 225, 0.35) !important;
}

html[data-theme="dark"] .page-pts .pts-spritz-card.is-phone {
  background: linear-gradient(145deg, rgba(233, 30, 99, 0.24), rgba(8, 20, 36, 0.95)) !important;
  border-color: rgba(240, 98, 146, 0.35) !important;
}

html[data-theme="dark"] .page-pts .pts-spritz-card h3 {
  color: #e8f4fb !important;
}

html[data-theme="dark"] .page-pts .pts-spritz-card p {
  color: rgba(232, 244, 251, 0.78) !important;
}

.page-pts .pts-spritz-tested {
  margin-top: 1.35rem;
}

html[data-theme="light"] .page-pts .pts-copbag-stage {
  background:
    radial-gradient(ellipse at 50% 18%, rgba(5, 111, 145, 0.1), transparent 52%),
    #f4f6f9 !important;
  border-bottom-color: rgba(5, 111, 145, 0.14);
}

html[data-theme="light"] .page-pts .pts-tkhero-main h1,
html[data-theme="light"] .page-pts .pts-tkhero-side strong {
  color: #10151c !important;
}

html[data-theme="light"] .page-pts .pts-tkhero-sub,
html[data-theme="light"] .page-pts .pts-tkhero-kicker {
  color: #056f91 !important;
}

html[data-theme="light"] .page-pts .pts-tkhero-modes,
html[data-theme="light"] .page-pts .pts-tkhero-side p,
html[data-theme="light"] .page-pts .pts-tkhero-kit,
html[data-theme="light"] .page-pts .pts-copbag-trust {
  color: #3d4a5c !important;
}

html[data-theme="light"] .page-pts .pts-tkhero-alert {
  color: #b42318 !important;
}

html[data-theme="light"] .page-pts .pts-tkhero-num {
  color: #056f91;
  -webkit-text-fill-color: #056f91;
  background: none;
}

html[data-theme="light"] .page-pts .pts-tkhero-actions .pts-hb-ghost {
  color: #056f91 !important;
  border-color: rgba(5, 111, 145, 0.35);
}

html[data-theme="light"] .page-pts .pts-spritz {
  background: #050b14 !important;
}

@media (max-width: 720px) {
  .page-pts .pts-spritz-grid {
    grid-template-columns: 1fr;
  }
}

/* ——— Centered connectivity banner (hub-and-spoke; detailed rules below) ——— */
.page-pts .pts-tkhero--connect {
  display: block !important;
  grid-template-columns: none !important;
  max-width: min(72rem, 100%);
  margin: 0 auto;
}

.page-pts .pts-tkhero--connect .pts-tkhero-main {
  text-align: center;
}

.page-pts .pts-tkhero-logo {
  display: block;
  width: min(11.5rem, 42vw);
  height: auto;
  margin: 0 auto 1rem;
  object-fit: contain;
}

/* Legacy ring helpers kept for other pages */
.page-pts .pts-connect {
  margin: 1.35rem auto 1.5rem;
  max-width: 22rem;
}

.page-pts .pts-connect-ring {
  position: relative;
  width: 100%;
  aspect-ratio: 1.55 / 1;
  margin: 0 auto;
}

.page-pts .pts-connect-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-pts .pts-connect-lines path {
  fill: none;
  stroke: #056f91;
  stroke-width: 1.8;
  stroke-dasharray: 5 7;
  opacity: 0.55;
  animation: pts-hub-dash 1.6s linear infinite;
}

.page-pts .pts-connect-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 5.5rem;
  height: 5.5rem;
  border: 2px solid #056f91;
  border-radius: 50%;
  background: rgba(5, 111, 145, 0.12);
  color: #056f91;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
}

.page-pts .pts-connect-node {
  position: absolute;
  padding: 0.35rem 0.65rem;
  border: 1.5px solid rgba(5, 111, 145, 0.4);
  border-radius: 999px;
  background: #ffffff;
  color: #056f91;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.page-pts .pts-connect-node.n1 { left: 0; top: 8%; }
.page-pts .pts-connect-node.n2 { right: 0; top: 8%; }
.page-pts .pts-connect-node.n3 { left: 0; bottom: 8%; }
.page-pts .pts-connect-node.n4 { right: 0; bottom: 8%; }

html[data-theme="dark"] .page-pts .pts-connect-core {
  background: rgba(5, 111, 145, 0.22);
  color: #7ee0ff;
  border-color: #5ec8e8;
}

html[data-theme="dark"] .page-pts .pts-connect-node {
  background: #0b1622;
  border-color: rgba(94, 200, 232, 0.4);
  color: #e8f4fb;
}

html[data-theme="dark"] .page-pts .pts-connect-lines path {
  stroke: #5ec8e8;
}

html[data-theme="dark"] .page-pts .pts-tkhero-logo {
  filter: drop-shadow(0 0 12px rgba(94, 200, 232, 0.25));
}

/* Portable Tile Server modules — light in light mode */
html[data-theme="light"] .page-pts .pts-spritz {
  background: #f4f6f9 !important;
  border-top-color: rgba(5, 111, 145, 0.14);
  border-bottom-color: rgba(5, 111, 145, 0.14);
  color: #10151c;
}

html[data-theme="light"] .page-pts .pts-spritz-brand {
  color: #056f91 !important;
}

html[data-theme="light"] .page-pts .pts-spritz-title {
  color: #10151c !important;
}

html[data-theme="light"] .page-pts .pts-spritz-sub,
html[data-theme="light"] .page-pts .pts-spritz-meta,
html[data-theme="light"] .page-pts .pts-spritz-tested {
  color: #3d4a5c !important;
}

html[data-theme="light"] .page-pts .pts-spritz-pill {
  border-color: rgba(5, 111, 145, 0.3);
  color: #056f91 !important;
  background: #ffffff;
}

.page-pts .pts-copbag-stage > .wrap.pts-tkhero--connect {
  display: block !important;
  grid-template-columns: none !important;
  width: min(1280px, calc(100% - 1.5rem));
  max-width: none;
  margin: 0 auto;
}

.page-pts .pts-tkhero--connect .pts-tkhero-main {
  text-align: center;
}

.page-pts .pts-tkhero-logo {
  display: block;
  width: min(11.5rem, 42vw) !important;
  height: auto !important;
  margin: 0 auto 1.15rem !important;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.28));
}

.page-pts .pts-spoke {
  --spoke-line: #44c8f5;
  --spoke-name: #7ee0ff;
  --spoke-plat: rgba(232, 244, 251, 0.72);
  --spoke-card: rgba(8, 18, 28, 0.88);
  --spoke-border: rgba(68, 200, 245, 0.35);
  position: relative;
  width: 100%;
  max-width: 74rem;
  margin: 1.75rem auto 1.85rem;
  padding: 0.65rem 0.15rem 0.35rem;
  display: grid;
  grid-template-columns: minmax(6.75rem, 0.85fr) minmax(22rem, 2.8fr) minmax(6.75rem, 0.85fr);
  grid-template-rows: auto auto auto;
  gap: 1rem 1.35rem;
  align-items: center;
  justify-items: center;
  isolation: isolate;
}

.page-pts .pts-spoke-wires {
  position: absolute;
  inset: 4% 2% 8% 2%;
  width: auto;
  height: auto;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.page-pts .pts-spoke-wires path {
  fill: none;
  stroke: var(--spoke-line);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 7 9;
  opacity: 0.78;
  filter: drop-shadow(0 0 6px rgba(68, 200, 245, 0.45));
  animation: pts-hub-dash 1.55s linear infinite;
}

.page-pts .pts-spoke-core {
  grid-column: 2;
  grid-row: 1 / span 3;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 56rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.page-pts .pts-spoke-kit {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid rgba(68, 200, 245, 0.4);
  background: #071018;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.page-pts .pts-spoke-kit--diagram {
  display: grid;
  place-items: center;
  align-content: start;
  padding: 0.55rem 1rem 0.65rem;
  min-height: 0;
  background: #050b12;
}

.page-pts .pts-spoke-diagram {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 0;
  margin-top: -0.35rem;
}

/* Dark theme diagram colors (default) */
.page-pts .pts-d-phone { fill: #071018; stroke: #44c8f5; }
.page-pts .pts-d-screen { fill: #0b1622; stroke: rgba(68, 200, 245, 0.35); }
.page-pts .pts-d-port { fill: #050b14; stroke: #44c8f5; }
.page-pts .pts-d-hub { fill: #c5ced8; }
.page-pts .pts-d-port-lit { fill: #44c8f5; }
.page-pts .pts-d-port-dim { fill: #6a7684; }
.page-pts .pts-d-stick { fill: #1a2430; stroke: #44c8f5; }
.page-pts .pts-d-router { fill: #121820; stroke: #44c8f5; }
.page-pts .pts-d-antenna { fill: #9eb6c8; }
.page-pts .pts-d-led-ok { fill: #5dff9a; }
.page-pts .pts-d-led-net { fill: #44c8f5; }
.page-pts .pts-d-wire {
  fill: none !important;
  stroke: #44c8f5;
}
.page-pts .pts-d-arrow {
  fill: #44c8f5;
  stroke: none;
}
.page-pts .pts-d-title { fill: #7ee0ff; }
.page-pts .pts-d-line { fill: #cfe8f5; }
.page-pts .pts-d-muted { fill: #9eb6c8; }

.page-pts .pts-spoke-kit img {
  display: block;
  width: 100%;
  height: auto;
  min-height: clamp(18rem, 36vw, 26rem);
  object-fit: cover;
  object-position: center 52%;
}

.page-pts .pts-spoke-gear {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.page-pts .pts-spoke-badge {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(68, 200, 245, 0.32);
  background: rgba(8, 18, 28, 0.92);
  text-align: center;
}

.page-pts .pts-spoke-badge strong {
  color: #7ee0ff;
  font-size: clamp(0.88rem, 1.6vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-pts .pts-spoke-badge span {
  color: rgba(232, 244, 251, 0.7);
  font-size: 0.72rem;
  line-height: 1.3;
}

.page-pts .pts-spoke-badge.is-hub {
  border-color: rgba(68, 200, 245, 0.45);
}

.page-pts .pts-spoke-badge.is-wifi {
  border-color: rgba(126, 224, 255, 0.35);
}

.page-pts .pts-spoke-client {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  width: min(100%, 10.5rem);
  margin: 0;
  padding: 0.4rem 0.35rem 0.55rem;
  border-radius: 12px;
  border: 1px solid var(--spoke-border);
  background: var(--spoke-card);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.page-pts .pts-spoke-client.c1 { grid-column: 1; grid-row: 1; }
.page-pts .pts-spoke-client.c2 { grid-column: 1; grid-row: 2; }
.page-pts .pts-spoke-client.c3 { grid-column: 1; grid-row: 3; }
.page-pts .pts-spoke-client.c4 { grid-column: 3; grid-row: 1; }
.page-pts .pts-spoke-client.c5 { grid-column: 3; grid-row: 2; }
.page-pts .pts-spoke-client.c6 { grid-column: 3; grid-row: 3; }

/* 4 device cards: ATAK / iTAK / WinTAK / WebTAK + hex icons */
.page-pts .pts-spoke--devices {
  grid-template-rows: auto auto;
}

.page-pts .pts-spoke--devices .pts-spoke-core {
  grid-row: 1 / span 2;
}

.page-pts .pts-spoke--devices .pts-spoke-client.c1 { grid-column: 1; grid-row: 1; }
.page-pts .pts-spoke--devices .pts-spoke-client.c2 { grid-column: 1; grid-row: 2; }
.page-pts .pts-spoke--devices .pts-spoke-client.c4 { grid-column: 3; grid-row: 1; }
.page-pts .pts-spoke--devices .pts-spoke-client.c5 { grid-column: 3; grid-row: 2; }

/* Built device frames — light/dark themed */
.page-pts .pts-dev {
  gap: 0.45rem;
}

.page-pts .pts-dev-frame {
  --dev-shell: #121820;
  --dev-edge: #2a3644;
  --dev-glow: rgba(68, 200, 245, 0.35);
  position: relative;
  flex-shrink: 0;
}

.page-pts .pts-dev-glass {
  overflow: hidden;
  background: #050b12;
}

.page-pts .pts-dev-glass img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.page-pts .pts-dev-phone {
  width: 5.9rem;
  padding: 0.38rem 0.32rem 0.42rem;
  border-radius: 1rem;
  background: linear-gradient(160deg, #1c2530, var(--dev-shell));
  box-shadow:
    0 0 0 1.5px var(--dev-glow),
    0 10px 22px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px var(--dev-edge);
}

.page-pts .pts-dev-phone .pts-dev-glass {
  aspect-ratio: 9 / 16;
  border-radius: 0.55rem;
}

.page-pts .pts-dev-ear {
  display: block;
  width: 1.6rem;
  height: 0.22rem;
  margin: 0 auto 0.28rem;
  border-radius: 999px;
  background: #05080c;
}

.page-pts .pts-dev-chin {
  display: block;
  width: 1.85rem;
  height: 0.22rem;
  margin: 0.32rem auto 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.page-pts .pts-dev-phone.is-notch {
  padding-top: 0.55rem;
}

.page-pts .pts-dev-island {
  position: absolute;
  top: 0.48rem;
  left: 50%;
  z-index: 2;
  width: 2.1rem;
  height: 0.42rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #05080c;
}

.page-pts .pts-dev-laptop {
  width: 8.4rem;
}

.page-pts .pts-dev-lid {
  padding: 0.28rem;
  border-radius: 0.55rem 0.55rem 0.2rem 0.2rem;
  background: linear-gradient(160deg, #1c2530, var(--dev-shell));
  box-shadow:
    0 0 0 1.5px var(--dev-glow),
    inset 0 0 0 1px var(--dev-edge);
}

.page-pts .pts-dev-lid .pts-dev-glass {
  aspect-ratio: 16 / 10;
  border-radius: 0.28rem;
}

.page-pts .pts-dev-base {
  display: block;
  height: 0.42rem;
  margin: 0 -0.2rem;
  border-radius: 0 0 0.45rem 0.45rem;
  background: linear-gradient(180deg, #2a3542, #151b24);
  box-shadow: 0 0 0 1px rgba(68, 200, 245, 0.2);
}

.page-pts .pts-dev-browser {
  width: 7.4rem;
  border-radius: 0.55rem;
  overflow: hidden;
  background: var(--dev-shell);
  box-shadow:
    0 0 0 1.5px var(--dev-glow),
    0 10px 22px rgba(0, 0, 0, 0.35);
}

.page-pts .pts-dev-chrome {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.28rem 0.4rem;
  background: #0c141e;
  border-bottom: 1px solid rgba(68, 200, 245, 0.2);
}

.page-pts .pts-dev-chrome span {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: #5a6a7a;
}

.page-pts .pts-dev-chrome span:nth-child(1) { background: #ff5f57; }
.page-pts .pts-dev-chrome span:nth-child(2) { background: #febc2e; }
.page-pts .pts-dev-chrome span:nth-child(3) { background: #28c840; }

.page-pts .pts-dev-chrome em {
  margin-left: 0.25rem;
  color: #7ee0ff;
  font-style: normal;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-pts .pts-dev-browser .pts-dev-glass {
  aspect-ratio: 9 / 14;
}

.page-pts .pts-dev .pts-spoke-plat {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
}

.page-pts .pts-plat-ico {
  width: 0.85rem;
  height: 0.85rem;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.4;
  flex-shrink: 0;
}

.page-pts .pts-dev.is-android .pts-plat-ico,
.page-pts .pts-dev.is-iphone .pts-plat-ico {
  fill: none;
}

.page-pts .pts-dev.is-windows .pts-plat-ico {
  stroke: none;
}

.page-pts .pts-dev.is-browser .pts-plat-ico {
  fill: none;
}

html[data-theme="light"] .page-pts .pts-dev-frame {
  --dev-shell: #ffffff;
  --dev-edge: rgba(16, 24, 40, 0.12);
  --dev-glow: rgba(30, 136, 229, 0.4);
}

html[data-theme="light"] .page-pts .pts-dev-phone,
html[data-theme="light"] .page-pts .pts-dev-lid {
  background: linear-gradient(160deg, #f4f7fb, #ffffff);
  box-shadow:
    0 0 0 1.5px rgba(30, 136, 229, 0.35),
    0 8px 18px rgba(16, 24, 40, 0.1),
    inset 0 0 0 1px rgba(16, 24, 40, 0.06);
}

html[data-theme="light"] .page-pts .pts-dev-ear,
html[data-theme="light"] .page-pts .pts-dev-island {
  background: #1c2430;
}

html[data-theme="light"] .page-pts .pts-dev-chin {
  background: rgba(16, 24, 40, 0.18);
}

html[data-theme="light"] .page-pts .pts-dev-base {
  background: linear-gradient(180deg, #e8eef5, #d5dee8);
  box-shadow: 0 0 0 1px rgba(30, 136, 229, 0.2);
}

html[data-theme="light"] .page-pts .pts-dev-browser {
  background: #ffffff;
  box-shadow:
    0 0 0 1.5px rgba(30, 136, 229, 0.35),
    0 8px 18px rgba(16, 24, 40, 0.1);
}

html[data-theme="light"] .page-pts .pts-dev-chrome {
  background: #eef3f8;
  border-bottom-color: rgba(30, 136, 229, 0.18);
}

html[data-theme="light"] .page-pts .pts-dev-chrome em {
  color: #0b5cad;
}

.page-pts .pts-spoke-dev .pts-spoke-hex {
  display: none;
}

.page-pts .pts-spoke-screen {
  margin: 0;
  width: 100%;
  max-width: 5.6rem;
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #050b12;
}

.page-pts .pts-spoke-screen--wide {
  max-width: 8.5rem;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
}

.page-pts .pts-spoke-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.page-pts .pts-spoke-name {
  margin: 0;
  color: var(--spoke-name) !important;
  font-size: clamp(0.78rem, 1.35vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.15;
}

.page-pts .pts-spoke-plat {
  margin: 0;
  color: var(--spoke-plat) !important;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

html[data-theme="light"] .page-pts .pts-spoke {
  --spoke-line: #1e88e5;
  --spoke-name: #0b5cad;
  --spoke-plat: #3d4a5c;
  --spoke-card: #ffffff;
  --spoke-border: rgba(30, 136, 229, 0.28);
}

html[data-theme="light"] .page-pts .pts-spoke-kit {
  border-color: rgba(30, 136, 229, 0.28);
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.12);
}

html[data-theme="light"] .page-pts .pts-spoke-kit--diagram {
  background: #f4f7fb;
  border-color: rgba(30, 136, 229, 0.28);
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.1);
}

html[data-theme="light"] .page-pts .pts-d-phone { fill: #ffffff; stroke: #1e88e5; }
html[data-theme="light"] .page-pts .pts-d-screen { fill: #eef5fb; stroke: rgba(30, 136, 229, 0.35); }
html[data-theme="light"] .page-pts .pts-d-port { fill: #ffffff; stroke: #1e88e5; }
html[data-theme="light"] .page-pts .pts-d-hub { fill: #d7dee6; }
html[data-theme="light"] .page-pts .pts-d-port-lit { fill: #1e88e5; }
html[data-theme="light"] .page-pts .pts-d-port-dim { fill: #90a0b0; }
html[data-theme="light"] .page-pts .pts-d-stick { fill: #1a2430; stroke: #1e88e5; }
html[data-theme="light"] .page-pts .pts-d-router { fill: #ffffff; stroke: #1e88e5; }
html[data-theme="light"] .page-pts .pts-d-antenna { fill: #5a6a7a; }
html[data-theme="light"] .page-pts .pts-d-led-ok { fill: #1a8f5c; }
html[data-theme="light"] .page-pts .pts-d-led-net { fill: #1e88e5; }
html[data-theme="light"] .page-pts .pts-d-wire {
  fill: none !important;
  stroke: #1e88e5;
}
html[data-theme="light"] .page-pts .pts-d-arrow {
  fill: #1e88e5;
  stroke: none;
}
html[data-theme="light"] .page-pts .pts-d-title { fill: #0b5cad; }
html[data-theme="light"] .page-pts .pts-d-line { fill: #1c2430; }
html[data-theme="light"] .page-pts .pts-d-muted { fill: #3d4a5c; }

html[data-theme="light"] .page-pts .pts-spoke-badge {
  background: #ffffff;
  border-color: rgba(30, 136, 229, 0.28);
  box-shadow: 0 4px 12px rgba(16, 24, 40, 0.06);
}

html[data-theme="light"] .page-pts .pts-spoke-badge strong {
  color: #0b5cad;
}

html[data-theme="light"] .page-pts .pts-spoke-badge span {
  color: #3d4a5c;
}

html[data-theme="light"] .page-pts .pts-spoke-client {
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.08);
}

html[data-theme="light"] .page-pts .pts-spoke-wires path {
  filter: none;
  opacity: 0.7;
}

html[data-theme="dark"] .page-pts .pts-tkhero-logo {
  filter: drop-shadow(0 0 12px rgba(94, 200, 232, 0.25));
}

@media (max-width: 900px) {
  .page-pts .pts-spoke {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 0.75rem;
  }

  .page-pts .pts-spoke-core {
    grid-column: 1 / -1;
    grid-row: 1;
    max-width: none;
  }

  .page-pts .pts-spoke-client.c1 { grid-column: 1; grid-row: 2; }
  .page-pts .pts-spoke-client.c2 { grid-column: 2; grid-row: 2; }
  .page-pts .pts-spoke-client.c3 { grid-column: 1; grid-row: 3; }
  .page-pts .pts-spoke-client.c4 { grid-column: 2; grid-row: 3; }
  .page-pts .pts-spoke-client.c5 { grid-column: 1; grid-row: 4; }
  .page-pts .pts-spoke-client.c6 { grid-column: 2; grid-row: 4; }

  .page-pts .pts-spoke--devices .pts-spoke-client.c1 { grid-column: 1; grid-row: 2; }
  .page-pts .pts-spoke--devices .pts-spoke-client.c2 { grid-column: 2; grid-row: 2; }
  .page-pts .pts-spoke--devices .pts-spoke-client.c4 { grid-column: 1; grid-row: 3; }
  .page-pts .pts-spoke--devices .pts-spoke-client.c5 { grid-column: 2; grid-row: 3; }

  .page-pts .pts-spoke-wires { display: none; }

  .page-pts .pts-spoke-kit img {
    min-height: 11rem;
  }
}

@media (max-width: 520px) {
  .page-pts .pts-spoke-gear {
    grid-template-columns: 1fr;
  }

  .page-pts .pts-spoke-client {
    width: 100%;
  }
}

/* Legacy connect nodes (unused on TAK banner) keep safe defaults */
.page-pts .pts-connect {
  position: relative;
  max-width: 40rem;
  margin: 1.5rem auto;
}

.page-pts .pts-connect-hub img {
  display: block;
  width: 100%;
  height: auto;
}

/* Beat homepage .pts-fcard white override in light mode */
html[data-theme="light"] .page-pts .pts-spritz-card.is-geo {
  background: linear-gradient(145deg, #e8f4ff 0%, #d4ebfc 48%, #c5e2f7 100%) !important;
  border-color: rgba(33, 150, 243, 0.28) !important;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08) !important;
}
html[data-theme="light"] .page-pts .pts-spritz-card.is-tak {
  background: linear-gradient(145deg, #fff6e8 0%, #ffe4c4 48%, #ffd7a8 100%) !important;
  border-color: rgba(255, 152, 0, 0.3) !important;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08) !important;
}
html[data-theme="light"] .page-pts .pts-spritz-card.is-video {
  background: linear-gradient(145deg, #eaf8ee 0%, #d4efda 48%, #c2e6cb 100%) !important;
  border-color: rgba(76, 175, 80, 0.3) !important;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08) !important;
}
html[data-theme="light"] .page-pts .pts-spritz-card.is-ai {
  background: linear-gradient(145deg, #f6eafb 0%, #ead4f5 48%, #dfc2ef 100%) !important;
  border-color: rgba(156, 39, 176, 0.28) !important;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08) !important;
}
html[data-theme="light"] .page-pts .pts-spritz-card.is-game {
  background: linear-gradient(145deg, #e6fafc 0%, #c9f0f5 48%, #b3e8ef 100%) !important;
  border-color: rgba(0, 188, 212, 0.3) !important;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08) !important;
}
html[data-theme="light"] .page-pts .pts-spritz-card.is-phone {
  background: linear-gradient(145deg, #fde8f0 0%, #f8d0df 48%, #f3bcd2 100%) !important;
  border-color: rgba(233, 30, 99, 0.28) !important;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08) !important;
}

/* Expand EUD — two columns (USB/HDMI left, Ethernet/PD/1TB right) */
.page-pts .pts-eud-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-top: 1.35rem;
  align-items: start;
}

.page-pts .pts-eud-split .pts-kit-points {
  margin: 0;
}

@media (max-width: 720px) {
  .page-pts .pts-eud-split {
    grid-template-columns: 1fr;
  }
}

/*
 * Marti / Collaboration / Browser COP headings
 * Must read as vivid accent colors — never charcoal #2C3948 / #1c2430 / muddy teal.
 */
html[data-theme="light"] .page-pts .pts-h-marti,
html[data-theme="light"] .page-pts .pts-icon-card.is-teal h3,
html[data-theme="light"] .page-pts .pts-icon-card.is-teal .pts-icon-card-svg,
html[data-theme="light"] .page-pts #panel-marti h3,
html[data-theme="light"] .page-pts #panel-marti > .pts-tab-split > div > h3,
html[data-theme="light"] .page-pts .pts-tab-panel#panel-marti h3 {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
}
html[data-theme="light"] .page-pts .pts-h-collab,
html[data-theme="light"] .page-pts .pts-icon-card.is-blue h3,
html[data-theme="light"] .page-pts .pts-icon-card.is-blue .pts-icon-card-svg,
html[data-theme="light"] .page-pts #panel-collab h3,
html[data-theme="light"] .page-pts #panel-collab > .pts-tab-split > div > h3 {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
}
html[data-theme="light"] .page-pts .pts-h-cop,
html[data-theme="light"] .page-pts .pts-icon-card.is-gold h3,
html[data-theme="light"] .page-pts .pts-icon-card.is-gold .pts-icon-card-svg,
html[data-theme="light"] .page-pts #panel-cop h3,
html[data-theme="light"] .page-pts #panel-cop > .pts-tab-split > div > h3 {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
}

html[data-theme="dark"] .page-pts .pts-h-marti,
html[data-theme="dark"] .page-pts .pts-icon-card.is-teal h3,
html[data-theme="dark"] .page-pts .pts-icon-card.is-teal .pts-icon-card-svg,
html[data-theme="dark"] .page-pts #panel-marti h3,
html[data-theme="dark"] .page-pts #panel-marti > .pts-tab-split > div > h3 {
  color: #7EE0FF !important;
  -webkit-text-fill-color: #7EE0FF !important;
}
html[data-theme="dark"] .page-pts .pts-h-collab,
html[data-theme="dark"] .page-pts .pts-icon-card.is-blue h3,
html[data-theme="dark"] .page-pts .pts-icon-card.is-blue .pts-icon-card-svg,
html[data-theme="dark"] .page-pts #panel-collab h3,
html[data-theme="dark"] .page-pts #panel-collab > .pts-tab-split > div > h3 {
  color: #7EE0FF !important;
  -webkit-text-fill-color: #7EE0FF !important;
}
html[data-theme="dark"] .page-pts .pts-h-cop,
html[data-theme="dark"] .page-pts .pts-icon-card.is-gold h3,
html[data-theme="dark"] .page-pts .pts-icon-card.is-gold .pts-icon-card-svg,
html[data-theme="dark"] .page-pts #panel-cop h3,
html[data-theme="dark"] .page-pts #panel-cop > .pts-tab-split > div > h3 {
  color: #7EE0FF !important;
  -webkit-text-fill-color: #7EE0FF !important;
}

/* ——— TAK pocket banner (built devices, page colors) ——— */
.page-pts .pts-pocket {
  --pk-cyan: #44c8f5;
  --pk-cyan-soft: #7ee0ff;
  --pk-amber: #ef8a2a;
  --pk-ink: #e8f4fb;
  --pk-muted: #9eb6c8;
  --pk-panel: #071018;
  --pk-line: rgba(68, 200, 245, 0.35);
  position: relative;
  padding: 6.25rem 0 3.25rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 72% 42%, rgba(68, 200, 245, 0.14), transparent 48%),
    radial-gradient(ellipse at 18% 70%, rgba(239, 138, 42, 0.08), transparent 42%),
    linear-gradient(160deg, #050b12 0%, #0a1520 55%, #071018 100%);
  border-bottom: 1px solid rgba(68, 200, 245, 0.16);
}

.page-pts .pts-pocket::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(68, 200, 245, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(68, 200, 245, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse at 70% 45%, #000 20%, transparent 72%);
  pointer-events: none;
}

.page-pts .pts-pocket-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(18rem, 1.15fr) minmax(16rem, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.page-pts .pts-pocket-title {
  margin: 0 0 0.75rem;
  font-family: "IBM Plex Sans", "Work Sans", system-ui, sans-serif;
  font-size: clamp(1.85rem, 4.2vw, 3.05rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-transform: none;
}

.page-pts .pts-pocket-title em {
  font-style: normal;
  color: var(--pk-cyan-soft);
}

.page-pts .pts-pocket-edge {
  margin: 0 0 1.25rem;
  color: var(--pk-amber) !important;
  font-size: clamp(0.82rem, 1.5vw, 0.98rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-pts .pts-pocket-list {
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.page-pts .pts-pocket-list li {
  position: relative;
  margin: 0;
  padding: 0 0 0 1.25rem;
  color: var(--pk-ink) !important;
  font-size: 1rem;
  line-height: 1.45;
}

.page-pts .pts-pocket-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pk-cyan);
  font-weight: 800;
}

.page-pts .pts-pocket-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.page-pts .pts-pocket-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.65rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.page-pts .pts-pocket-tag.is-cyan {
  color: var(--pk-cyan-soft);
  background: rgba(68, 200, 245, 0.1);
  border: 1px solid rgba(68, 200, 245, 0.28);
}

.page-pts .pts-pocket-tag.is-box {
  color: #dff4ff;
  background: rgba(7, 16, 24, 0.7);
  border: 1px solid rgba(68, 200, 245, 0.55);
}

.page-pts .pts-pocket-tag.is-amber {
  color: #ffd19a;
  background: rgba(239, 138, 42, 0.1);
  border: 1px solid rgba(239, 138, 42, 0.55);
}

.page-pts .pts-pocket-tag.is-muted {
  color: var(--pk-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-pts .pts-pocket-actions {
  justify-content: flex-start;
}

.page-pts .pts-pocket-stage {
  position: relative;
  min-height: 28rem;
  display: grid;
  place-items: center;
}

.page-pts .pts-pocket-wires {
  position: absolute;
  inset: 4% 6%;
  width: auto;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.page-pts .pts-pocket-wires path {
  fill: none;
  stroke: var(--pk-cyan);
  stroke-width: 2;
  stroke-dasharray: 5 7;
  opacity: 0.7;
  filter: drop-shadow(0 0 6px rgba(68, 200, 245, 0.45));
  animation: pts-hub-dash 1.6s linear infinite;
}

.page-pts .pts-pocket-node {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  width: 5.2rem;
}

.page-pts .pts-pocket-node.n-win { left: 2%; top: 6%; }
.page-pts .pts-pocket-node.n-itak { right: 2%; top: 6%; }
.page-pts .pts-pocket-node.n-atak { left: 2%; bottom: 10%; }
.page-pts .pts-pocket-node.n-web { right: 2%; bottom: 10%; }

.page-pts .pts-pocket-hex {
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  background: linear-gradient(145deg, rgba(68, 200, 245, 0.35), rgba(8, 24, 36, 0.95));
  box-shadow: 0 0 18px rgba(68, 200, 245, 0.35);
}

.page-pts .pts-pocket-hex svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: var(--pk-cyan-soft);
  stroke-width: 2.2;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.page-pts .pts-pocket-node strong {
  color: var(--pk-cyan-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-pts .pts-pocket-tablet {
  position: relative;
  z-index: 1;
  width: min(100%, 15.5rem);
  aspect-ratio: 3 / 4.05;
  padding: 0.55rem;
  border-radius: 1.35rem;
  background: linear-gradient(160deg, #1a222c, #0a1018 60%, #05080c);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.5),
    inset 0 0 0 2px rgba(120, 140, 160, 0.35);
}

.page-pts .pts-pocket-bezel {
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  background: #050b12;
  border: 1px solid rgba(68, 200, 245, 0.22);
}

.page-pts .pts-pocket-map {
  position: relative;
  height: 100%;
  background:
    radial-gradient(circle at 35% 40%, rgba(239, 138, 42, 0.18), transparent 30%),
    radial-gradient(circle at 70% 65%, rgba(68, 200, 245, 0.12), transparent 35%),
    linear-gradient(160deg, #0d1a24 0%, #132433 45%, #0a141c 100%);
}

.page-pts .pts-pocket-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(68, 200, 245, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(68, 200, 245, 0.07) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.55;
}

.page-pts .pts-pocket-tracks {
  position: absolute;
  inset: 8% 6%;
  width: auto;
  height: auto;
}

.page-pts .pts-pocket-tracks path {
  fill: none;
  stroke: rgba(239, 138, 42, 0.75);
  stroke-width: 1.6;
  stroke-dasharray: 3 5;
}

.page-pts .pts-pocket-map .m1,
.page-pts .pts-pocket-map .m2,
.page-pts .pts-pocket-map .m3,
.page-pts .pts-pocket-map .m4 {
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--pk-amber);
  box-shadow: 0 0 10px rgba(239, 138, 42, 0.7);
  z-index: 1;
}

.page-pts .pts-pocket-map .m1 { left: 22%; top: 18%; clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%); }
.page-pts .pts-pocket-map .m2 { left: 58%; top: 34%; border-radius: 2px; }
.page-pts .pts-pocket-map .m3 { left: 38%; top: 62%; clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%); }
.page-pts .pts-pocket-map .m4 { left: 72%; top: 72%; border-radius: 2px; }

.page-pts .pts-pocket-hud {
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.55rem;
  margin: 0;
  padding: 0.35rem 0.45rem;
  border: 1px solid rgba(68, 200, 245, 0.35);
  background: rgba(5, 11, 18, 0.78);
  color: var(--pk-cyan-soft) !important;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

.page-pts .pts-pocket-video {
  position: absolute;
  right: 8%;
  bottom: 2%;
  z-index: 3;
  width: 7.5rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(68, 200, 245, 0.45);
  background: #050b12;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.page-pts .pts-pocket-rec {
  position: absolute;
  top: 0.3rem;
  left: 0.35rem;
  z-index: 1;
  color: #ff6b6b;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.page-pts .pts-pocket-feed {
  height: 4.4rem;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55)),
    radial-gradient(ellipse at 40% 50%, #3a4a3a, #121816 70%);
}

html[data-theme="light"] .page-pts .pts-pocket {
  --pk-cyan: #1e88e5;
  --pk-cyan-soft: #0b5cad;
  --pk-amber: #c45c00;
  --pk-ink: #1c2430;
  --pk-muted: #3d4a5c;
  --pk-panel: #ffffff;
  --pk-line: rgba(30, 136, 229, 0.3);
  background:
    radial-gradient(ellipse at 72% 42%, rgba(30, 136, 229, 0.1), transparent 48%),
    linear-gradient(160deg, #eef4f9 0%, #f7fafc 55%, #e8eef5 100%);
  border-bottom-color: rgba(30, 136, 229, 0.16);
}

html[data-theme="light"] .page-pts .pts-pocket::before {
  background-image:
    linear-gradient(rgba(30, 136, 229, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 136, 229, 0.06) 1px, transparent 1px);
}

html[data-theme="light"] .page-pts .pts-pocket-title { color: #10151c; }

html[data-theme="light"] .page-pts .pts-pocket-tag.is-box {
  color: #0b5cad;
  background: #ffffff;
}

html[data-theme="light"] .page-pts .pts-pocket-tag.is-amber {
  color: #c45c00;
  background: #fff6eb;
}

html[data-theme="light"] .page-pts .pts-pocket-hex {
  background: linear-gradient(145deg, #d9ecfb, #ffffff);
  box-shadow: 0 6px 16px rgba(16, 24, 40, 0.1);
}

html[data-theme="light"] .page-pts .pts-pocket-wires path {
  filter: none;
  opacity: 0.65;
}

html[data-theme="light"] .page-pts .pts-pocket-tablet {
  box-shadow: 0 18px 36px rgba(16, 24, 40, 0.18);
}

@media (max-width: 900px) {
  .page-pts .pts-pocket-grid {
    grid-template-columns: 1fr;
  }
  .page-pts .pts-pocket-stage {
    min-height: 24rem;
    order: -1;
  }
  .page-pts .pts-pocket-actions {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .page-pts .pts-pocket-node { width: 4.4rem; }
  .page-pts .pts-pocket-hex { width: 2.8rem; height: 2.8rem; }
  .page-pts .pts-pocket-video { width: 6.2rem; right: 4%; }
}


/* ——— Pedestal devices (hex pads + rugged tablet) ——— */
.page-pts .pts-spoke--pedestal {
  grid-template-rows: auto auto;
  min-height: 28rem;
}

.page-pts .pts-spoke--pedestal .pts-spoke-core {
  grid-row: 1 / span 2;
  max-width: 22rem;
  align-items: center;
}

.page-pts .pts-spoke--pedestal .pts-spoke-wires path {
  stroke-width: 2.6;
  stroke-dasharray: none;
  opacity: 0.9;
  filter: drop-shadow(0 0 8px rgba(68, 200, 245, 0.55));
}

.page-pts .pts-spoke-node {
  fill: #7ee0ff;
  stroke: #44c8f5;
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(68, 200, 245, 0.9));
}

.page-pts .pts-ped {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  width: min(100%, 8.5rem);
  margin: 0;
  padding: 0.35rem 0.2rem;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.page-pts .pts-ped.c1 { grid-column: 1; grid-row: 1; }
.page-pts .pts-ped.c2 { grid-column: 1; grid-row: 2; }
.page-pts .pts-ped.c4 { grid-column: 3; grid-row: 1; }
.page-pts .pts-ped.c5 { grid-column: 3; grid-row: 2; }

.page-pts .pts-ped-icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 3.6rem;
  height: 3.6rem;
  margin-bottom: -0.55rem;
}

.page-pts .pts-ped-icon svg {
  width: 3.1rem;
  height: 3.1rem;
  fill: none;
  stroke: #7ee0ff;
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
  filter: drop-shadow(0 0 10px rgba(68, 200, 245, 0.55));
}

.page-pts .pts-ped.c1 .pts-ped-icon svg,
.page-pts .pts-ped.c2 .pts-ped-icon svg {
  fill: rgba(126, 224, 255, 0.12);
}

.page-pts .pts-ped-base {
  width: 5.6rem;
  height: 2.35rem;
  clip-path: polygon(12% 0, 88% 0, 100% 38%, 82% 100%, 18% 100%, 0 38%);
  background:
    linear-gradient(180deg, rgba(68, 200, 245, 0.22), rgba(8, 18, 28, 0.95) 55%, #050b12);
  box-shadow:
    0 0 0 1.5px #44c8f5,
    0 0 18px rgba(68, 200, 245, 0.35),
    0 10px 18px rgba(0, 0, 0, 0.4);
}

.page-pts .pts-ped-name {
  margin: 0.35rem 0 0;
  color: #7ee0ff !important;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(68, 200, 245, 0.45);
}

.page-pts .pts-ped-plat {
  margin: 0;
  color: rgba(232, 244, 251, 0.7) !important;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.page-pts .pts-rugged {
  position: relative;
  width: min(100%, 15.5rem);
}

.page-pts .pts-rugged-bezel {
  padding: 0.7rem 0.65rem;
  border-radius: 1.1rem;
  background:
    linear-gradient(145deg, #2a323c 0%, #121820 45%, #0a1016 100%);
  box-shadow:
    0 0 0 1px rgba(68, 200, 245, 0.35),
    0 18px 40px rgba(0, 0, 0, 0.45),
    inset 0 0 0 2px rgba(90, 110, 130, 0.35);
}

.page-pts .pts-rugged-map {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 0.55rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 40% 35%, rgba(239, 138, 42, 0.16), transparent 28%),
    linear-gradient(160deg, #0d1822, #152433 50%, #0a141c);
  border: 1px solid rgba(68, 200, 245, 0.2);
}

.page-pts .pts-rugged-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(68, 200, 245, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(68, 200, 245, 0.06) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.7;
}

.page-pts .pts-rugged-top {
  position: absolute;
  top: 0.45rem;
  left: 0.45rem;
  right: 0.45rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.page-pts .pts-rugged-top span,
.page-pts .pts-rugged-top i {
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  border: 1.5px solid rgba(200, 220, 235, 0.55);
  border-radius: 2px;
  opacity: 0.75;
}

.page-pts .pts-rugged-top span:first-child {
  border: 0;
  background:
    linear-gradient(#c8dceb, #c8dceb) 0 20%/100% 2px no-repeat,
    linear-gradient(#c8dceb, #c8dceb) 0 50%/100% 2px no-repeat,
    linear-gradient(#c8dceb, #c8dceb) 0 80%/100% 2px no-repeat;
}

.page-pts .pts-rugged-top i { margin-left: auto; border-radius: 50%; }
.page-pts .pts-rugged-top i + i { margin-left: 0; }

.page-pts .pts-rugged-tracks {
  position: absolute;
  inset: 12% 8% 16%;
  width: auto;
  height: auto;
}

.page-pts .pts-rugged-tracks path {
  fill: none;
  stroke: rgba(239, 138, 42, 0.8);
  stroke-width: 1.5;
  stroke-dasharray: 3 5;
}

.page-pts .pts-rugged-map .mk {
  position: absolute;
  z-index: 1;
  width: 0.7rem;
  height: 0.7rem;
  background: #ef8a2a;
  box-shadow: 0 0 10px rgba(239, 138, 42, 0.75);
}

.page-pts .pts-rugged-map .m1 { left: 24%; top: 22%; clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%); }
.page-pts .pts-rugged-map .m2 { left: 58%; top: 36%; border-radius: 2px; }
.page-pts .pts-rugged-map .m3 { left: 40%; top: 58%; clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%); }
.page-pts .pts-rugged-map .m4 { left: 70%; top: 70%; border-radius: 50%; }

.page-pts .pts-rugged-bot {
  position: absolute;
  left: 0.45rem;
  right: 0.45rem;
  bottom: 0.45rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0.4rem;
  border: 1px solid rgba(68, 200, 245, 0.28);
  background: rgba(5, 11, 18, 0.78);
  border-radius: 4px;
}

.page-pts .pts-rugged-bot strong {
  color: #e8f4fb;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.page-pts .pts-rugged-bot em {
  color: #9eb6c8;
  font-style: normal;
  font-size: 0.62rem;
}

.page-pts .pts-rugged-video {
  position: absolute;
  right: -0.35rem;
  bottom: 4.6rem;
  z-index: 3;
  width: 6.4rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(68, 200, 245, 0.5);
  background: #050b12;
  box-shadow: 0 0 16px rgba(68, 200, 245, 0.25), 0 10px 22px rgba(0, 0, 0, 0.4);
}

.page-pts .pts-rugged-video .rec {
  position: absolute;
  top: 0.28rem;
  left: 0.3rem;
  z-index: 1;
  color: #7ee0ff;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-shadow: 0 0 8px rgba(68, 200, 245, 0.6);
}

.page-pts .pts-rugged-video .sig {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  z-index: 1;
  width: 0.85rem;
  height: 0.55rem;
  background:
    linear-gradient(#7ee0ff, #7ee0ff) 0 100%/18% 35% no-repeat,
    linear-gradient(#7ee0ff, #7ee0ff) 28% 100%/18% 55% no-repeat,
    linear-gradient(#7ee0ff, #7ee0ff) 56% 100%/18% 75% no-repeat,
    linear-gradient(#7ee0ff, #7ee0ff) 84% 100%/18% 100% no-repeat;
}

.page-pts .pts-rugged-video .feed {
  height: 3.6rem;
  background:
    linear-gradient(180deg, rgba(5, 20, 35, 0.2), rgba(5, 11, 18, 0.65)),
    radial-gradient(ellipse at 45% 55%, #2a4a4a, #0c1418 70%);
}

html[data-theme="light"] .page-pts .pts-spoke--pedestal .pts-spoke-wires path {
  filter: none;
  stroke: #1e88e5;
}

html[data-theme="light"] .page-pts .pts-spoke-node {
  fill: #1e88e5;
  stroke: #0b5cad;
  filter: none;
}

html[data-theme="light"] .page-pts .pts-ped-icon svg {
  stroke: #0b5cad;
  filter: none;
}

html[data-theme="light"] .page-pts .pts-ped-base {
  background: linear-gradient(180deg, #d9ecfb, #ffffff 55%, #eef4f9);
  box-shadow:
    0 0 0 1.5px #1e88e5,
    0 8px 16px rgba(16, 24, 40, 0.12);
}

html[data-theme="light"] .page-pts .pts-ped-name {
  color: #0b5cad !important;
  text-shadow: none;
}

html[data-theme="light"] .page-pts .pts-ped-plat {
  color: #3d4a5c !important;
}

html[data-theme="light"] .page-pts .pts-rugged-bezel {
  background: linear-gradient(145deg, #e8eef5, #ffffff 50%, #dfe7f0);
  box-shadow:
    0 0 0 1px rgba(30, 136, 229, 0.35),
    0 14px 28px rgba(16, 24, 40, 0.12);
}

html[data-theme="light"] .page-pts .pts-rugged-bot {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(30, 136, 229, 0.28);
}

html[data-theme="light"] .page-pts .pts-rugged-bot strong { color: #10151c; }
html[data-theme="light"] .page-pts .pts-rugged-bot em { color: #3d4a5c; }

html[data-theme="light"] .page-pts .pts-rugged-video {
  border-color: rgba(30, 136, 229, 0.4);
  background: #ffffff;
}

html[data-theme="light"] .page-pts .pts-rugged-video .rec { color: #0b5cad; text-shadow: none; }

@media (max-width: 900px) {
  .page-pts .pts-spoke--pedestal .pts-ped.c1 { grid-column: 1; grid-row: 2; }
  .page-pts .pts-spoke--pedestal .pts-ped.c2 { grid-column: 2; grid-row: 2; }
  .page-pts .pts-spoke--pedestal .pts-ped.c4 { grid-column: 1; grid-row: 3; }
  .page-pts .pts-spoke--pedestal .pts-ped.c5 { grid-column: 2; grid-row: 3; }
  .page-pts .pts-spoke--pedestal .pts-spoke-wires { display: none; }
  .page-pts .pts-rugged-video { right: 0.25rem; bottom: 4.2rem; }
}

.page-pts .pts-spoke--pedestal .pts-spoke-core {
  max-width: 26rem;
}

.page-pts .pts-rugged--xl {
  width: min(100%, 19rem);
}

.page-pts .pts-rugged--xl .pts-rugged-bezel {
  padding: 0.85rem 0.8rem;
  border-radius: 1.25rem;
}

.page-pts .pts-rugged--xl .pts-rugged-video {
  width: 7.2rem;
  bottom: 5.2rem;
  right: -0.55rem;
}

.page-pts .pts-rugged--xl .pts-rugged-video .feed {
  height: 4.1rem;
}

.page-pts .pts-spoke-gear--ped {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 0.5rem;
  margin-top: 0.85rem;
  width: 100%;
  justify-items: center;
}

.page-pts .pts-spoke-gear--ped .pts-ped {
  width: 100%;
  max-width: 8.2rem;
}

.page-pts .pts-spoke-gear--ped .pts-ped-base {
  width: 4.8rem;
  height: 2rem;
}

.page-pts .pts-spoke-gear--ped .pts-ped-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: -0.4rem;
}

.page-pts .pts-spoke-gear--ped .pts-ped-icon svg {
  width: 2.6rem;
  height: 2.6rem;
}

.page-pts .pts-spoke-gear--ped .pts-ped-name {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.page-pts .pts-spoke-gear--ped .pts-ped-plat {
  font-size: 0.62rem;
  line-height: 1.25;
  max-width: 7.5rem;
}

@media (max-width: 520px) {
  .page-pts .pts-spoke-gear--ped {
    grid-template-columns: 1fr;
  }
  .page-pts .pts-rugged--xl {
    width: min(100%, 16rem);
  }
}

/* Clear animated connectors + bigger icons + LED devices */
.page-pts .pts-spoke--pedestal .pts-spoke-wires {
  inset: 2% 1% 4% 1%;
  z-index: 1;
}

.page-pts .pts-spoke--pedestal .pts-wire-glow path {
  fill: none;
  stroke: rgba(68, 200, 245, 0.35);
  stroke-width: 6;
  stroke-linecap: round;
}

.page-pts .pts-spoke--pedestal .pts-wire-core path {
  fill: none;
  stroke: #7ee0ff;
  stroke-width: 2.2;
  stroke-linecap: round;
  opacity: 1;
  filter: none;
  animation: none;
}

.page-pts .pts-spoke--pedestal .pts-wire-core path.is-anim {
  stroke-dasharray: 10 12;
  animation: pts-hub-dash 1.1s linear infinite;
}

.page-pts .pts-spoke--pedestal .pts-wire-core path.is-hub {
  stroke: #5dff9a;
}

.page-pts .pts-spoke--pedestal .pts-wire-core path.is-wifi {
  stroke: #ffb74d;
}

.page-pts .pts-spoke-node {
  fill: #7ee0ff;
  stroke: #0b1622;
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(68, 200, 245, 0.95));
}

.page-pts .pts-spoke-node.is-hub-dot {
  fill: #44c8f5;
  r: 8;
}

.page-pts .pts-spoke-node.is-green {
  fill: #5dff9a;
  filter: drop-shadow(0 0 8px rgba(93, 255, 154, 0.9));
}

.page-pts .pts-spoke-node.is-amber {
  fill: #ffb74d;
  filter: drop-shadow(0 0 8px rgba(255, 183, 77, 0.9));
}

.page-pts .pts-ped-icon {
  width: 4.6rem !important;
  height: 4.6rem !important;
  margin-bottom: -0.35rem !important;
}

.page-pts .pts-ped-icon svg {
  width: 4rem !important;
  height: 4rem !important;
  stroke-width: 2.4 !important;
}

.page-pts .pts-ped-base {
  width: 6.4rem !important;
  height: 2.55rem !important;
}

.page-pts .pts-ped-name {
  font-size: 1rem !important;
}

.page-pts .pts-spoke-gear--ped .pts-ped-icon,
.page-pts .pts-spoke-gear--ped .pts-ped-icon--device {
  width: 5rem !important;
  height: 4.4rem !important;
  margin-bottom: -0.25rem !important;
}

.page-pts .pts-spoke-gear--ped .pts-ped-icon svg,
.page-pts .pts-spoke-gear--ped .pts-ped-icon--device svg {
  width: 4.6rem !important;
  height: 4.2rem !important;
}

.page-pts .pts-spoke-gear--ped .pts-ped-base {
  width: 5.6rem !important;
  height: 2.2rem !important;
}

.page-pts .pts-spoke-gear--ped .pts-ped-name {
  font-size: 0.82rem !important;
}

.page-pts .pts-ped-icon--device svg {
  fill: none;
  stroke: #7ee0ff;
  stroke-width: 2;
}

.page-pts .pts-ped-icon--device .led-port { fill: #44c8f5; stroke: none; }
.page-pts .pts-ped-icon--device .led-dim { fill: #5a6a7a; stroke: none; }
.page-pts .pts-ped-icon--device .led-eth { fill: #1a2430; stroke: #44c8f5; }
.page-pts .pts-ped-icon--device .led-green {
  fill: #5dff9a;
  stroke: none;
  filter: drop-shadow(0 0 4px rgba(93, 255, 154, 0.9));
}
.page-pts .pts-ped-icon--device .led-red {
  fill: #ff5f57;
  stroke: none;
  filter: drop-shadow(0 0 4px rgba(255, 95, 87, 0.85));
}
.page-pts .pts-ped-icon--device .led-cyan {
  fill: #44c8f5;
  stroke: none;
  filter: drop-shadow(0 0 4px rgba(68, 200, 245, 0.85));
}
.page-pts .pts-ped-icon--device .led-amber {
  fill: #ffb74d;
  stroke: none;
  filter: drop-shadow(0 0 4px rgba(255, 183, 77, 0.85));
}
.page-pts .pts-ped-icon--device .led-label {
  fill: #9eb6c8;
  stroke: none;
  font-size: 8px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 700;
}

html[data-theme="light"] .page-pts .pts-spoke--pedestal .pts-wire-glow path {
  stroke: rgba(30, 136, 229, 0.22);
}
html[data-theme="light"] .page-pts .pts-spoke--pedestal .pts-wire-core path {
  stroke: #1e88e5;
}
html[data-theme="light"] .page-pts .pts-spoke--pedestal .pts-wire-core path.is-hub {
  stroke: #1a8f5c;
}
html[data-theme="light"] .page-pts .pts-spoke--pedestal .pts-wire-core path.is-wifi {
  stroke: #c45c00;
}
html[data-theme="light"] .page-pts .pts-ped-icon--device svg { stroke: #0b5cad; }
html[data-theme="light"] .page-pts .pts-ped-icon--device .led-label { fill: #3d4a5c; }

/* Force visible connectors + LED pulse */
.page-pts .pts-spoke--pedestal .pts-spoke-wires {
  display: block !important;
  opacity: 1 !important;
  z-index: 1 !important;
  inset: 1% 0 2% 0 !important;
}

.page-pts .pts-spoke--pedestal .pts-spoke-wires path {
  fill: none !important;
}

.page-pts .pts-spoke--pedestal .pts-wire-glow path {
  stroke-width: 7 !important;
  stroke-dasharray: none !important;
  opacity: 0.55 !important;
  animation: none !important;
  filter: none !important;
}

.page-pts .pts-spoke--pedestal .pts-wire-core path {
  stroke-width: 2.4 !important;
  opacity: 1 !important;
  filter: drop-shadow(0 0 5px rgba(126, 224, 255, 0.75)) !important;
}

.page-pts .pts-spoke--pedestal .pts-wire-core path.is-anim {
  stroke-dasharray: 8 10 !important;
  animation: pts-hub-dash 0.95s linear infinite !important;
}

.page-pts .pts-ped-icon--device .led-green,
.page-pts .pts-ped-icon--device .led-cyan {
  animation: pts-led-pulse 1.4s ease-in-out infinite;
}
.page-pts .pts-ped-icon--device .led-red {
  animation: pts-led-pulse 0.9s ease-in-out infinite;
}
.page-pts .pts-ped-icon--device .led-amber {
  animation: pts-led-pulse 1.8s ease-in-out infinite;
}

@keyframes pts-led-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.page-pts .pts-ped-leds {
  display: flex;
  gap: 0.35rem;
  justify-content: center;
  margin-top: 0.2rem;
}
.page-pts .pts-ped-leds i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 6px currentColor;
}
.page-pts .pts-ped-leds i.g { background: #5dff9a; color: #5dff9a; }
.page-pts .pts-ped-leds i.r { background: #ff5f57; color: #ff5f57; }
.page-pts .pts-ped-leds i.c { background: #44c8f5; color: #44c8f5; }
.page-pts .pts-ped-leds i.a { background: #ffb74d; color: #ffb74d; }

.page-pts .pts-tkhero-modes .led-key { margin: 0 0.1rem; font-size: 0.85em; }
.page-pts .pts-tkhero-modes .led-key.is-g { color: #5dff9a; }
.page-pts .pts-tkhero-modes .led-key.is-r { color: #ff5f57; }
.page-pts .pts-tkhero-modes .led-key.is-c { color: #44c8f5; }
.page-pts .pts-tkhero-modes .led-key.is-a { color: #ffb74d; }

@media (max-width: 900px) {
  .page-pts .pts-spoke--pedestal .pts-spoke-wires { display: none !important; }
}
.page-pts .pts-tkhero-modes .led-key {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  margin: 0 0.15rem 0 0.35rem;
  vertical-align: 0.05em;
  box-shadow: 0 0 7px currentColor;
}
.page-pts .pts-tkhero-modes .led-key.is-g { background: #5dff9a; color: #5dff9a; }
.page-pts .pts-tkhero-modes .led-key.is-r { background: #ff5f57; color: #ff5f57; }
.page-pts .pts-tkhero-modes .led-key.is-c { background: #44c8f5; color: #44c8f5; }
.page-pts .pts-tkhero-modes .led-key.is-a { background: #ffb74d; color: #ffb74d; }

/* Compact spoke + bigger icons + finer wires */
.page-pts .pts-spoke--pedestal {
  min-height: 22rem !important;
  gap: 0.35rem 0.6rem !important;
}

.page-pts .pts-spoke--pedestal .pts-spoke-core {
  gap: 0.35rem !important;
}

.page-pts .pts-spoke-gear--ped {
  margin-top: 0.35rem !important;
  gap: 0.2rem 0.65rem !important;
}

.page-pts .pts-rugged--xl {
  width: min(100%, 16.5rem) !important;
}

.page-pts .pts-rugged--xl .pts-rugged-video {
  bottom: 4.4rem !important;
  width: 6.4rem !important;
}

.page-pts .pts-spoke--pedestal .pts-wire-glow path {
  stroke-width: 3.5 !important;
  opacity: 0.35 !important;
}

.page-pts .pts-spoke--pedestal .pts-wire-core path {
  stroke-width: 1.85 !important;
}

.page-pts .pts-spoke--pedestal .pts-wire-core path.is-anim {
  stroke-dasharray: 5 8 !important;
  animation: pts-hub-dash 0.85s linear infinite !important;
}

html[data-theme="light"] .page-pts .pts-spoke--pedestal .pts-wire-glow path {
  stroke: rgba(11, 92, 173, 0.28) !important;
  stroke-width: 4 !important;
}
html[data-theme="light"] .page-pts .pts-spoke--pedestal .pts-wire-core path {
  stroke: #0b5cad !important;
  filter: drop-shadow(0 0 3px rgba(11, 92, 173, 0.45)) !important;
}

.page-pts .pts-ped-icon {
  width: 5.6rem !important;
  height: 5.6rem !important;
  margin-bottom: -0.2rem !important;
}
.page-pts .pts-ped-icon svg {
  width: 5rem !important;
  height: 5rem !important;
  stroke-width: 2.6 !important;
}
.page-pts .pts-ped-base {
  width: 7.2rem !important;
  height: 2.7rem !important;
}
.page-pts .pts-ped-name {
  font-size: 1.05rem !important;
}
.page-pts .pts-ped-plat {
  font-size: 0.78rem !important;
}

.page-pts .pts-spoke-gear--ped .pts-ped-icon,
.page-pts .pts-spoke-gear--ped .pts-ped-icon--device {
  width: 5.8rem !important;
  height: 5rem !important;
}
.page-pts .pts-spoke-gear--ped .pts-ped-icon svg,
.page-pts .pts-spoke-gear--ped .pts-ped-icon--device svg {
  width: 5.4rem !important;
  height: 4.8rem !important;
}
.page-pts .pts-spoke-gear--ped .pts-ped-name {
  font-size: 0.92rem !important;
  letter-spacing: 0.04em !important;
}
.page-pts .pts-spoke-gear--ped .pts-ped-plat {
  font-size: 0.7rem !important;
}
.page-pts .pts-spoke-gear--ped .pts-ped-base {
  width: 6.2rem !important;
  height: 2.35rem !important;
}

.page-pts .pts-ped-icon--device .led-green,
.page-pts .pts-ped-icon--device .led-red,
.page-pts .pts-ped-icon--device .led-cyan,
.page-pts .pts-ped-icon--device .led-amber {
  r: 4;
}

/* TEXT COLORS ONLY — no layout changes */
html[data-theme="dark"] .page-pts .pts-tkhero-rotate,
html[data-theme="dark"] .page-pts .pts-tkhero-rotate span.is-on,
html[data-theme="dark"] .page-pts .pts-tkhero-lead,
html[data-theme="dark"] .page-pts .pts-tkhero-lead strong,
html[data-theme="dark"] .page-pts .pts-tkhero-lead span {
  color: #7EE0FF !important;
  -webkit-text-fill-color: #7EE0FF !important;
}
html[data-theme="light"] .page-pts .pts-tkhero-rotate,
html[data-theme="light"] .page-pts .pts-tkhero-rotate span.is-on,
html[data-theme="light"] .page-pts .pts-tkhero-lead,
html[data-theme="light"] .page-pts .pts-tkhero-lead strong,
html[data-theme="light"] .page-pts .pts-tkhero-lead span {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
}
.page-pts .pts-tkhero-rotate {
  font-size: 36px !important;
  font-weight: 700 !important;
}
.page-pts .pts-tkhero-lead,
.page-pts .pts-tkhero-lead strong,
.page-pts .pts-tkhero-lead span {
  font-size: 26px !important;
  font-weight: 500 !important;
}
html[data-theme="light"] .page-pts .pts-h-marti,
html[data-theme="light"] .page-pts .pts-h-collab,
html[data-theme="light"] .page-pts .pts-h-cop,
html[data-theme="light"] .page-pts .pts-icon-card h3,
html[data-theme="light"] .page-pts #panel-marti h3,
html[data-theme="light"] .page-pts #panel-collab h3,
html[data-theme="light"] .page-pts #panel-cop h3 {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
}
/* Browser COP card green + green icon (color only) */
html[data-theme="light"] .page-pts .pts-icon-card.is-gold {
  background: linear-gradient(145deg, #eaf8ee 0%, #d4efda 55%, #c2e6cb 100%) !important;
}
html[data-theme="light"] .page-pts .pts-icon-card.is-gold .pts-icon-card-svg,
html[data-theme="light"] .page-pts .pts-icon-card.is-gold .pts-icon-card-svg svg,
html[data-theme="light"] .page-pts .pts-icon-card.is-gold .pts-icon-card-svg svg * {
  color: #2e7d32 !important;
  stroke: #2e7d32 !important;
}
html[data-theme="dark"] .page-pts .pts-icon-card.is-gold .pts-icon-card-svg,
html[data-theme="dark"] .page-pts .pts-icon-card.is-gold .pts-icon-card-svg svg,
html[data-theme="dark"] .page-pts .pts-icon-card.is-gold .pts-icon-card-svg svg * {
  color: #81c784 !important;
  stroke: #81c784 !important;
}

/* === BANNER TEXT COLOR ONLY (no layout) === */
html[data-theme="light"] .page-pts .pts-tkhero-rotate,
html[data-theme="light"] .page-pts .pts-tkhero-rotate span,
html[data-theme="light"] .page-pts .pts-tkhero-rotate span.is-on,
html[data-theme="light"] .page-pts .pts-tkhero-lead,
html[data-theme="light"] .page-pts .pts-tkhero-lead strong,
html[data-theme="light"] .page-pts .pts-tkhero-lead span {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
  background: none !important;
}

html[data-theme="dark"] .page-pts .pts-tkhero-rotate,
html[data-theme="dark"] .page-pts .pts-tkhero-rotate span,
html[data-theme="dark"] .page-pts .pts-tkhero-rotate span.is-on,
html[data-theme="dark"] .page-pts .pts-tkhero-lead,
html[data-theme="dark"] .page-pts .pts-tkhero-lead strong,
html[data-theme="dark"] .page-pts .pts-tkhero-lead span {
  color: #7EE0FF !important;
  -webkit-text-fill-color: #7EE0FF !important;
  background: none !important;
}

/* ===== RESTORED: chain diagram (USB hub + travel router) ===== */


/* ===== Reference chain diagram (Phone → USB hub → Travel router) ===== */
.page-pts .pts-spoke--chain {
  position: relative;
  display: grid;
  grid-template-columns: minmax(6.5rem, 9rem) minmax(0, 1fr) minmax(6.5rem, 9rem);
  grid-template-rows: auto auto;
  gap: 0.6rem 0.75rem;
  align-items: center;
  justify-items: center;
  min-height: 28rem;
  margin: 1.1rem auto 0;
  max-width: 58rem;
  isolation: isolate;
}

.page-pts .pts-spoke--chain .pts-spoke-wires {
  position: absolute;
  inset: 4% 2% 18% 2%;
  width: auto;
  height: auto;
  z-index: 0;
  pointer-events: none;
  display: block !important;
}

.page-pts .pts-spoke--chain .pts-wire-glow path,
.page-pts .pts-spoke--chain .pts-wire-core path {
  fill: none !important;
  stroke-linecap: round;
}

.page-pts .pts-spoke--chain .pts-wire-glow path {
  stroke: rgba(68, 200, 245, 0.35);
  stroke-width: 5;
  stroke-dasharray: none !important;
  animation: none !important;
}

.page-pts .pts-spoke--chain .pts-wire-core path {
  stroke: #7ee0ff;
  stroke-width: 2;
  opacity: 1;
}

.page-pts .pts-spoke--chain .pts-wire-core path.is-anim {
  stroke-dasharray: 7 9;
  animation: pts-hub-dash 1s linear infinite;
}

.page-pts .pts-spoke--chain .pts-wire-core path.is-hub { stroke: #7ee0ff; }
.page-pts .pts-spoke--chain .pts-wire-core path.is-wifi { stroke: #7ee0ff; }

.page-pts .pts-spoke--chain .pts-spoke-node {
  fill: #7ee0ff;
  stroke: #061018;
  stroke-width: 2;
  filter: drop-shadow(0 0 7px rgba(68, 200, 245, 0.95));
}

.page-pts .pts-spoke--chain .pts-spoke-node.is-green {
  fill: #5dff9a;
  filter: drop-shadow(0 0 7px rgba(93, 255, 154, 0.95));
}

.page-pts .pts-chain-side {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
}

.page-pts .pts-chain-side.is-left { grid-column: 1; grid-row: 1; }
.page-pts .pts-chain-side.is-right { grid-column: 3; grid-row: 1; }

.page-pts .pts-hex {
  margin: 0;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.page-pts .pts-hex-pad {
  width: 5.4rem;
  height: 5.4rem;
  margin: 0 auto 0.45rem;
  display: grid;
  place-items: center;
  clip-path: polygon(25% 6%, 75% 6%, 96% 50%, 75% 94%, 25% 94%, 4% 50%);
  background:
    linear-gradient(160deg, rgba(68, 200, 245, 0.28), rgba(8, 18, 28, 0.92) 55%, #050b12);
  box-shadow:
    0 0 0 2px #44c8f5,
    0 0 22px rgba(68, 200, 245, 0.45);
}

.page-pts .pts-hex-pad svg {
  width: 3.3rem;
  height: 3.3rem;
  fill: none;
  stroke: #7ee0ff;
  stroke-width: 2.2;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.page-pts .pts-hex-pad .fill {
  fill: rgba(126, 224, 255, 0.14);
  stroke: none;
}

.page-pts .pts-hex-pad .logo {
  fill: rgba(126, 224, 255, 0.55);
  stroke: #7ee0ff;
}

.page-pts .pts-hex-name {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8f6ff;
}

.page-pts .pts-chain-core {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  max-width: 28rem;
}

.page-pts .pts-chain-phone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 15.5rem);
}

.page-pts .pts-chain-rec {
  position: absolute;
  top: -0.35rem;
  right: -28%;
  z-index: 4;
  width: 8.4rem;
  border: 1.5px solid rgba(126, 224, 255, 0.65);
  border-radius: 4px;
  overflow: hidden;
  background: #05080c;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45), 0 0 16px rgba(68, 200, 245, 0.25);
}

.page-pts .pts-chain-rec img {
  display: block;
  width: 100%;
  height: 4.6rem;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.75);
}

.page-pts .pts-chain-rec .rec {
  position: absolute;
  top: 0.35rem;
  left: 0.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}

.page-pts .pts-chain-rec .rec i {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #ff3b30;
  box-shadow: 0 0 8px #ff3b30;
  animation: pts-led-pulse 1s ease-in-out infinite;
}

.page-pts .pts-chain-rec .cross {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(#fff, #fff) center/1px 28% no-repeat,
    linear-gradient(#fff, #fff) center/28% 1px no-repeat;
  opacity: 0.55;
  pointer-events: none;
}

.page-pts .pts-chain-phone .pts-rugged--xl {
  width: min(100%, 14.5rem);
}

.page-pts .pts-chain-phone-label {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #9eb6c8;
}

.page-pts .pts-chain-hw {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  width: 100%;
}

.page-pts .pts-hw-usb,
.page-pts .pts-hw-router {
  border-radius: 8px;
  padding: 0.55rem 0.7rem 0.65rem;
  min-width: 10.5rem;
}

.page-pts .pts-hw-usb {
  background: linear-gradient(180deg, #d7dde5, #9aa4b0 55%, #7d8794);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.page-pts .pts-hw-router {
  position: relative;
  background: linear-gradient(180deg, #2a3038, #12161c 60%, #0a0d11);
  border: 1px solid rgba(68, 200, 245, 0.35);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  padding-top: 1.15rem;
}

.page-pts .pts-hw-title {
  margin: 0 0 0.4rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #10151c;
  line-height: 1.25;
  max-width: 11rem;
}

.page-pts .pts-hw-router .pts-hw-title {
  color: #d7e8f5;
  text-align: center;
  margin-bottom: 0.55rem;
}

.page-pts .pts-hw-ports {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.28rem;
}

.page-pts .pts-hw-ports span {
  display: grid;
  place-items: center;
  height: 1.55rem;
  border-radius: 3px;
  background: #5b9fd4;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 0.55rem;
  font-weight: 800;
  color: transparent;
}

.page-pts .pts-hw-ports span:nth-child(3) { background: #4a5562; }
.page-pts .pts-hw-ports span.is-drive {
  background: #1a1f26;
  color: #fff;
}

.page-pts .pts-hw-ants {
  position: absolute;
  top: -0.55rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  padding: 0 1.4rem;
  pointer-events: none;
}

.page-pts .pts-hw-ants i {
  width: 0.28rem;
  height: 0.85rem;
  border-radius: 2px;
  background: #8a93a0;
  box-shadow: 0 0 0 1px #2a3038;
}

.page-pts .pts-hw-leds {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.page-pts .pts-hw-leds i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #5dff9a;
  box-shadow: 0 0 8px rgba(93, 255, 154, 0.95);
  animation: pts-led-pulse 1.35s ease-in-out infinite;
}

.page-pts .pts-hw-leds i:nth-child(2) { animation-delay: 0.2s; }
.page-pts .pts-hw-leds i:nth-child(3) { animation-delay: 0.4s; }

.page-pts .pts-hw-arrow {
  width: 1.6rem;
  height: 0.18rem;
  background: #7ee0ff;
  position: relative;
  flex: 0 0 auto;
  box-shadow: 0 0 8px rgba(68, 200, 245, 0.8);
}

.page-pts .pts-hw-arrow::after {
  content: "";
  position: absolute;
  right: -0.12rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0.35rem solid transparent;
  border-left-color: #7ee0ff;
}

.page-pts .pts-chain-legend {
  grid-column: 1 / -1;
  grid-row: 2;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  width: min(100%, 34rem);
  margin-top: 0.35rem;
}

.page-pts .pts-chain-card {
  border: 1.5px solid rgba(68, 200, 245, 0.45);
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
  background: rgba(6, 14, 22, 0.72);
  text-align: left;
}

.page-pts .pts-chain-card strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e8f6ff;
  margin-bottom: 0.2rem;
}

.page-pts .pts-chain-card span {
  font-size: 0.72rem;
  color: #9eb6c8;
}

html[data-theme="light"] .page-pts .pts-spoke--chain .pts-wire-glow path {
  stroke: rgba(30, 136, 229, 0.25);
}
html[data-theme="light"] .page-pts .pts-spoke--chain .pts-wire-core path {
  stroke: #1e88e5;
}
html[data-theme="light"] .page-pts .pts-hex-pad {
  background: linear-gradient(160deg, #e8f3ff, #ffffff 55%, #d7e8f8);
  box-shadow: 0 0 0 2px #1e88e5, 0 8px 18px rgba(30, 136, 229, 0.18);
}
html[data-theme="light"] .page-pts .pts-hex-pad svg { stroke: #0b5cad; }
html[data-theme="light"] .page-pts .pts-hex-pad .fill { fill: rgba(30, 136, 229, 0.12); }
html[data-theme="light"] .page-pts .pts-hex-pad .logo { fill: rgba(11, 92, 173, 0.45); stroke: #0b5cad; }
html[data-theme="light"] .page-pts .pts-hex-name { color: #0b5cad; }
html[data-theme="light"] .page-pts .pts-chain-phone-label { color: #3d4a5c; }
html[data-theme="light"] .page-pts .pts-chain-card {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(30, 136, 229, 0.4);
}
html[data-theme="light"] .page-pts .pts-chain-card strong { color: #10151c; }
html[data-theme="light"] .page-pts .pts-chain-card span { color: #3d4a5c; }

@media (max-width: 900px) {
  .page-pts .pts-spoke--chain {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .page-pts .pts-spoke--chain .pts-spoke-wires { display: none !important; }
  .page-pts .pts-chain-core { grid-column: 1 / -1; grid-row: 1; }
  .page-pts .pts-chain-side.is-left { grid-column: 1; grid-row: 2; }
  .page-pts .pts-chain-side.is-right { grid-column: 2; grid-row: 2; }
  .page-pts .pts-chain-legend { grid-column: 1 / -1; grid-row: 3; }
  .page-pts .pts-chain-rec { right: 0; top: -0.8rem; width: 7.2rem; }
}

@media (max-width: 520px) {
  .page-pts .pts-chain-legend { grid-template-columns: 1fr; }
  .page-pts .pts-chain-side { gap: 1rem; }
  .page-pts .pts-hex-pad { width: 4.6rem; height: 4.6rem; }
  .page-pts .pts-hex-pad svg { width: 2.8rem; height: 2.8rem; }
}



/* Chain layout: phone | USB hub → travel router (match reference) */
.page-pts .pts-spoke--chain {
  grid-template-columns: minmax(7rem, 9.5rem) minmax(0, 1.4fr) minmax(7rem, 9.5rem) !important;
  max-width: 64rem !important;
  min-height: 30rem !important;
}

.page-pts .pts-hex-pad {
  width: 6.2rem !important;
  height: 6.2rem !important;
}

.page-pts .pts-hex-pad svg {
  width: 3.8rem !important;
  height: 3.8rem !important;
}

.page-pts .pts-hex-name {
  font-size: 1rem !important;
}

.page-pts .pts-chain-core {
  display: grid !important;
  grid-template-columns: auto minmax(12rem, 1fr);
  align-items: center;
  gap: 0.75rem 1rem !important;
  max-width: 36rem !important;
}

.page-pts .pts-chain-phone {
  grid-column: 1;
  width: min(100%, 13.5rem) !important;
}

.page-pts .pts-chain-phone .pts-rugged--xl {
  width: min(100%, 12.8rem) !important;
}

.page-pts .pts-chain-rec {
  right: -42% !important;
  top: 0.4rem !important;
  width: 7.6rem !important;
  z-index: 5;
}

.page-pts .pts-chain-hw {
  grid-column: 2;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch;
  gap: 0.55rem !important;
  flex-wrap: nowrap !important;
}

.page-pts .pts-hw-arrow {
  width: 0.18rem !important;
  height: 1.35rem !important;
  align-self: center;
  background: #7ee0ff;
}

.page-pts .pts-hw-arrow::after {
  right: 50% !important;
  top: auto !important;
  bottom: -0.2rem;
  transform: translateX(50%);
  border: 0.35rem solid transparent;
  border-top-color: #7ee0ff;
  border-left-color: transparent !important;
}

.page-pts .pts-hw-usb,
.page-pts .pts-hw-router {
  min-width: 0 !important;
  width: 100%;
}

.page-pts .pts-chain-legend {
  width: min(100%, 40rem) !important;
}

@media (max-width: 900px) {
  .page-pts .pts-chain-core {
    grid-template-columns: 1fr !important;
    max-width: 20rem !important;
  }
  .page-pts .pts-chain-hw {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center;
  }
  .page-pts .pts-hw-arrow {
    width: 1.6rem !important;
    height: 0.18rem !important;
  }
  .page-pts .pts-hw-arrow::after {
    right: -0.12rem !important;
    top: 50% !important;
    bottom: auto;
    transform: translateY(-50%);
    border-left-color: #7ee0ff !important;
    border-top-color: transparent;
  }
}


.page-pts .pts-chain-hw {
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 0.45rem !important;
}
.page-pts .pts-hw-usb,
.page-pts .pts-hw-router {
  flex: 1 1 0;
  min-width: 9.5rem !important;
}
.page-pts .pts-hw-arrow {
  width: 1.5rem !important;
  height: 0.18rem !important;
  flex: 0 0 auto !important;
}
.page-pts .pts-hw-arrow::after {
  right: -0.1rem !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
  border: 0.32rem solid transparent !important;
  border-left-color: #7ee0ff !important;
  border-top-color: transparent !important;
}


.page-pts .pts-chain-core {
  grid-template-columns: minmax(13.5rem, 15rem) minmax(14rem, 1fr) !important;
  max-width: 42rem !important;
  align-items: center !important;
}
.page-pts .pts-chain-phone {
  width: 100% !important;
  max-width: 15rem !important;
}
.page-pts .pts-chain-phone .pts-rugged,
.page-pts .pts-chain-phone .pts-rugged--xl {
  width: 100% !important;
  max-width: 14.5rem !important;
}
.page-pts .pts-chain-rec {
  position: absolute !important;
  top: -0.2rem !important;
  left: 62% !important;
  right: auto !important;
  width: 7.8rem !important;
}
.page-pts .pts-spoke--chain {
  max-width: 68rem !important;
}



/* ===== Hardware polish: grey USB hub + real travel router + thin gate wires ===== */
.page-pts .pts-spoke--chain .pts-wire-glow path {
  stroke-width: 3 !important;
  opacity: 0.4 !important;
}
.page-pts .pts-spoke--chain .pts-wire-core path {
  stroke-width: 1.35 !important;
  filter: drop-shadow(0 0 3px rgba(126, 224, 255, 0.55)) !important;
}
.page-pts .pts-spoke--chain .pts-wire-core path.is-anim {
  stroke-dasharray: 5 8 !important;
  animation: pts-hub-dash 1.15s linear infinite !important;
}
.page-pts .pts-spoke--chain .pts-spoke-node {
  r: 4.5;
  stroke-width: 1.5;
}
.page-pts .pts-spoke--chain .pts-spoke-node.is-gate {
  fill: #9ad8f5;
  filter: drop-shadow(0 0 5px rgba(68, 200, 245, 0.8));
}

.page-pts .pts-chain-hw {
  align-items: flex-end !important;
  gap: 0.55rem !important;
  padding-bottom: 0.15rem;
}

.page-pts .pts-hw-usb,
.page-pts .pts-hw-router {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 0 !important;
  padding: 0 !important;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.page-pts .pts-hw-caption {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #9eb6c8;
  text-align: center;
  line-height: 1.25;
  max-width: 11.5rem;
}

.page-pts .pts-hw-usb-shell {
  position: relative;
  width: 11.5rem;
  padding: 0.55rem 0.55rem 0.5rem 0.85rem;
  border-radius: 7px;
  background:
    linear-gradient(180deg, #e8ecf1 0%, #c5ccd5 38%, #9ea8b4 100%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 10px 22px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(20, 30, 40, 0.18);
}

.page-pts .pts-hw-usb-top {
  height: 0.55rem;
  margin-bottom: 0.4rem;
  border-radius: 3px;
  background: linear-gradient(180deg, #f4f6f8, #b8c0ca);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.page-pts .pts-hw-jack {
  position: absolute;
  left: -0.28rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.42rem;
  height: 0.85rem;
  border-radius: 1px 3px 3px 1px;
  background: linear-gradient(90deg, #44c8f5, #1e88e5);
  box-shadow: 0 0 8px rgba(68, 200, 245, 0.75);
}

.page-pts .pts-hw-jack.is-out {
  left: auto;
  right: -0.28rem;
  border-radius: 3px 1px 1px 3px;
}

.page-pts .pts-hw-ports {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0.28rem !important;
}

.page-pts .pts-hw-ports span {
  position: relative;
  display: grid !important;
  place-items: center;
  height: 1.7rem !important;
  border-radius: 3px !important;
  border: 1px solid rgba(0, 0, 0, 0.28) !important;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.25);
  font-size: 0.52rem !important;
  font-weight: 800;
  color: transparent !important;
}

.page-pts .pts-hw-ports span em {
  display: block;
  width: 58%;
  height: 0.38rem;
  border-radius: 1px;
  background: rgba(0, 0, 0, 0.35);
}

.page-pts .pts-hw-ports .is-a {
  background: linear-gradient(180deg, #7eb7e8, #4a8fc4) !important;
}
.page-pts .pts-hw-ports .is-eth {
  background: linear-gradient(180deg, #6a737e, #3d4652) !important;
}
.page-pts .pts-hw-ports .is-drive {
  background: linear-gradient(180deg, #2a3038, #10141a) !important;
  color: #fff !important;
  letter-spacing: 0.04em;
}
.page-pts .pts-hw-ports .is-drive em { display: none; }

.page-pts .pts-hw-router-shell {
  position: relative;
  width: 10.2rem;
  padding: 0.95rem 0.7rem 0.7rem;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #3a414c 0%, #1a1f27 45%, #0b0e13 100%);
  border: 1.5px solid rgba(68, 200, 245, 0.55);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.5) inset,
    0 10px 24px rgba(0, 0, 0, 0.4),
    0 0 16px rgba(68, 200, 245, 0.18);
}

.page-pts .pts-hw-ants {
  position: absolute !important;
  top: -0.7rem !important;
  left: 0;
  right: 0;
  display: flex !important;
  justify-content: space-around;
  padding: 0 1.5rem !important;
}

.page-pts .pts-hw-ants i {
  width: 0.26rem !important;
  height: 1rem !important;
  border-radius: 2px !important;
  background: linear-gradient(180deg, #c5ccd5, #6a737e) !important;
  box-shadow: 0 0 0 1px #1a1f27 !important;
}

.page-pts .pts-hw-face {
  min-height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.page-pts .pts-hw-leds {
  display: flex !important;
  gap: 0.5rem !important;
  justify-content: center;
}

.page-pts .pts-hw-leds i {
  width: 0.58rem !important;
  height: 0.58rem !important;
  border-radius: 50% !important;
  background: #5dff9a !important;
  box-shadow: 0 0 9px rgba(93, 255, 154, 1) !important;
  animation: pts-led-pulse 1.35s ease-in-out infinite;
}
.page-pts .pts-hw-leds i:nth-child(2) { animation-delay: 0.18s; }
.page-pts .pts-hw-leds i:nth-child(3) { animation-delay: 0.36s; }

.page-pts .pts-hw-arrow {
  align-self: center !important;
  margin-bottom: 1.35rem;
  width: 1.35rem !important;
  height: 0.14rem !important;
  background: #7ee0ff !important;
  box-shadow: 0 0 6px rgba(68, 200, 245, 0.7) !important;
}
.page-pts .pts-hw-arrow::after {
  border-width: 0.28rem !important;
}

html[data-theme="light"] .page-pts .pts-hw-caption { color: #3d4a5c; }
html[data-theme="light"] .page-pts .pts-hw-usb-shell {
  background: linear-gradient(180deg, #f2f4f7 0%, #d0d6de 40%, #a8b1bc 100%);
}
html[data-theme="light"] .page-pts .pts-hw-router-shell {
  border-color: rgba(30, 136, 229, 0.45);
}



/* ===== Story nodes: no hex, big icons, name + platform ===== */
.page-pts .pts-spoke--chain {
  min-height: 34rem !important;
}

.page-pts .pts-chain-side {
  gap: 1.15rem !important;
}

.page-pts .pts-node {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  width: min(100%, 8.5rem);
}

.page-pts .pts-node-icon {
  display: grid;
  place-items: center;
  width: 5.6rem;
  height: 5.6rem;
  margin: 0 auto 0.35rem;
  background: none;
  clip-path: none;
  box-shadow: none;
  border: 0;
}

.page-pts .pts-node-icon svg {
  width: 5rem;
  height: 5rem;
  fill: none;
  stroke: #44c8f5;
  stroke-width: 2.4;
  stroke-linejoin: round;
  stroke-linecap: round;
  filter: drop-shadow(0 0 10px rgba(68, 200, 245, 0.45));
}

.page-pts .pts-node-icon .fill {
  fill: rgba(68, 200, 245, 0.14);
  stroke: none;
}

.page-pts .pts-node-icon .logo {
  fill: rgba(126, 224, 255, 0.5);
  stroke: #7ee0ff;
}

.page-pts .pts-node-name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e8f6ff;
  line-height: 1.15;
}

.page-pts .pts-node-plat {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #9eb6c8;
  letter-spacing: 0.02em;
}

.page-pts .pts-node.is-soft .pts-node-icon {
  width: 4.8rem;
  height: 4.8rem;
}

.page-pts .pts-node.is-soft .pts-node-icon svg {
  width: 4.2rem;
  height: 4.2rem;
  opacity: 0.95;
}

.page-pts .pts-node.is-soft .pts-node-name {
  font-size: 0.88rem;
}

.page-pts .pts-hw-caption {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  align-items: center;
}

.page-pts .pts-hw-caption strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e8f6ff;
}

.page-pts .pts-hw-caption span {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: #9eb6c8;
}

.page-pts .pts-tkhero-modes {
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
}

html[data-theme="light"] .page-pts .pts-node-icon svg { stroke: #0b5cad; }
html[data-theme="light"] .page-pts .pts-node-icon .fill { fill: rgba(30, 136, 229, 0.12); }
html[data-theme="light"] .page-pts .pts-node-icon .logo { fill: rgba(11, 92, 173, 0.4); stroke: #0b5cad; }
html[data-theme="light"] .page-pts .pts-node-name { color: #0b5cad; }
html[data-theme="light"] .page-pts .pts-node-plat { color: #3d4a5c; }
html[data-theme="light"] .page-pts .pts-hw-caption strong { color: #10151c; }
html[data-theme="light"] .page-pts .pts-hw-caption span { color: #3d4a5c; }

/* kill leftover hex look if any */
.page-pts .pts-spoke--chain .pts-hex-pad,
.page-pts .pts-spoke--chain .pts-hex {
  clip-path: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

@media (max-width: 900px) {
  .page-pts .pts-node-icon {
    width: 4.6rem;
    height: 4.6rem;
  }
  .page-pts .pts-node-icon svg {
    width: 4rem;
    height: 4rem;
  }
}



/* FORCE: no hexagon behind client icons — icon only + name + platform */
.page-pts .pts-hex,
.page-pts .pts-hex-pad,
.page-pts .pts-hex-name,
.page-pts .pts-hex-plat {
  display: none !important;
}

.page-pts .pts-spoke--chain .pts-node-icon {
  clip-path: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  width: 6.4rem !important;
  height: 6.4rem !important;
  margin: 0 auto 0.4rem !important;
}

.page-pts .pts-spoke--chain .pts-node-icon svg {
  width: 5.8rem !important;
  height: 5.8rem !important;
  stroke-width: 2.6 !important;
}

.page-pts .pts-spoke--chain .pts-node-name {
  display: block !important;
  font-size: 1.12rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  margin: 0 !important;
}

.page-pts .pts-spoke--chain .pts-node-plat {
  display: block !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  margin: 0.2rem 0 0 !important;
  opacity: 0.9;
}


.page-pts .pts-spoke--chain .pts-node-icon {
  width: 7rem !important;
  height: 7rem !important;
}
.page-pts .pts-spoke--chain .pts-node-icon svg {
  width: 6.4rem !important;
  height: 6.4rem !important;
}



/* Light mode: remove heavy dark glow around client icons / wires */
html[data-theme="light"] .page-pts .pts-node-icon svg,
html[data-theme="light"] .page-pts .pts-spoke--chain .pts-node-icon svg,
html[data-theme="light"] .page-pts .pts-node.is-soft .pts-node-icon svg {
  filter: none !important;
  stroke: #1e88e5 !important;
  stroke-width: 2.4 !important;
}

html[data-theme="light"] .page-pts .pts-node-icon .fill,
html[data-theme="light"] .page-pts .pts-spoke--chain .pts-node-icon .fill {
  fill: rgba(30, 136, 229, 0.08) !important;
  stroke: none !important;
}

html[data-theme="light"] .page-pts .pts-node-icon .logo,
html[data-theme="light"] .page-pts .pts-node-icon .solid {
  fill: rgba(30, 136, 229, 0.22) !important;
  stroke: #1e88e5 !important;
}

html[data-theme="light"] .page-pts .pts-node-icon.is-win svg .solid {
  fill: #1e88e5 !important;
  stroke: none !important;
}

html[data-theme="light"] .page-pts .pts-node-name,
html[data-theme="light"] .page-pts .pts-spoke--chain .pts-node-name {
  color: #1565c0 !important;
  text-shadow: none !important;
}

html[data-theme="light"] .page-pts .pts-node-plat {
  color: #5a6a7a !important;
}

html[data-theme="light"] .page-pts .pts-spoke--chain .pts-wire-glow path {
  stroke: rgba(30, 136, 229, 0.12) !important;
  stroke-width: 2.5 !important;
  opacity: 1 !important;
  filter: none !important;
}

html[data-theme="light"] .page-pts .pts-spoke--chain .pts-wire-core path {
  stroke: #42a5f5 !important;
  stroke-width: 1.25 !important;
  filter: none !important;
  opacity: 0.85 !important;
}

html[data-theme="light"] .page-pts .pts-spoke--chain .pts-spoke-node {
  fill: #42a5f5 !important;
  stroke: #ffffff !important;
  stroke-width: 1.5 !important;
  filter: none !important;
}

html[data-theme="light"] .page-pts .pts-spoke--chain .pts-spoke-node.is-green {
  fill: #2eaf6a !important;
  filter: none !important;
}

html[data-theme="light"] .page-pts .pts-spoke--chain .pts-spoke-node.is-gate,
html[data-theme="light"] .page-pts .pts-spoke--chain .pts-spoke-node.is-hub-dot {
  filter: none !important;
}

html[data-theme="light"] .page-pts .pts-hw-photo img {
  box-shadow:
    0 8px 20px rgba(16, 24, 40, 0.1),
    0 0 0 1px rgba(30, 136, 229, 0.18) !important;
}



/* Fix USB hub / Wi-Fi Travel Router text cut off */
.page-pts .pts-spoke--chain {
  overflow: visible !important;
  max-width: 72rem !important;
}

.page-pts .pts-chain-core {
  max-width: 48rem !important;
  overflow: visible !important;
  grid-template-columns: minmax(12rem, 14.5rem) minmax(16rem, 1fr) !important;
}

.page-pts .pts-chain-hw {
  overflow: visible !important;
  flex-wrap: nowrap !important;
  min-width: 0;
  width: 100% !important;
  max-width: none !important;
}

.page-pts .pts-hw-usb,
.page-pts .pts-hw-router {
  flex: 1 1 0 !important;
  min-width: 8.5rem !important;
  max-width: none !important;
  overflow: visible !important;
}

.page-pts .pts-hw-caption {
  max-width: none !important;
  width: 100% !important;
  overflow: visible !important;
  white-space: normal !important;
  word-break: break-word;
  text-align: center !important;
}

.page-pts .pts-hw-caption strong {
  white-space: normal !important;
  font-size: 0.72rem !important;
  line-height: 1.2 !important;
  color: #2C3948 !important;
  -webkit-text-fill-color: #2C3948 !important;
}

.page-pts .pts-hw-caption span {
  white-space: normal !important;
  font-size: 0.64rem !important;
  line-height: 1.25 !important;
}

.page-pts .pts-chain-legend {
  overflow: visible !important;
  width: min(100%, 44rem) !important;
}

.page-pts .pts-chain-card {
  overflow: visible !important;
}

.page-pts .pts-chain-card strong {
  color: #2C3948 !important;
  -webkit-text-fill-color: #2C3948 !important;
  white-space: normal !important;
}

html[data-theme="dark"] .page-pts .pts-hw-caption strong,
html[data-theme="dark"] .page-pts .pts-chain-card strong {
  color: #e8f6ff !important;
  -webkit-text-fill-color: #e8f6ff !important;
}

@media (max-width: 1100px) {
  .page-pts .pts-chain-hw {
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
  .page-pts .pts-hw-usb,
  .page-pts .pts-hw-router {
    flex: 1 1 10rem !important;
  }
}



/* Fit USB / Wi-Fi labels in existing space (no layout stretch) */
.page-pts .pts-spoke--chain {
  max-width: 64rem !important;
}

.page-pts .pts-chain-core {
  max-width: 36rem !important;
  grid-template-columns: minmax(12rem, 13.5rem) minmax(0, 1fr) !important;
  overflow: visible !important;
}

.page-pts .pts-chain-hw {
  gap: 0.35rem !important;
  overflow: visible !important;
  width: 100% !important;
}

.page-pts .pts-hw-usb,
.page-pts .pts-hw-router {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

.page-pts .pts-hw-usb-shell,
.page-pts .pts-hw-router-shell {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

.page-pts .pts-hw-caption {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 0.1rem;
  box-sizing: border-box;
  overflow: visible !important;
}

.page-pts .pts-hw-caption strong {
  display: block !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.02em !important;
  line-height: 1.2 !important;
  white-space: normal !important;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.page-pts .pts-hw-caption span {
  display: block !important;
  font-size: 0.58rem !important;
  line-height: 1.25 !important;
  white-space: normal !important;
  overflow-wrap: anywhere;
}

.page-pts .pts-hw-arrow {
  margin-bottom: 1.6rem !important;
  flex: 0 0 0.9rem !important;
  width: 0.9rem !important;
}


/* Real logo SVGs for ATAK / iTAK / Game Engine */
.page-pts .pts-node-icon.is-logo {
  display: grid !important;
  place-items: center;
  background: transparent !important;
  box-shadow: none !important;
  clip-path: none !important;
}
.page-pts .pts-node-icon.is-logo img {
  display: block;
  width: auto;
  height: 5.8rem;
  max-width: 4.6rem;
  object-fit: contain;
  filter: none !important;
}
.page-pts .pts-node-icon.is-android.is-logo img {
  height: 6.2rem;
  max-width: 4.2rem;
}
.page-pts .pts-node-icon.is-iphone.is-logo img {
  height: 6.4rem;
  max-width: 3.4rem;
}
.page-pts .pts-node-icon.is-game.is-logo {
  width: 4.6rem !important;
  height: 4.6rem !important;
}
.page-pts .pts-node-icon.is-game.is-logo img {
  height: 4.2rem !important;
  max-width: 4.2rem !important;
}
html[data-theme="light"] .page-pts .pts-node-icon.is-logo img {
  filter: none !important;
}

/* Ensure drawn USB hub + router stay visible */
.page-pts .pts-chain-hw,
.page-pts .pts-hw-usb,
.page-pts .pts-hw-router,
.page-pts .pts-hw-usb-shell,
.page-pts .pts-hw-router-shell {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.page-pts .pts-chain-hw {
  flex-direction: row !important;
}
.page-pts .pts-hw-usb,
.page-pts .pts-hw-router {
  flex-direction: column !important;
}


/* WinTAK light mode: match other icons cyan (#09d0fe → #0dbafe) */
html[data-theme="light"] .page-pts .pts-node-icon.is-win svg .solid,
html[data-theme="light"] .page-pts .pts-spoke--chain .pts-node-icon.is-win svg .solid {
  fill: url(#ptsIconGradWin) !important;
  stroke: none !important;
  color: inherit !important;
}
html[data-theme="light"] .page-pts .pts-node-icon.is-win #ptsIconGradWin stop:first-child {
  stop-color: #09d0fe !important;
}
html[data-theme="light"] .page-pts .pts-node-icon.is-win #ptsIconGradWin stop:last-child {
  stop-color: #0dbafe !important;
}
/* Fallback if gradient url blocked by older override */
html[data-theme="light"] .page-pts .pts-spoke--chain .pts-node-icon.is-win svg path.solid {
  fill: #0bb8fe !important;
}

/* Bigger REC video preview */
.page-pts .pts-chain-rec {
  width: 13.5rem !important;
  max-width: none !important;
  top: -0.85rem !important;
  left: 58% !important;
  right: auto !important;
  z-index: 6 !important;
  border-width: 2px !important;
  border-radius: 6px !important;
}
.page-pts .pts-chain-rec img {
  width: 100% !important;
  height: 7.2rem !important;
  object-fit: cover !important;
  filter: none !important;
}
@media (max-width: 900px) {
  .page-pts .pts-chain-rec {
    width: 11rem !important;
    left: 55% !important;
  }
  .page-pts .pts-chain-rec img {
    height: 5.8rem !important;
  }
}

/* REC preview — larger */
.page-pts .pts-chain-rec {
  width: 17rem !important;
  top: -1.1rem !important;
  left: 52% !important;
}
.page-pts .pts-chain-rec img {
  height: 9rem !important;
}
@media (max-width: 900px) {
  .page-pts .pts-chain-rec {
    width: 13rem !important;
  }
  .page-pts .pts-chain-rec img {
    height: 7rem !important;
  }
}

/* ===== H2 + animated tagline + fix client rotator (only .is-on visible) ===== */
.page-pts .pts-tkhero-h2 {
  margin: 0.45rem auto 0.35rem;
  max-width: 40rem;
  text-align: center;
  font-family: "Work Sans", "IBM Plex Sans", sans-serif;
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: #2C3948;
}

html[data-theme="dark"] .page-pts .pts-tkhero-h2 {
  color: #e8f6ff;
}

.page-pts .pts-tkhero-tagline,
.page-pts .pts-tkhero-rotate {
  position: relative !important;
  display: grid !important;
  place-items: center !important;
  min-height: 1.55em !important;
  margin-left: auto !important;
  margin-right: auto !important;
  overflow: hidden !important;
  text-align: center !important;
}

.page-pts .pts-tkhero-tagline {
  margin-top: 0.35rem !important;
  margin-bottom: 0.45rem !important;
  max-width: 42rem !important;
  font-family: "Work Sans", "IBM Plex Sans", sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.25rem) !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  line-height: 1.3 !important;
}

.page-pts .pts-tkhero-rotate {
  margin-top: 0.35rem !important;
  margin-bottom: 0.65rem !important;
  max-width: 44rem !important;
  font-size: 36px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  line-height: 1.25 !important;
}

.page-pts .pts-tkhero-tagline span,
.page-pts .pts-tkhero-rotate span {
  grid-area: 1 / 1 !important;
  display: block !important;
  width: 100%;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(0.45rem) !important;
  transition: transform 0.28s ease, opacity 0.28s ease !important;
  pointer-events: none !important;
  animation: none !important;
}

.page-pts .pts-tkhero-tagline span.is-on,
.page-pts .pts-tkhero-rotate span.is-on {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.page-pts .pts-tkhero-tagline span.is-out,
.page-pts .pts-tkhero-rotate span.is-out {
  opacity: 0 !important;
  visibility: visible !important;
  transform: translateY(-0.45rem) !important;
}

html[data-theme="light"] .page-pts .pts-tkhero-tagline,
html[data-theme="light"] .page-pts .pts-tkhero-tagline span.is-on,
html[data-theme="light"] .page-pts .pts-tkhero-rotate,
html[data-theme="light"] .page-pts .pts-tkhero-rotate span.is-on {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
  background: none !important;
}

html[data-theme="dark"] .page-pts .pts-tkhero-tagline,
html[data-theme="dark"] .page-pts .pts-tkhero-tagline span.is-on,
html[data-theme="dark"] .page-pts .pts-tkhero-rotate,
html[data-theme="dark"] .page-pts .pts-tkhero-rotate span.is-on {
  color: #7EE0FF !important;
  -webkit-text-fill-color: #7EE0FF !important;
  background: none !important;
}

/* REC image: higher, no overlay icons, no double frame */
.page-pts .pts-chain-rec {
  top: -3.2rem !important;
  left: 55% !important;
  right: auto !important;
  width: 17rem !important;
  border: 0 !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35) !important;
  background: transparent !important;
  overflow: hidden !important;
  border-radius: 8px !important;
}
.page-pts .pts-chain-rec img {
  width: 100% !important;
  height: 9rem !important;
  object-fit: cover !important;
  filter: none !important;
  display: block !important;
}
.page-pts .pts-chain-rec .rec,
.page-pts .pts-chain-rec .cross {
  display: none !important;
}

/* Banner: Inter / IBM Plex Sans + reference colors */
.page-pts .pts-tkhero-alert,
.page-pts .pts-tkhero h1,
.page-pts .pts-tkhero-h2,
.page-pts .pts-tkhero-tagline,
.page-pts .pts-tkhero-tagline span,
.page-pts .pts-tkhero-rotate,
.page-pts .pts-tkhero-rotate span {
  font-family: Inter, "IBM Plex Sans", system-ui, sans-serif !important;
}

.page-pts .pts-tkhero-alert {
  color: #ff751f !important;
  -webkit-text-fill-color: #ff751f !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  font-size: clamp(0.72rem, 1.6vw, 0.9rem) !important;
}

.page-pts .pts-tkhero h1 {
  font-family: Inter, "IBM Plex Sans", system-ui, sans-serif !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
}

.page-pts .pts-tkhero-h2 {
  font-family: Inter, "IBM Plex Sans", system-ui, sans-serif !important;
  font-weight: 800 !important; /* Extra Bold */
  color: #eed74d !important;
  -webkit-text-fill-color: #eed74d !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
  font-size: clamp(1.2rem, 2.8vw, 1.75rem) !important;
}

html[data-theme="light"] .page-pts .pts-tkhero-alert,
html[data-theme="dark"] .page-pts .pts-tkhero-alert {
  color: #ff751f !important;
  -webkit-text-fill-color: #ff751f !important;
}

html[data-theme="light"] .page-pts .pts-tkhero-h2,
html[data-theme="dark"] .page-pts .pts-tkhero-h2 {
  color: #eed74d !important;
  -webkit-text-fill-color: #eed74d !important;
}

/* H2 34px + static white tagline (no animation) */
.page-pts .pts-tkhero-h2 {
  font-size: 34px !important;
  line-height: 1.25 !important;
}

.page-pts .pts-tkhero-tagline {
  display: block !important;
  position: static !important;
  min-height: 0 !important;
  margin: 0.35rem auto 0.55rem !important;
  max-width: 44rem !important;
  text-align: center !important;
  font-family: Inter, "IBM Plex Sans", system-ui, sans-serif !important;
  font-size: clamp(1rem, 2.2vw, 1.25rem) !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.35 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  overflow: visible !important;
}

html[data-theme="light"] .page-pts .pts-tkhero-tagline,
html[data-theme="dark"] .page-pts .pts-tkhero-tagline {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
}

/* Kill leftover animated span rules on tagline */
.page-pts .pts-tkhero-tagline span {
  display: inline !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  position: static !important;
  grid-area: auto !important;
}

/* H2 54px, tagline 26px */
.page-pts .pts-tkhero-h2 {
  font-size: 54px !important;
  line-height: 1.2 !important;
}
.page-pts .pts-tkhero-tagline {
  font-size: 26px !important;
  line-height: 1.35 !important;
}

/* H2: 42px, single line */
.page-pts .pts-tkhero-h2 {
  font-size: 42px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  max-width: none !important;
  overflow: visible !important;
}

/* H2: 42px, single line */
.page-pts .pts-tkhero-h2 {
  font-size: 42px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  max-width: none !important;
  overflow: visible !important;
}

/* Tagline: IBM Plex Sans 26px / 500 — one line + mobile */
.page-pts .pts-tkhero-tagline {
  font-family: "IBM Plex Sans", "Work Sans", system-ui, sans-serif !important;
  font-size: 26px !important;
  font-weight: 500 !important;
  font-style: normal !important;
  line-height: 1.35 !important;
  letter-spacing: normal !important;
  white-space: nowrap !important;
  text-align: center !important;
  max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

html[data-theme="light"] .page-pts .pts-tkhero-tagline,
html[data-theme="dark"] .page-pts .pts-tkhero-tagline {
  font-family: "IBM Plex Sans", "Work Sans", system-ui, sans-serif !important;
  font-size: 26px !important;
  font-weight: 500 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

@media (max-width: 900px) {
  .page-pts .pts-tkhero-tagline {
    font-size: 20px !important;
    white-space: nowrap !important;
  }
}
@media (max-width: 600px) {
  .page-pts .pts-tkhero-tagline {
    font-size: 15px !important;
    white-space: nowrap !important;
  }
}
@media (max-width: 400px) {
  .page-pts .pts-tkhero-tagline {
    font-size: 12px !important;
  }
}

/* Tagline: IBM Plex Sans 26px / 500 — one line + mobile */
.page-pts .pts-tkhero-tagline {
  font-family: "IBM Plex Sans", "Work Sans", system-ui, sans-serif !important;
  font-size: 26px !important;
  font-weight: 500 !important;
  font-style: normal !important;
  white-space: nowrap !important;
  line-height: 1.35 !important;
  letter-spacing: 0.01em !important;
  max-width: none !important;
  overflow: visible !important;
  text-align: center !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

@media (max-width: 900px) {
  .page-pts .pts-tkhero-tagline {
    font-size: 20px !important;
    white-space: nowrap !important;
  }
  .page-pts .pts-tkhero-h2 {
    font-size: clamp(22px, 5.5vw, 36px) !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 600px) {
  .page-pts .pts-tkhero-tagline {
    font-size: 15px !important;
    white-space: nowrap !important;
    letter-spacing: 0 !important;
  }
  .page-pts .pts-tkhero-h2 {
    font-size: clamp(16px, 4.8vw, 24px) !important;
  }
}

/* Proper headings (no forced ALL CAPS / broken nowrap) */
.page-pts .pts-tkhero h1 {
  font-family: Inter, "IBM Plex Sans", system-ui, sans-serif !important;
  font-weight: 800 !important;
  font-size: clamp(1.6rem, 3.5vw, 2.35rem) !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  line-height: 1.2 !important;
  text-align: center !important;
  margin: 0.35rem auto 0.25rem !important;
}

.page-pts .pts-tkhero-h2 {
  font-family: Inter, "IBM Plex Sans", system-ui, sans-serif !important;
  font-weight: 800 !important;
  font-size: 42px !important;
  color: #eed74d !important;
  -webkit-text-fill-color: #eed74d !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  white-space: nowrap !important;
  line-height: 1.25 !important;
  text-align: center !important;
  max-width: none !important;
}

@media (max-width: 900px) {
  .page-pts .pts-tkhero-h2 {
    font-size: clamp(22px, 5.2vw, 34px) !important;
    white-space: normal !important;
  }
}

@media (max-width: 600px) {
  .page-pts .pts-tkhero h1 {
    font-size: 1.45rem !important;
  }
  .page-pts .pts-tkhero-h2 {
    font-size: 22px !important;
    white-space: normal !important;
  }
}

/* Legend: no blue boxes — simple 14.5px text */
.page-pts .pts-chain-legend {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.25rem !important;
  width: 100% !important;
  max-width: 40rem !important;
  margin: 0.75rem auto 0 !important;
  padding: 0 !important;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.page-pts .pts-chain-legend-line,
.page-pts .pts-chain-card {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
  text-align: center !important;
  font-family: "IBM Plex Sans", "Work Sans", system-ui, sans-serif !important;
  font-size: 14.5px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  color: #3d4a5c !important;
  -webkit-text-fill-color: #3d4a5c !important;
}

.page-pts .pts-chain-legend-line strong,
.page-pts .pts-chain-card strong {
  display: inline !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: #2C3948 !important;
  -webkit-text-fill-color: #2C3948 !important;
  margin: 0 !important;
}

.page-pts .pts-chain-card span {
  display: inline !important;
  font-size: 14.5px !important;
  color: inherit !important;
}

html[data-theme="dark"] .page-pts .pts-chain-legend-line,
html[data-theme="dark"] .page-pts .pts-chain-card {
  color: #9eb6c8 !important;
  -webkit-text-fill-color: #9eb6c8 !important;
  background: none !important;
  border: 0 !important;
}

html[data-theme="dark"] .page-pts .pts-chain-legend-line strong,
html[data-theme="dark"] .page-pts .pts-chain-card strong {
  color: #e8f6ff !important;
  -webkit-text-fill-color: #e8f6ff !important;
}

html[data-theme="light"] .page-pts .pts-chain-card {
  background: none !important;
  border: 0 !important;
}

/* ===== Theme polish: readable light hero + light phone screen + clean dark section ===== */

/* Light hero text contrast */
html[data-theme="light"] .page-pts .pts-tkhero h1 {
  color: #10151c !important;
  -webkit-text-fill-color: #10151c !important;
  text-transform: none !important;
  font-family: Inter, "IBM Plex Sans", system-ui, sans-serif !important;
  font-weight: 800 !important;
}

html[data-theme="light"] .page-pts .pts-tkhero-h2 {
  color: #c9a227 !important;
  -webkit-text-fill-color: #c9a227 !important;
  text-transform: none !important;
  font-family: Inter, "IBM Plex Sans", system-ui, sans-serif !important;
  font-weight: 800 !important;
}

html[data-theme="light"] .page-pts .pts-tkhero-tagline {
  color: #2C3948 !important;
  -webkit-text-fill-color: #2C3948 !important;
  font-family: "IBM Plex Sans", "Work Sans", system-ui, sans-serif !important;
  font-size: 26px !important;
  font-weight: 500 !important;
}

html[data-theme="light"] .page-pts .pts-tkhero-alert {
  color: #ff751f !important;
  -webkit-text-fill-color: #ff751f !important;
}

html[data-theme="light"] .page-pts .pts-tkhero-rotate,
html[data-theme="light"] .page-pts .pts-tkhero-rotate span.is-on,
html[data-theme="light"] .page-pts .pts-tkhero-lead,
html[data-theme="light"] .page-pts .pts-tkhero-lead strong,
html[data-theme="light"] .page-pts .pts-tkhero-lead span {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
  background: none !important;
}

html[data-theme="light"] .page-pts .pts-tkhero-store {
  color: #5a6a7a !important;
  -webkit-text-fill-color: #5a6a7a !important;
}

html[data-theme="light"] .page-pts .pts-tkhero-modes {
  color: #3d4a5c !important;
  -webkit-text-fill-color: #3d4a5c !important;
}

/* Light mode: phone map screen must be light */
html[data-theme="light"] .page-pts .pts-rugged-map {
  background:
    radial-gradient(circle at 40% 35%, rgba(239, 138, 42, 0.12), transparent 30%),
    linear-gradient(160deg, #f4f8fc, #e8f0f7 55%, #dce7f2) !important;
  border-color: rgba(30, 136, 229, 0.28) !important;
}

html[data-theme="light"] .page-pts .pts-rugged-map::before {
  background-image:
    linear-gradient(rgba(30, 136, 229, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 136, 229, 0.1) 1px, transparent 1px) !important;
  opacity: 0.85 !important;
}

html[data-theme="light"] .page-pts .pts-rugged-tracks path {
  stroke: #ef8a2a !important;
  stroke-width: 1.6 !important;
  opacity: 0.9 !important;
}

html[data-theme="light"] .page-pts .pts-rugged-map .mk {
  background: #ef8a2a !important;
  box-shadow: 0 0 0 2px rgba(239, 138, 42, 0.25) !important;
}

html[data-theme="light"] .page-pts .pts-rugged-top span,
html[data-theme="light"] .page-pts .pts-rugged-top i {
  border-color: rgba(44, 57, 72, 0.35) !important;
}

html[data-theme="light"] .page-pts .pts-rugged-top span:first-child {
  background:
    linear-gradient(#2C3948, #2C3948) 0 20%/100% 2px no-repeat,
    linear-gradient(#2C3948, #2C3948) 0 50%/100% 2px no-repeat,
    linear-gradient(#2C3948, #2C3948) 0 80%/100% 2px no-repeat !important;
}

html[data-theme="light"] .page-pts .pts-node-name {
  color: #0b5cad !important;
}
html[data-theme="light"] .page-pts .pts-node-plat {
  color: #5a6a7a !important;
}

/* Dark hero: keep readable whites/cyans */
html[data-theme="dark"] .page-pts .pts-tkhero h1 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-transform: none !important;
}
html[data-theme="dark"] .page-pts .pts-tkhero-h2 {
  color: #eed74d !important;
  -webkit-text-fill-color: #eed74d !important;
  text-transform: none !important;
}
html[data-theme="dark"] .page-pts .pts-tkhero-tagline {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Dark interoperability section: cleaner fonts/colors (less neon mess) */
html[data-theme="dark"] .page-pts #webtak .pts-kicker,
html[data-theme="dark"] .page-pts .pts-board .pts-kicker {
  color: #7ec8e8 !important;
  font-family: "IBM Plex Sans", sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
}

html[data-theme="dark"] .page-pts #webtak .pts-h2,
html[data-theme="dark"] .page-pts .pts-board .pts-h2 {
  color: #f2f6fa !important;
  font-family: Inter, "IBM Plex Sans", system-ui, sans-serif !important;
  font-weight: 700 !important;
}

html[data-theme="dark"] .page-pts #webtak .pts-h2 em,
html[data-theme="dark"] .page-pts .pts-board .pts-h2 em {
  color: #7EE0FF !important;
  font-style: normal !important;
}

html[data-theme="dark"] .page-pts #webtak .pts-lead,
html[data-theme="dark"] .page-pts .pts-board .pts-lead,
html[data-theme="dark"] .page-pts .pts-tab-panel p {
  color: #c5d3df !important;
  font-family: "IBM Plex Sans", sans-serif !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
}

html[data-theme="dark"] .page-pts .pts-chip-row li {
  color: #e8f2f8 !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(126, 224, 255, 0.28) !important;
  font-family: "IBM Plex Sans", sans-serif !important;
  font-weight: 500 !important;
}

html[data-theme="dark"] .page-pts .pts-chip-row li.is-gold {
  border-color: rgba(238, 215, 77, 0.45) !important;
  color: #eed74d !important;
}

html[data-theme="dark"] .page-pts .pts-icon-card {
  background: rgba(12, 20, 30, 0.85) !important;
  border-color: rgba(126, 224, 255, 0.22) !important;
  box-shadow: none !important;
}

html[data-theme="dark"] .page-pts .pts-icon-card.is-active {
  border-color: rgba(126, 224, 255, 0.55) !important;
  box-shadow: 0 0 0 1px rgba(126, 224, 255, 0.2) !important;
}

html[data-theme="dark"] .page-pts .pts-icon-card h3,
html[data-theme="dark"] .page-pts .pts-h-marti,
html[data-theme="dark"] .page-pts .pts-h-collab,
html[data-theme="dark"] .page-pts .pts-h-cop {
  color: #7EE0FF !important;
  -webkit-text-fill-color: #7EE0FF !important;
  font-family: Inter, "IBM Plex Sans", system-ui, sans-serif !important;
  font-weight: 700 !important;
}

html[data-theme="dark"] .page-pts .pts-icon-card p {
  color: #a8bbc9 !important;
  font-family: "IBM Plex Sans", sans-serif !important;
  font-size: 0.9rem !important;
}

html[data-theme="dark"] .page-pts .pts-tree li {
  color: #c5d3df !important;
  font-family: "IBM Plex Sans", sans-serif !important;
}

/* Light mode: interoperability section clean */
html[data-theme="light"] .page-pts #webtak,
html[data-theme="light"] .page-pts .pts-board {
  background: #f4f6f9 !important;
}

html[data-theme="light"] .page-pts #webtak .pts-h2,
html[data-theme="light"] .page-pts .pts-board .pts-h2 {
  color: #10151c !important;
  font-family: Inter, "IBM Plex Sans", system-ui, sans-serif !important;
}

html[data-theme="light"] .page-pts #webtak .pts-h2 em,
html[data-theme="light"] .page-pts .pts-board .pts-h2 em {
  color: #056F91 !important;
}

html[data-theme="light"] .page-pts #webtak .pts-lead,
html[data-theme="light"] .page-pts .pts-board .pts-lead,
html[data-theme="light"] .page-pts .pts-tab-panel p {
  color: #3d4a5c !important;
  font-family: "IBM Plex Sans", sans-serif !important;
}

html[data-theme="light"] .page-pts .pts-h-marti,
html[data-theme="light"] .page-pts .pts-h-collab,
html[data-theme="light"] .page-pts .pts-h-cop,
html[data-theme="light"] .page-pts .pts-icon-card h3 {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
  font-family: Inter, "IBM Plex Sans", system-ui, sans-serif !important;
}

html[data-theme="light"] .page-pts .pts-tab-media {
  background: #ffffff !important;
  border: 1px solid rgba(30, 136, 229, 0.18) !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.08) !important;
}

html[data-theme="light"] .page-pts .pts-tab-media img {
  filter: none !important;
  opacity: 1 !important;
}

/* Banner accent #056F91 — light mode: ALL blues/cyans → teal */
html[data-theme="light"] .page-pts .pts-tkhero-rotate,
html[data-theme="light"] .page-pts .pts-tkhero-rotate span,
html[data-theme="light"] .page-pts .pts-tkhero-rotate span.is-on,
html[data-theme="light"] .page-pts .pts-tkhero-lead,
html[data-theme="light"] .page-pts .pts-tkhero-lead strong,
html[data-theme="light"] .page-pts .pts-tkhero-lead span,
html[data-theme="light"] .page-pts .pts-tkhero-modes,
html[data-theme="light"] .page-pts .pts-node-name,
html[data-theme="light"] .page-pts .pts-spoke--chain .pts-node-name,
html[data-theme="light"] .page-pts .pts-chain-phone-label,
html[data-theme="light"] .page-pts .pts-tkhero-tagline {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
  background: none !important;
}

html[data-theme="light"] .page-pts .pts-node-plat {
  color: #5a6a7a !important;
  opacity: 1;
}

html[data-theme="light"] .page-pts .pts-spoke--chain .pts-wire-core path {
  stroke: #056F91 !important;
}
html[data-theme="light"] .page-pts .pts-spoke--chain .pts-wire-glow path {
  stroke: rgba(5, 111, 145, 0.22) !important;
}
html[data-theme="light"] .page-pts .pts-spoke--chain .pts-spoke-node {
  fill: #056F91 !important;
}

html[data-theme="light"] .page-pts .pts-node-icon svg,
html[data-theme="light"] .page-pts .pts-spoke--chain .pts-node-icon svg {
  stroke: #056F91 !important;
  filter: none !important;
}

html[data-theme="light"] .page-pts .pts-node-icon.is-win svg path.solid,
html[data-theme="light"] .page-pts .pts-spoke--chain .pts-node-icon.is-win svg path.solid {
  fill: #056F91 !important;
}

html[data-theme="light"] .page-pts .pts-chain-legend-line,
html[data-theme="light"] .page-pts .pts-chain-legend-line strong {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
}

/* Keep H1 dark for readability; alert orange; H2 gold as approved */
html[data-theme="light"] .page-pts .pts-tkhero h1 {
  color: #10151c !important;
  -webkit-text-fill-color: #10151c !important;
}
html[data-theme="light"] .page-pts .pts-tkhero-alert {
  color: #ff751f !important;
  -webkit-text-fill-color: #ff751f !important;
}
html[data-theme="light"] .page-pts .pts-tkhero-h2 {
  color: #eed74d !important;
  -webkit-text-fill-color: #eed74d !important;
}
html[data-theme="light"] .page-pts .pts-tkhero-store {
  color: #5a6a7a !important;
  -webkit-text-fill-color: #5a6a7a !important;
}

/* Dark banner cyan also #44C8F5 */
html[data-theme="dark"] .page-pts .pts-tkhero-rotate,
html[data-theme="dark"] .page-pts .pts-tkhero-rotate span.is-on,
html[data-theme="dark"] .page-pts .pts-tkhero-lead,
html[data-theme="dark"] .page-pts .pts-tkhero-lead strong,
html[data-theme="dark"] .page-pts .pts-tkhero-lead span,
html[data-theme="dark"] .page-pts .pts-tkhero-modes {
  color: #44C8F5 !important;
  -webkit-text-fill-color: #44C8F5 !important;
}

/* FIX: #44C8F5 ONLY for cyan accents — do NOT reverse whole light banner */
html[data-theme="light"] .page-pts .pts-tkhero-tagline {
  color: #2C3948 !important;
  -webkit-text-fill-color: #2C3948 !important;
}
html[data-theme="light"] .page-pts .pts-tkhero h1 {
  color: #10151c !important;
  -webkit-text-fill-color: #10151c !important;
}
html[data-theme="light"] .page-pts .pts-tkhero-h2 {
  color: #eed74d !important;
  -webkit-text-fill-color: #eed74d !important;
}
html[data-theme="light"] .page-pts .pts-tkhero-alert {
  color: #ff751f !important;
  -webkit-text-fill-color: #ff751f !important;
}
html[data-theme="light"] .page-pts .pts-tkhero-store {
  color: #5a6a7a !important;
  -webkit-text-fill-color: #5a6a7a !important;
}
html[data-theme="light"] .page-pts .pts-node-plat {
  color: #5a6a7a !important;
  opacity: 1 !important;
}
html[data-theme="light"] .page-pts .pts-chain-legend-line {
  color: #3d4a5c !important;
  -webkit-text-fill-color: #3d4a5c !important;
}
html[data-theme="light"] .page-pts .pts-chain-legend-line strong {
  color: #2C3948 !important;
  -webkit-text-fill-color: #2C3948 !important;
}
html[data-theme="light"] .page-pts .pts-chain-phone-label {
  color: #3d4a5c !important;
  -webkit-text-fill-color: #3d4a5c !important;
}

/* #056F91 — light mode: cyan banner accents (rotate / lead / modes / wires / icons) */
html[data-theme="light"] .page-pts .pts-tkhero-rotate,
html[data-theme="light"] .page-pts .pts-tkhero-rotate span.is-on,
html[data-theme="light"] .page-pts .pts-tkhero-lead,
html[data-theme="light"] .page-pts .pts-tkhero-lead strong,
html[data-theme="light"] .page-pts .pts-tkhero-lead span,
html[data-theme="light"] .page-pts .pts-tkhero-modes,
html[data-theme="light"] .page-pts .pts-node-name,
html[data-theme="light"] .page-pts .pts-spoke--chain .pts-node-name {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
  background: none !important;
}

html[data-theme="light"] .page-pts .pts-spoke--chain .pts-wire-core path { stroke: #056F91 !important; }
html[data-theme="light"] .page-pts .pts-spoke--chain .pts-spoke-node { fill: #056F91 !important; }
html[data-theme="light"] .page-pts .pts-node-icon svg { stroke: #056F91 !important; }
html[data-theme="light"] .page-pts .pts-spoke--chain .pts-node-icon.is-win svg path.solid { fill: #056F91 !important; }

html[data-theme="dark"] .page-pts .pts-tkhero-rotate,
html[data-theme="dark"] .page-pts .pts-tkhero-rotate span.is-on,
html[data-theme="dark"] .page-pts .pts-tkhero-lead,
html[data-theme="dark"] .page-pts .pts-tkhero-lead strong,
html[data-theme="dark"] .page-pts .pts-tkhero-lead span,
html[data-theme="dark"] .page-pts .pts-tkhero-modes {
  color: #44C8F5 !important;
  -webkit-text-fill-color: #44C8F5 !important;
}
html[data-theme="dark"] .page-pts .pts-tkhero-tagline {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* H2: ALL CAPS 64px */
.page-pts .pts-tkhero-h2 {
  font-size: 64px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
  line-height: 1.15 !important;
  white-space: nowrap !important;
  font-family: Inter, "IBM Plex Sans", system-ui, sans-serif !important;
}

html[data-theme="light"] .page-pts .pts-tkhero-h2,
html[data-theme="dark"] .page-pts .pts-tkhero-h2 {
  color: #eed74d !important;
  -webkit-text-fill-color: #eed74d !important;
  text-transform: uppercase !important;
  font-size: 64px !important;
}

@media (max-width: 1100px) {
  .page-pts .pts-tkhero-h2 {
    font-size: clamp(28px, 5.5vw, 64px) !important;
  }
}
@media (max-width: 700px) {
  .page-pts .pts-tkhero-h2 {
    font-size: clamp(20px, 6vw, 36px) !important;
    white-space: normal !important;
  }
}

/* ===== HOME banner: real light theme + dark accent #44C8F5 ===== */

/* Dark: cyan accent #44C8F5 */
html[data-theme="dark"] .page-pts .pts-hb,
.page-pts .pts-hb {
  --hb-blue: #44C8F5;
  --hb-orange: #44C8F5;
}

html[data-theme="dark"] .page-pts .pts-hb .pts-hb-title em,
html[data-theme="dark"] .page-pts .pts-hb .pts-hb-title em,
.page-pts .pts-hb .pts-hb-title em {
  color: #44C8F5 !important;
}

html[data-theme="dark"] .page-pts .pts-hb a.pts-hb-cta {
  background: #44C8F5 !important;
  color: #061018 !important;
  box-shadow: 0 10px 26px rgba(68, 200, 245, 0.35) !important;
}
html[data-theme="dark"] .page-pts .pts-hb .pts-hb-cta-arrow {
  color: #061018 !important;
}

/* Light: full light-theme home banner (NOT dark reverse) */
html[data-theme="light"] .page-pts .pts-hb,
html[data-theme="light"] .page-pts .pts-hero-brand {
  --pts-head: #10151c;
  --pts-muted: #3d4a5c;
  --pts-cyan: #44C8F5;
  --hb-blue: #44C8F5;
  --hb-orange: #44C8F5;
  --hb-gold: #c9a227;
  background:
    radial-gradient(ellipse at 78% 42%, rgba(68, 200, 245, 0.14), transparent 42%),
    linear-gradient(180deg, #f4f8fc 0%, #eef3f8 55%, #e8eef5 100%) !important;
}

html[data-theme="light"] .page-pts .pts-hb .pts-hero-veil {
  background: linear-gradient(
    270deg,
    rgba(244, 248, 252, 0.96) 0%,
    rgba(244, 248, 252, 0.88) 28%,
    rgba(244, 248, 252, 0.45) 48%,
    rgba(244, 248, 252, 0.08) 68%,
    transparent 100%
  ) !important;
}

html[data-theme="light"] .page-pts .pts-hb .pts-hb-eyebrow {
  color: #5a6a7a !important;
}

html[data-theme="light"] .page-pts .pts-hb .pts-hb-kicker {
  color: #c9a227 !important;
}

html[data-theme="light"] .page-pts .pts-hb .pts-hb-title,
html[data-theme="light"] .page-pts .pts-hero-brand h1 {
  color: #10151c !important;
  text-shadow: none !important;
}

html[data-theme="light"] .page-pts .pts-hb .pts-hb-title em,
html[data-theme="light"] .page-pts .pts-hb .pts-hb-title em,
html[data-theme="light"] .page-pts .pts-hero-brand h1 em {
  color: #44C8F5 !important;
  text-shadow: none !important;
}

html[data-theme="light"] .page-pts .pts-hb .pts-hb-lead,
html[data-theme="light"] .page-pts .pts-hero-brand .hs-lead {
  color: #3d4a5c !important;
}

html[data-theme="light"] .page-pts .pts-hb a.pts-hb-cta {
  background: #44C8F5 !important;
  color: #061018 !important;
  box-shadow: 0 10px 26px rgba(68, 200, 245, 0.28) !important;
}

html[data-theme="light"] .page-pts .pts-hb .pts-hb-cta-arrow {
  background: rgba(6, 16, 24, 0.1) !important;
  color: #061018 !important;
}

html[data-theme="light"] .page-pts .pts-hb a.pts-hb-ghost {
  color: #2C3948 !important;
  border-color: rgba(44, 57, 72, 0.35) !important;
  background: transparent !important;
}

html[data-theme="light"] .page-pts .pts-hb a.pts-hb-ghost:hover {
  border-color: #44C8F5 !important;
  color: #0b5cad !important;
}

html[data-theme="light"] .page-pts .pts-hb .hs-globe-fade {
  background: linear-gradient(90deg, #f4f8fc, transparent 40%) !important;
}

/* H1: original size + ALL CAPS | H2: 64px ALL CAPS (override older 42px rules) */
.page-pts .pts-tkhero h1,
.page-pts .pts-tkhero-main h1 {
  font-family: Inter, "IBM Plex Sans", system-ui, sans-serif !important;
  font-weight: 800 !important;
  font-size: clamp(2.35rem, 5.2vw, 4rem) !important;
  line-height: 1.02 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  white-space: normal !important;
  text-align: center !important;
}

.page-pts .pts-tkhero-h2 {
  font-family: Inter, "IBM Plex Sans", system-ui, sans-serif !important;
  font-weight: 800 !important;
  font-size: 64px !important;
  line-height: 1.15 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  color: #eed74d !important;
  -webkit-text-fill-color: #eed74d !important;
  text-align: center !important;
}

html[data-theme="light"] .page-pts .pts-tkhero-h2,
html[data-theme="dark"] .page-pts .pts-tkhero-h2 {
  font-size: 64px !important;
  text-transform: uppercase !important;
  color: #eed74d !important;
  -webkit-text-fill-color: #eed74d !important;
}

html[data-theme="light"] .page-pts .pts-tkhero h1,
html[data-theme="light"] .page-pts .pts-tkhero-main h1 {
  text-transform: uppercase !important;
  font-size: clamp(2.35rem, 5.2vw, 4rem) !important;
}

html[data-theme="dark"] .page-pts .pts-tkhero h1,
html[data-theme="dark"] .page-pts .pts-tkhero-main h1 {
  text-transform: uppercase !important;
  font-size: clamp(2.35rem, 5.2vw, 4rem) !important;
}

@media (max-width: 1100px) {
  .page-pts .pts-tkhero-h2 {
    font-size: clamp(32px, 5.8vw, 64px) !important;
  }
}
@media (max-width: 700px) {
  .page-pts .pts-tkhero-h2 {
    font-size: clamp(22px, 7vw, 36px) !important;
    white-space: normal !important;
  }
}

/* Home banner title: keep original size, ALL CAPS only */
.page-pts .pts-hb .pts-hb-title {
  font-size: clamp(28px, 3.5vw, 52px) !important;
  text-transform: uppercase !important;
}

/* ===== HOME banner: gradients + globe visible; light = same as dark ===== */
.page-pts .pts-hb,
html[data-theme="dark"] .page-pts .pts-hb,
html[data-theme="light"] .page-pts .pts-hb,
html[data-theme="light"] .page-pts .pts-hero-brand {
  --hb-blue: #44C8F5;
  --hb-orange: #44C8F5;
  --hb-gold: #d9a52b;
  background:
    radial-gradient(ellipse 70% 80% at 78% 48%, rgba(68, 200, 245, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 20% 30%, rgba(68, 200, 245, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(7, 40, 70, 0.55) 0%, transparent 45%),
    linear-gradient(160deg, #061018 0%, #050b14 45%, #081422 100%) !important;
}

/* Kill overlays covering the globe */
.page-pts .pts-hb .pts-hero-veil,
html[data-theme="light"] .page-pts .pts-hb .pts-hero-veil {
  display: none !important;
  background: none !important;
  opacity: 0 !important;
}

.page-pts .pts-hb .pts-hero-grid {
  opacity: 0.12 !important;
}

.page-pts .pts-hb .hs-globe-fade,
html[data-theme="light"] .page-pts .pts-hb .hs-globe-fade {
  /* soft left-only fade for text — do not wash out globe */
  background: linear-gradient(
    90deg,
    rgba(5, 11, 20, 0.92) 0%,
    rgba(5, 11, 20, 0.55) 22%,
    rgba(5, 11, 20, 0.12) 40%,
    transparent 55%
  ) !important;
}

.page-pts .pts-hb .hs-globe-shade {
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.16) 0%, transparent 30%),
    linear-gradient(90deg, transparent 55%, rgba(2, 6, 14, 0.25) 100%) !important;
}

.page-pts .pts-hb .hs-globe-sphere {
  box-shadow:
    inset -22px 0 40px rgba(0, 0, 0, 0.4),
    inset 10px 0 24px rgba(68, 200, 245, 0.18),
    0 0 80px rgba(68, 200, 245, 0.35),
    0 0 120px rgba(68, 200, 245, 0.18) !important;
  filter: saturate(1.15) brightness(1.08) !important;
}

/* Light mode: same look as dark (text/buttons included) */
html[data-theme="light"] .page-pts .pts-hb .pts-hb-eyebrow {
  color: rgba(255, 255, 255, 0.56) !important;
}
html[data-theme="light"] .page-pts .pts-hb .pts-hb-kicker {
  color: #d9a52b !important;
}
html[data-theme="light"] .page-pts .pts-hb .pts-hb-title,
html[data-theme="light"] .page-pts .pts-hero-brand h1 {
  color: #ffffff !important;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.55) !important;
}
html[data-theme="light"] .page-pts .pts-hb .pts-hb-title em,
html[data-theme="light"] .page-pts .pts-hero-brand h1 em {
  color: #44C8F5 !important;
}
html[data-theme="light"] .page-pts .pts-hb .pts-hb-lead {
  color: rgba(233, 241, 248, 0.85) !important;
}
html[data-theme="light"] .page-pts .pts-hb a.pts-hb-cta {
  background: #44C8F5 !important;
  color: #061018 !important;
}
html[data-theme="light"] .page-pts .pts-hb a.pts-hb-ghost {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  background: transparent !important;
}
html[data-theme="light"] .page-pts .pts-hb .pts-hb-cta-arrow {
  color: #061018 !important;
  background: rgba(6, 16, 24, 0.12) !important;
}

@media (max-width: 900px) {
  .page-pts .pts-hb .hs-globe-fade,
  html[data-theme="light"] .page-pts .pts-hb .hs-globe-fade {
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(5, 11, 20, 0.35) 40%,
      rgba(5, 11, 20, 0.88) 78%
    ) !important;
  }
  .page-pts .pts-hb .hs-globe-orbit {
    opacity: 0.85 !important;
  }
}

/* UNDO: Home light banner back to light theme — ONLY make globe visible */
html[data-theme="light"] .page-pts .pts-hb,
html[data-theme="light"] .page-pts .pts-hero-brand {
  --pts-head: #10151c;
  --pts-muted: #3d4a5c;
  --pts-cyan: #44C8F5;
  --hb-blue: #44C8F5;
  --hb-orange: #44C8F5;
  --hb-gold: #c9a227;
  background:
    radial-gradient(ellipse at 78% 42%, rgba(68, 200, 245, 0.16), transparent 48%),
    linear-gradient(180deg, #f4f8fc 0%, #eef3f8 55%, #e8eef5 100%) !important;
}

html[data-theme="light"] .page-pts .pts-hb .pts-hb-eyebrow {
  color: #5a6a7a !important;
}
html[data-theme="light"] .page-pts .pts-hb .pts-hb-kicker {
  color: #c9a227 !important;
}
html[data-theme="light"] .page-pts .pts-hb .pts-hb-title,
html[data-theme="light"] .page-pts .pts-hero-brand h1 {
  color: #10151c !important;
  text-shadow: none !important;
}
html[data-theme="light"] .page-pts .pts-hb .pts-hb-title em,
html[data-theme="light"] .page-pts .pts-hero-brand h1 em {
  color: #44C8F5 !important;
}
html[data-theme="light"] .page-pts .pts-hb .pts-hb-lead {
  color: #3d4a5c !important;
}
html[data-theme="light"] .page-pts .pts-hb a.pts-hb-cta {
  background: #44C8F5 !important;
  color: #061018 !important;
  box-shadow: 0 10px 26px rgba(68, 200, 245, 0.28) !important;
}
html[data-theme="light"] .page-pts .pts-hb .pts-hb-cta-arrow {
  background: rgba(6, 16, 24, 0.1) !important;
  color: #061018 !important;
}
html[data-theme="light"] .page-pts .pts-hb a.pts-hb-ghost {
  color: #2C3948 !important;
  border-color: rgba(44, 57, 72, 0.35) !important;
  background: transparent !important;
}
html[data-theme="light"] .page-pts .pts-hb a.pts-hb-ghost:hover {
  border-color: #44C8F5 !important;
  color: #0b5cad !important;
}

/* ONLY fix: light mode — don't cover globe with white overlay */
html[data-theme="light"] .page-pts .pts-hb .pts-hero-veil {
  display: none !important;
  background: none !important;
}
html[data-theme="light"] .page-pts .pts-hb .hs-globe-fade {
  background: linear-gradient(
    90deg,
    #f4f8fc 0%,
    rgba(244, 248, 252, 0.75) 18%,
    rgba(244, 248, 252, 0.2) 36%,
    transparent 52%
  ) !important;
}
html[data-theme="light"] .page-pts .pts-hb .hs-globe-shade {
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.2) 0%, transparent 28%),
    linear-gradient(90deg, transparent 60%, rgba(244, 248, 252, 0.15) 100%) !important;
}
html[data-theme="light"] .page-pts .pts-hb .hs-globe-sphere {
  filter: saturate(1.1) brightness(1.05) !important;
  box-shadow:
    inset -22px 0 40px rgba(0, 0, 0, 0.28),
    0 0 60px rgba(68, 200, 245, 0.28) !important;
}
html[data-theme="light"] .page-pts .pts-hb .hs-globe-orbit {
  opacity: 1 !important;
}

/* Dark: keep original dark banner — restore fade (not destroyed) */
html[data-theme="dark"] .page-pts .pts-hb {
  background:
    radial-gradient(ellipse 70% 80% at 78% 48%, rgba(68, 200, 245, 0.18) 0%, transparent 55%),
    #050b14 !important;
}
html[data-theme="dark"] .page-pts .pts-hb .pts-hero-veil {
  display: none !important;
}
html[data-theme="dark"] .page-pts .pts-hb .hs-globe-fade {
  background: linear-gradient(
    90deg,
    #050b14 0%,
    #050b14 28%,
    rgba(5, 11, 20, 0.55) 42%,
    rgba(5, 11, 20, 0.15) 62%,
    transparent 78%
  ) !important;
}

/* Light Home banner: soft background shapes only (NOT behind/on globe) */
html[data-theme="light"] .page-pts .pts-hb,
html[data-theme="light"] .page-pts .pts-hero-brand {
  background-color: #f7f9fc !important;
  background-image:
    radial-gradient(ellipse 55% 50% at 12% 20%, rgba(68, 200, 245, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 88% 75%, rgba(68, 200, 245, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 60% 10%, rgba(201, 162, 39, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 55%, #eef3f8 100%) !important;
}

/* Keep globe clean — no extra gradient wash on globe itself */
html[data-theme="light"] .page-pts .pts-hb .hs-globe-sphere {
  filter: none !important;
}
html[data-theme="light"] .page-pts .pts-hb .hs-globe-shade {
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.12) 0%, transparent 28%),
    linear-gradient(90deg, transparent 70%, rgba(247, 249, 252, 0.12) 100%) !important;
}
html[data-theme="light"] .page-pts .pts-hb .hs-globe-fade {
  background: linear-gradient(
    90deg,
    #f7f9fc 0%,
    rgba(247, 249, 252, 0.7) 16%,
    rgba(247, 249, 252, 0.15) 34%,
    transparent 50%
  ) !important;
}

/* Home light: accent #056F91 (not #44C8F5) */
html[data-theme="light"] .page-pts .pts-hb,
html[data-theme="light"] .page-pts .pts-hero-brand {
  --pts-cyan: #056F91;
  --hb-blue: #056F91;
  --hb-orange: #056F91;
}

html[data-theme="light"] .page-pts .pts-hb .pts-hb-title em,
html[data-theme="light"] .page-pts .pts-hero-brand h1 em {
  color: #056F91 !important;
}

html[data-theme="light"] .page-pts .pts-hb a.pts-hb-cta {
  background: #056F91 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 26px rgba(5, 111, 145, 0.28) !important;
}

html[data-theme="light"] .page-pts .pts-hb .pts-hb-cta-arrow {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.15) !important;
}

html[data-theme="light"] .page-pts .pts-hb a.pts-hb-ghost:hover {
  border-color: #056F91 !important;
  color: #056F91 !important;
}

/* Dark home keeps #44C8F5 */
html[data-theme="dark"] .page-pts .pts-hb {
  --hb-blue: #44C8F5;
  --hb-orange: #44C8F5;
}
html[data-theme="dark"] .page-pts .pts-hb .pts-hb-title em {
  color: #44C8F5 !important;
}

/* Home CTA arrow box: white */
html[data-theme="light"] .page-pts .pts-hb .pts-hb-cta-arrow {
  background: #ffffff !important;
  color: #045A77 !important;
}
html[data-theme="light"] .page-pts .pts-hb .pts-hb-cta-arrow svg,
html[data-theme="light"] .page-pts .pts-hb .pts-hb-cta-arrow svg path {
  stroke: #045A77 !important;
  color: #045A77 !important;
}

/* ===== Home banner: NO glow behind globe; light = white + gradient shapes ===== */

/* Remove cyan glow behind globe (dark + any leftover) */
html[data-theme="dark"] .page-pts .pts-hb,
html[data-theme="dark"] .page-pts .pts-hero-brand {
  background: #050b14 !important;
  background-image: none !important;
}
html[data-theme="dark"] .page-pts .pts-hb .hs-globe-sphere {
  box-shadow:
    inset -28px 0 50px rgba(0, 0, 0, 0.55),
    inset 12px 0 28px rgba(120, 190, 255, 0.08) !important;
  /* no outer glow behind globe */
  filter: none !important;
}
html[data-theme="dark"] .page-pts .pts-hb .hs-globe-orbit {
  filter: none !important;
  box-shadow: none !important;
}

/* Light: white banner + gradient SHAPES (left/corners — not behind globe) */
html[data-theme="light"] .page-pts .pts-hb,
html[data-theme="light"] .page-pts .pts-hero-brand {
  position: relative !important;
  isolation: isolate;
  background-color: #ffffff !important;
  background-image: none !important;
  overflow: hidden !important;
}

html[data-theme="light"] .page-pts .pts-hb::before,
html[data-theme="light"] .page-pts .pts-hb::after {
  content: "" !important;
  position: absolute !important;
  pointer-events: none !important;
  z-index: 0 !important;
  border-radius: 50% !important;
  filter: blur(8px);
}

/* Soft cyan blob — top-left (behind text area) */
html[data-theme="light"] .page-pts .pts-hb::before {
  width: min(52vw, 520px);
  height: min(52vw, 520px);
  left: -12%;
  top: -18%;
  background: radial-gradient(circle, rgba(5, 111, 145, 0.16) 0%, rgba(68, 200, 245, 0.08) 42%, transparent 70%) !important;
}

/* Soft gold/cyan blob — bottom-left */
html[data-theme="light"] .page-pts .pts-hb::after {
  width: min(48vw, 460px);
  height: min(42vw, 400px);
  left: 8%;
  bottom: -22%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.12) 0%, rgba(5, 111, 145, 0.08) 45%, transparent 72%) !important;
}

/* Extra mid shapes via hero-grid layer (reuse empty grid as shape layer) */
html[data-theme="light"] .page-pts .pts-hb .pts-hero-grid {
  display: block !important;
  opacity: 1 !important;
  z-index: 0 !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  background:
    radial-gradient(ellipse 40% 35% at 28% 70%, rgba(5, 111, 145, 0.1) 0%, transparent 65%),
    radial-gradient(ellipse 30% 28% at 6% 55%, rgba(68, 200, 245, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 35% 30% at 40% 12%, rgba(5, 111, 145, 0.07) 0%, transparent 62%) !important;
}

/* Keep globe clean — no glow wash behind it */
html[data-theme="light"] .page-pts .pts-hb .hs-globe-sphere {
  box-shadow:
    inset -20px 0 40px rgba(0, 0, 0, 0.2),
    inset 10px 0 20px rgba(255, 255, 255, 0.15) !important;
}
html[data-theme="light"] .page-pts .pts-hb .hs-globe-orbit {
  filter: none !important;
  box-shadow: none !important;
}
html[data-theme="light"] .page-pts .pts-hb .hs-globe-fade {
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.75) 14%,
    rgba(255, 255, 255, 0.2) 32%,
    transparent 48%
  ) !important;
}

html[data-theme="light"] .page-pts .pts-hb .pts-hb-copy {
  position: relative;
  z-index: 2;
}

/* Light: Your Data. = #E2C107 */
html[data-theme="light"] .page-pts .pts-h2-amber,
html[data-theme="light"] .page-pts .pts-h2-stack .pts-h2-amber,
html[data-theme="light"] .page-pts span.pts-h2-amber[data-pts-type] {
  color: #E2C107 !important;
  -webkit-text-fill-color: #E2C107 !important;
}

/* Light banner shapes: visible #44C8F5 gradients */
html[data-theme="light"] .page-pts .pts-hb::before {
  background: radial-gradient(
    circle,
    rgba(68, 200, 245, 0.42) 0%,
    rgba(68, 200, 245, 0.18) 40%,
    transparent 72%
  ) !important;
  filter: blur(2px) !important;
}

html[data-theme="light"] .page-pts .pts-hb::after {
  background: radial-gradient(
    circle,
    rgba(68, 200, 245, 0.32) 0%,
    rgba(68, 200, 245, 0.12) 45%,
    transparent 72%
  ) !important;
  filter: blur(2px) !important;
}

html[data-theme="light"] .page-pts .pts-hb .pts-hero-grid {
  background:
    radial-gradient(ellipse 42% 38% at 26% 72%, rgba(68, 200, 245, 0.28) 0%, transparent 65%),
    radial-gradient(ellipse 34% 30% at 8% 52%, rgba(68, 200, 245, 0.34) 0%, transparent 62%),
    radial-gradient(ellipse 36% 32% at 38% 14%, rgba(68, 200, 245, 0.22) 0%, transparent 64%) !important;
  opacity: 1 !important;
}

/* Light banner #44C8F5 shapes: top-left + bottom-right */
html[data-theme="light"] .page-pts .pts-hb::before {
  width: min(58vw, 560px) !important;
  height: min(58vw, 560px) !important;
  left: -14% !important;
  top: -20% !important;
  right: auto !important;
  bottom: auto !important;
  background: radial-gradient(
    circle,
    rgba(68, 200, 245, 0.48) 0%,
    rgba(68, 200, 245, 0.22) 38%,
    transparent 70%
  ) !important;
  filter: blur(0px) !important;
}

html[data-theme="light"] .page-pts .pts-hb::after {
  width: min(55vw, 520px) !important;
  height: min(55vw, 520px) !important;
  left: auto !important;
  top: auto !important;
  right: -12% !important;
  bottom: -18% !important;
  background: radial-gradient(
    circle,
    rgba(68, 200, 245, 0.44) 0%,
    rgba(68, 200, 245, 0.18) 40%,
    transparent 70%
  ) !important;
  filter: blur(0px) !important;
}

html[data-theme="light"] .page-pts .pts-hb .pts-hero-grid {
  background:
    radial-gradient(ellipse 38% 34% at 8% 12%, rgba(68, 200, 245, 0.3) 0%, transparent 62%),
    radial-gradient(ellipse 40% 36% at 92% 88%, rgba(68, 200, 245, 0.32) 0%, transparent 62%),
    radial-gradient(ellipse 28% 26% at 18% 78%, rgba(68, 200, 245, 0.16) 0%, transparent 65%) !important;
}

/* Light: alternate sections — pure white / #44C8F5 gradient wash */
html[data-theme="light"] .page-pts .pts-board.pts-bg-plain,
html[data-theme="light"] .page-pts .pts-section.pts-bg-plain {
  background-color: #ffffff !important;
  background-image: none !important;
}

html[data-theme="light"] .page-pts .pts-board.pts-bg-wash,
html[data-theme="light"] .page-pts .pts-section.pts-bg-wash {
  position: relative !important;
  isolation: isolate;
  overflow: hidden !important;
  background-color: #ffffff !important;
  background-image:
    radial-gradient(ellipse 55% 50% at 0% 0%, rgba(68, 200, 245, 0.38) 0%, transparent 58%),
    radial-gradient(ellipse 50% 48% at 100% 100%, rgba(68, 200, 245, 0.34) 0%, transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%) !important;
}

html[data-theme="light"] .page-pts .pts-board.pts-bg-wash > .wrap,
html[data-theme="light"] .page-pts .pts-section.pts-bg-wash > .wrap {
  position: relative;
  z-index: 1;
}

/* Remove teal caption boxes → simple 14.5px text */
html[data-theme="light"] .page-pts .pts-shot-grid figcaption,
html[data-theme="light"] .page-pts .pts-demo-media figcaption,
html[data-theme="light"] .page-pts .pts-media figcaption,
html[data-theme="light"] .page-pts .pts-tab-media figcaption,
html[data-theme="light"] .page-pts :is(.pts-media, .pts-shot-grid, .pts-tab-media, .pts-demo-media) figcaption,
html[data-theme="light"] .page-pts .pts-feat-phone figcaption,
html[data-theme="light"] .page-pts :is(.pts-media, .pts-shot-grid, .pts-tab-media, .pts-demo-media, .pts-story, .pts-feat-phone) figcaption b {
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0.35rem 0 0 !important;
  margin: 0.45rem auto 0 !important;
  width: 100% !important;
  max-width: none !important;
  text-align: center !important;
  text-transform: none !important;
  font-family: "IBM Plex Sans", "Work Sans", system-ui, sans-serif !important;
  font-size: 14.5px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  color: #2C3948 !important;
  -webkit-text-fill-color: #2C3948 !important;
}

html[data-theme="dark"] .page-pts .pts-shot-grid figcaption,
html[data-theme="dark"] .page-pts .pts-demo-media figcaption,
html[data-theme="dark"] .page-pts .pts-media figcaption {
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0.35rem 0 0 !important;
  font-size: 14.5px !important;
  font-weight: 500 !important;
  text-align: center !important;
  color: #c5d3df !important;
}

/* Fix row icons — clean stroke, no blue pad boxes */
.page-pts .pts-ico {
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  width: 2.4rem !important;
  height: 2.4rem !important;
  display: grid !important;
  place-items: center !important;
  color: #056F91 !important;
}

.page-pts .pts-ico svg {
  width: 1.65rem !important;
  height: 1.65rem !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.6 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

html[data-theme="light"] .page-pts .pts-ico {
  color: #056F91 !important;
  background: none !important;
}

html[data-theme="dark"] .page-pts .pts-ico {
  color: #44C8F5 !important;
  background: none !important;
}

.page-pts .pts-row:hover .pts-ico {
  background: none !important;
  transform: none !important;
}

/* Home banner: strong #44C8F5 gradients visible (top-left + bottom-right) */
html[data-theme="light"] .page-pts .pts-hb,
html[data-theme="light"] .page-pts .pts-hero-brand {
  background-color: #ffffff !important;
  background-image:
    radial-gradient(ellipse 58% 52% at 0% 0%, rgba(68, 200, 245, 0.55) 0%, rgba(68, 200, 245, 0.18) 42%, transparent 68%),
    radial-gradient(ellipse 52% 48% at 100% 100%, rgba(68, 200, 245, 0.48) 0%, rgba(68, 200, 245, 0.14) 40%, transparent 68%),
    linear-gradient(180deg, #ffffff 0%, #f8fcff 100%) !important;
}

html[data-theme="light"] .page-pts .pts-hb::before {
  content: "" !important;
  display: block !important;
  width: min(62vw, 620px) !important;
  height: min(62vw, 620px) !important;
  left: -16% !important;
  top: -22% !important;
  right: auto !important;
  bottom: auto !important;
  background: radial-gradient(circle, rgba(68, 200, 245, 0.5) 0%, rgba(68, 200, 245, 0.16) 45%, transparent 70%) !important;
  opacity: 1 !important;
  filter: none !important;
  z-index: 0 !important;
}

html[data-theme="light"] .page-pts .pts-hb::after {
  content: "" !important;
  display: block !important;
  width: min(58vw, 560px) !important;
  height: min(58vw, 560px) !important;
  left: auto !important;
  top: auto !important;
  right: -14% !important;
  bottom: -20% !important;
  background: radial-gradient(circle, rgba(68, 200, 245, 0.46) 0%, rgba(68, 200, 245, 0.14) 45%, transparent 70%) !important;
  opacity: 1 !important;
  filter: none !important;
  z-index: 0 !important;
}

html[data-theme="light"] .page-pts .pts-hb .pts-hero-grid {
  display: block !important;
  opacity: 1 !important;
  background:
    radial-gradient(ellipse 36% 32% at 6% 10%, rgba(68, 200, 245, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 40% 36% at 94% 90%, rgba(68, 200, 245, 0.32) 0%, transparent 60%) !important;
}

html[data-theme="light"] .page-pts .pts-hb .pts-hb-copy {
  z-index: 2 !important;
}
html[data-theme="light"] .page-pts .pts-hb .hs-globe-wrap {
  z-index: 1 !important;
}

/* AI hub: bigger + dark mode fade lines inside circle */
.page-pts .pts-ai-hub {
  width: min(560px, 100%) !important;
  height: min(560px, 88vw) !important;
  margin: 2.75rem auto 0.5rem !important;
}

.page-pts .pts-ai-core {
  inset: 32% !important;
  font-size: clamp(2.1rem, 4vw, 2.75rem) !important;
  z-index: 2 !important;
}

.page-pts .pts-ai-sat {
  font-size: 0.95rem !important;
  padding: 0.55rem 1.1rem !important;
  z-index: 2 !important;
}

.page-pts .pts-ai-lines {
  z-index: 1 !important;
}

/* Dark: fade the spoke lines (esp. through black AI circle) */
html[data-theme="dark"] .page-pts .pts-ai-lines line {
  stroke: #44C8F5 !important;
  stroke-width: 1.35 !important;
  opacity: 0.18 !important;
}

html[data-theme="dark"] .page-pts .pts-ai-core {
  background: #050b14 !important;
  color: #44C8F5 !important;
  border-color: #44C8F5 !important;
  box-shadow:
    0 0 0 1px rgba(68, 200, 245, 0.35),
    0 0 0 32px rgba(68, 200, 245, 0.05),
    0 0 48px rgba(68, 200, 245, 0.2) !important;
}

html[data-theme="light"] .page-pts .pts-ai-lines line {
  stroke: #44C8F5 !important;
  opacity: 0.55 !important;
}

/* "More than maps." → yellow #E2C107, no blue box */
.page-pts .pts-h2 em.is-gold,
.page-pts .pts-ai-wrap .pts-h2 em.is-gold,
.page-pts .pts-ai-wrap .pts-h2 em,
html[data-theme="light"] .page-pts .pts-h2 em.is-gold,
html[data-theme="light"] .page-pts .pts-h2 em,
html[data-theme="dark"] .page-pts .pts-h2 em.is-gold,
html[data-theme="dark"] .page-pts .pts-board .pts-h2 em.is-gold,
html[data-theme="dark"] .page-pts .pts-ai-wrap .pts-h2 em,
html[data-theme="light"] .page-pts .pts-board .pts-h2 em {
  color: #E2C107 !important;
  -webkit-text-fill-color: #E2C107 !important;
  background: none !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  font-style: normal !important;
  text-shadow: none !important;
}

/* Home banner light: soft sky gradient like reference (white → soft #44C8F5) */
html[data-theme="light"] .page-pts .pts-hb,
html[data-theme="light"] .page-pts .pts-hero-brand {
  background-color: #ffffff !important;
  background-image: linear-gradient(
    180deg,
    #ffffff 0%,
    #ffffff 28%,
    #f3faff 55%,
    #e5f6fd 78%,
    #d4f0fb 100%
  ) !important;
}

/* Kill harsh corner blob shapes on banner */
html[data-theme="light"] .page-pts .pts-hb::before,
html[data-theme="light"] .page-pts .pts-hb::after {
  display: none !important;
  content: none !important;
  background: none !important;
  opacity: 0 !important;
}

html[data-theme="light"] .page-pts .pts-hb .pts-hero-grid {
  display: none !important;
  background: none !important;
  opacity: 0 !important;
}

/* Soft left fade for text, keep globe clean */
html[data-theme="light"] .page-pts .pts-hb .hs-globe-fade {
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.85) 12%,
    rgba(243, 250, 255, 0.35) 28%,
    transparent 48%
  ) !important;
}

html[data-theme="light"] .page-pts .pts-hb .hs-globe-sphere {
  box-shadow:
    inset -22px 0 40px rgba(0, 0, 0, 0.22),
    0 0 40px rgba(68, 200, 245, 0.12) !important;
}

/* Alternating wash sections: same soft sky style (not corner blobs) */
html[data-theme="light"] .page-pts .pts-board.pts-bg-wash,
html[data-theme="light"] .page-pts .pts-section.pts-bg-wash {
  background-color: #ffffff !important;
  background-image: linear-gradient(
    180deg,
    #ffffff 0%,
    #f5fbfe 40%,
    #e8f6fc 75%,
    #dcf2fb 100%
  ) !important;
}

html[data-theme="light"] .page-pts .pts-board.pts-bg-plain {
  background: #ffffff !important;
  background-image: none !important;
}

/* Only "maps." is yellow; rest of heading stays normal/teal accents */
.page-pts .pts-ai-wrap .pts-h2 {
  color: inherit;
}
html[data-theme="light"] .page-pts .pts-ai-wrap .pts-h2 {
  color: #10151c !important;
}
html[data-theme="dark"] .page-pts .pts-ai-wrap .pts-h2 {
  color: #f2f6fa !important;
}

.page-pts .pts-ai-wrap .pts-h2 em.is-gold,
html[data-theme="light"] .page-pts .pts-ai-wrap .pts-h2 em.is-gold,
html[data-theme="dark"] .page-pts .pts-ai-wrap .pts-h2 em.is-gold {
  color: #E2C107 !important;
  -webkit-text-fill-color: #E2C107 !important;
  background: none !important;
  font-style: normal !important;
}

/* Do NOT force whole board h2 em to yellow */
html[data-theme="light"] .page-pts .pts-board .pts-h2 em:not(.is-gold),
html[data-theme="dark"] .page-pts .pts-board .pts-h2 em:not(.is-gold) {
  color: #44C8F5 !important;
  -webkit-text-fill-color: #44C8F5 !important;
  background: none !important;
}

/* Home banner: soft #44C8F5 color gradient at TOP as well as bottom */
html[data-theme="light"] .page-pts .pts-hb,
html[data-theme="light"] .page-pts .pts-hero-brand {
  background-color: #ffffff !important;
  background-image:
    radial-gradient(ellipse 70% 55% at 50% -5%, rgba(68, 200, 245, 0.42) 0%, rgba(68, 200, 245, 0.14) 45%, transparent 70%),
    linear-gradient(
      180deg,
      #e8f7fd 0%,
      #f5fbfe 22%,
      #ffffff 48%,
      #f3faff 72%,
      #dcf2fb 100%
    ) !important;
}

html[data-theme="light"] .page-pts .pts-hb .hs-globe-fade {
  background: linear-gradient(
    90deg,
    #eef9fd 0%,
    rgba(245, 251, 254, 0.9) 10%,
    rgba(255, 255, 255, 0.35) 28%,
    transparent 48%
  ) !important;
}

/* Header: no border line; nav 15px / 600 */
.page-pts .pts-header.site-header,
html[data-theme="light"] .page-pts .pts-header.site-header,
html[data-theme="dark"] .page-pts .pts-header.site-header {
  border: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

.page-pts .pts-header .brand-text,
.page-pts .pts-header .nav-link,
.page-pts .pts-header .nav-drop-btn {
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  text-decoration: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

html[data-theme="dark"] .page-pts .pts-header .brand-text,
html[data-theme="dark"] .page-pts .pts-header .nav-link,
html[data-theme="dark"] .page-pts .pts-header .nav-drop-btn {
  color: #ffffff !important;
}

html[data-theme="dark"] .page-pts .pts-header .nav-link.active {
  color: #ffffff !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

html[data-theme="light"] .page-pts .pts-header .brand-text,
html[data-theme="light"] .page-pts .pts-header .nav-link,
html[data-theme="light"] .page-pts .pts-header .nav-drop-btn {
  color: #10151c !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}

html[data-theme="light"] .page-pts .pts-header .nav-link.active {
  border-bottom: 0 !important;
  color: #056F91 !important;
}

/* Kill leftover teal caption boxes everywhere → plain text */
html[data-theme="light"] .page-pts .pts-shot-grid figcaption,
html[data-theme="light"] .page-pts .pts-shot-grid figcaption b,
html[data-theme="dark"] .page-pts .pts-shot-grid figcaption,
html[data-theme="dark"] .page-pts .pts-shot-grid figcaption b {
  display: block !important;
  background: none !important;
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0.4rem 0.25rem 0 !important;
  margin: 0.4rem auto 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  text-align: center !important;
  text-transform: none !important;
  font-size: 14.5px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
}

html[data-theme="light"] .page-pts .pts-shot-grid figcaption,
html[data-theme="light"] .page-pts .pts-shot-grid figcaption b {
  color: #2C3948 !important;
  -webkit-text-fill-color: #2C3948 !important;
}

html[data-theme="dark"] .page-pts .pts-shot-grid figcaption,
html[data-theme="dark"] .page-pts .pts-shot-grid figcaption b {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 15px !important;
}

/* Remove borders from common card/panels that still show lines */
html[data-theme="light"] .page-pts .pts-flow-card,
html[data-theme="light"] .page-pts .pts-fcard,
html[data-theme="dark"] .page-pts .pts-flow-card {
  border: 0 !important;
  box-shadow: none !important;
}

.page-pts .hs-anchor,
html[data-theme="light"] .page-pts .hs-anchor,
html[data-theme="dark"] .page-pts .hs-anchor {
  border: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

/* pts-story captions: kill teal boxes (Video Services / Protocols) */
html[data-theme="light"] .page-pts .pts-story figcaption,
html[data-theme="light"] .page-pts .pts-story-2 figcaption,
html[data-theme="light"] .page-pts .pts-story figcaption b,
html[data-theme="light"] .page-pts .pts-story-2 figcaption b,
html[data-theme="dark"] .page-pts .pts-story figcaption,
html[data-theme="dark"] .page-pts .pts-story-2 figcaption,
html[data-theme="dark"] .page-pts .pts-story figcaption b,
html[data-theme="dark"] .page-pts .pts-story-2 figcaption b {
  display: block !important;
  background: none !important;
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0.4rem 0.2rem 0 !important;
  margin: 0.45rem auto 0 !important;
  width: 100% !important;
  max-width: none !important;
  text-align: center !important;
  text-transform: none !important;
  letter-spacing: 0.01em !important;
  font-family: "IBM Plex Sans", "Work Sans", system-ui, sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
}

html[data-theme="light"] .page-pts .pts-story figcaption,
html[data-theme="light"] .page-pts .pts-story-2 figcaption,
html[data-theme="light"] .page-pts .pts-story figcaption b,
html[data-theme="light"] .page-pts .pts-story-2 figcaption b {
  color: #2C3948 !important;
  -webkit-text-fill-color: #2C3948 !important;
}

html[data-theme="dark"] .page-pts .pts-story figcaption,
html[data-theme="dark"] .page-pts .pts-story-2 figcaption,
html[data-theme="dark"] .page-pts .pts-story figcaption b,
html[data-theme="dark"] .page-pts .pts-story-2 figcaption b {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

html[data-theme="light"] .page-pts .pts-story figure,
html[data-theme="light"] .page-pts .pts-story-2 figure,
html[data-theme="dark"] .page-pts .pts-story figure,
html[data-theme="dark"] .page-pts .pts-story-2 figure {
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* feat-phone caption boxes too */
html[data-theme="light"] .page-pts .pts-feat-phone figcaption,
html[data-theme="dark"] .page-pts .pts-feat-phone figcaption {
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-transform: none !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}

html[data-theme="light"] .page-pts .pts-feat-phone figcaption {
  color: #2C3948 !important;
}
html[data-theme="dark"] .page-pts .pts-feat-phone figcaption {
  color: #ffffff !important;
}

/* Section edges: no border lines + soft blend wash ↔ plain */
.page-pts .pts-board,
.page-pts .pts-section,
html[data-theme="light"] .page-pts .pts-board,
html[data-theme="light"] .page-pts .pts-section,
html[data-theme="dark"] .page-pts .pts-board,
html[data-theme="dark"] .page-pts .pts-section {
  border: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

/* Soft sky wash: white at both edges so it blends into adjacent plain sections */
html[data-theme="light"] .page-pts .pts-board.pts-bg-wash,
html[data-theme="light"] .page-pts .pts-section.pts-bg-wash {
  background-color: #ffffff !important;
  background-image: linear-gradient(
    180deg,
    #ffffff 0%,
    #f3fafd 22%,
    #e6f5fb 48%,
    #f3fafd 78%,
    #ffffff 100%
  ) !important;
}

html[data-theme="light"] .page-pts .pts-board.pts-bg-plain,
html[data-theme="light"] .page-pts .pts-section.pts-bg-plain {
  background: #ffffff !important;
  background-image: none !important;
  border: 0 !important;
}

/* Hero → first board: no hard cut */
html[data-theme="light"] .page-pts .pts-hb {
  border-bottom: 0 !important;
  box-shadow: none !important;
}

html[data-theme="light"] .page-pts .pts-hb + .pts-board,
html[data-theme="light"] .page-pts .pts-hb + section {
  border-top: 0 !important;
}

/* Bigger, consistent icons — AI rows + COP bag tiles */
.page-pts .pts-ico,
html[data-theme="light"] .page-pts .pts-ico,
html[data-theme="dark"] .page-pts .pts-ico,
.page-pts .pts-row:hover .pts-ico,
html[data-theme="light"] .page-pts .pts-row:hover .pts-ico {
  width: 3.4rem !important;
  height: 3.4rem !important;
  min-width: 3.4rem !important;
  flex-shrink: 0 !important;
  display: grid !important;
  place-items: center !important;
  background: none !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

html[data-theme="light"] .page-pts .pts-ico {
  color: #056F91 !important;
}
html[data-theme="dark"] .page-pts .pts-ico {
  color: #44C8F5 !important;
}

.page-pts .pts-ico svg {
  width: 2.35rem !important;
  height: 2.35rem !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.55 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

/* COP bag feature tiles — much larger icons */
.page-pts .pts-copbag-tiles li {
  gap: 0.7rem !important;
  min-height: 8.4rem !important;
  padding: 1.1rem 0.65rem 1rem !important;
}

.page-pts .pts-copbag-tiles svg {
  width: 2.75rem !important;
  height: 2.75rem !important;
  flex-shrink: 0 !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.45 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.page-pts .pts-copbag-ico {
  width: 3rem !important;
  height: 3rem !important;
}

.page-pts .pts-copbag-ico svg {
  width: 1.85rem !important;
  height: 1.85rem !important;
}

html[data-theme="light"] .page-pts .pts-copbag-tiles li {
  color: #8a6a12 !important;
}

html[data-theme="light"] .page-pts .pts-copbag-tiles svg {
  color: #8a6a12 !important;
  stroke: currentColor !important;
}

/* === TAK H2: 42px solid gold — NO text gradient === */
.page-pts .pts-tkhero-h2,
html[data-theme="light"] .page-pts .pts-tkhero-h2,
html[data-theme="dark"] .page-pts .pts-tkhero-h2 {
  font-family: Inter, "IBM Plex Sans", system-ui, sans-serif !important;
  font-weight: 800 !important;
  font-size: 42px !important;
  line-height: 1.2 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  text-align: center !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  color: #eed74d !important;
  -webkit-text-fill-color: #eed74d !important;
}

@media (max-width: 900px) {
  .page-pts .pts-tkhero-h2,
  html[data-theme="light"] .page-pts .pts-tkhero-h2,
  html[data-theme="dark"] .page-pts .pts-tkhero-h2 {
    font-size: clamp(26px, 5.2vw, 42px) !important;
    white-space: normal !important;
  }
}

/* Compact kit line in banner */
.page-pts .pts-tkhero-kitline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 0.55rem;
  margin: 0.85rem auto 0;
  padding: 0;
  list-style: none;
  max-width: 42rem;
}
.page-pts .pts-tkhero-kitline li {
  margin: 0;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(68, 200, 245, 0.35);
  color: #44C8F5;
  background: rgba(68, 200, 245, 0.08);
}
html[data-theme="light"] .page-pts .pts-tkhero-kitline li {
  border-color: rgba(5, 111, 145, 0.28);
  color: #056F91 !important;
  background: rgba(5, 111, 145, 0.06);
}

/* Kit section: quieter — no hard borders, less highlight */
html[data-theme="light"] .page-pts .pts-board.pts-kit,
html[data-theme="dark"] .page-pts .pts-board.pts-kit {
  border: 0 !important;
  box-shadow: none !important;
}
.page-pts .pts-kit-points li,
html[data-theme="light"] .page-pts .pts-kit-points li {
  border: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  padding: 0.65rem 0 !important;
}
.page-pts .pts-kit-num {
  width: 2.9rem !important;
  height: 2.9rem !important;
  font-size: 0.85rem !important;
  border-color: #056F91 !important;
  color: #056F91 !important;
  background: linear-gradient(160deg, rgba(5,111,145,0.12), rgba(5,111,145,0.04)) !important;
}
html[data-theme="dark"] .page-pts .pts-kit-num {
  border-color: #44C8F5 !important;
  color: #44C8F5 !important;
  background: linear-gradient(160deg, rgba(68,200,245,0.14), rgba(68,200,245,0.04)) !important;
}
html[data-theme="light"] .page-pts .pts-kit .pts-h2 em {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
}
html[data-theme="light"] .page-pts .pts-kit-lead,
html[data-theme="light"] .page-pts .pts-eud-foot {
  color: #5b6b7c !important;
}
html[data-theme="light"] .page-pts .pts-kit-points strong {
  color: #1c2430 !important;
}

/* Light mode: ALL blue/cyan accents → #056F91 (+ soft gradient on em) */
html[data-theme="light"] .page-pts .pts-h2 em,
html[data-theme="light"] .page-pts #webtak .pts-h2 em,
html[data-theme="light"] .page-pts .pts-lead a,
html[data-theme="light"] .page-pts .pts-kicker,
html[data-theme="light"] .page-pts .pts-rotate,
html[data-theme="light"] .page-pts .pts-tkhero-rotate .is-on,
html[data-theme="light"] .page-pts .pts-tkhero-modes,
html[data-theme="light"] .page-pts .pts-node-name,
html[data-theme="light"] .page-pts .pts-chain-legend strong {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
}

html[data-theme="light"] .page-pts .pts-h2 em {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  font-style: normal !important;
}

/* WebTAK section: clean readable fonts (no rainbow mess) */
html[data-theme="light"] .page-pts #webtak .pts-h-marti,
html[data-theme="light"] .page-pts #webtak .pts-h-collab,
html[data-theme="light"] .page-pts #webtak .pts-h-cop,
html[data-theme="light"] .page-pts #webtak .pts-icon-card h3,
html[data-theme="light"] .page-pts #webtak .pts-icon-card.is-teal h3,
html[data-theme="light"] .page-pts #webtak .pts-icon-card.is-blue h3,
html[data-theme="light"] .page-pts #webtak .pts-icon-card.is-gold h3,
html[data-theme="light"] .page-pts #webtak .pts-tab-panel h3,
html[data-theme="light"] .page-pts #panel-marti h3,
html[data-theme="light"] .page-pts #panel-collab h3,
html[data-theme="light"] .page-pts #panel-cop h3 {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
  font-family: Inter, "IBM Plex Sans", system-ui, sans-serif !important;
  font-weight: 700 !important;
}

html[data-theme="light"] .page-pts #webtak .pts-icon-card-svg,
html[data-theme="light"] .page-pts #webtak .pts-icon-card.is-teal .pts-icon-card-svg,
html[data-theme="light"] .page-pts #webtak .pts-icon-card.is-blue .pts-icon-card-svg,
html[data-theme="light"] .page-pts #webtak .pts-icon-card.is-gold .pts-icon-card-svg {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
  border-color: rgba(5, 111, 145, 0.3) !important;
  background: linear-gradient(160deg, rgba(5,111,145,0.1), rgba(5,111,145,0.03)) !important;
}

html[data-theme="light"] .page-pts #webtak .pts-icon-card {
  background: #ffffff !important;
  border: 1px solid rgba(5, 111, 145, 0.16) !important;
  box-shadow: none !important;
}
html[data-theme="light"] .page-pts #webtak .pts-icon-card.is-active {
  border-color: rgba(5, 111, 145, 0.4) !important;
  box-shadow: none !important;
}

html[data-theme="light"] .page-pts #webtak .pts-icon-card p,
html[data-theme="light"] .page-pts #webtak .pts-lead,
html[data-theme="light"] .page-pts #webtak .pts-tab-panel p {
  color: #3d4a5c !important;
  -webkit-text-fill-color: #3d4a5c !important;
}

/* Tree list: one body color (was mixed blue + charcoal) */
html[data-theme="light"] .page-pts #webtak .pts-tree li,
html[data-theme="light"] .page-pts .pts-tab-panel .pts-tree li {
  color: #2C3948 !important;
  -webkit-text-fill-color: #2C3948 !important;
  font-family: "IBM Plex Sans", sans-serif !important;
  font-weight: 500 !important;
}
html[data-theme="light"] .page-pts #webtak .pts-tree li::before,
html[data-theme="light"] .page-pts .pts-tab-panel .pts-tree li::before {
  background-color: #056F91 !important;
}

html[data-theme="light"] .page-pts #webtak .pts-h2 {
  color: #10151c !important;
}
html[data-theme="light"] .page-pts #webtak .pts-chip-row li {
  color: #056F91 !important;
  border-color: rgba(5, 111, 145, 0.22) !important;
  background: rgba(5, 111, 145, 0.07) !important;
}
html[data-theme="light"] .page-pts #webtak .pts-chip-row li.is-gold {
  color: #8a6a12 !important;
  border-color: rgba(184, 150, 46, 0.35) !important;
  background: rgba(238, 215, 77, 0.18) !important;
}

/* "More than maps." whole phrase yellow — NO blue pad */
.page-pts .pts-ai-wrap .pts-h2 em.is-gold,
html[data-theme="light"] .page-pts .pts-ai-wrap .pts-h2 em.is-gold,
html[data-theme="dark"] .page-pts .pts-ai-wrap .pts-h2 em.is-gold {
  color: #E2C107 !important;
  -webkit-text-fill-color: #E2C107 !important;
  background: none !important;
  background-image: none !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  font-style: normal !important;
}

/* Do NOT force every board em to yellow — only .is-gold */
html[data-theme="light"] .page-pts .pts-board .pts-h2 em:not(.is-gold) {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
}

/* AI hub satellites: yellow, shorter height, wider + caption under */
.page-pts .pts-ai-sat,
html[data-theme="light"] .page-pts .pts-ai-sat,
html[data-theme="dark"] .page-pts .pts-ai-sat {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.12rem !important;
  min-width: 7.2rem !important;
  padding: 0.32rem 1.35rem 0.38rem !important;
  border-radius: 999px !important;
  border: 1.5px solid #E2C107 !important;
  background: rgba(8, 14, 22, 0.92) !important;
  color: #E2C107 !important;
  box-shadow: none !important;
  line-height: 1.15 !important;
  text-align: center !important;
}

html[data-theme="light"] .page-pts .pts-ai-sat {
  background: #ffffff !important;
  border-color: #E2C107 !important;
  color: #b8940a !important;
  box-shadow: 0 4px 14px rgba(226, 193, 7, 0.12) !important;
}

.page-pts .pts-ai-sat strong {
  display: block !important;
  font-family: Inter, "IBM Plex Sans", system-ui, sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: inherit !important;
  line-height: 1.1 !important;
}

.page-pts .pts-ai-sat small {
  display: block !important;
  font-family: "IBM Plex Sans", sans-serif !important;
  font-size: 0.62rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  opacity: 0.88 !important;
  color: inherit !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

html[data-theme="dark"] .page-pts .pts-ai-lines line {
  stroke: #E2C107 !important;
  opacity: 0.22 !important;
}
html[data-theme="light"] .page-pts .pts-ai-lines line {
  stroke: #E2C107 !important;
  opacity: 0.45 !important;
}

/* Force Marti / Collaboration / Browser COP + related blues → #056F91 */
html[data-theme="light"] .page-pts .pts-h-marti,
html[data-theme="light"] .page-pts .pts-h-collab,
html[data-theme="light"] .page-pts .pts-h-cop,
html[data-theme="light"] .page-pts #webtak .pts-h-marti,
html[data-theme="light"] .page-pts #webtak .pts-h-collab,
html[data-theme="light"] .page-pts #webtak .pts-h-cop,
html[data-theme="light"] .page-pts #webtak .pts-icon-card h3,
html[data-theme="light"] .page-pts #webtak .pts-icon-card.is-teal h3,
html[data-theme="light"] .page-pts #webtak .pts-icon-card.is-blue h3,
html[data-theme="light"] .page-pts #webtak .pts-icon-card.is-gold h3,
html[data-theme="light"] .page-pts #panel-marti h3,
html[data-theme="light"] .page-pts #panel-collab h3,
html[data-theme="light"] .page-pts #panel-cop h3,
html[data-theme="light"] .page-pts #panel-marti > .pts-tab-split > div > h3,
html[data-theme="light"] .page-pts #panel-collab > .pts-tab-split > div > h3,
html[data-theme="light"] .page-pts #panel-cop > .pts-tab-split > div > h3,
html[data-theme="light"] .page-pts .pts-tab-panel h3,
html[data-theme="light"] .page-pts .pts-icon-card.is-teal h3,
html[data-theme="light"] .page-pts .pts-icon-card.is-blue h3,
html[data-theme="light"] .page-pts .pts-icon-card.is-gold h3,
html[data-theme="light"] .page-pts .pts-icon-card.is-teal .pts-icon-card-svg,
html[data-theme="light"] .page-pts .pts-icon-card.is-blue .pts-icon-card-svg,
html[data-theme="light"] .page-pts .pts-icon-card.is-gold .pts-icon-card-svg {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}

html[data-theme="light"] .page-pts h3.pts-h-marti,
html[data-theme="light"] .page-pts .pts-tab-split h3.pts-h-marti,
html[data-theme="light"] .page-pts #webtak h3.pts-h-marti,
html[data-theme="light"] .page-pts #panel-marti h3.pts-h-marti {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
}
/* Phone mockup: no card/panel bg behind device */
html[data-theme="light"] .page-pts .pts-tab-media,
html[data-theme="dark"] .page-pts .pts-tab-media,
html[data-theme="light"] .page-pts .pts-media,
html[data-theme="light"] .page-pts .pts-media-phone,
html[data-theme="light"] .page-pts .pts-demo-media,
html[data-theme="light"] .page-pts .pts-feat-phone,
html[data-theme="light"] .page-pts .pts-story figure,
html[data-theme="dark"] .page-pts .pts-media-phone,
html[data-theme="dark"] .page-pts .pts-feat-phone {
  background: none !important;
  background-color: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

html[data-theme="light"] .page-pts .pts-tab-media .ipm,
html[data-theme="light"] .page-pts .pts-media .ipm,
html[data-theme="light"] .page-pts .pts-demo-media .ipm,
html[data-theme="light"] .page-pts .pts-feat-phone .ipm,
html[data-theme="dark"] .page-pts .pts-tab-media .ipm,
.page-pts .pts-tab-media .ipm,
.page-pts .ipm {
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

html[data-theme="light"] .page-pts .pts-tab-media img,
html[data-theme="light"] .page-pts .pts-media-phone img {
  background: transparent !important;
  box-shadow: none !important;
}

/* Keep phone bezel; only kill outer panel behind mockup */
.page-pts .pts-tab-media .ipm,
.page-pts .pts-media .ipm,
.page-pts .pts-demo-media .ipm,
.page-pts .pts-feat-phone .ipm,
html[data-theme="light"] .page-pts .pts-tab-media .ipm,
html[data-theme="dark"] .page-pts .pts-tab-media .ipm {
  background: #0d0d0d !important;
  box-shadow: none !important;
}
html[data-theme="dark"] .page-pts .ipm {
  background:
    linear-gradient(
      145deg,
      #d4d8de 0%,
      #9aa1a9 18%,
      #5c636b 42%,
      #2e3339 68%,
      #1a1e23 100%
    ) !important;
  box-shadow: none !important;
}

/* AI expand section: tighter spacing + soft sky gradient */
html[data-theme="light"] .page-pts .pts-board.pts-ai-wrap,
html[data-theme="light"] .page-pts #expand.pts-ai-wrap {
  padding-top: 3.75rem !important;
  padding-bottom: 3.75rem !important;
  background-color: #ffffff !important;
  background-image: linear-gradient(
    180deg,
    #ffffff 0%,
    #f3fafd 28%,
    #e6f5fb 55%,
    #f3fafd 82%,
    #ffffff 100%
  ) !important;
  border: 0 !important;
}

html[data-theme="dark"] .page-pts .pts-board.pts-ai-wrap,
html[data-theme="dark"] .page-pts #expand.pts-ai-wrap {
  padding-top: 3.75rem !important;
  padding-bottom: 3.75rem !important;
  background-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(68, 200, 245, 0.06) 45%,
    transparent 100%
  ) !important;
}

.page-pts .pts-ai-wrap .pts-lead {
  margin-top: 0.35rem !important;
  margin-bottom: 0.85rem !important;
}

.page-pts .pts-ai-wrap .pts-h2 {
  margin-bottom: 0.45rem !important;
}

.page-pts .pts-ai-wrap .pts-kicker,
.page-pts .pts-ai-wrap .pts-pill {
  margin-bottom: 0.45rem !important;
}

.page-pts .pts-ai-hub {
  margin-top: 0.85rem !important;
  margin-bottom: 1.25rem !important;
  height: min(340px, 58vw) !important;
  width: min(360px, 100%) !important;
}

.page-pts .pts-ai-wrap .pts-rows {
  margin-top: 0.75rem !important;
}

.page-pts .pts-ai-wrap .pts-shot-grid {
  margin-top: 1.5rem !important;
}

/* ===== FINAL: light mode ALL blues → #056F91 (fonts + icons + wires) ===== */
html[data-theme="light"] .page-pts {
  --pts-cyan: #056F91;
}

html[data-theme="light"] .page-pts .pts-tkhero-rotate,
html[data-theme="light"] .page-pts .pts-tkhero-rotate span,
html[data-theme="light"] .page-pts .pts-tkhero-rotate span.is-on,
html[data-theme="light"] .page-pts .pts-tkhero-lead,
html[data-theme="light"] .page-pts .pts-tkhero-lead strong,
html[data-theme="light"] .page-pts .pts-tkhero-lead span,
html[data-theme="light"] .page-pts .pts-tkhero-modes,
html[data-theme="light"] .page-pts .pts-node-name,
html[data-theme="light"] .page-pts .pts-spoke--chain .pts-node-name,
html[data-theme="light"] .page-pts .pts-tkhero-kitline li,
html[data-theme="light"] .page-pts .pts-h2 em:not(.is-gold),
html[data-theme="light"] .page-pts .pts-ico,
html[data-theme="light"] .page-pts .pts-chip-row li:not(.is-gold) {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
}

html[data-theme="light"] .page-pts .pts-spoke--chain .pts-wire-core path,
html[data-theme="light"] .page-pts .pts-spoke--chain .pts-wire-core path.is-hub,
html[data-theme="light"] .page-pts .pts-spoke--chain .pts-wire-core path.is-wifi,
html[data-theme="light"] .page-pts .pts-spoke--chain .pts-wire-glow path {
  stroke: #056F91 !important;
}
html[data-theme="light"] .page-pts .pts-spoke--chain .pts-wire-glow path {
  stroke: rgba(5, 111, 145, 0.25) !important;
}
html[data-theme="light"] .page-pts .pts-spoke--chain .pts-spoke-node,
html[data-theme="light"] .page-pts .pts-spoke--chain .pts-spoke-node.is-hub-dot,
html[data-theme="light"] .page-pts .pts-spoke--chain .pts-spoke-node.is-gate {
  fill: #056F91 !important;
}

/* SVG icon strokes + solid fills */
html[data-theme="light"] .page-pts .pts-node-icon,
html[data-theme="light"] .page-pts .pts-node-icon svg,
html[data-theme="light"] .page-pts .pts-spoke--chain .pts-node-icon svg {
  color: #056F91 !important;
  stroke: #056F91 !important;
}
html[data-theme="light"] .page-pts .pts-node-icon svg *,
html[data-theme="light"] .page-pts .pts-spoke--chain .pts-node-icon svg path,
html[data-theme="light"] .page-pts .pts-spoke--chain .pts-node-icon svg circle,
html[data-theme="light"] .page-pts .pts-spoke--chain .pts-node-icon svg rect {
  stroke: #056F91 !important;
}
html[data-theme="light"] .page-pts .pts-node-icon.is-win svg path.solid,
html[data-theme="light"] .page-pts .pts-node-icon svg .logo.solid,
html[data-theme="light"] .page-pts .pts-node-icon svg circle[fill]:not([fill="none"]),
html[data-theme="light"] .page-pts .pts-spoke--chain .pts-node-icon svg .fill {
  fill: #056F91 !important;
}

/* Gradient stops inside banner icons → teal */
html[data-theme="light"] .page-pts #ptsIconGradWin stop,
html[data-theme="light"] .page-pts #ptsIconGradWeb stop,
html[data-theme="light"] .page-pts #ptsIconGradGis stop,
html[data-theme="light"] .page-pts .pts-node-icon linearGradient stop {
  stop-color: #056F91 !important;
}

/* Hub / router accents in light */
html[data-theme="light"] .page-pts .pts-chain-card,
html[data-theme="light"] .page-pts .pts-hex-pad {
  border-color: rgba(5, 111, 145, 0.35) !important;
}
html[data-theme="light"] .page-pts .pts-hex-pad {
  box-shadow: 0 0 0 2px #056F91, 0 8px 18px rgba(5, 111, 145, 0.14) !important;
}
html[data-theme="light"] .page-pts .pts-hex-pad svg { stroke: #056F91 !important; }
html[data-theme="light"] .page-pts .pts-hex-name { color: #056F91 !important; }

/* ===== RESTORE phone mockup frame (do NOT wipe .ipm bezel) ===== */
.page-pts .ipm,
.page-pts .ipm.ipm--hero,
html[data-theme="light"] .page-pts .ipm,
html[data-theme="light"] .page-pts .ipm.ipm--hero,
html[data-theme="dark"] .page-pts .ipm,
html[data-theme="light"] .page-pts .pts-feat-phone .ipm,
html[data-theme="light"] .page-pts .pts-feat-phone .ipm--hero,
html[data-theme="light"] .page-pts .pts-tab-media .ipm,
html[data-theme="light"] .page-pts .pts-media .ipm,
html[data-theme="light"] .page-pts .pts-demo-media .ipm,
html[data-theme="light"] .page-pts .pts-shot-grid .ipm,
html[data-theme="light"] .page-pts .pts-story .ipm,
html[data-theme="dark"] .page-pts .pts-feat-phone .ipm,
html[data-theme="dark"] .page-pts .pts-tab-media .ipm {
  --ipm-pad: 6px !important;
  --ipm-radius: 22px !important;
  --ipm-screen-radius: 16px !important;
  padding: var(--ipm-pad) !important;
  border: none !important;
  border-radius: var(--ipm-radius) !important;
  overflow: hidden !important;
  background: #1a1c1f !important;
  background-image: none !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18) !important;
}

html[data-theme="dark"] .page-pts .ipm,
html[data-theme="dark"] .page-pts .ipm.ipm--hero,
html[data-theme="dark"] .page-pts .pts-feat-phone .ipm {
  background:
    linear-gradient(
      145deg,
      #d4d8de 0%,
      #9aa1a9 18%,
      #5c636b 42%,
      #2e3339 68%,
      #1a1e23 100%
    ) !important;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35) !important;
}

.page-pts .ipm-screen,
html[data-theme="light"] .page-pts .ipm-screen,
html[data-theme="dark"] .page-pts .ipm-screen {
  border-radius: var(--ipm-screen-radius) !important;
  overflow: hidden !important;
  background: #ffffff !important;
}

/* Outer figure/panel stays transparent — only the device has frame */
html[data-theme="light"] .page-pts .pts-feat-phone,
html[data-theme="light"] .page-pts .pts-tab-media {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Force visible phone frame — Source data + tiles + all media phones */
html[data-theme="light"] .page-pts .pts-media-phone .ipm,
html[data-theme="light"] .page-pts .pts-shot-grid .ipm,
html[data-theme="light"] .page-pts #tiles .ipm,
html[data-theme="light"] .page-pts .pts-two-pad .ipm,
html[data-theme="dark"] .page-pts .pts-media-phone .ipm,
html[data-theme="dark"] .page-pts .pts-shot-grid .ipm,
html[data-theme="dark"] .page-pts #tiles .ipm,
.page-pts .pts-media-phone .ipm,
.page-pts #tiles .ipm {
  --ipm-pad: 8px !important;
  --ipm-radius: 26px !important;
  --ipm-screen-radius: 18px !important;
  max-width: 300px !important;
  padding: 8px !important;
  border-radius: 26px !important;
  background: #1a1c1f !important;
  background-color: #1a1c1f !important;
  background-image: none !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22) !important;
  overflow: hidden !important;
}

html[data-theme="dark"] .page-pts .pts-media-phone .ipm,
html[data-theme="dark"] .page-pts #tiles .ipm,
html[data-theme="dark"] .page-pts .pts-shot-grid .ipm {
  background:
    linear-gradient(
      145deg,
      #d4d8de 0%,
      #9aa1a9 18%,
      #5c636b 42%,
      #2e3339 68%,
      #1a1e23 100%
    ) !important;
}

.page-pts .pts-media-phone .ipm-screen,
.page-pts #tiles .ipm-screen,
.page-pts .pts-shot-grid .ipm-screen {
  border-radius: 18px !important;
  overflow: hidden !important;
  background: #000 !important;
}

.page-pts .pts-media-phone .ipm-screen img,
.page-pts .pts-media-phone .ipm-screen video,
.page-pts #tiles .ipm-screen img,
.page-pts #tiles .ipm-screen video,
.page-pts .pts-shot-grid .ipm-screen img,
.page-pts .pts-shot-grid .ipm-screen video {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 0 !important;
}

/* AI section: less top space + bigger hub */
html[data-theme="light"] .page-pts .pts-board.pts-ai-wrap,
html[data-theme="light"] .page-pts #expand.pts-ai-wrap,
html[data-theme="dark"] .page-pts .pts-board.pts-ai-wrap,
html[data-theme="dark"] .page-pts #expand.pts-ai-wrap {
  padding-top: 2.25rem !important;
  padding-bottom: 3.25rem !important;
}

.page-pts .pts-ai-wrap .pts-pill {
  margin-top: 0 !important;
  margin-bottom: 0.35rem !important;
}
.page-pts .pts-ai-wrap .pts-kicker {
  margin-top: 0 !important;
  margin-bottom: 0.35rem !important;
}
.page-pts .pts-ai-wrap .pts-h2 {
  margin-top: 0.15rem !important;
  margin-bottom: 0.35rem !important;
}
.page-pts .pts-ai-wrap .pts-lead {
  margin-top: 0.2rem !important;
  margin-bottom: 0.55rem !important;
}

.page-pts .pts-ai-hub {
  width: min(520px, 92vw) !important;
  height: min(500px, 88vw) !important;
  margin-top: 0.45rem !important;
  margin-bottom: 1.1rem !important;
}

.page-pts .pts-ai-core {
  inset: 30% !important;
  font-size: clamp(2.35rem, 4.5vw, 3rem) !important;
}

.page-pts .pts-ai-sat {
  min-width: 8rem !important;
  padding: 0.38rem 1.45rem 0.42rem !important;
}
.page-pts .pts-ai-sat strong {
  font-size: 1rem !important;
}
.page-pts .pts-ai-sat small {
  font-size: 0.68rem !important;
}

/* TAK light banner: soft sky gradient on STAGE (shape), not on text */
html[data-theme="light"] .page-pts .pts-copbag-stage {
  background-color: #ffffff !important;
  background-image: linear-gradient(
    180deg,
    #ffffff 0%,
    #f3fafd 35%,
    #e8f6fc 70%,
    #f7fbfe 100%
  ) !important;
}

/* Kill any leftover text-fill gradient on H2 */
html[data-theme="light"] .page-pts .pts-tkhero-h2,
html[data-theme="dark"] .page-pts .pts-tkhero-h2,
.page-pts .pts-tkhero-h2 {
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  color: #eed74d !important;
  -webkit-text-fill-color: #eed74d !important;
}

/* "Experience WebTAK on Mobile" — stacked title, Mobile = solid #056F91 */
.page-pts .pts-demo-title,
html[data-theme="light"] .page-pts .pts-demo-title,
html[data-theme="dark"] .page-pts .pts-demo-title {
  margin: 0.15rem 0 0.55rem !important;
  font-family: Inter, "IBM Plex Sans", system-ui, sans-serif !important;
  font-size: clamp(2.1rem, 4.2vw, 3.15rem) !important;
  font-weight: 800 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  color: #10151c !important;
  -webkit-text-fill-color: #10151c !important;
  background: none !important;
  background-image: none !important;
}

html[data-theme="dark"] .page-pts .pts-demo-title {
  color: #f2f6fa !important;
  -webkit-text-fill-color: #f2f6fa !important;
}

.page-pts .pts-demo-title em,
html[data-theme="light"] .page-pts .pts-demo-title em,
html[data-theme="dark"] .page-pts .pts-demo-title em {
  font-style: normal !important;
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}

.page-pts .pts-demo-sub {
  margin: 0 0 0.75rem !important;
  font-family: "IBM Plex Sans", sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  color: #3d4a5c !important;
}
html[data-theme="dark"] .page-pts .pts-demo-sub {
  color: #9eb6c8 !important;
}

.page-pts .pts-demo-reel-copy .pts-kicker {
  margin-bottom: 0.35rem !important;
}

.page-pts .pts-demo-reel {
  margin-top: 1.75rem !important;
  padding-top: 0.5rem !important;
}

/* REC overlay: higher, bigger, full frame (no L/R crop) */
.page-pts .pts-chain-phone {
  overflow: visible !important;
}

.page-pts .pts-chain-rec,
html[data-theme="light"] .page-pts .pts-chain-rec,
html[data-theme="dark"] .page-pts .pts-chain-rec {
  position: absolute !important;
  top: -4.6rem !important;
  left: 48% !important;
  right: auto !important;
  transform: translateX(-8%) !important;
  z-index: 8 !important;
  width: min(22rem, 52vw) !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 1.5px solid rgba(255, 255, 255, 0.92) !important;
  border-radius: 10px !important;
  overflow: visible !important;
  background: #0a0e14 !important;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(0, 0, 0, 0.35) !important;
}

.page-pts .pts-chain-rec img,
html[data-theme="light"] .page-pts .pts-chain-rec img,
html[data-theme="dark"] .page-pts .pts-chain-rec img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: 420 / 180 !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 8px !important;
  filter: none !important;
}

@media (max-width: 900px) {
  .page-pts .pts-chain-rec {
    top: -3.2rem !important;
    width: min(15rem, 58vw) !important;
  }
}

/* Parents must not clip REC when raised */
.page-pts .pts-spoke--chain,
.page-pts .pts-chain-core,
.page-pts .pts-tkhero,
.page-pts .pts-tkhero--connect,
.page-pts .pts-copbag-stage {
  overflow: visible !important;
}

/* AI feature rows: no white card — blend into section, dividers only */
.page-pts .pts-ai-wrap .pts-rows {
  margin-top: 1.25rem !important;
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

html[data-theme="dark"] .page-pts .pts-ai-wrap .pts-rows {
  background: transparent !important;
  box-shadow: none !important;
}

.page-pts .pts-ai-wrap .pts-row {
  display: grid !important;
  grid-template-columns: 4.5rem minmax(0, 1fr) minmax(10rem, 16rem) !important;
  gap: 1rem 1.25rem !important;
  align-items: center !important;
  justify-items: stretch !important;
  margin: 0 !important;
  padding: 1.15rem 1.35rem !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(5, 111, 145, 0.18) !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: left !important;
}

.page-pts .pts-ai-wrap .pts-row:last-child {
  border-bottom: 0 !important;
}

html[data-theme="dark"] .page-pts .pts-ai-wrap .pts-row {
  border-bottom-color: rgba(68, 200, 245, 0.18) !important;
}

/* Icon column: centered */
.page-pts .pts-ai-wrap .pts-row .pts-ico {
  justify-self: center !important;
  align-self: center !important;
  margin: 0 auto !important;
  width: 3.4rem !important;
  height: 3.4rem !important;
  display: grid !important;
  place-items: center !important;
}

.page-pts .pts-ai-wrap .pts-row > div {
  text-align: left !important;
}

.page-pts .pts-ai-wrap .pts-row .pts-spec {
  text-align: right !important;
  align-self: center !important;
}

@media (max-width: 860px) {
  .page-pts .pts-ai-wrap .pts-row {
    grid-template-columns: 3.6rem minmax(0, 1fr) !important;
  }
  .page-pts .pts-ai-wrap .pts-row .pts-spec {
    grid-column: 2 !important;
    text-align: left !important;
  }
}

/* AI wrap is centered for hub; rows content stay readable left */
.page-pts .pts-ai-wrap .pts-rows,
.page-pts .pts-ai-wrap .pts-row,
.page-pts .pts-ai-wrap .pts-row h3,
.page-pts .pts-ai-wrap .pts-row p {
  text-align: left !important;
}

/* Dark mode WebTAK cards + headings: consistent #7EE0FF */
html[data-theme="dark"] .page-pts #webtak .pts-h-marti,
html[data-theme="dark"] .page-pts #webtak .pts-h-collab,
html[data-theme="dark"] .page-pts #webtak .pts-h-cop,
html[data-theme="dark"] .page-pts #webtak .pts-icon-card h3,
html[data-theme="dark"] .page-pts #webtak .pts-icon-card.is-teal h3,
html[data-theme="dark"] .page-pts #webtak .pts-icon-card.is-blue h3,
html[data-theme="dark"] .page-pts #webtak .pts-icon-card.is-gold h3,
html[data-theme="dark"] .page-pts #panel-marti h3,
html[data-theme="dark"] .page-pts #panel-collab h3,
html[data-theme="dark"] .page-pts #panel-cop h3,
html[data-theme="dark"] .page-pts .pts-tab-panel h3,
html[data-theme="dark"] .page-pts .pts-h-marti,
html[data-theme="dark"] .page-pts .pts-h-collab,
html[data-theme="dark"] .page-pts .pts-h-cop {
  color: #7EE0FF !important;
  -webkit-text-fill-color: #7EE0FF !important;
  background: none !important;
  background-image: none !important;
  text-shadow: none !important;
}

html[data-theme="dark"] .page-pts #webtak .pts-icon-card,
html[data-theme="dark"] .page-pts #webtak .pts-icon-card.is-teal,
html[data-theme="dark"] .page-pts #webtak .pts-icon-card.is-blue,
html[data-theme="dark"] .page-pts #webtak .pts-icon-card.is-gold,
html[data-theme="dark"] .page-pts #webtak .pts-icon-card.is-active {
  background: rgba(14, 22, 34, 0.92) !important;
  background-image: none !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow: none !important;
}

html[data-theme="dark"] .page-pts #webtak .pts-icon-card.is-active {
  border-color: rgba(255, 255, 255, 0.28) !important;
}

html[data-theme="dark"] .page-pts #webtak .pts-icon-card-svg,
html[data-theme="dark"] .page-pts #webtak .pts-icon-card.is-teal .pts-icon-card-svg,
html[data-theme="dark"] .page-pts #webtak .pts-icon-card.is-blue .pts-icon-card-svg,
html[data-theme="dark"] .page-pts #webtak .pts-icon-card.is-gold .pts-icon-card-svg {
  color: #7EE0FF !important;
  -webkit-text-fill-color: #7EE0FF !important;
  background: rgba(126, 224, 255, 0.08) !important;
  border-color: rgba(126, 224, 255, 0.22) !important;
  box-shadow: none !important;
}

html[data-theme="dark"] .page-pts #webtak .pts-icon-card-svg svg,
html[data-theme="dark"] .page-pts #webtak .pts-icon-card-svg svg * {
  stroke: #7EE0FF !important;
  color: #7EE0FF !important;
}

html[data-theme="dark"] .page-pts #webtak .pts-icon-card p {
  color: rgba(232, 244, 251, 0.72) !important;
}

html[data-theme="dark"] .page-pts #webtak .pts-tab-panel p,
html[data-theme="dark"] .page-pts #webtak .pts-tree li {
  color: rgba(232, 244, 251, 0.82) !important;
  -webkit-text-fill-color: rgba(232, 244, 251, 0.82) !important;
}

html[data-theme="dark"] .page-pts #webtak .pts-tree li::before {
  background-color: #ffffff !important;
}

html[data-theme="dark"] .page-pts #webtak .pts-h2 {
  color: #ffffff !important;
}
html[data-theme="dark"] .page-pts #webtak .pts-h2 em {
  color: #7EE0FF !important;
  -webkit-text-fill-color: #7EE0FF !important;
  background: none !important;
}

/* Compact EUD kit lives in banner only — no big section */
.page-pts .pts-tkhero-kitblock {
  margin: 0.75rem auto 0;
  max-width: 44rem;
  text-align: center;
  scroll-margin-top: 5.5rem;
}
.page-pts .pts-tkhero-kitlabel {
  margin: 0 0 0.45rem;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(232, 244, 251, 0.78);
}
html[data-theme="light"] .page-pts .pts-tkhero-kitlabel {
  color: #3d4a5c !important;
}
.page-pts .pts-tkhero-kitline {
  margin-top: 0 !important;
}

/* Remove extra white outline on phone / REC images */
.page-pts .pts-chain-rec,
html[data-theme="light"] .page-pts .pts-chain-rec,
html[data-theme="dark"] .page-pts .pts-chain-rec {
  border: 0 !important;
  outline: none !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.42) !important;
}

.page-pts .pts-chain-rec img {
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Dark phone frame: silver bezel on every .ipm */
html[data-theme="dark"] .page-pts .ipm,
html[data-theme="dark"] .page-pts .ipm.ipm--hero,
html[data-theme="dark"] .page-pts .pts-feat-phone .ipm,
html[data-theme="dark"] .page-pts .pts-tab-media .ipm,
html[data-theme="dark"] .page-pts .pts-media-phone .ipm,
html[data-theme="dark"] .page-pts .pts-demo-media .ipm,
html[data-theme="dark"] .page-pts .pts-demo-reel-media .ipm,
html[data-theme="dark"] .page-pts .pts-shot-grid .ipm,
html[data-theme="dark"] .page-pts .pts-serve-media .ipm,
html[data-theme="dark"] .page-pts .pts-story .ipm,
html[data-theme="dark"] .page-pts #tiles .ipm,
html[data-theme="dark"] .page-pts .pts-two-pad .ipm {
  border: 0 !important;
  outline: none !important;
  background:
    linear-gradient(
      145deg,
      #e8eaee 0%,
      #c5CAD1 16%,
      #9aa1a9 38%,
      #6a727c 62%,
      #3a4048 100%
    ) !important;
  background-image:
    linear-gradient(
      145deg,
      #e8eaee 0%,
      #c5CAD1 16%,
      #9aa1a9 38%,
      #6a727c 62%,
      #3a4048 100%
    ) !important;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(0, 0, 0, 0.28) !important;
}

html[data-theme="light"] .page-pts .ipm,
html[data-theme="light"] .page-pts .pts-media-phone .ipm,
html[data-theme="light"] .page-pts .pts-tab-media .ipm {
  border: 0 !important;
  outline: none !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16) !important;
}

.page-pts .ipm-screen,
.page-pts .ipm-screen img,
.page-pts .pts-demo-reel-media img,
.page-pts .pts-demo-stage img {
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}

html[data-theme="dark"] .page-pts .pts-rugged-bezel {
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(0, 0, 0, 0.45) !important;
}
html[data-theme="dark"] .page-pts .pts-rugged-map {
  border: 0 !important;
}

/* Tagline: Geospatial line — solid white (both themes) */
.page-pts .pts-tkhero-tagline,
html[data-theme="light"] .page-pts .pts-tkhero-tagline,
html[data-theme="dark"] .page-pts .pts-tkhero-tagline {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  background-image: none !important;
  font-family: "IBM Plex Sans", "Work Sans", sans-serif !important;
  font-size: 26px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  text-align: center !important;
  max-width: 40rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Hide old lead if any leftover */
.page-pts .pts-tkhero-lead {
  display: none !important;
}

/* Light mode: readable dark (white disappears on pale banner) */
html[data-theme="light"] .page-pts .pts-tkhero-tagline {
  color: #10151c !important;
  -webkit-text-fill-color: #10151c !important;
}
html[data-theme="dark"] .page-pts .pts-tkhero-tagline {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* REC: no black pad behind image */
.page-pts .pts-chain-rec,
html[data-theme="light"] .page-pts .pts-chain-rec,
html[data-theme="dark"] .page-pts .pts-chain-rec {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28) !important;
  padding: 0 !important;
  overflow: visible !important;
}

.page-pts .pts-chain-rec img,
html[data-theme="light"] .page-pts .pts-chain-rec img,
html[data-theme="dark"] .page-pts .pts-chain-rec img {
  background: transparent !important;
  object-fit: cover !important;
  aspect-ratio: auto !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
  border: 0 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
}

/* REC: a bit smaller */
.page-pts .pts-chain-rec,
html[data-theme="light"] .page-pts .pts-chain-rec,
html[data-theme="dark"] .page-pts .pts-chain-rec {
  width: min(15.5rem, 42vw) !important;
  top: -3.6rem !important;
}

@media (max-width: 900px) {
  .page-pts .pts-chain-rec {
    width: min(12rem, 48vw) !important;
    top: -2.6rem !important;
  }
}

/* Banner node logos: dark vs light SVG swap */
.page-pts .pts-node-icon.is-logo {
  position: relative;
}
.page-pts .pts-node-icon img.pts-node-img--light {
  display: none !important;
}
.page-pts .pts-node-icon img.pts-node-img--dark {
  display: block !important;
}
html[data-theme="light"] .page-pts .pts-node-icon img.pts-node-img--dark {
  display: none !important;
}
html[data-theme="light"] .page-pts .pts-node-icon img.pts-node-img--light {
  display: block !important;
}

/* Light mode: don't force cyan stroke/filter on logo images */
html[data-theme="light"] .page-pts .pts-node-icon.is-logo img {
  filter: none !important;
}
html[data-theme="light"] .page-pts .pts-node-icon.is-android.is-logo,
html[data-theme="light"] .page-pts .pts-node-icon.is-iphone.is-logo,
html[data-theme="light"] .page-pts .pts-node-icon.is-game.is-logo {
  color: inherit !important;
}

/* ===== TAK light page: full white + home-style soft sky gradients ===== */
html[data-theme="light"] body.page-pts,
html[data-theme="light"] .page-pts {
  background: #ffffff !important;
  background-image: none !important;
  color: #2C3948 !important;
}

/* Banner stage = same soft vertical sky wash as home .pts-hb */
html[data-theme="light"] .page-pts .pts-copbag-stage {
  background-color: #ffffff !important;
  background-image: linear-gradient(
    180deg,
    #ffffff 0%,
    #ffffff 22%,
    #f3faff 50%,
    #e5f6fd 78%,
    #d4f0fb 100%
  ) !important;
  border: 0 !important;
  border-bottom: 0 !important;
}

html[data-theme="light"] .page-pts .pts-copbag-stage::before,
html[data-theme="light"] .page-pts .pts-copbag-stage::after {
  display: none !important;
  content: none !important;
}

/* Boards: pure white / soft wash (home alternating) */
html[data-theme="light"] .page-pts .pts-board,
html[data-theme="light"] .page-pts .pts-section,
html[data-theme="light"] .page-pts #webtak,
html[data-theme="light"] .page-pts #capabilities,
html[data-theme="light"] .page-pts #admin,
html[data-theme="light"] .page-pts #field,
html[data-theme="light"] .page-pts #clients {
  background-color: #ffffff !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

html[data-theme="light"] .page-pts .pts-board:nth-of-type(odd),
html[data-theme="light"] .page-pts .pts-board.pts-bg-wash,
html[data-theme="light"] .page-pts #capabilities,
html[data-theme="light"] .page-pts #field {
  background-image: linear-gradient(
    180deg,
    #ffffff 0%,
    #f3fafd 28%,
    #e6f5fb 55%,
    #f3fafd 82%,
    #ffffff 100%
  ) !important;
}

html[data-theme="light"] .page-pts .pts-board.pts-bg-plain,
html[data-theme="light"] .page-pts #webtak,
html[data-theme="light"] .page-pts #admin,
html[data-theme="light"] .page-pts #clients {
  background: #ffffff !important;
  background-image: none !important;
}

/* Header / sticky nav: clean white */
html[data-theme="light"] .page-pts .pts-header.site-header {
  background: rgba(255, 255, 255, 0.92) !important;
  border: 0 !important;
  box-shadow: none !important;
}
html[data-theme="light"] .page-pts .pts-anchor.hs-anchor {
  background: rgba(255, 255, 255, 0.94) !important;
  border: 0 !important;
}

/* Banner text readable on white/sky */
html[data-theme="light"] .page-pts .pts-tkhero h1,
html[data-theme="light"] .page-pts .pts-tkhero-main h1 {
  color: #10151c !important;
  -webkit-text-fill-color: #10151c !important;
}
html[data-theme="light"] .page-pts .pts-tkhero-tagline {
  color: #10151c !important;
  -webkit-text-fill-color: #10151c !important;
}
html[data-theme="light"] .page-pts .pts-tkhero-store,
html[data-theme="light"] .page-pts .pts-copbag-trust,
html[data-theme="light"] .page-pts .pts-node-plat,
html[data-theme="light"] .page-pts .pts-chain-phone-label {
  color: #5a6a7a !important;
  -webkit-text-fill-color: #5a6a7a !important;
}
html[data-theme="light"] .page-pts .pts-tkhero-h2 {
  color: #eed74d !important;
  -webkit-text-fill-color: #eed74d !important;
  background: none !important;
}
html[data-theme="light"] .page-pts .pts-tkhero-kitlabel {
  color: #3d4a5c !important;
}

/* Accent blues stay #056F91 on light */
html[data-theme="light"] .page-pts .pts-tkhero-rotate,
html[data-theme="light"] .page-pts .pts-tkhero-rotate span.is-on,
html[data-theme="light"] .page-pts .pts-tkhero-modes,
html[data-theme="light"] .page-pts .pts-node-name {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
}

/* Light TAK: gradient at TOP too + soft section edge blend */
html[data-theme="light"] body.page-pts,
html[data-theme="light"] .page-pts {
  background-color: #ffffff !important;
  background-image: linear-gradient(
    180deg,
    #e8f6fc 0%,
    #f5fbfe 12%,
    #ffffff 28%,
    #ffffff 100%
  ) !important;
  background-attachment: scroll !important;
}

html[data-theme="light"] .page-pts .pts-header.site-header {
  background: linear-gradient(
    180deg,
    rgba(232, 246, 252, 0.96) 0%,
    rgba(255, 255, 255, 0.92) 100%
  ) !important;
  border: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

html[data-theme="light"] .page-pts .pts-copbag-stage {
  background-color: transparent !important;
  background-image: linear-gradient(
    180deg,
    #e8f6fc 0%,
    #f3faff 18%,
    #ffffff 42%,
    #f5fbfe 72%,
    #e8f6fc 100%
  ) !important;
  border: 0 !important;
  border-bottom: 0 !important;
}

/* Every board: soft sky wash that fades to white at BOTH edges → blend */
html[data-theme="light"] .page-pts .pts-board,
html[data-theme="light"] .page-pts .pts-section,
html[data-theme="light"] .page-pts #webtak,
html[data-theme="light"] .page-pts #capabilities,
html[data-theme="light"] .page-pts #admin,
html[data-theme="light"] .page-pts #field,
html[data-theme="light"] .page-pts #clients,
html[data-theme="light"] .page-pts .hs-game-engines-section {
  border: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  background-color: #ffffff !important;
  background-image: linear-gradient(
    180deg,
    #ffffff 0%,
    #f3fafd 22%,
    #e6f5fb 50%,
    #f3fafd 78%,
    #ffffff 100%
  ) !important;
}

/* Alternate: slightly flatter white so rhythm stays, still soft edges */
html[data-theme="light"] .page-pts .pts-board:nth-of-type(even),
html[data-theme="light"] .page-pts #webtak,
html[data-theme="light"] .page-pts #admin,
html[data-theme="light"] .page-pts #clients {
  background-image: linear-gradient(
    180deg,
    #ffffff 0%,
    #f8fcfe 35%,
    #f3fafd 65%,
    #ffffff 100%
  ) !important;
}

html[data-theme="light"] .page-pts .pts-anchor.hs-anchor {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(243, 250, 253, 0.94) 100%
  ) !important;
  border: 0 !important;
  box-shadow: none !important;
}

html[data-theme="light"] .page-pts .pts-footer,
html[data-theme="light"] .page-pts footer {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f3fafd 40%,
    #e8f6fc 100%
  ) !important;
  border: 0 !important;
}

/* Light: sticky explore nav → #056F91 + soft blend (no hard cut) */
html[data-theme="light"] .page-pts .pts-anchor.hs-anchor {
  background: linear-gradient(
    180deg,
    rgba(232, 246, 252, 0.55) 0%,
    rgba(255, 255, 255, 0.96) 40%,
    #ffffff 100%
  ) !important;
  border: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

html[data-theme="light"] .page-pts .pts-copbag-trust {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
  border: 0 !important;
}

html[data-theme="light"] .page-pts .hs-anchor-explore,
html[data-theme="light"] .page-pts .pts-anchor .hs-anchor-explore,
html[data-theme="light"] .page-pts a.hs-anchor-explore {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
}

html[data-theme="light"] .page-pts .hs-anchor-links a,
html[data-theme="light"] .page-pts .pts-anchor .hs-anchor-links a {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
  border-bottom-color: transparent !important;
  opacity: 1 !important;
}

html[data-theme="light"] .page-pts .hs-anchor-links a.is-active,
html[data-theme="light"] .page-pts .hs-anchor-links a:hover {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
  border-bottom-color: #056F91 !important;
  font-weight: 600 !important;
}

html[data-theme="light"] .page-pts .hs-anchor-explore span {
  color: #056F91 !important;
}

/* Dark mode WebTAK: accents → #7EE0FF (not white / not rainbow) */
html[data-theme="dark"] .page-pts #webtak .pts-h-marti,
html[data-theme="dark"] .page-pts #webtak .pts-h-collab,
html[data-theme="dark"] .page-pts #webtak .pts-h-cop,
html[data-theme="dark"] .page-pts #webtak .pts-icon-card h3,
html[data-theme="dark"] .page-pts #webtak .pts-icon-card.is-teal h3,
html[data-theme="dark"] .page-pts #webtak .pts-icon-card.is-blue h3,
html[data-theme="dark"] .page-pts #webtak .pts-icon-card.is-gold h3,
html[data-theme="dark"] .page-pts #panel-marti h3,
html[data-theme="dark"] .page-pts #panel-collab h3,
html[data-theme="dark"] .page-pts #panel-cop h3,
html[data-theme="dark"] .page-pts .pts-tab-panel h3,
html[data-theme="dark"] .page-pts .pts-h-marti,
html[data-theme="dark"] .page-pts .pts-h-collab,
html[data-theme="dark"] .page-pts .pts-h-cop {
  color: #7EE0FF !important;
  -webkit-text-fill-color: #7EE0FF !important;
  background: none !important;
  background-image: none !important;
}

html[data-theme="dark"] .page-pts #webtak .pts-icon-card-svg,
html[data-theme="dark"] .page-pts #webtak .pts-icon-card.is-teal .pts-icon-card-svg,
html[data-theme="dark"] .page-pts #webtak .pts-icon-card.is-blue .pts-icon-card-svg,
html[data-theme="dark"] .page-pts #webtak .pts-icon-card.is-gold .pts-icon-card-svg {
  color: #7EE0FF !important;
  -webkit-text-fill-color: #7EE0FF !important;
  border-color: rgba(126, 224, 255, 0.35) !important;
  background: rgba(126, 224, 255, 0.08) !important;
}

html[data-theme="dark"] .page-pts #webtak .pts-icon-card-svg svg,
html[data-theme="dark"] .page-pts #webtak .pts-icon-card-svg svg * {
  stroke: #7EE0FF !important;
  color: #7EE0FF !important;
}

html[data-theme="dark"] .page-pts #webtak .pts-icon-card.is-active {
  border-color: rgba(126, 224, 255, 0.5) !important;
}

html[data-theme="dark"] .page-pts #webtak .pts-tree li::before {
  background-color: #7EE0FF !important;
}

html[data-theme="dark"] .page-pts #webtak .pts-h2 em {
  color: #7EE0FF !important;
  -webkit-text-fill-color: #7EE0FF !important;
}

/* FINAL dark consistency: every WebTAK accent = #7EE0FF */
html[data-theme="dark"] .page-pts h3.pts-h-marti,
html[data-theme="dark"] .page-pts h3.pts-h-collab,
html[data-theme="dark"] .page-pts h3.pts-h-cop,
html[data-theme="dark"] .page-pts .pts-tab-split h3,
html[data-theme="dark"] .page-pts #panel-marti h3.pts-h-marti,
html[data-theme="dark"] .page-pts #panel-collab h3.pts-h-collab,
html[data-theme="dark"] .page-pts #panel-cop h3.pts-h-cop,
html[data-theme="dark"] .page-pts #panel-collab h3,
html[data-theme="dark"] .page-pts #panel-cop h3 {
  color: #7EE0FF !important;
  -webkit-text-fill-color: #7EE0FF !important;
}

html[data-theme="dark"] .page-pts #webtak .pts-icon-card-svg svg *,
html[data-theme="dark"] .page-pts .pts-icon-card .pts-icon-card-svg {
  color: #7EE0FF !important;
  stroke: #7EE0FF !important;
  -webkit-text-fill-color: #7EE0FF !important;
}

html[data-theme="dark"] .page-pts {
  --pts-cyan: #7EE0FF;
}

/* Dark: Marti / Collaboration / COP titles + icons — solid #7EE0FF */
html[data-theme="dark"] .page-pts #webtak button.pts-icon-card h3,
html[data-theme="dark"] .page-pts #webtak button.pts-icon-card.is-teal h3,
html[data-theme="dark"] .page-pts #webtak button.pts-icon-card.is-blue h3,
html[data-theme="dark"] .page-pts #webtak button.pts-icon-card.is-gold h3,
html[data-theme="dark"] .page-pts #webtak button.pts-icon-card .pts-h-marti,
html[data-theme="dark"] .page-pts #webtak button.pts-icon-card .pts-h-collab,
html[data-theme="dark"] .page-pts #webtak button.pts-icon-card .pts-h-cop,
html[data-theme="dark"] .page-pts #webtak #panel-marti h3.pts-h-marti,
html[data-theme="dark"] .page-pts #webtak #panel-collab h3.pts-h-collab,
html[data-theme="dark"] .page-pts #webtak #panel-cop h3.pts-h-cop {
  color: #7EE0FF !important;
  -webkit-text-fill-color: #7EE0FF !important;
  background: none !important;
  background-image: none !important;
}

html[data-theme="dark"] .page-pts #webtak button.pts-icon-card .pts-icon-card-svg,
html[data-theme="dark"] .page-pts #webtak button.pts-icon-card .pts-icon-card-svg svg,
html[data-theme="dark"] .page-pts #webtak button.pts-icon-card .pts-icon-card-svg svg * {
  color: #7EE0FF !important;
  stroke: #7EE0FF !important;
  fill: none !important;
}

/* FINAL: AI rows — no white card; full wrap width like shot-grid */
.page-pts .pts-ai-wrap .pts-rows,
html[data-theme="light"] .page-pts .pts-ai-wrap .pts-rows,
html[data-theme="dark"] .page-pts .pts-ai-wrap .pts-rows {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* FINAL: dark mode — every phone frame silver */
html[data-theme="dark"] .page-pts .ipm,
html[data-theme="dark"] .page-pts .ipm.ipm--hero,
html[data-theme="dark"] .page-pts .pts-feat-phone .ipm,
html[data-theme="dark"] .page-pts .pts-feat-phone .ipm--hero,
html[data-theme="dark"] .page-pts .pts-tab-media .ipm,
html[data-theme="dark"] .page-pts .pts-media-phone .ipm,
html[data-theme="dark"] .page-pts .pts-demo-media .ipm,
html[data-theme="dark"] .page-pts .pts-demo-reel-media .ipm,
html[data-theme="dark"] .page-pts .pts-demo-stage .ipm,
html[data-theme="dark"] .page-pts .pts-shot-grid .ipm,
html[data-theme="dark"] .page-pts .pts-serve-media .ipm,
html[data-theme="dark"] .page-pts .pts-story .ipm,
html[data-theme="dark"] .page-pts #tiles .ipm,
html[data-theme="dark"] .page-pts .pts-two-pad .ipm {
  background:
    linear-gradient(
      145deg,
      #e8eaee 0%,
      #c5CAD1 16%,
      #9aa1a9 38%,
      #6a727c 62%,
      #3a4048 100%
    ) !important;
  background-image:
    linear-gradient(
      145deg,
      #e8eaee 0%,
      #c5CAD1 16%,
      #9aa1a9 38%,
      #6a727c 62%,
      #3a4048 100%
    ) !important;
  background-color: transparent !important;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(0, 0, 0, 0.28) !important;
}

/* ========== UNIFIED SITE HEADER (Game Engine style site-wide) ========== */
.site-header.tmg-site-header,
.page-pts .site-header.tmg-site-header,
.page-game-engine .site-header.tmg-site-header,
.page-game-engine .ge-site-header,
html[data-theme="light"] .page-pts .site-header.tmg-site-header,
html[data-theme="dark"] .page-pts .site-header.tmg-site-header {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 400 !important;
  background: transparent !important;
  background-color: rgba(0, 0, 0, 0) !important;
  border: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* Secondary pages: dark bar so white nav stays readable */
.page-meta .site-header.tmg-site-header,
.page-release .site-header.tmg-site-header,
.page-wts .site-header.tmg-site-header,
body:not(.page-pts):not(.page-game-engine) .site-header.tmg-site-header {
  position: sticky !important;
  background: #0b1018 !important;
  background-color: #0b1018 !important;
}

.site-header.tmg-site-header .header-inner {
  min-height: 72px !important;
  gap: 0.75rem !important;
}

.site-header.tmg-site-header .brand-text,
.site-header.tmg-site-header .nav-link,
.site-header.tmg-site-header .nav-drop-btn,
.page-pts .tmg-site-header .brand-text,
.page-pts .tmg-site-header .nav-link,
.page-pts .tmg-site-header .nav-drop-btn,
.page-game-engine .tmg-site-header .brand-text,
.page-game-engine .tmg-site-header .nav-link,
.page-game-engine .tmg-site-header .nav-drop-btn,
html[data-theme="light"] .page-pts .tmg-site-header .brand-text,
html[data-theme="light"] .page-pts .tmg-site-header .nav-link,
html[data-theme="light"] .page-pts .tmg-site-header .nav-drop-btn,
html[data-theme="dark"] .page-pts .tmg-site-header .brand-text,
html[data-theme="dark"] .page-pts .tmg-site-header .nav-link,
html[data-theme="dark"] .page-pts .tmg-site-header .nav-drop-btn {
  font-family: "Work Sans", system-ui, sans-serif !important;
  font-size: 15.5px !important;
  font-weight: 400 !important;
  font-style: normal !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  text-decoration: none !important;
  color: rgba(255, 255, 255, 0.85) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.85) !important;
  background: transparent !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0.4rem 0.65rem !important;
  transition: color 0.22s ease, opacity 0.22s ease !important;
}

.site-header.tmg-site-header .nav-link:hover,
.site-header.tmg-site-header .nav-drop-btn:hover,
.site-header.tmg-site-header .nav-link.active,
.site-header.tmg-site-header .nav-drop.open .nav-drop-btn,
.page-pts .tmg-site-header .nav-link:hover:not(.active),
.page-pts .tmg-site-header .nav-drop-btn:hover,
.page-pts .tmg-site-header .nav-link.active,
html[data-theme="light"] .page-pts .tmg-site-header .nav-link:hover:not(.active),
html[data-theme="light"] .page-pts .tmg-site-header .nav-drop-btn:hover,
html[data-theme="light"] .page-pts .tmg-site-header .nav-link.active {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: transparent !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  opacity: 1 !important;
}

.site-header.tmg-site-header .nav-drop-btn::after {
  border-color: rgba(255, 255, 255, 0.75) !important;
}

.site-header.tmg-site-header .nav-toggle span,
.page-pts .tmg-site-header .nav-toggle span {
  background: #ffffff !important;
}

/* Hide Map from nav (not public yet) */
.site-header.tmg-site-header .nav-link[href="geowgs84-maps.html"],
.site-header .nav-link[href="geowgs84-maps.html"],
.site-header.tmg-site-header .nav-link[href="geowgs84-maps/"],
.site-header .nav-link[href="geowgs84-maps/"] {
  display: none !important;
}

/* Contact Us — small radius, not pill */
.tmg-header-contact,
.site-header.tmg-site-header .tmg-header-contact {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  margin-left: 0.35rem !important;
  padding: 0.42rem 0.95rem !important;
  border: 1px solid rgba(255, 255, 255, 0.55) !important;
  border-radius: 6px !important;
  background: transparent !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-family: "Work Sans", system-ui, sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease !important;
}
.tmg-header-contact:hover {
  color: rgba(255, 255, 255, 0.85) !important;
  border-color: rgba(255, 255, 255, 0.85) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

/* Premium theme toggle */
.site-header.tmg-site-header .pts-theme-toggle,
.page-pts .tmg-site-header .pts-theme-toggle,
html[data-theme="light"] .page-pts .tmg-site-header .pts-theme-toggle,
html[data-theme="dark"] .page-pts .tmg-site-header .pts-theme-toggle {
  position: relative !important;
  width: 52px !important;
  height: 28px !important;
  min-width: 52px !important;
  margin-left: 0.45rem !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  overflow: hidden !important;
}
.site-header.tmg-site-header .pts-theme-toggle:hover,
.site-header.tmg-site-header .pts-theme-toggle:focus {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}
.pts-theme-toggle-track {
  position: absolute !important;
  top: 3px !important;
  left: 3px !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  background: linear-gradient(160deg, #ffffff 0%, #d7dee8 100%) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35) !important;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}
html[data-theme="light"] .pts-theme-toggle-track {
  transform: translateX(0) !important;
}
html[data-theme="dark"] .pts-theme-toggle-track {
  transform: translateX(24px) !important;
  background: linear-gradient(160deg, #7EE0FF 0%, #4bb8d8 100%) !important;
}
.site-header.tmg-site-header .pts-theme-toggle-dark,
.site-header.tmg-site-header .pts-theme-toggle-light {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 2 !important;
  width: auto !important;
  height: auto !important;
  display: none !important;
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 0 !important;
}
.site-header.tmg-site-header .pts-theme-toggle-dark { left: 8px !important; }
.site-header.tmg-site-header .pts-theme-toggle-light { right: 8px !important; }
html[data-theme="dark"] .site-header.tmg-site-header .pts-theme-toggle-dark {
  display: inline-flex !important;
}
html[data-theme="light"] .site-header.tmg-site-header .pts-theme-toggle-light {
  display: inline-flex !important;
}
html[data-theme="light"] .site-header.tmg-site-header .pts-theme-toggle-light {
  color: #3D4A5C !important;
}
.site-header.tmg-site-header .pts-theme-toggle svg {
  width: 12px !important;
  height: 12px !important;
}

/* Mobile menu panel */
.site-header.tmg-site-header.menu-open,
.page-pts .tmg-site-header.menu-open {
  background: rgba(10, 14, 22, 0.97) !important;
}
.site-header.tmg-site-header.menu-open .nav,
.page-pts .tmg-site-header.menu-open .nav {
  background: rgba(10, 14, 22, 0.98) !important;
  border: 0 !important;
}

@media (max-width: 960px) {
  .tmg-header-contact { display: none !important; }
}

/* Explore capabilities bar — gray + #3D4A5C text */
.page-pts .pts-anchor.hs-anchor,
.page-pts .hs-anchor,
html[data-theme="light"] .page-pts .pts-anchor.hs-anchor,
html[data-theme="light"] .page-pts .hs-anchor,
html[data-theme="dark"] .page-pts .pts-anchor.hs-anchor,
html[data-theme="dark"] .page-pts .hs-anchor {
  background: #e6e9ee !important;
  background-color: #e6e9ee !important;
  background-image: none !important;
  border: 0 !important;
  border-top: 0 !important;
  border-bottom: 1px solid rgba(61, 74, 92, 0.14) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.page-pts .hs-anchor-explore,
.page-pts .pts-anchor .hs-anchor-explore,
.page-pts .hs-anchor-links a,
.page-pts .pts-anchor .hs-anchor-links a,
html[data-theme="light"] .page-pts .hs-anchor-explore,
html[data-theme="light"] .page-pts .hs-anchor-links a,
html[data-theme="dark"] .page-pts .hs-anchor-explore,
html[data-theme="dark"] .page-pts .hs-anchor-links a {
  color: #3D4A5C !important;
  -webkit-text-fill-color: #3D4A5C !important;
  background: transparent !important;
  border-radius: 0 !important;
  font-family: "Work Sans", system-ui, sans-serif !important;
  font-weight: 400 !important;
  font-size: 14.5px !important;
}

.page-pts .hs-anchor-links a.is-active,
.page-pts .hs-anchor-links a:hover,
html[data-theme="light"] .page-pts .hs-anchor-links a.is-active,
html[data-theme="light"] .page-pts .hs-anchor-links a:hover,
html[data-theme="dark"] .page-pts .hs-anchor-links a.is-active,
html[data-theme="dark"] .page-pts .hs-anchor-links a:hover {
  color: #1f2a38 !important;
  -webkit-text-fill-color: #1f2a38 !important;
  background: transparent !important;
  font-weight: 600 !important;
}

.page-pts .hs-anchor-explore span,
html[data-theme="light"] .page-pts .hs-anchor-explore span {
  color: #3D4A5C !important;
}

/* Dropdown panels stay readable */
.site-header.tmg-site-header .nav-drop-menu {
  background: #121820 !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}
.site-header.tmg-site-header .nav-drop-menu a {
  color: rgba(255, 255, 255, 0.88) !important;
  font-family: "Work Sans", system-ui, sans-serif !important;
  font-size: 14.5px !important;
  font-weight: 400 !important;
  border-radius: 0 !important;
}
.site-header.tmg-site-header .nav-drop-menu a:hover,
.site-header.tmg-site-header .nav-drop-menu a.is-active {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
}


/* Theme toggle icons on non-pts pages */
html[data-theme="dark"] .tmg-site-header .pts-theme-toggle-dark { display: inline-flex !important; }
html[data-theme="light"] .tmg-site-header .pts-theme-toggle-light { display: inline-flex !important; }
html[data-theme="dark"] .tmg-site-header .pts-theme-toggle-light { display: none !important; }
html[data-theme="light"] .tmg-site-header .pts-theme-toggle-dark { display: none !important; }

/* Kill old rounded nav hover leftovers on unified header */
.tmg-site-header .nav-link,
.tmg-site-header .nav-drop-btn {
  border-radius: 0 !important;
}

/* ===== Banner clear of absolute header + light menu colors ===== */
.page-pts .pts-hb,
.page-pts .pts-hero-brand.pts-hb,
html[data-theme="light"] .page-pts .pts-hb,
html[data-theme="dark"] .page-pts .pts-hb {
  padding-top: 5.75rem !important;
}

.page-pts .pts-hb .pts-hb-split,
.page-pts .pts-hb .pts-hero-split,
html[data-theme="light"] .page-pts .pts-hb .pts-hb-split,
html[data-theme="dark"] .page-pts .pts-hb .pts-hb-split {
  padding-top: clamp(1.25rem, 2.5vw, 2rem) !important;
}

.page-pts .pts-copbag-stage,
html[data-theme="light"] .page-pts .pts-copbag-stage,
html[data-theme="dark"] .page-pts .pts-copbag-stage {
  padding-top: 5.75rem !important;
}

.page-game-engine .ge-hero,
.page-game-engine .ge-hero-banner {
  padding-top: 5.5rem !important;
}

/* Light mode: menu readable on sky/white banner */
html[data-theme="light"] .page-pts .tmg-site-header .brand-text,
html[data-theme="light"] .page-pts .tmg-site-header .nav-link,
html[data-theme="light"] .page-pts .tmg-site-header .nav-drop-btn,
html[data-theme="light"] .tmg-site-header .brand-text,
html[data-theme="light"] .tmg-site-header .nav-link,
html[data-theme="light"] .tmg-site-header .nav-drop-btn {
  color: #3D4A5C !important;
  -webkit-text-fill-color: #3D4A5C !important;
}

html[data-theme="light"] .page-pts .tmg-site-header .nav-link:hover,
html[data-theme="light"] .page-pts .tmg-site-header .nav-drop-btn:hover,
html[data-theme="light"] .page-pts .tmg-site-header .nav-link.active,
html[data-theme="light"] .page-pts .tmg-site-header .nav-drop.open .nav-drop-btn,
html[data-theme="light"] .tmg-site-header .nav-link:hover,
html[data-theme="light"] .tmg-site-header .nav-drop-btn:hover,
html[data-theme="light"] .tmg-site-header .nav-link.active {
  color: #10151c !important;
  -webkit-text-fill-color: #10151c !important;
  background: transparent !important;
}

html[data-theme="light"] .page-pts .tmg-site-header .nav-drop-btn::after,
html[data-theme="light"] .tmg-site-header .nav-drop-btn::after {
  border-color: #3D4A5C !important;
}

html[data-theme="light"] .page-pts .tmg-site-header .nav-toggle span,
html[data-theme="light"] .tmg-site-header .nav-toggle span {
  background: #3D4A5C !important;
}

html[data-theme="light"] .page-pts .tmg-site-header .tmg-header-contact,
html[data-theme="light"] .tmg-site-header .tmg-header-contact {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
  border-color: rgba(5, 111, 145, 0.45) !important;
  background: rgba(255, 255, 255, 0.72) !important;
}

html[data-theme="light"] .page-pts .tmg-site-header .tmg-header-contact:hover,
html[data-theme="light"] .tmg-site-header .tmg-header-contact:hover {
  color: #045a76 !important;
  -webkit-text-fill-color: #045a76 !important;
  border-color: #056F91 !important;
  background: #ffffff !important;
}

html[data-theme="light"] .page-pts .tmg-site-header .pts-theme-toggle,
html[data-theme="light"] .tmg-site-header .pts-theme-toggle {
  border-color: rgba(61, 74, 92, 0.28) !important;
  background: rgba(255, 255, 255, 0.75) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

html[data-theme="light"] .page-pts .tmg-site-header .pts-theme-toggle-light,
html[data-theme="light"] .tmg-site-header .pts-theme-toggle-light {
  color: #3D4A5C !important;
}

/* ===== Menu 16px, lighter weight; dark #44C8F5; light toggle polish ===== */

/* Header nav — both themes */
.site-header.tmg-site-header .brand-text,
.site-header.tmg-site-header .nav-link,
.site-header.tmg-site-header .nav-drop-btn,
.page-pts .tmg-site-header .brand-text,
.page-pts .tmg-site-header .nav-link,
.page-pts .tmg-site-header .nav-drop-btn,
html[data-theme="light"] .page-pts .tmg-site-header .brand-text,
html[data-theme="light"] .page-pts .tmg-site-header .nav-link,
html[data-theme="light"] .page-pts .tmg-site-header .nav-drop-btn,
html[data-theme="dark"] .page-pts .tmg-site-header .brand-text,
html[data-theme="dark"] .page-pts .tmg-site-header .nav-link,
html[data-theme="dark"] .page-pts .tmg-site-header .nav-drop-btn {
  font-size: 16px !important;
  font-weight: 300 !important;
}

/* Dark header menu → white only */
html[data-theme="dark"] .page-pts .tmg-site-header .brand-text,
html[data-theme="dark"] .page-pts .tmg-site-header .nav-link,
html[data-theme="dark"] .page-pts .tmg-site-header .nav-drop-btn,
html[data-theme="dark"] .tmg-site-header .brand-text,
html[data-theme="dark"] .tmg-site-header .nav-link,
html[data-theme="dark"] .tmg-site-header .nav-drop-btn,
html[data-theme="dark"] .page-game-engine .tmg-site-header .brand-text,
html[data-theme="dark"] .page-game-engine .tmg-site-header .nav-link,
html[data-theme="dark"] .page-game-engine .tmg-site-header .nav-drop-btn {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

html[data-theme="dark"] .page-pts .tmg-site-header .nav-link:hover,
html[data-theme="dark"] .page-pts .tmg-site-header .nav-drop-btn:hover,
html[data-theme="dark"] .page-pts .tmg-site-header .nav-link.active,
html[data-theme="dark"] .page-pts .tmg-site-header .nav-drop.open .nav-drop-btn,
html[data-theme="dark"] .tmg-site-header .nav-link:hover,
html[data-theme="dark"] .tmg-site-header .nav-drop-btn:hover,
html[data-theme="dark"] .tmg-site-header .nav-link.active {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: transparent !important;
  font-weight: 300 !important;
  opacity: 0.85 !important;
}

html[data-theme="dark"] .page-pts .tmg-site-header .nav-drop-btn::after,
html[data-theme="dark"] .tmg-site-header .nav-drop-btn::after {
  border-color: #ffffff !important;
}

html[data-theme="dark"] .page-pts .tmg-site-header .tmg-header-contact,
html[data-theme="dark"] .tmg-site-header .tmg-header-contact {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
  background: transparent !important;
  font-weight: 400 !important;
}
html[data-theme="dark"] .tmg-site-header .tmg-header-contact:hover {
  color: #ffffff !important;
  border-color: #ffffff !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

/* Light header: lighter weight already; soft hover fade */
html[data-theme="light"] .page-pts .tmg-site-header .nav-link:hover,
html[data-theme="light"] .page-pts .tmg-site-header .nav-drop-btn:hover,
html[data-theme="light"] .page-pts .tmg-site-header .nav-link.active {
  font-weight: 300 !important;
}

/* Light toggle — clear color change (not plain white blob) */
html[data-theme="light"] .page-pts .tmg-site-header .pts-theme-toggle,
html[data-theme="light"] .tmg-site-header .pts-theme-toggle {
  border-color: rgba(5, 111, 145, 0.35) !important;
  background: linear-gradient(180deg, #e8f6fb 0%, #d4eef8 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85) !important;
}
html[data-theme="light"] .tmg-site-header .pts-theme-toggle-track {
  background: linear-gradient(160deg, #ffffff 0%, #c5e8f5 100%) !important;
  box-shadow: 0 1px 4px rgba(5, 111, 145, 0.28) !important;
}
html[data-theme="light"] .tmg-site-header .pts-theme-toggle-light {
  color: #056F91 !important;
}

/* Dark toggle — #44C8F5 */
html[data-theme="dark"] .page-pts .tmg-site-header .pts-theme-toggle,
html[data-theme="dark"] .tmg-site-header .pts-theme-toggle {
  border-color: rgba(68, 200, 245, 0.45) !important;
  background: rgba(68, 200, 245, 0.12) !important;
}
html[data-theme="dark"] .tmg-site-header .pts-theme-toggle-track {
  background: linear-gradient(160deg, #7EE0FF 0%, #44C8F5 100%) !important;
  box-shadow: 0 1px 5px rgba(68, 200, 245, 0.45) !important;
}
html[data-theme="dark"] .tmg-site-header .pts-theme-toggle-dark {
  color: #44C8F5 !important;
}

/* Sticky section bar (Explore COP / capabilities) */
.page-pts .pts-anchor.hs-anchor .hs-anchor-explore,
.page-pts .pts-anchor.hs-anchor .hs-anchor-links a,
html[data-theme="light"] .page-pts .pts-anchor.hs-anchor .hs-anchor-explore,
html[data-theme="light"] .page-pts .pts-anchor.hs-anchor .hs-anchor-links a {
  font-size: 16px !important;
  font-weight: 300 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

html[data-theme="light"] .page-pts .pts-anchor.hs-anchor .hs-anchor-links a.is-active,
html[data-theme="light"] .page-pts .pts-anchor.hs-anchor .hs-anchor-links a:hover {
  color: #10151c !important;
  -webkit-text-fill-color: #10151c !important;
  background: transparent !important;
  font-weight: 400 !important;
}

/* Dark sticky bar */
html[data-theme="dark"] .page-pts .pts-anchor.hs-anchor,
html[data-theme="dark"] .page-pts .hs-anchor {
  background: #000000 !important;
  background-color: #000000 !important;
  border-bottom: 1px solid rgba(68, 200, 245, 0.18) !important;
}

html[data-theme="dark"] .page-pts .pts-anchor.hs-anchor .hs-anchor-explore,
html[data-theme="dark"] .page-pts .pts-anchor.hs-anchor .hs-anchor-links a,
html[data-theme="dark"] .page-pts .hs-anchor-explore,
html[data-theme="dark"] .page-pts .hs-anchor-links a,
html[data-theme="dark"] .page-pts .hs-anchor-explore span {
  color: #44C8F5 !important;
  -webkit-text-fill-color: #44C8F5 !important;
  background: transparent !important;
  font-size: 16px !important;
  font-weight: 300 !important;
}

html[data-theme="dark"] .page-pts .pts-anchor.hs-anchor .hs-anchor-links a:hover,
html[data-theme="dark"] .page-pts .pts-anchor.hs-anchor .hs-anchor-links a.is-active,
html[data-theme="dark"] .page-pts .hs-anchor-links a:hover,
html[data-theme="dark"] .page-pts .hs-anchor-links a.is-active {
  color: #7EE0FF !important;
  -webkit-text-fill-color: #7EE0FF !important;
  background: transparent !important;
  font-weight: 300 !important;
}

/* Kill any leftover pill/box on anchor links */
.page-pts .hs-anchor-links a::before,
.page-pts .hs-anchor-links a::after,
.page-pts .pts-anchor .hs-anchor-links a::before,
.page-pts .pts-anchor .hs-anchor-links a::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

/* Globe only: bit more clearance under header (text side unchanged) */
.page-pts .pts-hb .hs-globe-orbit,
html[data-theme="light"] .page-pts .pts-hb .hs-globe-orbit,
html[data-theme="dark"] .page-pts .pts-hb .hs-globe-orbit {
  top: calc(50% + 2.25rem) !important;
}

@media (max-width: 900px) {
  .page-pts .pts-hb .hs-globe-orbit,
  html[data-theme="light"] .page-pts .pts-hb .hs-globe-orbit,
  html[data-theme="dark"] .page-pts .pts-hb .hs-globe-orbit {
    top: calc(32% + 1.5rem) !important;
  }
}

/* Dark header menu: keep white (not cyan) */
html[data-theme="dark"] .page-pts .tmg-site-header .brand-text,
html[data-theme="dark"] .page-pts .tmg-site-header .nav-link,
html[data-theme="dark"] .page-pts .tmg-site-header .nav-drop-btn,
html[data-theme="dark"] .tmg-site-header .brand-text,
html[data-theme="dark"] .tmg-site-header .nav-link,
html[data-theme="dark"] .tmg-site-header .nav-drop-btn,
html[data-theme="dark"] .page-game-engine .tmg-site-header .brand-text,
html[data-theme="dark"] .page-game-engine .tmg-site-header .nav-link,
html[data-theme="dark"] .page-game-engine .tmg-site-header .nav-drop-btn {
  color: rgba(255, 255, 255, 0.85) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.85) !important;
}

html[data-theme="dark"] .page-pts .tmg-site-header .nav-link:hover,
html[data-theme="dark"] .page-pts .tmg-site-header .nav-drop-btn:hover,
html[data-theme="dark"] .page-pts .tmg-site-header .nav-link.active,
html[data-theme="dark"] .page-pts .tmg-site-header .nav-drop.open .nav-drop-btn,
html[data-theme="dark"] .tmg-site-header .nav-link:hover,
html[data-theme="dark"] .tmg-site-header .nav-drop-btn:hover,
html[data-theme="dark"] .tmg-site-header .nav-link.active {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

html[data-theme="dark"] .page-pts .tmg-site-header .nav-drop-btn::after,
html[data-theme="dark"] .tmg-site-header .nav-drop-btn::after {
  border-color: rgba(255, 255, 255, 0.75) !important;
}

html[data-theme="dark"] .page-pts .tmg-site-header .tmg-header-contact,
html[data-theme="dark"] .tmg-site-header .tmg-header-contact {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
}
html[data-theme="dark"] .tmg-site-header .tmg-header-contact:hover {
  color: rgba(255, 255, 255, 0.85) !important;
  border-color: rgba(255, 255, 255, 0.85) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

/* FINAL: dark header = pure white only (no cyan) */
html[data-theme="dark"] body .tmg-site-header .brand-text,
html[data-theme="dark"] body .tmg-site-header .nav-link,
html[data-theme="dark"] body .tmg-site-header .nav-drop-btn,
html[data-theme="dark"] body .tmg-site-header .tmg-header-contact,
html[data-theme="dark"] body .tmg-site-header a,
html[data-theme="dark"] body .tmg-site-header button.nav-drop-btn {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  fill: #ffffff !important;
}
html[data-theme="dark"] body .tmg-site-header .nav-drop-btn::after {
  border-color: #ffffff !important;
}
html[data-theme="dark"] body .tmg-site-header .tmg-header-contact {
  border-color: rgba(255, 255, 255, 0.55) !important;
}

/* ===== Device demos: 2-up, solid heading, Inter / IBM Plex Sans ===== */
.page-pts .pts-apps .pts-h2,
.page-pts #tak .pts-h2,
html[data-theme="light"] .page-pts .pts-apps .pts-h2,
html[data-theme="dark"] .page-pts .pts-apps .pts-h2,
html[data-theme="light"] .page-pts #tak .pts-h2,
html[data-theme="dark"] .page-pts #tak .pts-h2 {
  font-family: Inter, "IBM Plex Sans", system-ui, sans-serif !important;
  font-weight: 700 !important;
  color: #10151c !important;
  -webkit-text-fill-color: #10151c !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
}

html[data-theme="dark"] .page-pts .pts-apps .pts-h2,
html[data-theme="dark"] .page-pts #tak .pts-h2 {
  color: #f2f6fa !important;
  -webkit-text-fill-color: #f2f6fa !important;
}

.page-pts .pts-apps .pts-kicker,
.page-pts .pts-apps .pts-lead,
.page-pts .pts-apps .hs-dino-card h3,
.page-pts .pts-apps .hs-dino-card p,
.page-pts .pts-apps .hs-dino-more {
  font-family: Inter, "IBM Plex Sans", system-ui, sans-serif !important;
}

.page-pts .pts-apps .pts-kicker {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
}

html[data-theme="dark"] .page-pts .pts-apps .pts-kicker {
  color: #44C8F5 !important;
  -webkit-text-fill-color: #44C8F5 !important;
}

/* No gradient text anywhere in this section */
.page-pts .pts-apps .pts-h2 em,
.page-pts #tak .pts-h2 em,
html[data-theme="light"] .page-pts .pts-apps .pts-h2 em,
html[data-theme="light"] .page-pts #tak .pts-h2 em {
  font-style: normal !important;
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
}

/* 2 visible — balanced size (not half-stretch, not tiny 240) */
.page-pts .pts-apps .hs-dino-rail,
html[data-theme="light"] .page-pts .pts-apps .hs-dino-rail,
html[data-theme="dark"] .page-pts .pts-apps .hs-dino-rail {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

.page-pts .pts-apps .hs-dino-track {
  gap: 1.15rem !important;
}

.page-pts .pts-apps .hs-dino-card,
html[data-theme="light"] .page-pts .pts-apps .hs-dino-card,
html[data-theme="dark"] .page-pts .pts-apps .hs-dino-card {
  flex: 0 0 min(300px, calc((100% - 1.15rem) / 2)) !important;
  width: min(300px, calc((100% - 1.15rem) / 2)) !important;
  max-width: 300px !important;
}

@media (max-width: 900px) {
  .page-pts .pts-apps .hs-dino-card {
    flex: 0 0 min(78%, 280px) !important;
    width: min(78%, 280px) !important;
    max-width: 280px !important;
  }
}

/* ===== SITE-WIDE: Inter / IBM Plex Sans + solid accent words (NO text gradients) ===== */
.page-pts,
.page-pts .pts-h2,
.page-pts .pts-lead,
.page-pts .pts-kicker,
.page-pts h1,
.page-pts h2,
.page-pts h3,
.page-pts .pts-hb-title,
.page-pts .pts-tkhero h1,
.page-pts .pts-tkhero-h2,
.page-pts .pts-demo-title {
  font-family: Inter, "IBM Plex Sans", system-ui, sans-serif !important;
}

.page-pts {
  --pts-display: Inter, "IBM Plex Sans", system-ui, sans-serif;
  --pts-body: "IBM Plex Sans", Inter, system-ui, sans-serif;
  --hb-heading: Inter, "IBM Plex Sans", system-ui, sans-serif;
}

/* Kill EVERY text gradient / clipped fill on headings & em */
.page-pts .pts-h2,
.page-pts .pts-h2 em,
.page-pts h2 em,
.page-pts h1 em,
.page-pts .pts-hb-title,
.page-pts .pts-hb-title em,
.page-pts .pts-demo-title,
.page-pts .pts-demo-title em,
.page-pts .pts-tkhero-h2,
.page-pts .pts-tkhero-num,
.page-pts .pts-kit .pts-h2 em,
html[data-theme="light"] .page-pts .pts-h2 em,
html[data-theme="light"] .page-pts .pts-board .pts-h2 em,
html[data-theme="light"] .page-pts .pts-board .pts-h2 em:not(.is-gold),
html[data-theme="dark"] .page-pts .pts-h2 em,
html[data-theme="dark"] .page-pts .pts-board .pts-h2 em {
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
}

/* Solid accent words — light: #056F91 / dark: #44C8F5 / gold stays gold */
html[data-theme="light"] .page-pts .pts-h2 em:not(.is-gold),
html[data-theme="light"] .page-pts .pts-board .pts-h2 em:not(.is-gold),
html[data-theme="light"] .page-pts .pts-hb-title em,
html[data-theme="light"] .page-pts .pts-demo-title em {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
  font-style: normal !important;
}

html[data-theme="dark"] .page-pts .pts-h2 em:not(.is-gold),
html[data-theme="dark"] .page-pts .pts-board .pts-h2 em:not(.is-gold),
html[data-theme="dark"] .page-pts .pts-hb-title em,
html[data-theme="dark"] .page-pts .pts-demo-title em {
  color: #44C8F5 !important;
  -webkit-text-fill-color: #44C8F5 !important;
  font-style: normal !important;
}

.page-pts .pts-h2 em.is-gold,
html[data-theme="light"] .page-pts .pts-h2 em.is-gold,
html[data-theme="dark"] .page-pts .pts-h2 em.is-gold {
  color: #E2C107 !important;
  -webkit-text-fill-color: #E2C107 !important;
  background: none !important;
  font-style: normal !important;
}

/* Base heading color stays solid (no gradient) */
html[data-theme="light"] .page-pts .pts-h2 {
  color: #10151c !important;
  -webkit-text-fill-color: #10151c !important;
}
html[data-theme="dark"] .page-pts .pts-h2 {
  color: #f2f6fa !important;
  -webkit-text-fill-color: #f2f6fa !important;
}

/* RESTORE: Your Device / Your Data / Your Server — 3 solid colors (no gradient) */
html[data-theme="dark"] .page-pts .pts-h2.pts-h2-stack,
html[data-theme="light"] .page-pts .pts-h2.pts-h2-stack {
  -webkit-text-fill-color: unset !important;
}

.page-pts .pts-h2-stack > span[data-pts-type]:not(.pts-h2-amber):not(.pts-h2-cyan),
html[data-theme="dark"] .page-pts .pts-h2-stack > span[data-pts-type]:not(.pts-h2-amber):not(.pts-h2-cyan),
html[data-theme="light"] .page-pts .pts-h2-stack > span[data-pts-type]:not(.pts-h2-amber):not(.pts-h2-cyan) {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  background-image: none !important;
}

html[data-theme="light"] .page-pts .pts-h2-stack > span[data-pts-type]:not(.pts-h2-amber):not(.pts-h2-cyan) {
  color: #10151c !important;
  -webkit-text-fill-color: #10151c !important;
}

.page-pts .pts-h2-amber,
.page-pts .pts-h2-stack .pts-h2-amber,
.page-pts span.pts-h2-amber[data-pts-type],
html[data-theme="dark"] .page-pts .pts-h2-amber,
html[data-theme="dark"] .page-pts .pts-h2-stack .pts-h2-amber,
html[data-theme="dark"] .page-pts span.pts-h2-amber[data-pts-type],
html[data-theme="light"] .page-pts .pts-h2-amber,
html[data-theme="light"] .page-pts .pts-h2-stack .pts-h2-amber,
html[data-theme="light"] .page-pts span.pts-h2-amber[data-pts-type] {
  color: #E2C107 !important;
  -webkit-text-fill-color: #E2C107 !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
}

.page-pts .pts-h2-cyan,
.page-pts .pts-h2-stack .pts-h2-cyan,
.page-pts span.pts-h2-cyan[data-pts-type],
html[data-theme="dark"] .page-pts .pts-h2-cyan,
html[data-theme="dark"] .page-pts .pts-h2-stack .pts-h2-cyan,
html[data-theme="dark"] .page-pts span.pts-h2-cyan[data-pts-type],
html[data-theme="light"] .page-pts .pts-h2-cyan,
html[data-theme="light"] .page-pts .pts-h2-stack .pts-h2-cyan,
html[data-theme="light"] .page-pts span.pts-h2-cyan[data-pts-type] {
  color: #44C8F5 !important;
  -webkit-text-fill-color: #44C8F5 !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
}

/* ===== FIX demos slider: 2 visible, no clipped text ===== */
.page-pts .pts-apps {
  overflow-x: hidden !important;
}

.page-pts .pts-apps .hs-dino-grid {
  align-items: start !important;
  min-width: 0 !important;
}

.page-pts .pts-apps .hs-dino-rail {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow: hidden !important;
  container-type: inline-size !important;
  container-name: dino-rail !important;
}

.page-pts .pts-apps .hs-dino-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  width: max-content !important;
  max-width: none !important;
  gap: 1.25rem !important;
  will-change: transform !important;
}

.page-pts .pts-apps .hs-dino-card,
html[data-theme="light"] .page-pts .pts-apps .hs-dino-card,
html[data-theme="dark"] .page-pts .pts-apps .hs-dino-card {
  flex: 0 0 calc((100cqi - 1.25rem) / 2) !important;
  width: calc((100cqi - 1.25rem) / 2) !important;
  max-width: calc((100cqi - 1.25rem) / 2) !important;
  min-width: 0 !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}

.page-pts .pts-apps .hs-dino-card h3,
.page-pts .pts-apps .hs-dino-card p,
.page-pts .pts-apps .hs-dino-more {
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
  max-width: 100% !important;
}

.page-pts .pts-apps .hs-dino-media {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

@supports not (width: 1cqi) {
  .page-pts .pts-apps .hs-dino-card,
  html[data-theme="light"] .page-pts .pts-apps .hs-dino-card,
  html[data-theme="dark"] .page-pts .pts-apps .hs-dino-card {
    flex: 0 0 min(280px, 46%) !important;
    width: min(280px, 46%) !important;
    max-width: 280px !important;
  }
}

@media (max-width: 900px) {
  .page-pts .pts-apps .hs-dino-grid {
    grid-template-columns: 1fr !important;
  }
  .page-pts .pts-apps .hs-dino-card,
  html[data-theme="light"] .page-pts .pts-apps .hs-dino-card,
  html[data-theme="dark"] .page-pts .pts-apps .hs-dino-card {
    flex: 0 0 min(78vw, 300px) !important;
    width: min(78vw, 300px) !important;
    max-width: min(78vw, 300px) !important;
  }
}

/* ===== All headings: half yellow (#E2C107) + half blue — solid, no gradient ===== */
.page-pts .pts-h2,
.page-pts .pts-h2 em,
.page-pts .pts-hb-title,
.page-pts .pts-hb-title em,
.page-pts .pts-tkhero-h2,
.page-pts .pts-tkhero-h2 em,
.page-pts .pts-demo-title,
.page-pts .pts-demo-title em {
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  font-style: normal !important;
}

/* Yellow half */
.page-pts .pts-h2 em.is-gold,
.page-pts .pts-hb-title em.is-gold,
.page-pts .pts-tkhero-h2 em.is-gold,
.page-pts .pts-demo-title em.is-gold,
html[data-theme="light"] .page-pts .pts-h2 em.is-gold,
html[data-theme="dark"] .page-pts .pts-h2 em.is-gold,
html[data-theme="light"] .page-pts .pts-board .pts-h2 em.is-gold,
html[data-theme="dark"] .page-pts .pts-board .pts-h2 em.is-gold,
html[data-theme="light"] .page-pts .pts-ai-wrap .pts-h2 em.is-gold,
html[data-theme="dark"] .page-pts .pts-ai-wrap .pts-h2 em.is-gold {
  color: #E2C107 !important;
  -webkit-text-fill-color: #E2C107 !important;
}

/* Blue half */
.page-pts .pts-h2 em:not(.is-gold),
.page-pts .pts-hb-title em:not(.is-gold),
.page-pts .pts-tkhero-h2 em:not(.is-gold),
.page-pts .pts-demo-title em:not(.is-gold),
html[data-theme="light"] .page-pts .pts-h2 em:not(.is-gold),
html[data-theme="dark"] .page-pts .pts-h2 em:not(.is-gold),
html[data-theme="light"] .page-pts .pts-board .pts-h2 em:not(.is-gold),
html[data-theme="dark"] .page-pts .pts-board .pts-h2 em:not(.is-gold) {
  color: #44C8F5 !important;
  -webkit-text-fill-color: #44C8F5 !important;
}

html[data-theme="light"] .page-pts .pts-h2 em:not(.is-gold),
html[data-theme="light"] .page-pts .pts-hb-title em:not(.is-gold),
html[data-theme="light"] .page-pts .pts-board .pts-h2 em:not(.is-gold) {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
}

/* Keep Device/Data/Server stack: white / yellow / cyan */
html[data-theme="dark"] .page-pts .pts-h2-stack > span[data-pts-type]:not(.pts-h2-amber):not(.pts-h2-cyan) {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.page-pts .pts-h2-stack .pts-h2-amber,
html[data-theme="light"] .page-pts .pts-h2-stack .pts-h2-amber,
html[data-theme="dark"] .page-pts .pts-h2-stack .pts-h2-amber {
  color: #E2C107 !important;
  -webkit-text-fill-color: #E2C107 !important;
}
.page-pts .pts-h2-stack .pts-h2-cyan,
html[data-theme="light"] .page-pts .pts-h2-stack .pts-h2-cyan,
html[data-theme="dark"] .page-pts .pts-h2-stack .pts-h2-cyan {
  color: #44C8F5 !important;
  -webkit-text-fill-color: #44C8F5 !important;
}

/* UNDO forced half/half on ALL headings — only intentional <em> accents */
html[data-theme="light"] .page-pts .pts-h2 em:not(.is-gold),
html[data-theme="light"] .page-pts .pts-hb-title em:not(.is-gold),
html[data-theme="light"] .page-pts .pts-board .pts-h2 em:not(.is-gold),
html[data-theme="light"] .page-pts .pts-demo-title em:not(.is-gold) {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
  background: none !important;
  font-style: normal !important;
}
html[data-theme="dark"] .page-pts .pts-h2 em:not(.is-gold),
html[data-theme="dark"] .page-pts .pts-hb-title em:not(.is-gold),
html[data-theme="dark"] .page-pts .pts-board .pts-h2 em:not(.is-gold),
html[data-theme="dark"] .page-pts .pts-demo-title em:not(.is-gold) {
  color: #44C8F5 !important;
  -webkit-text-fill-color: #44C8F5 !important;
  background: none !important;
  font-style: normal !important;
}
.page-pts .pts-h2 em.is-gold,
html[data-theme="light"] .page-pts .pts-h2 em.is-gold,
html[data-theme="dark"] .page-pts .pts-h2 em.is-gold {
  color: #E2C107 !important;
  -webkit-text-fill-color: #E2C107 !important;
  background: none !important;
  font-style: normal !important;
}

/* Plain heading text = normal theme color (not forced yellow/blue) */
html[data-theme="light"] .page-pts .pts-h2 {
  color: #10151c !important;
  -webkit-text-fill-color: #10151c !important;
}
html[data-theme="dark"] .page-pts .pts-h2 {
  color: #f2f6fa !important;
  -webkit-text-fill-color: #f2f6fa !important;
}
html[data-theme="dark"] .page-pts .pts-h2.pts-h2-stack {
  -webkit-text-fill-color: unset !important;
}

/* Game engines logo strip: left-align + cleaner cards */
.page-pts #game-engines .pts-logo-strip,
.page-pts .hs-game-engines-section .pts-logo-strip,
html[data-theme="light"] .page-pts #game-engines .pts-logo-strip,
html[data-theme="dark"] .page-pts #game-engines .pts-logo-strip {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 11.5rem)) !important;
  justify-content: start !important;
  justify-items: stretch !important;
  gap: 1rem !important;
  width: auto !important;
  max-width: 100% !important;
  margin: 0.75rem 0 1.75rem 0 !important;
  margin-inline: 0 !important;
}

.page-pts #game-engines .pts-logo-strip li,
html[data-theme="light"] .page-pts #game-engines .pts-logo-strip li,
html[data-theme="dark"] .page-pts #game-engines .pts-logo-strip li {
  display: grid !important;
  place-items: center !important;
  height: 7.5rem !important;
  min-height: 7.5rem !important;
  padding: 1rem 1.1rem !important;
  border-radius: 10px !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14) !important;
}

html[data-theme="light"] .page-pts #game-engines .pts-logo-strip li {
  background: #ffffff !important;
  border: 1px solid rgba(16, 24, 40, 0.1) !important;
}

html[data-theme="dark"] .page-pts #game-engines .pts-logo-strip li {
  background: #0b121a !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

@media (max-width: 700px) {
  .page-pts #game-engines .pts-logo-strip,
  html[data-theme="light"] .page-pts #game-engines .pts-logo-strip,
  html[data-theme="dark"] .page-pts #game-engines .pts-logo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: 100% !important;
  }
}

/* Heading accent: colored text only — no highlight box */
.page-pts .pts-h2 .pts-h2-band,
.page-pts #tiles .pts-h2 .pts-h2-band {
  display: inline !important;
  padding: 0 !important;
  border-radius: 0 !important;
  font-style: normal !important;
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 0 !important;
}

html[data-theme="dark"] .page-pts .pts-h2 .pts-h2-band,
html[data-theme="dark"] .page-pts #tiles .pts-h2 .pts-h2-band {
  color: #44C8F5 !important;
  -webkit-text-fill-color: #44C8F5 !important;
}

html[data-theme="light"] .page-pts .pts-h2 .pts-h2-band,
html[data-theme="light"] .page-pts #tiles .pts-h2 .pts-h2-band {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
}

/* NVIDIA logo card: center properly, no right overflow */
.page-pts .pts-logo-strip li:nth-child(3),
.page-pts #game-engines .pts-logo-strip li:nth-child(3) {
  overflow: hidden !important;
  place-items: center !important;
  justify-items: center !important;
  align-items: center !important;
}

.page-pts .pts-logo-strip li:nth-child(3) img,
.page-pts .pts-logo-strip li:nth-child(3) img.pts-logo-img--dark,
.page-pts .pts-logo-strip li:nth-child(3) img.pts-logo-img--light,
.page-pts #game-engines .pts-logo-strip li:nth-child(3) img {
  display: block !important;
  margin: 0 auto !important;
  width: auto !important;
  max-width: 9.5rem !important;
  max-height: 52px !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}

/* keep theme swap: only show active theme asset */
html[data-theme="dark"] .page-pts .pts-logo-strip li:nth-child(3) img.pts-logo-img--light {
  display: none !important;
}
html[data-theme="light"] .page-pts .pts-logo-strip li:nth-child(3) img.pts-logo-img--dark {
  display: none !important;
}
html[data-theme="light"] .page-pts .pts-logo-strip li:nth-child(3) img.pts-logo-img--light {
  display: block !important;
}

/* Close CTA: heading weight + tested line 21px */
.page-pts .pts-close h2,
.page-pts .pts-close-brand h2,
html[data-theme="light"] .page-pts .pts-close-brand h2,
html[data-theme="dark"] .page-pts .pts-close-brand h2 {
  font-family: Inter, "IBM Plex Sans", system-ui, sans-serif !important;
  font-weight: 700 !important;
}

.page-pts .pts-close p,
.page-pts .pts-close-brand p,
html[data-theme="light"] .page-pts .pts-close-brand p,
html[data-theme="dark"] .page-pts .pts-close-brand p {
  font-family: Inter, "IBM Plex Sans", system-ui, sans-serif !important;
  font-size: 21px !important;
  line-height: 1.45 !important;
  font-weight: 400 !important;
}

/* TEMP: Window Tile Caching — hide from nav/footer until go-live */
a[href="window-tile-caching.html"], a[href="window-tile-caching/"] {
  display: none !important;
}

/* Header brand: slightly larger logo + title */
.site-header.tmg-site-header .brand,
.page-pts .tmg-site-header .brand,
.page-game-engine .tmg-site-header .brand {
  gap: 0.9rem !important;
}

.site-header.tmg-site-header .brand-mark,
.page-pts .tmg-site-header .brand-mark,
.page-game-engine .tmg-site-header .brand-mark {
  width: 52px !important;
  height: 52px !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.site-header.tmg-site-header .brand-text,
.page-pts .tmg-site-header .brand-text,
.page-game-engine .tmg-site-header .brand-text,
html[data-theme="light"] .page-pts .tmg-site-header .brand-text,
html[data-theme="dark"] .page-pts .tmg-site-header .brand-text,
html[data-theme="dark"] body .tmg-site-header .brand-text {
  font-size: 18px !important;
  font-weight: 600 !important;
  padding: 0 !important;
  letter-spacing: 0.01em !important;
}

/* Light mode mobile banner: readable copy, globe behind/below (not on text) */
@media (max-width: 900px) {
  html[data-theme="light"] .page-pts .pts-hb,
  html[data-theme="light"] .page-pts .pts-hero-brand.pts-hb {
    min-height: 0 !important;
  }

  html[data-theme="light"] .page-pts .pts-hb .pts-hb-split,
  html[data-theme="light"] .page-pts .pts-hb .pts-hero-split {
    min-height: 0 !important;
    padding-top: 0.75rem !important;
    padding-bottom: 7.5rem !important;
  }

  html[data-theme="light"] .page-pts .pts-hb .pts-hb-copy,
  html[data-theme="light"] .page-pts .pts-hb .pts-hero-brand-copy {
    position: relative !important;
    z-index: 3 !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  html[data-theme="light"] .page-pts .pts-hb .pts-hb-title,
  html[data-theme="light"] .page-pts .pts-hb .pts-hb-lead,
  html[data-theme="light"] .page-pts .pts-hb .pts-hb-eyebrow,
  html[data-theme="light"] .page-pts .pts-hb .pts-hb-kicker {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) !important;
  }

  html[data-theme="light"] .page-pts .pts-hb .hs-globe-wrap {
    z-index: 0 !important;
  }

  html[data-theme="light"] .page-pts .pts-hb .hs-globe-orbit {
    top: auto !important;
    bottom: -6% !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: min(68vw, 260px) !important;
    height: min(68vw, 260px) !important;
    opacity: 0.42 !important;
    pointer-events: none !important;
  }

  /* Soft white scrim so title stays readable over any globe bleed */
  html[data-theme="light"] .page-pts .pts-hb .hs-globe-fade {
    background: linear-gradient(
      180deg,
      rgba(245, 251, 254, 0.96) 0%,
      rgba(255, 255, 255, 0.9) 28%,
      rgba(255, 255, 255, 0.55) 52%,
      rgba(255, 255, 255, 0.15) 72%,
      transparent 88%
    ) !important;
    z-index: 1 !important;
  }

  html[data-theme="light"] .page-pts .pts-hb .pts-hero-veil {
    display: none !important;
    opacity: 0 !important;
    background: none !important;
  }
}

@media (max-width: 560px) {
  html[data-theme="light"] .page-pts .pts-hb .pts-hb-split {
    padding-bottom: 6.5rem !important;
  }

  html[data-theme="light"] .page-pts .pts-hb .hs-globe-orbit {
    width: min(72vw, 230px) !important;
    height: min(72vw, 230px) !important;
    bottom: -4% !important;
    opacity: 0.38 !important;
  }

  html[data-theme="light"] .page-pts .tmg-site-header .brand-text {
    font-size: 15px !important;
    line-height: 1.15 !important;
  }

  html[data-theme="light"] .page-pts .tmg-site-header .brand-mark {
    width: 44px !important;
    height: 44px !important;
  }
}

/* Theme toggle ONLY — sun #FFFFFF, light active #056F91 */
html[data-theme="dark"] .site-header.tmg-site-header .pts-theme-toggle-dark,
html[data-theme="dark"] .tmg-site-header .pts-theme-toggle-dark,
html[data-theme="dark"] .page-pts .tmg-site-header .pts-theme-toggle-dark,
html[data-theme="dark"] .page-pts .pts-theme-toggle-dark {
  color: #FFFFFF !important;
}

html[data-theme="dark"] .tmg-site-header .pts-theme-toggle-dark svg,
html[data-theme="dark"] .tmg-site-header .pts-theme-toggle-dark svg circle,
html[data-theme="dark"] .page-pts .pts-theme-toggle-dark svg,
html[data-theme="dark"] .page-pts .pts-theme-toggle-dark svg circle {
  color: #FFFFFF !important;
  fill: #FFFFFF !important;
}

html[data-theme="dark"] .tmg-site-header .pts-theme-toggle-dark svg path,
html[data-theme="dark"] .page-pts .pts-theme-toggle-dark svg path {
  stroke: #FFFFFF !important;
  fill: none !important;
}

html[data-theme="light"] .site-header.tmg-site-header .pts-theme-toggle,
html[data-theme="light"] .page-pts .tmg-site-header .pts-theme-toggle,
html[data-theme="light"] .tmg-site-header .pts-theme-toggle,
html[data-theme="light"] .page-pts .pts-theme-toggle {
  background: #056F91 !important;
  border-color: #056F91 !important;
  box-shadow: none !important;
}

html[data-theme="light"] .site-header.tmg-site-header .pts-theme-toggle:hover,
html[data-theme="light"] .site-header.tmg-site-header .pts-theme-toggle:focus,
html[data-theme="light"] .tmg-site-header .pts-theme-toggle:hover,
html[data-theme="light"] .tmg-site-header .pts-theme-toggle:focus {
  background: #056F91 !important;
  border-color: #045a76 !important;
}

html[data-theme="light"] .tmg-site-header .pts-theme-toggle-light,
html[data-theme="light"] .page-pts .tmg-site-header .pts-theme-toggle-light,
html[data-theme="light"] .page-pts .pts-theme-toggle-light {
  color: #FFFFFF !important;
}

/* ============================================================
   Dark-bar pages: ALWAYS white header menu (both themes)
   Home (.page-pts) keeps light-mode gray menu on sky banner.
   ============================================================ */

/* Game Engine — white menu on dark hero header */
.page-game-engine .tmg-site-header .brand-text,
.page-game-engine .tmg-site-header .nav-link,
.page-game-engine .tmg-site-header .nav-drop-btn,
html[data-theme="light"] .page-game-engine .tmg-site-header .brand-text,
html[data-theme="light"] .page-game-engine .tmg-site-header .nav-link,
html[data-theme="light"] .page-game-engine .tmg-site-header .nav-drop-btn,
html[data-theme="dark"] .page-game-engine .tmg-site-header .brand-text,
html[data-theme="dark"] .page-game-engine .tmg-site-header .nav-link,
html[data-theme="dark"] .page-game-engine .tmg-site-header .nav-drop-btn {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.page-game-engine .tmg-site-header .nav-link:hover,
.page-game-engine .tmg-site-header .nav-drop-btn:hover,
.page-game-engine .tmg-site-header .nav-link.active,
.page-game-engine .tmg-site-header .nav-drop.open .nav-drop-btn,
html[data-theme="light"] .page-game-engine .tmg-site-header .nav-link:hover,
html[data-theme="light"] .page-game-engine .tmg-site-header .nav-drop-btn:hover,
html[data-theme="light"] .page-game-engine .tmg-site-header .nav-link.active {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.page-game-engine .tmg-site-header .nav-drop-btn::after,
html[data-theme="light"] .page-game-engine .tmg-site-header .nav-drop-btn::after {
  border-color: rgba(255, 255, 255, 0.85) !important;
}

.page-game-engine .tmg-site-header .nav-toggle span,
html[data-theme="light"] .page-game-engine .tmg-site-header .nav-toggle span {
  background: #ffffff !important;
}

/* Secondary pages with dark sticky bar — white menu both themes */
.page-release .tmg-site-header .brand-text,
.page-release .tmg-site-header .nav-link,
.page-release .tmg-site-header .nav-drop-btn,
.page-meta .tmg-site-header .brand-text,
.page-meta .tmg-site-header .nav-link,
.page-meta .tmg-site-header .nav-drop-btn,
.page-wts .tmg-site-header .brand-text,
.page-wts .tmg-site-header .nav-link,
.page-wts .tmg-site-header .nav-drop-btn,
body:not(.page-pts) .tmg-site-header .brand-text,
body:not(.page-pts) .tmg-site-header .nav-link,
body:not(.page-pts) .tmg-site-header .nav-drop-btn,
html[data-theme="light"] body:not(.page-pts) .tmg-site-header .brand-text,
html[data-theme="light"] body:not(.page-pts) .tmg-site-header .nav-link,
html[data-theme="light"] body:not(.page-pts) .tmg-site-header .nav-drop-btn,
html[data-theme="light"] .page-release .tmg-site-header .brand-text,
html[data-theme="light"] .page-release .tmg-site-header .nav-link,
html[data-theme="light"] .page-release .tmg-site-header .nav-drop-btn,
html[data-theme="light"] .page-meta .tmg-site-header .brand-text,
html[data-theme="light"] .page-meta .tmg-site-header .nav-link,
html[data-theme="light"] .page-meta .tmg-site-header .nav-drop-btn,
html[data-theme="light"] .page-wts .tmg-site-header .brand-text,
html[data-theme="light"] .page-wts .tmg-site-header .nav-link,
html[data-theme="light"] .page-wts .tmg-site-header .nav-drop-btn {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

html[data-theme="light"] body:not(.page-pts) .tmg-site-header .nav-drop-btn::after,
html[data-theme="light"] .page-release .tmg-site-header .nav-drop-btn::after,
html[data-theme="light"] .page-meta .tmg-site-header .nav-drop-btn::after,
html[data-theme="light"] .page-wts .tmg-site-header .nav-drop-btn::after {
  border-color: rgba(255, 255, 255, 0.85) !important;
}

html[data-theme="light"] body:not(.page-pts) .tmg-site-header .nav-toggle span,
html[data-theme="light"] .page-release .tmg-site-header .nav-toggle span,
html[data-theme="light"] .page-meta .tmg-site-header .nav-toggle span,
html[data-theme="light"] .page-wts .tmg-site-header .nav-toggle span {
  background: #ffffff !important;
}

/* Home only: light-mode gray menu (do not bleed to other pages) */
html[data-theme="light"] .page-pts .tmg-site-header .brand-text,
html[data-theme="light"] .page-pts .tmg-site-header .nav-link,
html[data-theme="light"] .page-pts .tmg-site-header .nav-drop-btn {
  color: #3D4A5C !important;
  -webkit-text-fill-color: #3D4A5C !important;
}

/* TAK page: dark hero — white menu even in light theme */
.page-tak .tmg-site-header .brand-text,
.page-tak .tmg-site-header .nav-link,
.page-tak .tmg-site-header .nav-drop-btn,
html[data-theme="light"] .page-tak .tmg-site-header .brand-text,
html[data-theme="light"] .page-tak .tmg-site-header .nav-link,
html[data-theme="light"] .page-tak .tmg-site-header .nav-drop-btn {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
html[data-theme="light"] .page-tak .tmg-site-header .nav-drop-btn::after {
  border-color: rgba(255, 255, 255, 0.85) !important;
}
html[data-theme="light"] .page-tak .tmg-site-header .nav-toggle span {
  background: #ffffff !important;
}

/* Dark footers: copyright + links readable white (both themes) */
.page-release .site-footer .footer-bottom p,
.page-meta .site-footer .footer-bottom p,
.page-wts .site-footer .footer-bottom p,
.page-game-engine .site-footer .footer-bottom p,
.page-game-engine .ge-footer .footer-bottom p,
body:not(.page-pts) .site-footer .footer-bottom p,
html[data-theme="light"] .page-release .site-footer .footer-bottom p,
html[data-theme="light"] .page-meta .site-footer .footer-bottom p,
html[data-theme="light"] .page-wts .site-footer .footer-bottom p,
html[data-theme="light"] .page-game-engine .site-footer .footer-bottom p,
html[data-theme="light"] .page-game-engine .ge-footer .footer-bottom p,
html[data-theme="light"] body:not(.page-pts) .site-footer .footer-bottom p,
html[data-theme="dark"] .page-release .site-footer .footer-bottom p,
html[data-theme="dark"] .page-meta .site-footer .footer-bottom p,
html[data-theme="dark"] .page-game-engine .ge-footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.9) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.9) !important;
}

.page-release .site-footer .footer-col h4,
.page-release .site-footer .footer-col a,
.page-meta .site-footer .footer-col h4,
.page-meta .site-footer .footer-col a,
.page-wts .site-footer .footer-col h4,
.page-wts .site-footer .footer-col a,
.page-game-engine .ge-footer .footer-col h4,
.page-game-engine .ge-footer .footer-col a,
body:not(.page-pts) .site-footer .footer-col h4,
body:not(.page-pts) .site-footer .footer-col a,
html[data-theme="light"] body:not(.page-pts) .site-footer .footer-col h4,
html[data-theme="light"] body:not(.page-pts) .site-footer .footer-col a {
  color: rgba(255, 255, 255, 0.92) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.92) !important;
}

.page-release .site-footer .footer-bottom a,
.page-meta .site-footer .footer-bottom a,
.page-wts .site-footer .footer-bottom a,
.page-game-engine .ge-footer .footer-bottom a,
body:not(.page-pts) .site-footer .footer-bottom a,
html[data-theme="light"] body:not(.page-pts) .site-footer .footer-bottom a {
  color: #44C8F5 !important;
  -webkit-text-fill-color: #44C8F5 !important;
}

/* Home dark theme footer copyright also readable */
html[data-theme="dark"] .page-pts .pts-footer .footer-bottom,
html[data-theme="dark"] .page-pts .pts-footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.9) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.9) !important;
}
html[data-theme="dark"] .page-pts .pts-footer .footer-col a {
  color: rgba(255, 255, 255, 0.85) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.85) !important;
}

/* ============================================================
   UNIFIED FOOTER (.tmg-footer) — same on every page, both themes
   ============================================================ */
.site-footer.tmg-footer,
.page-pts .site-footer.tmg-footer,
.page-game-engine .site-footer.tmg-footer,
.page-release .site-footer.tmg-footer,
.page-meta .site-footer.tmg-footer,
.page-wts .site-footer.tmg-footer,
html[data-theme="light"] .site-footer.tmg-footer,
html[data-theme="dark"] .site-footer.tmg-footer,
html[data-theme="light"] .page-pts .site-footer.tmg-footer,
html[data-theme="light"] .page-pts footer.tmg-footer {
  background: #0a0a0a !important;
  background-image: none !important;
  color: #e8eef6 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.site-footer.tmg-footer .footer-brand,
html[data-theme="light"] .site-footer.tmg-footer .footer-brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.7rem !important;
  text-decoration: none !important;
  color: #ffffff !important;
}

.site-footer.tmg-footer .footer-brand-mark {
  width: 48px !important;
  height: 48px !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain !important;
  display: block !important;
}

.site-footer.tmg-footer .footer-brand-text,
html[data-theme="light"] .site-footer.tmg-footer .footer-brand-text {
  font-size: 22px !important;
  font-weight: 500 !important;
  letter-spacing: -0.01em !important;
  line-height: 1.2 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.site-footer.tmg-footer .footer-tag,
html[data-theme="light"] .site-footer.tmg-footer .footer-tag {
  margin: 0.85rem 0 0 !important;
  max-width: 22rem !important;
  font-size: 0.95rem !important;
  line-height: 1.55 !important;
  color: rgba(232, 238, 246, 0.78) !important;
  -webkit-text-fill-color: rgba(232, 238, 246, 0.78) !important;
}

.site-footer.tmg-footer .social-row {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 0.85rem !important;
  margin-top: 1rem !important;
}

.site-footer.tmg-footer .social-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.site-footer.tmg-footer .social-facebook:hover { color: #1877f2 !important; }
.site-footer.tmg-footer .social-instagram:hover { color: #e4405f !important; }
.site-footer.tmg-footer .social-x:hover { color: #ffffff !important; }
.site-footer.tmg-footer .social-linkedin:hover { color: #0a66c2 !important; }

.site-footer.tmg-footer .footer-col h4,
html[data-theme="light"] .site-footer.tmg-footer .footer-col h4 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.site-footer.tmg-footer .footer-col a,
html[data-theme="light"] .site-footer.tmg-footer .footer-col a {
  color: rgba(232, 238, 246, 0.82) !important;
  -webkit-text-fill-color: rgba(232, 238, 246, 0.82) !important;
}

.site-footer.tmg-footer .footer-col a:hover {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.site-footer.tmg-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: transparent !important;
}

.site-footer.tmg-footer .footer-bottom p,
html[data-theme="light"] .site-footer.tmg-footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.7) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.7) !important;
}

.site-footer.tmg-footer .footer-bottom a,
html[data-theme="light"] .site-footer.tmg-footer .footer-bottom a {
  color: #44C8F5 !important;
  -webkit-text-fill-color: #44C8F5 !important;
}

.site-footer.tmg-footer .pts-tmg-mark,
.site-footer.tmg-footer .pts-powered {
  display: none !important;
}

/* ============================================================
   Game Engine: same .ipm phone mockups as home
   dark = silver bezel | light = light bezel | no card bg
   ============================================================ */
.page-game-engine .ge-device-grid figure,
.page-game-engine .ge-data-demo {
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.page-game-engine .ge-device-grid :is(img, video),
.page-game-engine .ge-data-demo video {
  max-width: none !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  background: transparent !important;
}

.page-game-engine .ge-device-grid .ipm,
.page-game-engine .ge-data-demo .ipm {
  --ipm-max: 340px;
  max-width: var(--ipm-max) !important;
  margin-inline: auto !important;
}

.page-game-engine .ge-device-grid figcaption {
  padding: 0.85rem 0.25rem 0 !important;
  background: transparent !important;
  text-align: center !important;
}

.page-game-engine .ge-data-demo figcaption {
  display: none !important;
}

/* Dark: silver frame (same as home) */
html[data-theme="dark"] .page-game-engine .ipm,
html[data-theme="dark"] .page-game-engine .ge-device-grid .ipm,
html[data-theme="dark"] .page-game-engine .ge-data-demo .ipm {
  background:
    linear-gradient(
      145deg,
      #e8eaee 0%,
      #c5CAD1 16%,
      #9aa1a9 38%,
      #6a727c 62%,
      #3a4048 100%
    ) !important;
  background-image:
    linear-gradient(
      145deg,
      #e8eaee 0%,
      #c5CAD1 16%,
      #9aa1a9 38%,
      #6a727c 62%,
      #3a4048 100%
    ) !important;
  background-color: transparent !important;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(0, 0, 0, 0.28) !important;
}

/* Light: light / soft silver frame */
html[data-theme="light"] .page-game-engine .ipm,
html[data-theme="light"] .page-game-engine .ge-device-grid .ipm,
html[data-theme="light"] .page-game-engine .ge-data-demo .ipm,
html[data-theme="light"] .page-pts .ipm {
  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #f2f4f7 22%,
      #dfe3e8 55%,
      #c8ced6 100%
    ) !important;
  background-image:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #f2f4f7 22%,
      #dfe3e8 55%,
      #c8ced6 100%
    ) !important;
  box-shadow:
    0 12px 28px rgba(16, 24, 40, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08) !important;
}

.page-game-engine .ipm-screen,
html[data-theme="light"] .page-game-engine .ipm-screen,
html[data-theme="dark"] .page-game-engine .ipm-screen {
  background: #ffffff !important;
  border-radius: var(--ipm-screen-radius, 16px) !important;
  overflow: hidden !important;
}

.page-game-engine .ipm-screen img,
.page-game-engine .ipm-screen video {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* TAK hero: store badges between tagline and animated text */
.page-pts .pts-tkhero-badges,
.page-tak .pts-tkhero-badges {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 0.75rem !important;
  margin: 1rem 0 1.1rem !important;
}

.page-pts .pts-tkhero-badges a,
.page-tak .pts-tkhero-badges a {
  display: inline-flex !important;
  line-height: 0 !important;
}

.page-pts .pts-tkhero-badges img,
.page-tak .pts-tkhero-badges img {
  display: block !important;
  height: 44px !important;
  width: auto !important;
  max-width: 155px !important;
}

@media (max-width: 560px) {
  .page-pts .pts-tkhero-badges img,
  .page-tak .pts-tkhero-badges img {
    height: 40px !important;
    max-width: 140px !important;
  }
}

/* ============================================================
   TAK light: readable header + visible top gradient shapes
   Badges centered under tagline
   ============================================================ */

/* Light mode TAK header: dark menu (banner is sky/light) */
html[data-theme="light"] .page-tak .tmg-site-header .brand-text,
html[data-theme="light"] .page-tak .tmg-site-header .nav-link,
html[data-theme="light"] .page-tak .tmg-site-header .nav-drop-btn,
html[data-theme="light"] .page-pts.page-tak .tmg-site-header .brand-text,
html[data-theme="light"] .page-pts.page-tak .tmg-site-header .nav-link,
html[data-theme="light"] .page-pts.page-tak .tmg-site-header .nav-drop-btn {
  color: #3D4A5C !important;
  -webkit-text-fill-color: #3D4A5C !important;
}

html[data-theme="light"] .page-tak .tmg-site-header .nav-link:hover,
html[data-theme="light"] .page-tak .tmg-site-header .nav-drop-btn:hover,
html[data-theme="light"] .page-tak .tmg-site-header .nav-link.active,
html[data-theme="light"] .page-tak .tmg-site-header .nav-drop.open .nav-drop-btn {
  color: #10151c !important;
  -webkit-text-fill-color: #10151c !important;
}

html[data-theme="light"] .page-tak .tmg-site-header .nav-drop-btn::after {
  border-color: #3D4A5C !important;
}

html[data-theme="light"] .page-tak .tmg-site-header .nav-toggle span {
  background: #3D4A5C !important;
}

/* Dark mode TAK: keep white menu */
html[data-theme="dark"] .page-tak .tmg-site-header .brand-text,
html[data-theme="dark"] .page-tak .tmg-site-header .nav-link,
html[data-theme="dark"] .page-tak .tmg-site-header .nav-drop-btn {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Light TAK banner: visible soft cyan gradient shapes at top */
html[data-theme="light"] .page-tak .pts-copbag-stage,
html[data-theme="light"] .page-pts.page-tak .pts-copbag-stage {
  position: relative !important;
  overflow: hidden !important;
  background-color: #f5fbfe !important;
  background-image:
    radial-gradient(ellipse 90% 70% at 12% -10%, rgba(68, 200, 245, 0.55) 0%, rgba(68, 200, 245, 0.18) 42%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 92% 0%, rgba(5, 111, 145, 0.28) 0%, rgba(68, 200, 245, 0.12) 40%, transparent 68%),
    linear-gradient(180deg, #dff4fb 0%, #f3faff 28%, #ffffff 55%, #f5fbfe 78%, #e8f6fc 100%) !important;
}

html[data-theme="light"] .page-tak .pts-copbag-stage::before,
html[data-theme="light"] .page-pts.page-tak .pts-copbag-stage::before {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  z-index: 0 !important;
  pointer-events: none !important;
  top: -18% !important;
  left: -12% !important;
  width: min(72vw, 680px) !important;
  height: min(52vw, 420px) !important;
  border-radius: 50% !important;
  background: radial-gradient(circle at 40% 40%, rgba(68, 200, 245, 0.45) 0%, rgba(68, 200, 245, 0.12) 45%, transparent 70%) !important;
  filter: blur(2px) !important;
  opacity: 1 !important;
}

html[data-theme="light"] .page-tak .pts-copbag-stage::after,
html[data-theme="light"] .page-pts.page-tak .pts-copbag-stage::after {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  z-index: 0 !important;
  pointer-events: none !important;
  top: -8% !important;
  right: -10% !important;
  width: min(58vw, 520px) !important;
  height: min(42vw, 360px) !important;
  border-radius: 50% !important;
  background: radial-gradient(circle at 55% 35%, rgba(5, 111, 145, 0.32) 0%, rgba(68, 200, 245, 0.14) 48%, transparent 72%) !important;
  filter: blur(4px) !important;
  opacity: 1 !important;
}

html[data-theme="light"] .page-tak .pts-copbag-stage > .wrap,
html[data-theme="light"] .page-pts.page-tak .pts-copbag-stage > .wrap {
  position: relative !important;
  z-index: 1 !important;
}

/* Center store badges */
.page-tak .pts-tkhero-badges,
.page-pts.page-tak .pts-tkhero-badges,
.page-pts .pts-tkhero-badges {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

/* ============================================================
   LIGHT MODE FOOTER — soft light everywhere (all pages)
   Dark mode keeps black tmg-footer as before
   ============================================================ */
html[data-theme="light"] .site-footer.tmg-footer,
html[data-theme="light"] .page-pts .site-footer.tmg-footer,
html[data-theme="light"] .page-pts footer.tmg-footer,
html[data-theme="light"] .page-game-engine .site-footer.tmg-footer,
html[data-theme="light"] .page-release .site-footer.tmg-footer,
html[data-theme="light"] .page-meta .site-footer.tmg-footer,
html[data-theme="light"] .page-wts .site-footer.tmg-footer,
html[data-theme="light"] .page-tak .site-footer.tmg-footer,
html[data-theme="light"] body .site-footer.tmg-footer {
  background: #ffffff !important;
  background-image: linear-gradient(
    180deg,
    #ffffff 0%,
    #f5fbfe 45%,
    #e8f6fc 100%
  ) !important;
  color: #3D4A5C !important;
  border-top: 1px solid rgba(5, 111, 145, 0.12) !important;
}

html[data-theme="light"] .site-footer.tmg-footer .footer-brand,
html[data-theme="light"] .site-footer.tmg-footer .footer-brand-text {
  color: #10151c !important;
  -webkit-text-fill-color: #10151c !important;
}

html[data-theme="light"] .site-footer.tmg-footer .footer-tag {
  color: #3D4A5C !important;
  -webkit-text-fill-color: #3D4A5C !important;
}

html[data-theme="light"] .site-footer.tmg-footer .social-btn {
  color: #3D4A5C !important;
}

html[data-theme="light"] .site-footer.tmg-footer .social-x:hover {
  color: #10151c !important;
}

html[data-theme="light"] .site-footer.tmg-footer .footer-col h4 {
  color: #10151c !important;
  -webkit-text-fill-color: #10151c !important;
}

html[data-theme="light"] .site-footer.tmg-footer .footer-col a {
  color: #3D4A5C !important;
  -webkit-text-fill-color: #3D4A5C !important;
}

html[data-theme="light"] .site-footer.tmg-footer .footer-col a:hover {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
}

html[data-theme="light"] .site-footer.tmg-footer .footer-bottom {
  border-top: 1px solid rgba(5, 111, 145, 0.12) !important;
  background: transparent !important;
}

html[data-theme="light"] .site-footer.tmg-footer .footer-bottom p,
html[data-theme="light"] body:not(.page-pts) .site-footer .footer-bottom p,
html[data-theme="light"] .page-release .site-footer .footer-bottom p,
html[data-theme="light"] .page-meta .site-footer .footer-bottom p,
html[data-theme="light"] .page-game-engine .site-footer .footer-bottom p {
  color: #5a6a7a !important;
  -webkit-text-fill-color: #5a6a7a !important;
}

html[data-theme="light"] .site-footer.tmg-footer .footer-bottom a,
html[data-theme="light"] body:not(.page-pts) .site-footer .footer-bottom a {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
}

/* Light: Product/More links on secondary pages also dark (not forced white) */
html[data-theme="light"] body:not(.page-pts) .site-footer .footer-col h4,
html[data-theme="light"] body:not(.page-pts) .site-footer .footer-col a,
html[data-theme="light"] .page-release .site-footer .footer-col h4,
html[data-theme="light"] .page-release .site-footer .footer-col a,
html[data-theme="light"] .page-meta .site-footer .footer-col h4,
html[data-theme="light"] .page-meta .site-footer .footer-col a,
html[data-theme="light"] .page-game-engine .site-footer .footer-col h4,
html[data-theme="light"] .page-game-engine .site-footer .footer-col a {
  color: #3D4A5C !important;
  -webkit-text-fill-color: #3D4A5C !important;
}

/* TAK light: hover must stay dark (beat page-pts white hover) */
html[data-theme="light"] .page-pts.page-tak .tmg-site-header .brand-text,
html[data-theme="light"] .page-pts.page-tak .tmg-site-header .nav-link,
html[data-theme="light"] .page-pts.page-tak .tmg-site-header .nav-drop-btn,
html[data-theme="light"] .page-tak .tmg-site-header .brand-text,
html[data-theme="light"] .page-tak .tmg-site-header .nav-link,
html[data-theme="light"] .page-tak .tmg-site-header .nav-drop-btn {
  color: #3D4A5C !important;
  -webkit-text-fill-color: #3D4A5C !important;
}

html[data-theme="light"] .page-pts.page-tak .tmg-site-header .nav-link:hover,
html[data-theme="light"] .page-pts.page-tak .tmg-site-header .nav-link:hover:not(.active),
html[data-theme="light"] .page-pts.page-tak .tmg-site-header .nav-drop-btn:hover,
html[data-theme="light"] .page-pts.page-tak .tmg-site-header .nav-link.active,
html[data-theme="light"] .page-pts.page-tak .tmg-site-header .nav-drop.open .nav-drop-btn,
html[data-theme="light"] .page-tak .tmg-site-header .nav-link:hover,
html[data-theme="light"] .page-tak .tmg-site-header .nav-link:hover:not(.active),
html[data-theme="light"] .page-tak .tmg-site-header .nav-drop-btn:hover,
html[data-theme="light"] .page-tak .tmg-site-header .nav-link.active,
html[data-theme="light"] .page-tak .tmg-site-header .nav-drop.open .nav-drop-btn,
html[data-theme="light"] .page-pts.page-tak .site-header.tmg-site-header .nav-link:hover,
html[data-theme="light"] .page-pts.page-tak .site-header.tmg-site-header .nav-link:hover:not(.active) {
  color: #056F91 !important;
  -webkit-text-fill-color: #056F91 !important;
  opacity: 1 !important;
}

/* TAK + shared mobile header */
.site-header.tmg-site-header .header-inner {
  min-width: 0 !important;
}
.site-header.tmg-site-header .brand {
  min-width: 0 !important;
  overflow: hidden !important;
}
.site-header.tmg-site-header .brand-text {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}
.site-header.tmg-site-header .nav-toggle,
.site-header.tmg-site-header .pts-theme-toggle {
  flex-shrink: 0 !important;
}

@media (max-width: 960px) {
  .page-pts.page-tak .site-header.tmg-site-header {
    position: sticky !important;
    top: 0 !important;
    padding-top: env(safe-area-inset-top, 0px) !important;
  }
  html[data-theme="light"] .page-pts.page-tak .site-header.tmg-site-header {
    background: rgba(245, 251, 254, 0.96) !important;
    background-color: rgba(245, 251, 254, 0.96) !important;
  }
  html[data-theme="dark"] .page-pts.page-tak .site-header.tmg-site-header,
  .page-pts.page-tak .site-header.tmg-site-header.menu-open {
    background: rgba(10, 14, 22, 0.97) !important;
    background-color: rgba(10, 14, 22, 0.97) !important;
  }
  html[data-theme="light"] .page-pts.page-tak .site-header.tmg-site-header.menu-open {
    background: rgba(245, 251, 254, 0.98) !important;
    background-color: rgba(245, 251, 254, 0.98) !important;
  }
  html[data-theme="light"] .page-pts.page-tak .tmg-site-header.menu-open .nav {
    background: #f5fbfe !important;
  }
  html[data-theme="light"] .page-pts.page-tak .tmg-site-header.menu-open .nav-link,
  html[data-theme="light"] .page-pts.page-tak .tmg-site-header.menu-open .nav-drop-btn,
  html[data-theme="light"] .page-pts.page-tak .tmg-site-header.menu-open .nav-drop-menu a {
    color: #3D4A5C !important;
    -webkit-text-fill-color: #3D4A5C !important;
  }
  .page-pts.page-tak .pts-copbag-stage {
    padding-top: 5.5rem !important;
  }
  .page-pts.page-tak .pts-spoke {
    overflow: hidden;
    min-width: 0;
  }
  .site-header.tmg-site-header.menu-open .nav {
    max-height: calc(100dvh - 72px - env(safe-area-inset-top, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 600px) {
  .page-pts.page-tak .pts-spoke {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
  }
  .page-pts.page-tak .pts-spoke-client,
  .page-pts.page-tak .pts-spoke-client.c1,
  .page-pts.page-tak .pts-spoke-client.c2,
  .page-pts.page-tak .pts-spoke-client.c3,
  .page-pts.page-tak .pts-spoke-client.c4,
  .page-pts.page-tak .pts-spoke-client.c5,
  .page-pts.page-tak .pts-spoke-client.c6 {
    grid-column: 1 !important;
    width: 100% !important;
  }
  .page-pts.page-tak .pts-tkhero-logo {
    width: min(8.5rem, 46vw) !important;
  }
}

/* Feature pages */
.page-feat .feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.page-feat .feat-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(4, 90, 119, 0.28);
  color: inherit;
  overflow: hidden;
  min-height: 100%;
  border-radius: 8px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 22px 56px rgba(4, 90, 119, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  text-decoration: none;
}
.page-feat .feat-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
  background: #0b1018;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-feat .feat-card h3 {
  margin: 1rem 1.1rem 0.35rem;
  font-size: 22px;
}
.page-feat .feat-card p {
  margin: 0 1.1rem 1.15rem;
  color: #4a5b70;
  font-size: 18px;
}
.page-feat .feat-layout {
  display: grid;
  grid-template-columns: minmax(280px, 400px) 1fr;
  gap: 2.25rem;
  align-items: start;
}
.page-feat .feat-media,
.page-feat .feat-video,
.page-feat .wtc-demo-media.feat-video {
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  aspect-ratio: auto !important;
  max-width: none;
  margin: 0 auto 1.5rem;
  padding: 0 !important;
}
.page-feat .feat-media .ipm,
.page-feat .feat-video .ipm,
.page-feat .feat-hero-phone-fig .ipm {
  --ipm-max: 380px;
  max-width: 380px;
  margin-inline: auto;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-feat .feat-media.feat-media--full .ipm {
  --ipm-max: 920px;
  max-width: min(920px, 100%);
}
.page-feat .feat-media.feat-media--full .ipm-screen {
  aspect-ratio: auto;
}
.page-feat .feat-media.feat-media--full .ipm-screen img,
.page-feat .feat-media.feat-media--full .ipm-screen video {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #0b1018;
}

html[data-theme="light"] .page-feat .ipm,
html[data-theme="light"] .page-feat .ipm.ipm--hero,
html[data-theme="dark"] .page-feat .ipm,
html[data-theme="dark"] .page-feat .ipm.ipm--hero,
.page-feat .ipm,
.page-feat .ipm.ipm--hero {
  background:
    linear-gradient(145deg, #e8eaee 0%, #c8ccd2 28%, #a6abb3 62%, #8b9098 100%) !important;
  background-image:
    linear-gradient(145deg, #e8eaee 0%, #c8ccd2 28%, #a6abb3 62%, #8b9098 100%) !important;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 rgba(0, 0, 0, 0.22) !important;
}
.page-feat .feat-media img,
.page-feat .ipm-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border: 0;
  display: block;
}
.page-feat .ipm-screen .wtc-play {
  border-radius: inherit;
}

.page-feat .page-hero.feat-hero-phone .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: 2.5rem;
  align-items: center;
}
.page-feat .feat-hero-phone-fig {
  margin: 0;
  justify-self: center;
}
.page-feat .feat-hero-phone-fig--tall .ipm-screen {
  aspect-ratio: 1080 / 2400;
}
.page-feat .feat-hero-phone-fig--tall .ipm-screen img {
  object-fit: contain;
  object-position: top center;
  background: #0b1018;
}
.page-feat .feat-video-native {
  position: relative;
  width: 100%;
  max-width: 1072px;
  margin: 0 auto 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  background: #0b1018;
  border: 1px solid rgba(4, 90, 119, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 16px 36px rgba(4, 90, 119, 0.18);
}
.page-feat .feat-video-native img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1072 / 480;
  object-fit: contain;
  object-position: center;
  background: #0b1018;
}
html[data-theme="dark"] .page-feat .feat-video-native {
  border-color: rgba(126, 224, 255, 0.32);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}
.page-feat .feat-hero-media {
  display: grid;
  gap: 0.85rem;
  justify-items: stretch;
  width: min(380px, 100%);
  justify-self: center;
}
.page-feat .feat-hero-video-box,
.page-feat .feat-hero-shot-box {
  position: relative;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #0b1018;
  border: 1px solid rgba(4, 90, 119, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 16px 36px rgba(4, 90, 119, 0.18);
}
.page-feat .feat-hero-video-box video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1080 / 2400;
  object-fit: contain;
  object-position: top center;
  background: #0b1018;
}
.page-feat .feat-hero-shot-box img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
}
.page-feat .feat-hero-shot-box--body {
  max-width: 380px;
  margin: 0 auto 1.5rem;
}
.page-feat .feat-hero-crop-box {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(139, 144, 152, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 12px 28px rgba(0, 0, 0, 0.16);
}
.page-feat .feat-hero-crop-box img {
  display: block;
  width: 100%;
  height: auto;
}
html[data-theme="dark"] .page-feat .feat-hero-video-box,
html[data-theme="dark"] .page-feat .feat-hero-shot-box {
  border-color: rgba(126, 224, 255, 0.32);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}
html[data-theme="dark"] .page-feat .feat-hero-crop-box {
  background: rgba(16, 24, 32, 0.92);
  border-color: rgba(168, 176, 186, 0.45);
}
.page-feat .feat-points { padding-left: 1.15rem; }
.page-feat .feat-points li + li { margin-top: 0.45rem; }
.page-feat .feat-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.25rem 0;
}
.page-feat .feat-split article {
  padding: 1.25rem 1.3rem;
  border: 1px solid rgba(4, 90, 119, 0.28);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 22px 56px rgba(4, 90, 119, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.page-feat .feat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}
.page-feat .feat-pills span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.3rem 0.82rem 0.3rem 0.68rem;
  border: 1px solid rgba(4, 90, 119, 0.28);
  background: linear-gradient(180deg, #ffffff 0%, #f4fbfe 100%);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.25;
  color: #045A77;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 8px 18px rgba(4, 90, 119, 0.12);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.page-feat .feat-pills span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #74D5F3;
  box-shadow: 0 0 0 3px rgba(116, 213, 243, 0.22);
}
.page-feat .feat-video { margin: 0 auto 1.5rem; }
.page-feat .mt-lg { margin-top: 1.75rem; }

.page-feat .feat-card:hover,
.page-feat .feat-split article:hover {
  transform: translateY(-4px);
}

.page-feat .feat-media:hover .ipm,
.page-feat .feat-video:hover .ipm,
.page-feat .feat-hero-phone-fig:hover .ipm {
  transform: translateY(-4px);
}

.page-feat .feat-card:hover img {
  transform: scale(1.045);
}

.page-feat .feat-pills span:hover {
  background: #056F91;
  color: #ffffff;
  border-color: #056F91;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(5, 111, 145, 0.28);
}
.page-feat .feat-pills span:hover::before {
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
}

.page-feat .feat-split article,
.page-feat .feat-split article p,
.page-feat .feat-split article li {
  font-size: 18px;
}
.page-feat .feat-split article h3,
.page-feat .feat-split article h3 .feat-h-mark {
  font-size: 22px;
}
.page-feat .feat-split article h3 {
  color: #14233A;
  font-weight: 500;
  margin: 0 0 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  border: 0;
}

.page-feat .feat-os-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #74D5F3;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
}
.page-feat .feat-os-logo {
  width: 26px;
  height: 26px;
  object-fit: contain;
  mix-blend-mode: screen;
  padding: 0;
  background: none;
  border-radius: 0;
}

@keyframes feat-rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

.page-feat .feat-rise {
  animation: feat-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--feat-delay, 0s);
}

.page-feat .feat-await {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .page-feat .feat-card,
  .page-feat .feat-card img,
  .page-feat .feat-split article,
  .page-feat .feat-media,
  .page-feat .feat-video,
  .page-feat .wtc-demo-media.feat-video,
  .page-feat .feat-pills span {
    transition: none;
  }
  .page-feat .feat-rise {
    animation: none;
  }
  .page-feat .feat-card:hover,
  .page-feat .feat-split article:hover,
  .page-feat .feat-media:hover,
  .page-feat .feat-video:hover,
  .page-feat .feat-pills span:hover {
    transform: none;
  }
}

.page-feat .btn-cta.btn-cta-ref,
.page-feat a.btn-cta-ref {
  background: #056F91 !important;
  background-image: none !important;
  color: #ffffff !important;
  border-radius: 9px !important;
  box-shadow: 0 10px 26px rgba(5, 111, 145, 0.28) !important;
}
.page-feat .btn-cta-ref:hover {
  background: #045a77 !important;
  color: #ffffff !important;
  box-shadow: 0 14px 32px rgba(5, 111, 145, 0.4) !important;
}
.page-feat .btn-cta-ref .btn-cta-label {
  color: #ffffff !important;
}
.page-feat .btn-cta-ref .btn-cta-arrow {
  background: #ffffff !important;
  border-radius: 7px !important;
}
.page-feat .btn-cta-ref .btn-cta-arrow img {
  filter: none !important;
}
.page-feat .btn-secondary,
.page-feat a.btn-secondary {
  background: #056F91 !important;
  color: #ffffff !important;
  border: 0 !important;
  border-radius: 9px !important;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(5, 111, 145, 0.28) !important;
}
.page-feat .btn-secondary::before,
.page-feat .btn-secondary::after {
  display: none !important;
}
.page-feat .btn-secondary:hover,
.page-feat a.btn-secondary:hover {
  background: #045a77 !important;
  color: #ffffff !important;
}

.page-feat h2.feat-h-accent {
  color: #14233A;
  font-weight: 500;
}

.page-feat .feat-h-mark {
  color: #045A77;
  font-weight: 700;
}

.page-feat .page-hero .kicker {
  color: #045A77 !important;
  font-weight: 700 !important;
}

.page-feat .page-hero h1 {
  font-weight: 500;
}
.page-feat .page-hero h1 .feat-h-mark,
.page-feat .page-hero h1 .feat-h-gold {
  font-weight: 700;
}
.page-feat .feat-h-gold {
  color: #c9a227;
  font-weight: 700;
}

@media (max-width: 900px) {
  .page-feat .feat-grid,
  .page-feat .feat-layout,
  .page-feat .page-hero.feat-hero-phone .wrap { grid-template-columns: 1fr; }
  .page-feat .feat-card img { height: 300px; }
  .page-feat .feat-hero-phone-fig,
  .page-feat .feat-hero-media { order: -1; }
}

/* Full-page sky → white wash (light mode) */
html[data-theme="light"] body.page-feat {
  background-color: #ffffff;
  background-image: linear-gradient(180deg, #A5E3FF 0%, #D4F2FF 32%, #F3FBFF 68%, #FFFFFF 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

html[data-theme="light"] .page-feat .page-hero,
html[data-theme="light"] .page-feat .section,
html[data-theme="light"] .page-feat .section-white {
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-block: 0 !important;
  border-bottom: 0 !important;
}

/* Dark header: Contact Us + chevrons + toggle icons are white */
html[data-theme="dark"] .tmg-site-header .tmg-header-contact,
html[data-theme="dark"] body .tmg-site-header .tmg-header-contact,
html[data-theme="dark"] .page-meta .tmg-header-contact,
html[data-theme="dark"] .page-feat .tmg-header-contact,
html[data-theme="dark"] .page-release .tmg-header-contact,
html[data-theme="dark"] .page-wts .tmg-header-contact,
html[data-theme="dark"] .page-tak .tmg-header-contact,
html[data-theme="dark"] .page-pts .tmg-header-contact,
.page-meta .tmg-site-header .tmg-header-contact,
.page-feat .tmg-site-header .tmg-header-contact,
.page-release .tmg-site-header .tmg-header-contact,
.page-wts .tmg-site-header .tmg-header-contact,
.page-tak .tmg-site-header .tmg-header-contact,
html[data-theme="light"] .page-meta .tmg-site-header .tmg-header-contact,
html[data-theme="light"] .page-feat .tmg-site-header .tmg-header-contact,
html[data-theme="light"] .page-release .tmg-site-header .tmg-header-contact,
html[data-theme="light"] .page-wts .tmg-site-header .tmg-header-contact,
html[data-theme="light"] .page-tak .tmg-site-header .tmg-header-contact {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.7) !important;
}

html[data-theme="dark"] .tmg-site-header .tmg-header-contact:hover,
.page-meta .tmg-site-header .tmg-header-contact:hover,
.page-feat .tmg-site-header .tmg-header-contact:hover,
html[data-theme="light"] .page-meta .tmg-site-header .tmg-header-contact:hover {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border-color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

html[data-theme="dark"] .tmg-site-header .nav-drop-btn::after,
html[data-theme="dark"] body .tmg-site-header .nav-drop-btn::after,
.page-meta .tmg-site-header .nav-drop-btn::after,
.page-feat .tmg-site-header .nav-drop-btn::after,
.page-release .tmg-site-header .nav-drop-btn::after,
.page-wts .tmg-site-header .nav-drop-btn::after,
.page-tak .tmg-site-header .nav-drop-btn::after {
  border-color: #ffffff !important;
}

html[data-theme="dark"] .tmg-site-header .nav-toggle span,
.page-meta .tmg-site-header .nav-toggle span,
.page-feat .tmg-site-header .nav-toggle span {
  background: #ffffff !important;
}

html[data-theme="dark"] .tmg-site-header .pts-theme-toggle,
html[data-theme="dark"] body .tmg-site-header .pts-theme-toggle,
.page-meta .tmg-site-header .pts-theme-toggle,
.page-feat .tmg-site-header .pts-theme-toggle,
html[data-theme="light"] .page-meta .tmg-site-header .pts-theme-toggle,
html[data-theme="light"] .page-feat .tmg-site-header .pts-theme-toggle {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

html[data-theme="dark"] .tmg-site-header .pts-theme-toggle-dark,
html[data-theme="dark"] .tmg-site-header .pts-theme-toggle-light,
html[data-theme="dark"] .tmg-site-header .pts-theme-toggle-dark svg,
html[data-theme="dark"] .tmg-site-header .pts-theme-toggle-dark svg circle,
html[data-theme="dark"] .tmg-site-header .pts-theme-toggle-light svg,
html[data-theme="dark"] .tmg-site-header .pts-theme-toggle-light svg path,
.page-meta .tmg-site-header .pts-theme-toggle-dark,
.page-meta .tmg-site-header .pts-theme-toggle-light,
.page-feat .tmg-site-header .pts-theme-toggle-dark,
.page-feat .tmg-site-header .pts-theme-toggle-light,
html[data-theme="light"] .page-meta .tmg-site-header .pts-theme-toggle-light,
html[data-theme="light"] .page-feat .tmg-site-header .pts-theme-toggle-light {
  color: #ffffff !important;
  fill: #ffffff !important;
}

html[data-theme="dark"] .tmg-site-header .pts-theme-toggle-dark svg path,
.page-meta .tmg-site-header .pts-theme-toggle-dark svg path,
.page-feat .tmg-site-header .pts-theme-toggle-dark svg path {
  stroke: #ffffff !important;
  fill: none !important;
}
html[data-theme="dark"] .tmg-site-header .pts-theme-toggle-light svg path,
.page-meta .tmg-site-header .pts-theme-toggle-light svg path,
.page-feat .tmg-site-header .pts-theme-toggle-light svg path,
html[data-theme="light"] .page-meta .tmg-site-header .pts-theme-toggle-light svg path,
html[data-theme="light"] .page-feat .tmg-site-header .pts-theme-toggle-light svg path {
  fill: #ffffff !important;
  stroke: none !important;
}

/* Feature pages — dark theme */
html[data-theme="dark"] body.page-feat,
html[data-theme="dark"] body.page-meta.page-feat {
  --meta-bg: #050b14;
  --meta-panel: #101820;
  --meta-text: #f4f7fb;
  --meta-muted: #b7c6d6;
  --meta-line: rgba(126, 224, 255, 0.14);
  --meta-soft: #0c1622;
  color: #b7c6d6;
  position: relative;
  isolation: isolate;
  background-color: #050b14;
  background-image:
    radial-gradient(ellipse 80% 55% at 6% 4%, rgba(68, 200, 245, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 60% 42% at 94% 12%, rgba(5, 111, 145, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 55% 38% at 12% 48%, rgba(68, 200, 245, 0.08) 0%, transparent 62%),
    radial-gradient(ellipse 65% 42% at 88% 62%, rgba(68, 200, 245, 0.1) 0%, transparent 58%),
    radial-gradient(ellipse 50% 32% at 30% 92%, rgba(5, 111, 145, 0.08) 0%, transparent 64%),
    linear-gradient(180deg, #06141c 0%, #050b14 38%, #071018 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

html[data-theme="dark"] body.page-feat::before,
html[data-theme="dark"] body.page-meta.page-feat::before,
html[data-theme="dark"] body.page-feat::after,
html[data-theme="dark"] body.page-meta.page-feat::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(42px);
}

html[data-theme="dark"] body.page-feat::before,
html[data-theme="dark"] body.page-meta.page-feat::before {
  width: min(72vw, 680px);
  height: min(56vw, 520px);
  top: -10%;
  left: -14%;
  background: radial-gradient(circle at 40% 40%, rgba(68, 200, 245, 0.16) 0%, rgba(5, 111, 145, 0.05) 46%, transparent 70%);
}

html[data-theme="dark"] body.page-feat::after,
html[data-theme="dark"] body.page-meta.page-feat::after {
  width: min(62vw, 560px);
  height: min(50vw, 460px);
  right: -12%;
  top: 36%;
  background: radial-gradient(circle at 50% 50%, rgba(68, 200, 245, 0.12) 0%, rgba(5, 111, 145, 0.04) 50%, transparent 72%);
}

html[data-theme="dark"] body.page-feat > *,
html[data-theme="dark"] body.page-meta.page-feat > * {
  position: relative;
  z-index: 1;
}

html[data-theme="dark"] .page-feat .page-hero,
html[data-theme="dark"] .page-feat .section,
html[data-theme="dark"] .page-feat .section-white,
html[data-theme="dark"] .page-meta.page-feat .page-hero,
html[data-theme="dark"] .page-meta.page-feat .section,
html[data-theme="dark"] .page-meta.page-feat .section-white {
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-block: 0 !important;
  border-bottom: 0 !important;
  color: inherit;
}

html[data-theme="dark"] .page-feat h1,
html[data-theme="dark"] .page-feat h2,
html[data-theme="dark"] .page-feat h3,
html[data-theme="dark"] .page-feat .page-hero h1,
html[data-theme="dark"] .page-meta.page-feat h1,
html[data-theme="dark"] .page-meta.page-feat h2,
html[data-theme="dark"] .page-meta.page-feat h3,
html[data-theme="dark"] .page-feat .feat-card h3,
html[data-theme="dark"] .page-feat h2.feat-h-accent,
html[data-theme="dark"] .page-feat .feat-split article h3 {
  color: #f4f7fb !important;
  -webkit-text-fill-color: #f4f7fb !important;
}

html[data-theme="dark"] .page-feat p,
html[data-theme="dark"] .page-feat li,
html[data-theme="dark"] .page-feat .lead,
html[data-theme="dark"] .page-feat .feat-card p,
html[data-theme="dark"] .page-feat .feat-points,
html[data-theme="dark"] .page-meta.page-feat .page-hero .lead {
  color: #b7c6d6 !important;
}

html[data-theme="dark"] .page-feat .page-hero .kicker,
html[data-theme="dark"] .page-feat .feat-h-mark,
html[data-theme="dark"] .page-feat h2.feat-h-accent .feat-h-mark,
html[data-theme="dark"] .page-feat .page-hero h1 .feat-h-mark {
  color: #69D9F8 !important;
  -webkit-text-fill-color: #69D9F8 !important;
  font-weight: 700;
}

html[data-theme="dark"] .page-feat .feat-h-gold,
html[data-theme="dark"] .page-feat .page-hero h1 .feat-h-gold {
  color: #EED74D !important;
  -webkit-text-fill-color: #EED74D !important;
  font-weight: 700;
}

html[data-theme="dark"] .page-feat .page-hero h1 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-weight: 500;
}

html[data-theme="dark"] .page-feat strong {
  color: #e8eef6;
}

html[data-theme="dark"] .page-feat .feat-card,
html[data-theme="dark"] .page-feat .feat-split article {
  background: rgba(16, 24, 32, 0.78) !important;
  border-color: rgba(126, 224, 255, 0.38) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 22px 56px rgba(68, 200, 245, 0.16) !important;
}

html[data-theme="dark"] .page-feat .feat-media,
html[data-theme="dark"] .page-feat .feat-video,
html[data-theme="dark"] .page-feat .wtc-demo-media.feat-video {
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

html[data-theme="dark"] .page-feat .feat-pills span {
  background: linear-gradient(180deg, rgba(22, 34, 46, 0.95) 0%, rgba(12, 20, 30, 0.9) 100%);
  border-color: rgba(126, 224, 255, 0.32);
  color: #9EE8FF;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 8px 18px rgba(0, 0, 0, 0.28);
}
html[data-theme="dark"] .page-feat .feat-pills span::before {
  background: #69D9F8;
  box-shadow: 0 0 0 3px rgba(105, 217, 248, 0.18);
}

html[data-theme="dark"] .page-feat .feat-pills span:hover {
  background: #056F91;
  color: #ffffff;
  border-color: #7EE0FF;
}
html[data-theme="dark"] .page-feat .feat-pills span:hover::before {
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}

html[data-theme="dark"] .page-feat .feat-os-badge {
  background: #74D5F3;
}

html[data-theme="dark"] .page-feat .btn-cta.btn-cta-ref,
html[data-theme="dark"] .page-feat a.btn-cta-ref,
html[data-theme="dark"] .page-feat .btn-secondary,
html[data-theme="dark"] .page-feat a.btn-secondary {
  background: #056F91 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 26px rgba(68, 200, 245, 0.22) !important;
}

html[data-theme="dark"] .page-feat .btn-cta-ref .btn-cta-arrow {
  background: #ffffff !important;
}

/* ========== Site-wide mobile / tablet (last so it wins) ========== */
html {
  overflow-x: clip;
}
body {
  overflow-x: clip;
  max-width: 100%;
}
img, video, iframe, svg {
  max-width: 100%;
}
body.nav-open {
  overflow: hidden;
}

@media (max-width: 1180px) {
  :root { --wrap: min(1180px, calc(100% - 1.5rem)); }

  .site-header.tmg-site-header .nav,
  .tmg-header-contact,
  .site-header.tmg-site-header .tmg-header-contact {
    display: none !important;
  }
  .nav-toggle {
    display: block !important;
  }
  .site-header.tmg-site-header {
    padding-top: env(safe-area-inset-top, 0px);
  }
  .site-header.tmg-site-header .header-inner {
    min-height: 56px !important;
    gap: 0.45rem !important;
  }
  .site-header.tmg-site-header .brand-text {
    font-size: 0.92rem !important;
  }
  .site-header.tmg-site-header.menu-open .nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-height: min(78dvh, calc(100dvh - 56px - env(safe-area-inset-top, 0px))) !important;
    overflow-y: auto !important;
    z-index: 500 !important;
    padding: 0.5rem 0 calc(1rem + env(safe-area-inset-bottom, 0px)) !important;
    background: rgba(10, 14, 22, 0.98) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35) !important;
  }
  .site-header.tmg-site-header.menu-open .nav-link,
  .site-header.tmg-site-header.menu-open .nav-drop-btn,
  .site-header.tmg-site-header.menu-open .nav-drop-menu a,
  html[data-theme="light"] .site-header.tmg-site-header.menu-open .nav-link,
  html[data-theme="light"] .site-header.tmg-site-header.menu-open .nav-drop-btn,
  html[data-theme="light"] .site-header.tmg-site-header.menu-open .nav-drop-menu a,
  html[data-theme="light"] .page-pts .tmg-site-header.menu-open .nav-link,
  html[data-theme="light"] .page-pts .tmg-site-header.menu-open .nav-drop-btn,
  html[data-theme="light"] .page-pts .tmg-site-header.menu-open .nav-drop-menu a {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    width: 100% !important;
    text-align: left !important;
    padding: 0.85rem 1.2rem !important;
    border-radius: 0 !important;
  }
  .site-header.tmg-site-header.menu-open .nav-drop-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: none;
    padding: 0 0 0.35rem !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }
  .site-header.tmg-site-header.menu-open .nav-drop.open .nav-drop-menu {
    display: block !important;
  }
  .site-header.tmg-site-header.menu-open .nav-drop-menu a {
    padding-left: 1.85rem !important;
    font-size: 0.95rem !important;
    opacity: 0.88;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-toggle span {
    transition: transform 0.18s ease, opacity 0.18s ease;
  }
}

@media (max-width: 900px) {
  .page-pts .pts-two,
  .page-pts .pts-story,
  .page-pts .pts-story-2,
  .page-pts .pts-feat,
  .page-pts .pts-icon-grid,
  .page-feat .feat-grid,
  .page-feat .feat-layout,
  .page-feat .page-hero.feat-hero-phone .wrap,
  .page-hero-actions,
  .page-meta .page-hero-actions,
  .footer-grid,
  .cap-grid,
  .tak-grid,
  .split,
  .hero-grid {
    grid-template-columns: 1fr !important;
  }
  .page-feat .feat-hero-phone-fig,
  .page-feat .feat-hero-media {
    order: -1;
    justify-self: center;
    width: min(100%, 320px);
  }
  .page-pts .pts-feat-phone {
    order: -1;
    width: min(100%, 260px);
    justify-self: center;
  }
  .page-pts .pts-feat-col {
    grid-template-columns: 1fr !important;
    width: 100%;
  }
  .page-pts .pts-hb .pts-hb-actions,
  .page-pts .pts-hb .pts-hb-stores,
  .hero-ctas {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .page-pts .pts-hb a.pts-hb-cta,
  .page-pts .pts-hb a.pts-hb-ghost,
  .page-hero-actions .btn,
  .page-hero-actions a {
    width: 100%;
    justify-content: center;
  }
  .page-pts .pts-hb a.pts-hb-cta { justify-content: space-between; }
  .page-pts .pts-hb .pts-hb-badge img {
    width: auto;
    max-width: 100%;
    height: 44px;
  }
  .hs-anchor-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
  .hs-anchor-links {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .page-pts .pts-tkhero-h2,
  .page-pts .pts-tkhero-tagline,
  html[data-theme="light"] .page-pts .pts-tkhero-tagline,
  html[data-theme="dark"] .page-pts .pts-tkhero-tagline {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    font-size: clamp(1.05rem, 5.2vw, 1.55rem) !important;
    line-height: 1.25 !important;
  }
  .page-meta .page-hero,
  .page-feat .page-hero,
  .page-hero {
    padding-top: 5.25rem;
  }
  .page-pts .pts-hero-brand.pts-hb {
    min-height: 0 !important;
    padding-top: calc(4.5rem + env(safe-area-inset-top, 0px)) !important;
    padding-bottom: 2rem !important;
  }
  .page-pts .pts-hb .pts-hb-title {
    font-size: clamp(1.45rem, 7.2vw, 2.15rem) !important;
    line-height: 1.15 !important;
  }
  .ipm,
  .page-feat .feat-media .ipm,
  .page-feat .feat-hero-phone-fig .ipm {
    --ipm-max: min(320px, calc(100vw - 2rem));
    max-width: min(320px, 100%) !important;
    width: 100%;
  }
  .release-table {
    min-width: 0 !important;
  }
  .matrix-wrap,
  .page-release {
    overflow-x: auto;
  }
  .page-feat .feat-card img {
    height: 220px;
  }
}

@media (max-width: 600px) {
  :root { --wrap: calc(100% - 1.15rem); }
  .brand-text { font-size: 0.82rem !important; }
  .page-pts .pts-h2,
  .page-pts .pts-h2-stack {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }
  .page-pts .pts-chip-row,
  .page-pts .pts-chip-row-static {
    flex-wrap: wrap;
  }
  .page-pts .pts-phone.pts-phone-device {
    width: min(240px, 86vw);
  }
  .compat-showcase-copy {
    padding-left: 1rem !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}
