:root {
  --g: #e0b939;
  --g2: #edd78e;
  --lime: #e8fd09;
  --bg: #0c0c0c;
  --bg2: #121212;
  --card: #141414;
  --bd: rgba(255, 255, 255, 0.08);
  --tx: #fafafa;
  --mu: #b9b9b9;
  --dim: #8a8a8a;
  --max: 1360px;
  --header: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: Inter, "Rethink Sans", system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--tx);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, .btn { font-family: inherit; cursor: pointer; border: 0; }
.container { width: min(100% - clamp(24px, 5vw, 64px), var(--max)); margin-inline: auto; }

/* Header */
.gp-header {
  position: fixed; inset: 0 0 auto 0; height: var(--header); z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(12,12,12,.74);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: border-color .3s, background .3s;
}
.gp-header.scrolled { border-bottom-color: rgba(255,255,255,.08); background: rgba(12,12,12,.74); }
.gp-header .inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: min(100% - clamp(24px, 5vw, 64px), var(--max)); margin-inline: auto;
}
.logo {
  display: inline-flex; align-items: center; gap: .65rem;
  font-weight: 700; font-size: 1.15rem; letter-spacing: -.03em;
}
.logo svg { width: 34px; height: 34px; flex-shrink: 0; }
.logo .gp-brand, img.gp-brand {
  height: 38px; width: auto; max-width: 200px;
  display: block; object-fit: contain;
}
.gp-footer .gp-brand { height: 42px; max-width: 220px; }
.logo .dot { color: var(--g); }
.nav { display: flex; align-items: center; gap: .15rem; flex-wrap: wrap; justify-content: flex-end; }
.nav a {
  padding: .5rem .75rem; border-radius: 999px; font-size: .9rem; color: var(--mu);
  transition: .2s;
}
.nav a:hover, .nav a.active { color: var(--tx); background: rgba(255,255,255,.05); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .85rem 1.25rem; border-radius: 999px; font-weight: 700; font-size: .92rem;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--g), #bb8e10); color: #111;
  box-shadow: 0 10px 28px rgba(224,185,57,.25);
}
.btn-secondary { background: transparent; color: var(--tx); border: 1px solid var(--bd); }
.btn-secondary:hover { border-color: var(--g); color: var(--g2); }
.btn-lime { background: var(--lime); color: #111; }
.btn-sm { padding: .55rem 1rem; font-size: .86rem; }
.menu-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  background: var(--card); color: var(--tx); border: 1px solid var(--bd);
}

/* Page hero */
.page-hero {
  padding: calc(var(--header) + 3.5rem) 0 3.25rem;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--bd);
  background:
    radial-gradient(ellipse 55% 70% at 85% 0%, rgba(224,185,57,.14), transparent 55%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(232,253,9,.05), transparent 50%),
    var(--bg);
}
.page-hero .float {
  position: absolute; pointer-events: none; opacity: .35;
  animation: float 10s ease-in-out infinite; z-index: 0;
}
@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-16px) scale(1.03); }
}
.page-hero .container { position: relative; z-index: 1; }
.crumb { font-size: .85rem; color: var(--dim); margin-bottom: 1rem; }
.crumb a:hover { color: var(--g); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--g); font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: .9rem;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--lime);
  box-shadow: 0 0 0 0 rgba(232,253,9,.4); animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(232,253,9,.4); }
  70% { box-shadow: 0 0 0 10px rgba(232,253,9,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,253,9,0); }
}
h1 {
  margin: 0 0 1rem; font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.1; letter-spacing: -.03em; font-weight: 700;
}
.lead { margin: 0; max-width: 52ch; color: var(--mu); font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }

