: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(16px);
  background: rgba(12,12,12,.78);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.gp-header.scrolled { border-bottom-color: var(--bd); background: rgba(12,12,12,.94); }
.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; 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); background: transparent; border: 0; 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); background: rgba(255,255,255,.06);
}
.nav-item .caret {
  font-size: 9px; opacity: .75; transition: transform .2s;
  display: inline-block; line-height: 1;
}
.nav-item:hover .caret, .nav-item.open .caret { transform: rotate(180deg); color: var(--g); }

/* 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; }
}

/* 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; }
