:root {
  --navy: #0b1220;
  --navy-2: #121921;
  --navy-3: #1a2433;
  --charcoal: #161d27;
  --orange: #f97316;
  --orange-hover: #fb923c;
  --orange-deep: #ea580c;
  --white: #ffffff;
  --off-white: #f5f7fa;
  --light: #e8edf4;
  --muted: #94a3b8;
  --text: #e8eef9;
  --text-dark: #0f172a;
  --text-muted-dark: #475569;
  --line: rgba(148, 163, 184, 0.2);
  --line-dark: rgba(15, 23, 42, 0.08);
  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --font: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --wrap: min(1180px, calc(100% - 2rem));
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--orange-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 0.6rem; }

.wrap { width: var(--wrap); margin: 0 auto; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--orange); color: #111; padding: 0.55rem 1rem; font-weight: 700;
}
.skip:focus { left: 1rem; top: 1rem; }

/* Top bar */
.topbar {
  background: #070c14;
  color: var(--muted);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(249, 115, 22, 0.25);
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; min-height: 36px; flex-wrap: wrap; padding: 0.35rem 0;
}
.topbar a { color: var(--muted); }
.topbar a:hover { color: var(--orange); text-decoration: none; }
.topbar-right { display: flex; align-items: center; gap: 0.65rem; }
.dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--orange); display: inline-block;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 18, 32, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 76px;
}
.logo {
  display: flex; align-items: center; gap: 0.7rem;
  color: var(--text); text-decoration: none; flex-shrink: 0;
}
.logo:hover { text-decoration: none; }
.logo-mark {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(145deg, #1a2433, #0b1220);
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.35), 0 8px 20px rgba(249, 115, 22, 0.15);
}
.logo-copy { display: flex; flex-direction: column; gap: 0.1rem; }
.logo-title { font-weight: 700; font-size: 1.05rem; letter-spacing: 0.01em; color: #fff; }
.logo-tag {
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.08em;
  color: var(--orange); font-weight: 600;
}

.nav { display: flex; align-items: center; gap: 1.1rem; }
.nav a {
  color: var(--muted); font-weight: 500; font-size: 0.92rem;
  text-decoration: none; white-space: nowrap;
}
.nav a:hover { color: #fff; }

.header-actions { display: flex; align-items: center; gap: 0.45rem; }
.icon-btn {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 999px;
  background: transparent; border: 1px solid transparent; color: var(--muted);
  cursor: pointer;
  position: relative;
}
.icon-btn:hover { color: #fff; border-color: var(--line); background: rgba(255,255,255,0.04); }
.icon-btn--soon {
  cursor: default;
  opacity: 0.72;
  pointer-events: none;
}
.icon-btn--soon:hover {
  color: var(--muted);
  border-color: transparent;
  background: transparent;
}
.soon-chip {
  position: absolute;
  bottom: -2px;
  right: -4px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  padding: 0.15rem 0.28rem;
  border-radius: 999px;
  background: var(--orange);
  color: #0b1220;
}

.nav-toggle {
  display: none; background: var(--navy-3); color: #fff;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.45rem 0.95rem; font-weight: 600; cursor: pointer;
}
.mobile-nav {
  display: flex; flex-direction: column; gap: 0.85rem;
  padding: 0.85rem 0 1.25rem; border-top: 1px solid var(--line);
}
.mobile-nav a { color: #fff; font-weight: 500; text-decoration: none; }
.mobile-nav .btn { margin-top: 0.35rem; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; border-radius: 999px; border: 0;
  padding: 0.78rem 1.35rem; cursor: pointer;
  text-decoration: none; transition: filter 0.15s ease, transform 0.15s ease, background 0.15s ease;
  font-family: inherit; font-size: 0.95rem;
}
.btn:hover { text-decoration: none; filter: brightness(1.06); }
.btn-primary, .btn-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #111; box-shadow: 0 10px 28px rgba(249, 115, 22, 0.35);
}
.btn-cta { padding: 0.62rem 1.1rem; font-size: 0.88rem; }
.btn-outline {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55); box-shadow: none;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.btn-outline-dark {
  background: transparent; color: var(--navy);
  border: 1.5px solid rgba(11, 18, 32, 0.25); box-shadow: none;
}
.btn-outline-dark:hover { border-color: var(--navy); background: rgba(11,18,32,0.04); }
.btn-lg { padding: 0.95rem 1.6rem; font-size: 1rem; }

/* Hero */
.hero {
  position: relative; color: var(--text);
  min-height: clamp(520px, 78vh, 720px);
  display: flex; align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(120deg, rgba(11,18,32,0.92) 0%, rgba(18,25,33,0.78) 48%, rgba(11,18,32,0.55) 100%),
    url("https://images.unsplash.com/photo-1565043589221-1a6fd9ae45c7?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 420px at 15% 20%, rgba(249,115,22,0.16), transparent 55%),
    linear-gradient(180deg, rgba(11,18,32,0.25), rgba(11,18,32,0.7));
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.4fr 0.6fr;
  gap: 2rem; align-items: center;
  padding: 4.5rem 0 3.5rem;
}
.eyebrow {
  display: inline-block; margin: 0 0 0.85rem;
  color: var(--orange); font-family: var(--mono);
  font-size: 0.78rem; letter-spacing: 0.08em; font-weight: 600;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  font-weight: 700; letter-spacing: 0.01em;
  max-width: 16ch; margin-bottom: 1rem;
}
.accent-text { color: var(--orange); }
.lead {
  color: #cbd5e1; font-size: 1.08rem; max-width: 42rem; margin: 0 0 1.5rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 1.75rem; }
.trust-checks {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.25rem; max-width: 34rem;
}
.trust-checks li {
  display: flex; align-items: center; gap: 0.55rem;
  color: #e2e8f0; font-size: 0.92rem; font-weight: 500;
}
.check {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: rgba(249,115,22,0.15);
  border: 1.5px solid var(--orange);
  position: relative;
}
.check::after {
  content: ""; position: absolute;
  left: 5px; top: 2px; width: 5px; height: 9px;
  border: solid var(--orange); border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.hero-aside {
  justify-self: end; text-align: right;
  border-left: 3px solid var(--orange);
  padding-left: 1.25rem;
}
.aside-line {
  margin: 0; font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 700; letter-spacing: 0.12em; line-height: 1.25;
}

/* Search */
.search-section {
  background: var(--navy-2);
  padding: 0 0 2rem;
  margin-top: -1px;
}
.search-bar {
  display: grid;
  grid-template-columns: 1fr minmax(160px, 220px) auto;
  gap: 0.65rem;
  background: #0a1018;
  border: 1px solid rgba(249,115,22,0.35);
  border-radius: 999px;
  padding: 0.45rem;
  box-shadow: var(--shadow);
}
.search-bar input,
.search-bar select {
  background: transparent; border: 0; color: #fff;
  font: inherit; padding: 0.7rem 1.1rem; outline: none;
}
.search-bar input::placeholder { color: #64748b; }
.search-bar select {
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  color: #e2e8f0;
}
.search-bar select option { background: #0b1220; color: #fff; }
.search-btn { border-radius: 999px; min-width: 120px; }

/* Sections */
.section { padding: 4.25rem 0; }
.section-head { margin-bottom: 2rem; max-width: 40rem; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.row {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 1rem; max-width: none; flex-wrap: wrap;
}
.section-head h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  color: var(--navy); letter-spacing: -0.01em;
}
.section-head p { margin: 0; color: var(--text-muted-dark); }
.text-link {
  color: var(--orange-deep); font-weight: 600; white-space: nowrap;
}
.text-link:hover { color: var(--orange); }

/* Categories */
.categories { background: var(--white); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.cat-card {
  background: var(--off-white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem;
  color: inherit; text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  min-height: 150px;
}
.cat-card:hover {
  text-decoration: none; transform: translateY(-3px);
  border-color: rgba(249,115,22,0.45);
  box-shadow: var(--shadow-soft);
}
.cat-icon {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px; border-radius: 10px; margin-bottom: 0.85rem;
  background: rgba(249,115,22,0.12); color: var(--orange-deep);
  font-weight: 700;
}
.cat-card h3 { font-size: 1.02rem; color: var(--navy); }
.cat-card p { margin: 0; color: var(--text-muted-dark); font-size: 0.9rem; }
.cat-card-all {
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  color: #fff; border-color: transparent;
}
.cat-card-all h3, .cat-card-all p { color: #fff; }
.cat-card-all .cat-icon { background: rgba(249,115,22,0.2); color: var(--orange); }
.cat-card-all:hover { border-color: var(--orange); }

/* Inventory */
.inventory { background: var(--off-white); }
.demo-note, .demo-disclaimer {
  font-size: 0.82rem; color: #64748b; margin: 0.35rem 0 0;
}
.demo-disclaimer { margin-top: 1.25rem; text-align: center; }
.inv-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}
.inv-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line-dark); box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
}
.inv-media {
  position: relative; aspect-ratio: 4 / 3;
  background-size: cover; background-position: center;
}
.inv-media-1 {
  background-image:
    linear-gradient(180deg, transparent 40%, rgba(11,18,32,0.55)),
    url("https://images.unsplash.com/photo-1565043589221-1a6fd9ae45c7?auto=format&fit=crop&w=800&q=70");
}
.inv-media-2 {
  background-image:
    linear-gradient(180deg, transparent 40%, rgba(11,18,32,0.55)),
    url("https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=800&q=70");
}
.inv-media-3 {
  background-image:
    linear-gradient(180deg, transparent 40%, rgba(11,18,32,0.55)),
    url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=800&q=70");
}
.inv-media-4 {
  background-image:
    linear-gradient(180deg, transparent 40%, rgba(11,18,32,0.55)),
    url("https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?auto=format&fit=crop&w=800&q=70");
}
.badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; padding: 0.28rem 0.55rem; border-radius: 999px;
}
.badge-stock { background: #334155; color: #e2e8f0; }
.badge-demo {
  left: auto; right: 0.75rem;
  background: rgba(11,18,32,0.82); color: #fbbf24;
  border: 1px solid rgba(251,191,36,0.4);
}
.inv-body { padding: 1.05rem 1.1rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
.inv-brand {
  margin: 0 0 0.2rem; font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.08em; color: var(--orange-deep); font-weight: 600; text-transform: uppercase;
}
.inv-body h3 { font-size: 1.02rem; color: var(--navy); }
.inv-meta { margin: 0 0 1rem; color: #64748b; font-size: 0.86rem; flex: 1; }
.inv-foot {
  display: flex; justify-content: space-between; align-items: center; gap: 0.5rem;
}
.price { font-weight: 700; font-size: 1.15rem; color: var(--navy); }
.status {
  font-size: 0.75rem; font-weight: 700; padding: 0.28rem 0.55rem;
  border-radius: 999px;
}
.status-excellent { background: rgba(22,163,74,0.12); color: #15803d; }

/* Trust trio */
.trust-trio {
  background: var(--navy);
  color: var(--text);
  padding: 3.5rem 0;
}
.trio-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem;
}
.trio-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
}
.trio-icon {
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: 1rem;
  display: grid; place-items: center;
  background: rgba(249,115,22,0.15); color: var(--orange);
  font-weight: 700; font-size: 1.1rem;
}
.trio-card h3 { color: #fff; font-size: 1.15rem; }
.trio-card p { margin: 0; color: var(--muted); }

/* Sell banner */
.sell-banner {
  background:
    linear-gradient(110deg, rgba(11,18,32,0.94), rgba(18,25,33,0.88)),
    url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1600&q=70");
  background-size: cover; background-position: center;
  color: #fff; padding: 3.75rem 0;
}
.sell-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 2rem; flex-wrap: wrap;
}
.sell-banner h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  letter-spacing: 0.02em; max-width: 18ch;
}
.sell-quote {
  color: var(--orange); font-style: italic; font-weight: 600; margin: 0.5rem 0 0.75rem;
}
.sell-banner p { color: #cbd5e1; max-width: 36rem; margin: 0; }

/* Brands */
.brands { background: #fff; padding-top: 3.25rem; padding-bottom: 3.25rem; }
.brand-row {
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.85rem;
}
.brand-row li {
  display: grid; place-items: center; text-align: center;
  min-height: 72px; border-radius: var(--radius);
  border: 1px solid var(--line-dark); background: var(--off-white);
  font-weight: 700; letter-spacing: 0.04em; color: var(--navy);
  font-size: 0.95rem;
}

/* Resources */
.resources { background: var(--off-white); }
.res-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.15rem;
}
.res-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line-dark); box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
}
.res-media { aspect-ratio: 16 / 9; background-size: cover; background-position: center; }
.res-media-1 {
  background-image: linear-gradient(135deg, rgba(11,18,32,0.35), rgba(249,115,22,0.25)),
    url("https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&w=900&q=70");
}
.res-media-2 {
  background-image: linear-gradient(135deg, rgba(11,18,32,0.35), rgba(249,115,22,0.25)),
    url("https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?auto=format&fit=crop&w=900&q=70");
}
.res-media-3 {
  background-image: linear-gradient(135deg, rgba(11,18,32,0.35), rgba(249,115,22,0.25)),
    url("https://images.unsplash.com/photo-1565043589221-1a6fd9ae45c7?auto=format&fit=crop&w=900&q=70");
}
.res-body { padding: 1.2rem 1.2rem 1.35rem; display: flex; flex-direction: column; flex: 1; }
.res-tag {
  margin: 0 0 0.4rem; font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.08em; color: var(--orange-deep); font-weight: 600; text-transform: uppercase;
}
.res-body h3 { font-size: 1.08rem; color: var(--navy); }
.res-body p { color: var(--text-muted-dark); font-size: 0.94rem; margin: 0 0 1rem; flex: 1; }

/* About CTA */
.about-cta { background: #fff; }
.about-grid {
  display: grid; grid-template-columns: 1.4fr 0.9fr; gap: 2rem; align-items: stretch;
}
.about-cta h2 { color: var(--navy); font-size: clamp(1.6rem, 2.6vw, 2.15rem); }
.about-cta p { color: var(--text-muted-dark); }
.nationwide {
  font-weight: 600; color: var(--navy) !important;
  border-left: 3px solid var(--orange); padding-left: 0.85rem;
}
.about-panel {
  background: var(--navy);
  color: #fff; border-radius: var(--radius-lg);
  padding: 1.85rem 1.6rem;
  display: flex; flex-direction: column; gap: 0.85rem;
  box-shadow: var(--shadow);
}
.about-panel h3 { color: #fff; font-size: 1.35rem; }
.about-panel p { color: var(--muted); margin: 0; }
.about-panel .btn { width: 100%; }

/* Contact */
.contact { background: var(--off-white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 2rem;
}
.contact h2 { color: var(--navy); }
.contact-list { display: grid; gap: 1rem; margin-top: 1.25rem; }
.contact-list li {
  display: grid; gap: 0.2rem;
  background: #fff; border: 1px solid var(--line-dark);
  border-radius: var(--radius); padding: 0.95rem 1.05rem;
}
.contact-list strong {
  font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--orange-deep); font-family: var(--mono);
}
.contact-list a, .contact-list span { color: var(--navy); font-weight: 600; }
.contact-form {
  background: #fff; border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg); padding: 1.4rem;
  display: grid; gap: 0.9rem; box-shadow: var(--shadow-soft);
}
.contact-form label { display: grid; gap: 0.35rem; }
.contact-form span { font-weight: 600; font-size: 0.88rem; color: var(--navy); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit; border: 1px solid #cbd5e1; border-radius: 10px;
  padding: 0.7rem 0.85rem; background: #fff; color: var(--text-dark);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(249,115,22,0.35); border-color: var(--orange);
}
.form-note { margin: 0; color: #15803d; font-size: 0.9rem; font-weight: 500; }

/* Footer */
.site-footer {
  background: var(--navy); color: var(--muted);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 1.75rem; padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.footer-logo { margin-bottom: 0.85rem; }
.footer-blurb { margin: 0; max-width: 28ch; }
.site-footer h4 {
  color: #fff; font-size: 0.85rem; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 0.85rem;
}
.site-footer ul { display: grid; gap: 0.45rem; }
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding-top: 1.25rem; font-size: 0.88rem;
}
.footer-note { color: #64748b; }

/* Responsive */
@media (max-width: 1100px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .btn-cta { display: none; }
  .header-actions .btn-cta { display: none; }
  .cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .inv-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; padding: 3.25rem 0 2.75rem; }
  .hero-aside { justify-self: start; text-align: left; border-left: 0; border-top: 3px solid var(--orange); padding: 1rem 0 0; }
  .aside-line { display: inline; margin-right: 0.45rem; font-size: 1.15rem; letter-spacing: 0.08em; }
  .search-bar {
    grid-template-columns: 1fr; border-radius: 18px; padding: 0.65rem;
  }
  .search-bar select { border-left: 0; border-right: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .trio-grid, .res-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .trust-checks { grid-template-columns: 1fr; }
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-right { display: none; }
}

@media (max-width: 560px) {
  .icon-btn--soon { display: none; }
  .cat-grid, .inv-grid, .brand-row, .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
  .sell-inner { flex-direction: column; align-items: flex-start; }
  .header-inner { min-height: 68px; }
}

/* FAQ */
.faq-section { background: #fff; }
.faq-list { display: grid; gap: 0.65rem; max-width: 52rem; }
.faq-item {
  background: var(--off-white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer; font-weight: 600; padding: 1rem 1.15rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--mono); color: var(--orange-deep);
  font-size: 1.1rem; flex-shrink: 0;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0; padding: 0 1.15rem 1.1rem; color: var(--text-muted-dark); font-size: 0.95rem;
}

.domain-inline { font-family: var(--mono); font-size: 0.88em; color: #64748b; }

/* Shared network block */
.network-block {
  border-top: 1px solid var(--line);
  margin-top: 1.25rem;
  padding: 1.25rem 0 0.25rem;
}
.network-label {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--orange); margin: 0 0 0.65rem; font-weight: 600;
}
.network-nav {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.1rem;
}
.network-nav a {
  color: #cbd5e1; font-weight: 500; font-size: 0.92rem; text-decoration: none;
}
.network-nav a:hover { color: var(--orange); }
.network-nav a[aria-current="page"] {
  color: var(--orange); border-bottom: 1px solid rgba(249, 115, 22, 0.5);
}