/* Sections */
.section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; position: relative; overflow: hidden; }
.section.border-t { border-top: 1px solid var(--bd); }
.section-head { margin-bottom: 2rem; max-width: 44rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lead { margin-inline: auto; }
h2 {
  margin: 0 0 .75rem; font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15; letter-spacing: -.02em; font-weight: 700;
}
h3 { margin: 0 0 .55rem; font-size: 1.15rem; font-weight: 700; }
.muted { color: var(--mu); }
.dim { color: var(--dim); }
.text-gold { color: var(--g); }

/* Grids / cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(14px, 1.5vw, 22px); }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(14px, 1.5vw, 22px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.card {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, rgba(255,255,255,.035), transparent 42%), var(--card);
  border: 1px solid var(--bd); border-radius: 20px; padding: 1.45rem 1.35rem 1.55rem;
  transition: transform .4s var(--ease), border-color .3s, box-shadow .4s;
  height: 100%;
}
.card .orb {
  position: absolute; width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,253,9,.26), transparent 68%);
  top: -36px; right: -28px; animation: glow 4.5s ease-in-out infinite; pointer-events: none;
}
@keyframes glow {
  0%,100% { opacity: .35; transform: scale(1); }
  50% { opacity: .7; transform: scale(1.08); }
}
.card:hover {
  transform: translateY(-7px);
  border-color: rgba(224,185,57,.45);
  box-shadow: 0 24px 50px rgba(0,0,0,.4);
}
.card p { margin: 0; color: var(--mu); font-size: .94rem; }
.ico {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  margin-bottom: 1rem; border: 1.5px solid rgba(232,253,9,.5);
  background: rgba(232,253,9,.06); box-shadow: 0 0 20px rgba(232,253,9,.1); font-size: 1.15rem;
}
.tag {
  display: inline-block; margin-top: 1rem; padding: .4rem .75rem; border-radius: 999px;
  background: rgba(232,253,9,.1); color: var(--lime); font-size: .75rem; font-weight: 700;
}
.link { display: inline-flex; margin-top: 1rem; color: var(--g); font-weight: 600; font-size: .9rem; }
.link:hover { color: var(--lime); }

/* Split */
.split {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.25rem, 3vw, 2.25rem); align-items: center;
}
.photo {
  position: relative; border-radius: 22px; overflow: hidden;
  aspect-ratio: 4 / 3; min-height: 280px; width: 100%;
  background: #1a1a1a;
  box-shadow: 0 28px 60px rgba(0,0,0,.45);
}
/* Always paint the image — never collapse to empty */
.photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 1.1s var(--ease);
}
.photo:hover img { transform: scale(1.05); }
.photo .shine {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: radial-gradient(circle at 70% 20%, rgba(232,253,9,.18), transparent 48%);
  mix-blend-mode: screen; animation: glow 5s ease-in-out infinite;
}
.page-hero .float { opacity: .35 !important; }

/* Pricing calc (shared) */
.calc {
  background: linear-gradient(160deg, rgba(224,185,57,.1), transparent 40%), #121212;
  border: 1px solid rgba(224,185,57,.28); border-radius: 24px;
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 28px 70px rgba(0,0,0,.35); position: relative; overflow: hidden;
}
.tabs { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.4rem; }
.tab {
  appearance: none; border: 1px solid var(--bd); background: #1a1a1a; color: var(--mu);
  border-radius: 999px; padding: .65rem 1rem; font-weight: 600; font-size: .9rem; cursor: pointer;
}
.tab.is-active {
  background: linear-gradient(135deg, var(--g), #bb8e10); color: #111; border-color: transparent;
}
.calc-row { display: grid; grid-template-columns: 1.25fr .85fr; gap: 1.5rem; align-items: center; }
.slider-wrap label { display: flex; justify-content: space-between; color: var(--mu); font-size: .9rem; }
.slider-wrap strong { color: var(--g2); font-size: 1.15rem; }
input[type=range] {
  -webkit-appearance: none; width: 100%; height: 7px; border-radius: 999px; outline: none; margin: .9rem 0 .5rem;
  background: linear-gradient(90deg, var(--g), rgba(224,185,57,.2));
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--lime); border: 3px solid #111; box-shadow: 0 0 0 4px rgba(232,253,9,.18); cursor: pointer;
}
.marks { display: flex; justify-content: space-between; color: var(--dim); font-size: .7rem; }
.out {
  background: #0c0c0c; border: 1px solid var(--bd); border-radius: 18px; padding: 1.5rem 1.2rem; text-align: center;
}
.out .per { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; color: var(--g); letter-spacing: -.03em; line-height: 1; }
.out .per span { font-size: 1rem; color: var(--mu); font-weight: 600; }
.out .total { margin-top: .75rem; color: var(--mu); font-size: .95rem; }
.out .total b { color: var(--tx); }
.note { margin-top: .75rem; color: var(--dim); font-size: .78rem; line-height: 1.5; }

/* Table */
.table-wrap {
  overflow-x: auto; border: 1px solid var(--bd); border-radius: 16px; background: var(--card);
}
table { width: 100%; border-collapse: collapse; min-width: 640px; }
th, td { padding: .9rem 1rem; text-align: left; border-bottom: 1px solid var(--bd); font-size: .92rem; }
th { color: var(--g2); font-weight: 600; background: rgba(255,255,255,.02); }
td { color: var(--mu); }
tr:last-child td { border-bottom: 0; }

