
:root{
  --bg: #e8e8e8;
  --ink: #0b1220;
  --muted: rgba(11,18,32,.66);
  --muted-2: rgba(11,18,32,.52);
  --border: rgba(11,18,32,.10);
  --card: #ffffff;

  --gold: #c8a24b;
  --gold-2: #b78c2c;
  --gold-soft: rgba(200,162,75,.16);

  --shadow: 0 10px 30px rgba(11,18,32,.10);
  --shadow-hover: 0 16px 44px rgba(11,18,32,.14);

  --radius: 18px;
  --radius-sm: 14px;


  --max: 1580px;

  --nav-h: 76px;
  --nav-bg: #172d3a;
}

*{ box-sizing: border-box; }

html, body{
  height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body{ padding-top: var(--nav-h); }

a{
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea{ font-family: inherit; }
img{ max-width: 100%; }

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
  min-width: 0;
}

/* =========================
   Fixed header + bootstrap collapse
   ========================= */
header.topbar{
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9997;
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}

header.topbar .topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px 0;
  min-width: 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}

.brand img{
  display:block;
  height:auto;
  max-width: 180px;
}

.nav{
  display:flex;
  align-items:center;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-link-custom{
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 800;
  color: rgba(255,255,255,.90);
  line-height: 1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  white-space: nowrap;
}

.nav-link-custom:hover{
  background: rgba(255,255,255,.10);
  color: #fff;
}

.custom-toggler{
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px 10px;
  border-radius: 12px;
  box-shadow: none !important;
  background: rgba(255,255,255,.08);
}

.custom-toggler:hover{
  background: rgba(255,255,255,.12);
}

.custom-toggler:focus{
  box-shadow: 0 0 0 0.18rem rgba(200,162,75,.25) !important;
}

.navbar-toggler-icon{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.custom-toggler .navbar-toggler-icon{
  filter: brightness(0) invert(1);
}

/* =========================
   PistonTraders buttons
   ========================= */
.pt-btn{
  border: 1px solid var(--border);
  background: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: rgba(11,18,32,.90);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  line-height: 1;
  min-height: 44px;
  box-shadow: 0 6px 18px rgba(11,18,32,.06);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  white-space: nowrap;
  text-align: center;
}

.pt-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(11,18,32,.08);
  border-color: rgba(11,18,32,.16);
}

.pt-btn-primary{
  border: 1px solid rgba(183,140,44,.45);
  background: linear-gradient(180deg, rgba(200,162,75,.95), rgba(183,140,44,.95));
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(200,162,75,.25);
}

.pt-btn-primary:hover{
  border-color: rgba(183,140,44,.55);
  box-shadow: 0 18px 38px rgba(200,162,75,.28);
}

.pt-btn-dark{
  background:
    radial-gradient(220px 120px at 20% 20%, rgba(200,162,75,.22), transparent 60%),
    rgba(11,18,32,.92);
  border: 1px solid rgba(11,18,32,.18);
  color: #fff;
  overflow: hidden;
  position: relative;
  border-radius: 999px;
}

.pt-btn-dark::after{
  content:"";
  position:absolute;
  inset:-30% -40%;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.18), transparent 60%);
  transform: translateX(-35%);
  transition: transform .45s ease;
  pointer-events:none;
}

.pt-btn-dark:hover::after{ transform: translateX(35%); }

.pt-btn-dark:hover{
  box-shadow: 0 18px 40px rgba(11,18,32,.14);
  border-color: rgba(200,162,75,.35);
}

/* =========================
   Hero / listings
   ========================= */
.hero{
  padding: 44px 0 8px;
  position: relative;
  overflow: hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset: -220px -200px auto -200px;
  height: 520px;
  background:
    radial-gradient(260px 260px at 20% 35%, rgba(200,162,75,.22), transparent 60%),
    radial-gradient(340px 340px at 62% 30%, rgba(11,18,32,.06), transparent 60%),
    radial-gradient(280px 280px at 88% 44%, rgba(200,162,75,.16), transparent 65%);
  pointer-events:none;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  position: relative;
  min-width: 0;
}

.note{
  margin-top: 10px;
  color: var(--muted-2);
  font-weight: 600;
  font-size: .9rem;
  line-height: 1.5;
}

.listings-column{
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 0 6px;
  position: relative;
  z-index: 2;
  min-width: 0;
}

.results-topbar{
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 16px;
  min-width: 0;
}

.topbar-row{
  padding: 16px;
  display:grid;
  grid-template-columns: 1fr minmax(320px,1.3fr) 220px;
  gap: 14px;
  align-items:center;
  border-bottom: 1px solid var(--border);
  min-width: 0;
}