/* FAQ */
.faq { display: grid; gap: .7rem; max-width: 760px; margin-inline: auto; }
.faq-item { border: 1px solid var(--bd); border-radius: 14px; background: var(--card); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: transparent; color: var(--tx);
  padding: 1rem 1.15rem; font-weight: 600; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq-q .icon {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--bd);
  display: grid; place-items: center; color: var(--g); transition: transform .25s;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); color: var(--lime); }
.faq-a { display: none; padding: 0 1.15rem 1.1rem; color: var(--mu); font-size: .95rem; }
.faq-item.open .faq-a { display: block; }

/* CTA */
.cta {
  margin-top: 1rem; padding: clamp(2rem, 4vw, 3rem) 1.5rem; border-radius: 24px; text-align: center;
  border: 1px solid rgba(224,185,57,.35);
  background: radial-gradient(ellipse at 20% 40%, rgba(224,185,57,.16), transparent 55%), #121212;
}
.cta h2 { max-width: 18ch; margin-inline: auto; }

/* Prose */
.prose { max-width: 720px; }
.prose p { color: var(--mu); margin: 0 0 1rem; }
.prose ul { margin: 0 0 1rem; padding-left: 1.1rem; color: var(--mu); }
.prose li { margin-bottom: .4rem; }

/* ===== Page motion (all GP dropdown / secondary pages) ===== */
.m {
  opacity: 0;
  transform: translateY(36px);
  will-change: opacity, transform;
  transition: none;
}
.m.in {
  animation: gpRise .85s var(--ease) forwards;
}
.m.in.slide-l { animation-name: gpSlideL; }
.m.in.slide-r { animation-name: gpSlideR; }
.m.in.scale-in { animation-name: gpScaleIn; }
.photo.m.in {
  animation-name: gpPhotoIn;
}
.d0 { animation-delay: 0s; }
.d1 { animation-delay: .1s; }
.d2 { animation-delay: .2s; }
.d3 { animation-delay: .3s; }
.d4 { animation-delay: .4s; }
.d5 { animation-delay: .5s; }
@keyframes gpRise {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: none; }
}
@keyframes gpSlideL {
  from { opacity: 0; transform: translateX(-48px); }
  to { opacity: 1; transform: none; }
}
@keyframes gpSlideR {
  from { opacity: 0; transform: translateX(48px); }
  to { opacity: 1; transform: none; }
}
@keyframes gpScaleIn {
  from { opacity: 0; transform: scale(.94) translateY(20px); }
  to { opacity: 1; transform: none; }
}
@keyframes gpPhotoIn {
  from { opacity: 0; transform: scale(1.04) translateY(24px); filter: blur(6px); }
  to { opacity: 1; transform: none; filter: none; }
}

/* Continuous subtle motion */
.page-hero .float {
  animation: gpFloatY 9s ease-in-out infinite;
}
@keyframes gpFloatY {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-14px) scale(1.02); }
}
.photo {
  transition: transform .5s var(--ease), box-shadow .5s;
}
.photo.in {
  /* after enter animation ends, allow hover */
}
.card {
  transition: transform .45s var(--ease), border-color .3s, box-shadow .45s;
}
.card.m.in {
  animation-name: gpScaleIn;
}
.section .eyebrow {
  transition: color .3s;
}
.cta {
  position: relative;
  overflow: hidden;
}
.cta::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(232,253,9,.12), transparent 65%);
  animation: gpGlowPulse 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes gpGlowPulse {
  0%, 100% { opacity: .45; transform: translate(0,0); }
  50% { opacity: .9; transform: translate(8%, 4%); }
}

/* Stagger children when section is in view */
.grid-3 .card.m:nth-child(1) { animation-delay: .05s; }
.grid-3 .card.m:nth-child(2) { animation-delay: .12s; }
.grid-3 .card.m:nth-child(3) { animation-delay: .19s; }
.grid-3 .card.m:nth-child(4) { animation-delay: .26s; }
.grid-3 .card.m:nth-child(5) { animation-delay: .33s; }
.grid-3 .card.m:nth-child(6) { animation-delay: .4s; }

/* Hero text cascade */
.page-hero .m.d1 { animation-delay: .05s; }
.page-hero .m.d2 { animation-delay: .15s; }
.page-hero .m.d3 { animation-delay: .25s; }

/* Table / FAQ soft enter */
.table-wrap.m.in,
.faq.m.in {
  animation-name: gpRise;
}

@media (prefers-reduced-motion: reduce) {
  .m, .photo.m, .page-hero .float, .cta::after {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    filter: none !important;
  }
}

/* Footer */
.gp-footer {
  border-top: 1px solid var(--bd); background: #090909;
  padding: 3.25rem 0 1.75rem; margin-top: 1rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 1.75rem; margin-bottom: 2rem;
}
.footer-col h4 {
  font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--g2); margin: 0 0 .85rem;
}
.footer-col a { display: block; color: var(--mu); font-size: .9rem; padding: .28rem 0; }
.footer-col a:hover { color: var(--tx); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding-top: 1.25rem; border-top: 1px solid var(--bd); font-size: .82rem; color: var(--dim);
}
@media (max-width: 980px) {
  .grid-3, .grid-2, .grid-4, .split, .calc-row, .footer-grid { grid-template-columns: 1fr; }
  .nav {
    display: none; position: fixed; inset: var(--header) 0 auto 0;
    flex-direction: column; align-items: stretch; background: rgba(12,12,12,.97);
    border-bottom: 1px solid var(--bd); padding: 1rem; max-height: calc(100vh - var(--header)); overflow: auto;
  }
  .nav.open { display: flex; }
  .menu-toggle { display: inline-grid; place-items: center; }
}


/* ===== Professional dropdown nav ===== */
.gp-header { height: auto; min-height: var(--header); z-index: 1000; }
.gp-header .inner { min-height: var(--header); position: relative; }
.nav { flex-wrap: nowrap; gap: 2px; align-items: center; }
.nav-item { position: relative; }
.nav-item > a, .nav-item > button.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: .55rem .85rem; border-radius: 999px; font-size: .9rem;
  color: var(--mu) !important; background: transparent !important; border: 0 !important; border-radius: 0 !important; box-shadow: none !important; cursor: pointer;
  font-weight: 500; font-family: inherit; transition: .2s; white-space: nowrap;
}
.nav-item > a:hover, .nav-item > button.nav-link:hover,
.nav-item:hover > a, .nav-item:hover > button.nav-link,
.nav-item > a.active, .nav-item.open > button.nav-link {
  color: var(--tx) !important; background: transparent !important; border: 0 !important; border-radius: 0 !important; box-shadow: none !important;
}
.nav-item .caret {
  font-size: 9px; opacity: .75; color: inherit !important; transition: transform .2s;
  display: inline-block; line-height: 1;
}
.nav-item:hover .caret, .nav-item.open .caret { transform: rotate(180deg); color: inherit !important; }

/* Invisible bridge so menu doesn't close when moving to panel */
.nav-item::after {
  content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 14px;
}
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 260px;
  background: #121212; border: 1px solid rgba(224,185,57,.22); border-radius: 16px;
  padding: 12px; box-shadow: 0 28px 70px rgba(0,0,0,.65), 0 0 0 1px rgba(255,255,255,.04);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(10px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
  z-index: 1200;
}
.nav-item:hover > .dropdown,
.nav-item.open > .dropdown,
.nav-item:focus-within > .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.dropdown a {
  display: block; padding: 11px 12px; border-radius: 10px;
  color: var(--mu); font-size: .9rem; line-height: 1.35;
  transition: background .15s, color .15s;
}
.dropdown a:hover { background: rgba(224,185,57,.12); color: var(--tx); }
.dropdown a small { display: block; color: var(--dim); font-size: .75rem; margin-top: 3px; font-weight: 400; }
.dropdown .dd-title {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--g); font-weight: 700; padding: 6px 12px 8px;
}
.dropdown.mega {
  min-width: min(680px, 92vw);
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px;
  left: 50%; transform: translate(-50%, 10px);
  padding: 16px;
}
.nav-item:hover > .dropdown.mega,
.nav-item.open > .dropdown.mega,
.nav-item:focus-within > .dropdown.mega {
  transform: translate(-50%, 0);
}
.dropdown.mega .dd-col { min-width: 0; }

/* CTA in nav shouldn't look like a menu link */
.nav > .btn { margin-left: .35rem; }

@media (max-width: 980px) {
  .nav { flex-wrap: nowrap; }
  .nav-item { width: 100%; }
  .nav-item::after { display: none; }
  .nav-item > a, .nav-item > button.nav-link {
    width: 100%; justify-content: space-between; border-radius: 12px;
  }
  .dropdown, .dropdown.mega {
    position: static; min-width: 0; width: 100%;
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: none !important;
    display: none; box-shadow: none; border: 1px solid var(--bd); margin: 6px 0 10px;
  }
  .nav-item.open > .dropdown, .nav-item.open > .dropdown.mega { display: grid; }
  .dropdown.mega { grid-template-columns: 1fr; left: 0; }
}