.results-count{
  font-weight: 900;
  letter-spacing:-.2px;
  min-width: 0;
}

.results-count .subhint{
  font-weight:600;
  color:var(--muted);
  margin-left:8px;
  white-space: nowrap;
}

.searchbox{
  display:flex;
  align-items:center;
  gap:10px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:999px;
  padding:10px 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,.05);
  min-width: 0;
  flex-wrap: nowrap;
}

.searchbox i{ color:var(--muted); }

.searchbox input{
  border:0;
  outline:none;
  width:100%;
  font-weight:700;
  background:transparent;
  min-width: 0;
}

.search-divider{
  width: 1px;
  height: 22px;
  background: rgba(11,18,32,.12);
  flex: 0 0 auto;
}

.postcode{ max-width: 220px; }

#sortSelect{
  border-radius: 12px;
  font-weight: 800;
  border:1px solid var(--border);
  box-shadow: 0 6px 16px rgba(0,0,0,.05);
  height: 44px;
}

.active-filters{
  padding: 12px 16px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  background: rgba(0,0,0,.02);
  min-width: 0;
}

.results-spinner{
  width:100%;
  min-height:220px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 10px 0 18px;
}

.brand-strip{
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.88);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
}

.brand-strip .label{
  font-weight: 950;
  letter-spacing: -.2px;
  color: rgba(11,18,32,.92);
  margin-right: 6px;
  white-space: nowrap;
}

.brand-badges{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:center;
  min-width: 0;
  max-width: 100%;
}

.brand-badge{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(11,18,32,.10);
  background: #fff;
  box-shadow: 0 10px 24px rgba(11,18,32,.06);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  font-weight: 900;
  color: rgba(11,18,32,.88);
  line-height: 1;
  white-space: nowrap;
  flex: 0 0 auto;
}

.brand-badge:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(11,18,32,.10);
  border-color: rgba(200,162,75,.35);
}

.brand-logo{
  width: 26px;
  height: 26px;
  border-radius: 8px;
  object-fit: contain;
  display:block;
}

.car-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  min-width: 0;
}

@media (max-width: 1100px){
  .car-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .topbar-row{ grid-template-columns: 1fr; }
  #sortSelect{ width: 100%; }
  .results-count .subhint{ display:none; }
}

@media (max-width: 720px){
  .car-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .searchbox{
    border-radius: 18px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .search-divider{ display:none; }

  .postcode{
    max-width: none;
    width: 100%;
  }

  #desktop-location,
  #desktop-q{
    width: 100%;
  }
}

/* ===============================
   CARD (regular listings)
   =============================== */
.listing-card{
  background:#fff;
  border-radius:10px;
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:.2s ease;
  min-width: 0;
}

.listing-card:hover{
  transform:translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.img-container{
  padding:0;
  border-bottom:1px solid var(--border);
  background: #f6f7fb;
}

.gallery-hero-img{
  width:100%;
  height:190px;
  object-fit:cover;
  display:block;
}

.gallery-thumbs{
  display:grid;
  grid-template-columns: repeat(5,1fr);
  position: relative;
}

.thumb{
  position: relative;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  display:block;
}

.thumb img{
  width:100%;
  height:55px;
  object-fit:cover;
  opacity:.85;
  display:block;
}

.thumb:hover img{ opacity:1; }

.thumb.is-active::after{
  content:"";
  position:absolute;
  inset:0;
  box-shadow: inset 0 0 0 2px #fff, inset 0 0 0 4px rgba(200,162,75,.72);
  pointer-events:none;
}

.card-content{
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:8px;
  flex:1;
  min-width: 0;
}

.card-title{
  font-weight:900;
  font-size:1rem;
  margin:0;
  letter-spacing: -.2px;
}

.card-title-row{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}

.card-model{
  font-weight: 950;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.badge.bg-dark{
  font-size:.65rem;
  padding:6px 10px;
  border-radius:999px;
  font-weight: 900;
  letter-spacing: .3px;
}

.subline{
  font-size:.85rem;
  color:var(--muted);
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  line-height: 1.35;
}

.dot{ opacity:.55; }

.specs{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-top: 2px;
}

.badge-soft{
  background:#f7f7f7;
  border:1px solid var(--border);
  border-radius:999px;
  padding:6px 10px;
  font-size:.75rem;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  line-height: 1;
  color: rgba(11,18,32,.86);
}

.badge-soft i{ color: rgba(11,18,32,.62); }

.long-desc{
  font-size:.85rem;
  color:var(--muted);
  line-height:1.45;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
  margin-top: 2px;
}

.price-pill{
  width:100%;
  text-align:center;
  font-weight:900;
  padding:10px;
  border-radius:999px;
  background: var(--gold-soft);
  border:1px solid rgba(200,162,75,.35);
  letter-spacing: -.2px;
  margin-top: 2px;
}

.action-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
  margin-top:auto;
  padding-top:10px;
  border-top:1px solid var(--border);
}

.source-note{
  font-size:.8rem;
  color:var(--muted);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 60%;
}

/* Sections / Dealer / FAQ */
.section{ padding: 22px 0; }

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.section-head h2{
  margin:0;
  font-weight: 960;
  letter-spacing: -0.6px;
  font-size: 1.55rem;
}

.section-head p{
  margin:0;
  color: var(--muted);
  font-weight: 600;
  max-width: 78ch;
  line-height: 1.65;
}

.box{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  overflow:hidden;
  min-width: 0;
}

.bullets{
  display:grid;
  gap: 10px;
  margin-top: 12px;
}

.bullet{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 12px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(11,18,32,.08);
  background: rgba(11,18,32,.02);
  min-width: 0;
}

.bullet i{
  margin-top: 2px;
  color: var(--gold-2);
}

.bullet b{
  display:block;
  font-weight: 950;
  letter-spacing: -0.2px;
  margin-bottom: 2px;
}

.bullet span{
  display:block;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.55;
}

.dealer-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
  min-width: 0;
}