/* Sitemap: collapsible category dropdowns (not a card grid) */
.sitemap-wrap { max-width: 920px; margin: 0 auto; }
.sitemap-cat {
  border: 1px solid var(--bd); border-radius: 14px; background: #111;
  margin-bottom: 10px; overflow: hidden;
  transition: border-color .2s;
}
.sitemap-cat:hover { border-color: rgba(224,185,57,.28); }
.sitemap-cat > summary {
  list-style: none; cursor: pointer; padding: .95rem 1.15rem;
  display: grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items: center;
  font-weight: 700; font-size: .98rem; user-select: none;
}
.sitemap-cat > summary::-webkit-details-marker { display: none; }
.sitemap-cat > summary .meta {
  color: var(--dim); font-weight: 500; font-size: .8rem;
  background: rgba(255,255,255,.04); padding: .25rem .55rem; border-radius: 999px;
}
.sitemap-cat > summary .chev {
  color: var(--g); transition: transform .25s; font-size: .85rem; width: 1.2em; text-align: center;
}
.sitemap-cat[open] {
  border-color: rgba(224,185,57,.35);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.sitemap-cat[open] > summary { border-bottom: 1px solid var(--bd); background: rgba(224,185,57,.04); }
.sitemap-cat[open] > summary .chev { transform: rotate(90deg); }
.sitemap-cat .links {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 2px 8px;
  padding: .65rem .75rem 1rem;
  max-height: 420px; overflow: auto;
}
.sitemap-cat .links a {
  display: block; padding: 10px 12px; border-radius: 10px; color: var(--mu); font-size: .88rem;
}
.sitemap-cat .links a:hover { background: rgba(224,185,57,.1); color: var(--tx); }
.sitemap-cat .links a span { display: block; color: var(--dim); font-size: .72rem; margin-top: 2px; }
@media (max-width: 700px) {
  .sitemap-cat .links { grid-template-columns: 1fr; max-height: 320px; }
  .sitemap-cat > summary { grid-template-columns: 1fr auto; }
  .sitemap-cat > summary .meta { grid-column: 1; justify-self: start; }
}

/* ===== Page-specific editorial system ===== */
.gp-hero-split {
  min-height: min(720px, 82vh); display: grid; grid-template-columns: minmax(0, .92fr) minmax(320px, .78fr);
  gap: clamp(2rem, 6vw, 7rem); align-items: center; padding-top: calc(var(--header) + 4rem); padding-bottom: 4rem;
}
.gp-hero-split::after {
  content: ""; position: absolute; width: 50vw; height: 50vw; max-width: 680px; max-height: 680px; right: -16vw; top: 8%;
  border: 1px solid rgba(232,253,9,.16); border-radius: 50%; box-shadow: 0 0 100px rgba(232,253,9,.05); pointer-events: none;
}
.gp-hero-art { position: relative; z-index: 1; min-height: 440px; display: grid; place-items: center; }
.gp-hero-art::before { content: ""; position: absolute; inset: 10% -8%; border-radius: 50%; background: radial-gradient(circle, rgba(232,253,9,.12), transparent 64%); filter: blur(18px); }
.gp-hero-art img { position: relative; width: min(100%, 540px); max-height: 620px; object-fit: contain; filter: drop-shadow(0 36px 60px rgba(0,0,0,.6)); animation: gpHeroDrift 8s ease-in-out infinite; }
@keyframes gpHeroDrift { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-12px) rotate(1deg); } }
.gp-kicker { color: var(--lime); font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.gp-display { font-size: clamp(2.8rem, 6.8vw, 6.8rem); line-height: .94; letter-spacing: -.07em; max-width: 9ch; margin: .8rem 0 1.35rem; }
.gp-display em { color: var(--g); font-style: normal; }
.gp-rule { width: 100%; height: 1px; background: linear-gradient(90deg, rgba(232,253,9,.6), transparent); margin: 1.4rem 0; }
.gp-stat-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--bd); border-block: 1px solid var(--bd); }
.gp-stat { padding: 1.25rem 1rem; background: var(--bg); }
.gp-stat strong { display: block; font-size: clamp(1.35rem, 3vw, 2.2rem); letter-spacing: -.04em; color: var(--tx); }
.gp-stat span { color: var(--dim); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.gp-feature-list { display: grid; gap: 0; border-top: 1px solid var(--bd); }
.gp-feature-row { display: grid; grid-template-columns: 90px 1fr 1fr; gap: 1.25rem; align-items: start; padding: 1.55rem 0; border-bottom: 1px solid var(--bd); }
.gp-feature-row > b { color: var(--g); font-size: .8rem; letter-spacing: .1em; }
.gp-feature-row h3 { margin: 0; font-size: 1.2rem; }
.gp-feature-row p { margin: 0; color: var(--mu); font-size: .94rem; }
.gp-dark-stage { background: #090909; border-block: 1px solid var(--bd); }
.gp-dark-stage .photo { min-height: 520px; aspect-ratio: 1 / 1; }
.gp-dark-stage .photo img { object-fit: contain; }
.gp-steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--bd); border-block: 1px solid var(--bd); }
.gp-step { counter-increment: step; padding: 1.7rem 1.35rem; background: var(--bg); min-height: 220px; }
.gp-step::before { content: counter(step, decimal-leading-zero); display: block; color: var(--g); font-weight: 800; font-size: .8rem; letter-spacing: .1em; margin-bottom: 2rem; }
.gp-step p { color: var(--mu); font-size: .92rem; margin: 0; }
.gp-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; align-items: stretch; }
.gp-price-card { position: relative; padding: 1.75rem; background: linear-gradient(160deg, rgba(255,255,255,.06), transparent 45%), #111; border: 1px solid var(--bd); min-height: 350px; display: flex; flex-direction: column; }
.gp-price-card.featured { border-color: rgba(232,253,9,.7); box-shadow: 0 0 0 1px rgba(232,253,9,.14), 0 28px 70px rgba(0,0,0,.34); transform: translateY(-12px); }
.gp-price-card .price { font-size: 2.8rem; line-height: 1; font-weight: 800; letter-spacing: -.06em; margin: 1.5rem 0 .3rem; }
.gp-price-card .price small { font-size: .86rem; color: var(--mu); letter-spacing: 0; font-weight: 500; }
.gp-price-card ul { color: var(--mu); padding-left: 1.1rem; margin: 1.3rem 0; font-size: .9rem; }
.gp-price-card li { margin: .55rem 0; }
.gp-price-card .btn { margin-top: auto; }
.gp-search { display: flex; max-width: 740px; margin: 0 auto; border-bottom: 1px solid rgba(232,253,9,.6); padding: .75rem 0; }
.gp-search input { width: 100%; background: transparent; border: 0; outline: 0; color: var(--tx); font: inherit; font-size: 1.1rem; }
.gp-search input::placeholder { color: var(--dim); }
.gp-help-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(2rem, 7vw, 7rem); align-items: start; }
.gp-help-nav { position: sticky; top: calc(var(--header) + 2rem); display: grid; gap: .4rem; }
.gp-help-nav a { color: var(--mu); padding: .55rem 0; border-bottom: 1px solid var(--bd); font-size: .9rem; }
.gp-help-nav a:hover { color: var(--lime); }
.gp-contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 1px; background: var(--bd); border-block: 1px solid var(--bd); }
.gp-contact-card { background: var(--bg); padding: clamp(1.5rem, 4vw, 3rem); min-height: 260px; }
.gp-contact-card p { color: var(--mu); max-width: 36ch; }
.gp-contact-card a { color: var(--lime); font-weight: 700; }
.gp-legal { max-width: 880px; padding-top: calc(var(--header) + 4rem); }
.gp-legal-head { border-bottom: 1px solid var(--bd); padding-bottom: 2.5rem; margin-bottom: 2.5rem; }
.gp-legal-head h1 { max-width: 14ch; font-size: clamp(2.4rem, 5vw, 4.8rem); }
.gp-legal article { border-bottom: 1px solid var(--bd); padding: 1.8rem 0; }
.gp-legal article:last-child { border-bottom: 0; }
.gp-legal article h2 { font-size: 1.35rem; }
.gp-legal article p, .gp-legal article li { color: var(--mu); max-width: 72ch; font-size: .96rem; }
.gp-legal article ul { padding-left: 1.2rem; }
.gp-legal .updated { color: var(--dim); font-size: .85rem; }
.gp-note { padding: 1rem 1.1rem; border-left: 2px solid var(--lime); background: rgba(232,253,9,.045); color: var(--mu); }
@media (max-width: 980px) {
  .gp-hero-split { grid-template-columns: 1fr; min-height: auto; padding-top: calc(var(--header) + 3rem); }
  .gp-hero-art { min-height: 320px; order: -1; }
  .gp-hero-art img { max-height: 420px; }
  .gp-feature-row { grid-template-columns: 56px 1fr; }
  .gp-feature-row p { grid-column: 2; }
  .gp-steps, .gp-price-grid { grid-template-columns: repeat(2, 1fr); }
  .gp-price-card.featured { transform: none; }
  .gp-help-grid, .gp-contact-grid { grid-template-columns: 1fr; }
  .gp-help-nav { position: static; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .gp-display { font-size: clamp(2.6rem, 14vw, 4.5rem); }
  .gp-stat-strip, .gp-steps, .gp-price-grid { grid-template-columns: 1fr; }
  .gp-help-nav { grid-template-columns: 1fr; }
}

/* Secondary-page motion signatures: every content family has its own rhythm. */
.gp-family-locations .page-hero .float { animation: gpGeoOrbit 12s ease-in-out infinite; }
.gp-family-blog .page-hero .float { animation: gpEditorialFloat 10s ease-in-out infinite; }
.gp-family-partners .page-hero .float { animation: gpPartnerPulse 8s ease-in-out infinite; }
.gp-family-glossary .page-hero .float { animation: gpGlossaryDrift 11s ease-in-out infinite; }
.gp-family-websites .page-hero .float { animation: gpTargetScan 9s ease-in-out infinite; }
.gp-family-integrations .page-hero .float { animation: gpIntegrationFlow 10s ease-in-out infinite; }
.gp-family-alternatives .page-hero .float { animation: gpCompareTilt 8s ease-in-out infinite; }
.gp-family-use-cases .page-hero .float { animation: gpUseCaseSignal 9s ease-in-out infinite; }
.gp-family-proxies .page-hero .float { animation: gpProxyPulse 7s ease-in-out infinite; }
.gp-family-features .page-hero .float { animation: gpFeatureStack 10s ease-in-out infinite; }
.gp-family-tools .page-hero .float { animation: gpToolSweep 8s ease-in-out infinite; }
.gp-family-locations .card.m.in { animation-name: gpLocationRise; }
.gp-family-blog .card.m.in { animation-name: gpEditorialRise; }
.gp-family-partners .card.m.in { animation-name: gpPartnerRise; }
.gp-family-glossary .card.m.in { animation-name: gpGlossaryRise; }
.gp-family-websites .card.m.in { animation-name: gpTargetRise; }
.gp-family-integrations .card.m.in { animation-name: gpIntegrationRise; }
.gp-family-alternatives .card.m.in { animation-name: gpCompareRise; }
.gp-family-use-cases .card.m.in { animation-name: gpUseCaseRise; }
.gp-family-proxies .card.m.in { animation-name: gpProxyRise; }
.gp-family-tools .card.m.in { animation-name: gpToolRise; }
@keyframes gpGeoOrbit { 0%,100% { transform: translate3d(0,0,0) rotate(-1deg); } 50% { transform: translate3d(-12px,-18px,0) rotate(2deg); } }
@keyframes gpEditorialFloat { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-22px) rotate(-2deg); } }
@keyframes gpPartnerPulse { 0%,100% { transform: scale(1); filter: saturate(.85); } 50% { transform: scale(1.045); filter: saturate(1.15); } }
@keyframes gpGlossaryDrift { 0%,100% { transform: translate(0,0) rotate(1deg); } 50% { transform: translate(14px,-10px) rotate(-2deg); } }
@keyframes gpTargetScan { 0%,100% { transform: translateX(0) scale(1); } 50% { transform: translateX(-16px) scale(1.03); } }
@keyframes gpIntegrationFlow { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-13px) rotate(1deg); } }
@keyframes gpCompareTilt { 0%,100% { transform: rotate(-1deg) translateY(0); } 50% { transform: rotate(2deg) translateY(-12px); } }
@keyframes gpUseCaseSignal { 0%,100% { transform: translate(0,0); opacity:.32; } 50% { transform: translate(10px,-14px); opacity:.6; } }
@keyframes gpProxyPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.035); } }
@keyframes gpFeatureStack { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-17px); } }
@keyframes gpToolSweep { 0%,100% { transform: translateX(0) rotate(0); } 50% { transform: translateX(-10px) rotate(2deg); } }
@keyframes gpLocationRise { from { opacity:0; transform: translateY(40px) scale(.97); } to { opacity:1; transform:none; } }
@keyframes gpEditorialRise { from { opacity:0; transform: translateY(28px) rotate(.4deg); } to { opacity:1; transform:none; } }
@keyframes gpPartnerRise { from { opacity:0; transform: translateX(-28px); } to { opacity:1; transform:none; } }
@keyframes gpGlossaryRise { from { opacity:0; transform: scale(.94); } to { opacity:1; transform:none; } }
@keyframes gpTargetRise { from { opacity:0; transform: translateX(28px) scale(.98); } to { opacity:1; transform:none; } }
@keyframes gpIntegrationRise { from { opacity:0; transform: translateY(36px) rotate(-.5deg); } to { opacity:1; transform:none; } }
@keyframes gpCompareRise { from { opacity:0; transform: rotate(-2deg) translateY(26px); } to { opacity:1; transform:none; } }
@keyframes gpUseCaseRise { from { opacity:0; transform: translateY(20px) scale(.96); } to { opacity:1; transform:none; } }
@keyframes gpProxyRise { from { opacity:0; transform: translateY(44px); } to { opacity:1; transform:none; } }
@keyframes gpToolRise { from { opacity:0; transform: translateX(-20px) scale(.96); } to { opacity:1; transform:none; } }