.dealer-photo{
  border-radius: var(--radius);
  border: 1px solid rgba(11,18,32,.10);
  box-shadow: var(--shadow);
  overflow:hidden;
  position: relative;
  min-height: 320px;
  background: #f6f7fb;
}

.dealer-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.dealer-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(11,18,32,.18));
  pointer-events:none;
}

.dealer-badge{
  position:absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(11,18,32,.10);
  box-shadow: 0 12px 24px rgba(11,18,32,.10);
  font-weight: 900;
  line-height: 1;
  display:inline-flex;
  align-items:center;
  gap: 10px;
}

.dealer-badge i{ color: var(--gold-2); }

.field{ margin-bottom: 12px; }

.field label{
  display:block;
  margin-bottom: 6px;
  color: rgba(11,18,32,.72);
  font-weight: 800;
  font-size: .88rem;
}

.control{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(11,18,32,.12);
  background: #fff;
  color: rgba(11,18,32,.92);
  font-weight: 650;
  outline: none;
  transition: box-shadow .15s ease, border-color .15s ease;
}

.control:focus{
  border-color: rgba(200,162,75,.55);
  box-shadow: 0 0 0 5px rgba(200,162,75,.18);
}

.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hint{
  color: var(--muted-2);
  font-weight: 600;
  font-size: .88rem;
  line-height: 1.45;
  margin-top: 6px;
}

/* FAQ */
.faq-grid{ display:grid; gap: 14px; }

.faq-item{
  background: #fff;
  border: 1px solid rgba(11,18,32,.10);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(11,18,32,.08);
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}

.faq-item[open]{
  border-color: rgba(200,162,75,.35);
  box-shadow: 0 18px 44px rgba(11,18,32,.12);
}

.faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  font-weight: 950;
  letter-spacing: -0.3px;
  font-size: 1.02rem;
}

.faq-item summary::-webkit-details-marker{ display: none; }

.faq-item summary i{
  color: var(--gold-2);
  transition: transform .25s ease;
}

.faq-item[open] summary i{ transform: rotate(180deg); }

.faq-content{ padding: 4px 20px 20px; }

.faq-content p{
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.65;
}

@media (max-width: 980px){
  .dealer-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 768px){
  .topbar-inner{
    padding: 12px 0;
  }

  .navbar-collapse{
    width: 100%;
    margin-top: 12px;
    border-radius: 16px;
    padding: 10px;
  }

  .nav{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    width: 100%;
    gap: 8px;
  }

  .nav-link-custom{
    width: 100%;
    justify-content:flex-start;
    padding: 12px 14px;
    border-radius: 12px;
  }
}

@media (max-width: 520px){
  .form-row{ grid-template-columns: 1fr; }
  .faq-item summary{ padding: 16px; font-size: .98rem; }
  .faq-content{ padding: 0 16px 16px; }
}

/* Footer */
footer{
  background:#02131b;
  padding: 3.2rem 0;
  color:#a9c5ce;
  margin-top: 10px;
}

footer a{ color:#bcd4db; }
footer a:hover{ color: var(--gold); }

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior:auto !important; transition:none !important; }
}

.mini-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(11,18,32,.12);
  background:#fff;
  font-weight:850;
  box-shadow: 0 8px 18px rgba(11,18,32,.06);
}

.mini-btn:hover{
  transform: translateY(-1px);
}


:root{
  --nav-bg: #172d3a;
  --nav-h: 76px;
  --header-max: 1580px;
  --header-border: rgba(255,255,255,.12);
  --header-shadow: 0 18px 40px rgba(11,18,32,.22);
  --header-text: rgba(255,255,255,.92);
  --header-text-soft: rgba(255,255,255,.90);
  --header-btn-border: rgba(255,255,255,.18);
  --header-btn-bg: rgba(255,255,255,.10);
  --header-btn-bg-hover: rgba(255,255,255,.14);
  --header-hover-bg: rgba(255,255,255,.10);
}

body{
  padding-top: var(--nav-h);
}

.pt-header *,
.pt-header *::before,
.pt-header *::after{
  box-sizing: border-box;
}

.pt-header a{
  color: inherit;
  text-decoration: none;
}

.pt-header-wrap{
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 0 18px;
  min-width: 0;
}

/* =========================
  FIXED HEADER
  ========================= */
.pt-header.topbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9997;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--header-border);
  min-width: 0;
}

.pt-header .topbar-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  flex-wrap: nowrap;
}

.pt-header .brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 0;
}

.pt-header .brand img{
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
}

/* =========================
  DESKTOP NAV
  ========================= */
.pt-header .nav{
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pt-header .nav a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  color: var(--header-text-soft);
  transition: background .15s ease, transform .15s ease;
}

.pt-header .nav a:hover{
  background: var(--header-hover-bg);
}

/* =========================
  BURGER BUTTON
  ========================= */
.pt-header .burger-btn{
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--header-btn-border);
  border-radius: 12px;
  background: var(--header-btn-bg);
  color: var(--header-text);
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}

.pt-header .burger-btn:hover{
  transform: translateY(-1px);
  background: var(--header-btn-bg-hover);
}

.pt-header .burger-btn:focus-visible{
  outline: 2px solid rgba(255,255,255,.7);
  outline-offset: 2px;
}

/* =========================
  MOBILE NAV PANEL
  ========================= */
.pt-header-nav-panel{
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--header-border);
  box-shadow: var(--header-shadow);
  padding: 12px 18px 16px;
  margin: 0;
}

.pt-header-nav-panel a{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  color: var(--header-text);
  font-weight: 850;
  transition: background .15s ease;
}

.pt-header-nav-panel a:hover{
  background: var(--header-hover-bg);
}

.pt-header-nav-panel.is-open{
  display: block;
}

/* =========================
  MOBILE BACKDROP
  ========================= */
.pt-header-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.pt-header-backdrop.is-open{
  opacity: 1;
  pointer-events: auto;
}

/* =========================
  RESPONSIVE
  ========================= */
@media (max-width: 980px){
  .pt-header .burger-btn{
    display: inline-flex;
  }

  .pt-header .nav{
    display: none;
  }
}

@media (max-width: 500px){
  .pt-header-wrap{
    padding: 0 12px;
  }

  .pt-header .topbar-inner{
    gap: 10px;
  }

  .pt-header .brand img{
    max-width: 180px;
  }
}

/* AI / agent homepage guidance */

.agent-sr-only{
    position:absolute !important;
    width:1px !important;
    height:1px !important;
    padding:0 !important;
    margin:-1px !important;
    overflow:hidden !important;
    clip:rect(0,0,0,0) !important;
    white-space:nowrap !important;
    border:0 !important;
  }
  
  .agent-home-note{
    margin-top: 12px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(200,162,75,.28);
    background: rgba(200,162,75,.10);
    color: rgba(11,18,32,.84);
    box-shadow: 0 8px 20px rgba(11,18,32,.05);
  }
  
  .agent-home-note-head{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:8px;
    font-weight:950;
    letter-spacing:-.2px;
  }
  
  .agent-home-note p{
    margin: 0 0 8px;
    font-weight: 650;
    line-height: 1.6;
    color: rgba(11,18,32,.78);
  }
  
  .agent-home-note p:last-child{
    margin-bottom: 0;
  }
  
  .agent-home-note code{
    font-weight: 900;
    color: rgba(11,18,32,.94);
    word-break: break-word;
  }
  
  .agent-example-strip{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:12px;
  }
  
  .agent-example-pill{
    display:inline-flex;
    align-items:center;
    padding:10px 12px;
    border-radius:999px;
    border:1px solid rgba(11,18,32,.10);
    background: rgba(11,18,32,.03);
    color: rgba(11,18,32,.86);
    font-weight: 750;
    line-height: 1.35;
    transition: transform .14s ease, border-color .14s ease, box-shadow .14s ease, background .14s ease;
  }
  
  .agent-example-pill:hover{
    transform: translateY(-1px);
    border-color: rgba(200,162,75,.35);
    box-shadow: 0 12px 28px rgba(11,18,32,.08);
    background: rgba(200,162,75,.08);
  }