/* Purpose-built rhythms for the standalone service pages. */
.gp-family-contact .page-hero .gp-hero-art { animation: gpContactBeacon 9s ease-in-out infinite; }
.gp-family-help .page-hero .gp-hero-art { animation: gpHelpSweep 10s ease-in-out infinite; }
.gp-family-pricing .page-hero .gp-hero-art { animation: gpPricingFloat 8s ease-in-out infinite; }
.gp-family-about .page-hero .gp-hero-art { animation: gpAboutDrift 11s ease-in-out infinite; }
.gp-family-workflow .page-hero .gp-hero-art { animation: gpWorkflowFlow 9s ease-in-out infinite; }
.gp-family-contact .gp-contact-card.m.in { animation-name: gpContactEnter; }
.gp-family-help .faq.m.in { animation-name: gpHelpEnter; }
.gp-family-pricing .gp-price-card.m.in { animation-name: gpPricingEnter; }
.gp-family-about .card.m.in { animation-name: gpAboutEnter; }
.gp-family-workflow .card.m.in { animation-name: gpWorkflowEnter; }
.gp-family-legal .gp-legal .m.in { animation-name: gpLegalEnter; }
@keyframes gpContactBeacon { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-14px) rotate(1.5deg); } }
@keyframes gpHelpSweep { 0%,100% { transform: translateX(0) rotate(0); } 50% { transform: translateX(-12px) rotate(-1deg); } }
@keyframes gpPricingFloat { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-10px) scale(1.025); } }
@keyframes gpAboutDrift { 0%,100% { transform: translate(0,0) rotate(-1deg); } 50% { transform: translate(10px,-16px) rotate(1deg); } }
@keyframes gpWorkflowFlow { 0%,100% { transform: translateX(0); } 50% { transform: translateX(-14px); } }
@keyframes gpContactEnter { from { opacity:0; transform: translateY(26px) rotate(.5deg); } to { opacity:1; transform:none; } }
@keyframes gpHelpEnter { from { opacity:0; transform: translateX(24px); } to { opacity:1; transform:none; } }
@keyframes gpPricingEnter { from { opacity:0; transform: translateY(34px) scale(.96); } to { opacity:1; transform:none; } }
@keyframes gpAboutEnter { from { opacity:0; transform: translateY(24px) rotate(-.5deg); } to { opacity:1; transform:none; } }
@keyframes gpWorkflowEnter { from { opacity:0; transform: translateX(-24px); } to { opacity:1; transform:none; } }
@keyframes gpLegalEnter { from { opacity:0; transform: translateY(18px); } to { opacity:1; transform:none; } }
@media (prefers-reduced-motion: reduce) {
  [class*="gp-family-"] .page-hero .float { animation: none !important; }
  [class*="gp-family-"] .page-hero .gp-hero-art { animation: none !important; }
}

/* Jump dropdown on sitemap page */
.sitemap-jump {
  display: flex; flex-wrap: wrap; gap: .75rem; align-items: center;
  margin: 0 auto 1.75rem; max-width: 920px;
  padding: 1rem 1.15rem; border-radius: 14px;
  background: #111; border: 1px solid var(--bd);
}
.sitemap-jump label { color: var(--mu); font-size: .9rem; font-weight: 600; }
.sitemap-jump select {
  flex: 1; min-width: 200px; appearance: none;
  background: #1a1a1a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23E0B939' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 14px center;
  color: var(--tx); border: 1px solid rgba(224,185,57,.3);
  border-radius: 10px; padding: .7rem 2.2rem .7rem 1rem;
  font: inherit; font-weight: 600; cursor: pointer;
}
.sitemap-jump select:focus { outline: 2px solid rgba(224,185,57,.45); outline-offset: 2px; }
