:root {
  --bg: #0b0d10;
  --bg-2: #11151b;
  --surface: #171b22;
  --surface-2: #202630;
  --text: #f6f7f9;
  --muted: #aab2bf;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #f97316;
  --accent-soft: rgba(249, 115, 22, 0.14);
  --accent-line: rgba(249, 115, 22, 0.34);
  --green: #45d483;
  --radius: 20px;
  --max: 1160px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 0%, rgba(249, 115, 22, 0.16), transparent 26rem),
    linear-gradient(180deg, var(--bg), var(--bg-2) 45%, var(--bg));
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
a:hover { color: #fed7aa; }
img { display: block; max-width: 100%; }

code {
  color: #fed7aa;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid var(--accent-line);
  padding: 0.08rem 0.34rem;
  border-radius: 8px;
}

:focus-visible {
  outline: 3px solid #fed7aa;
  outline-offset: 4px;
  border-radius: 10px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link:focus {
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: #1b1108;
  background: #fed7aa;
  font-weight: 800;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.section-pad { padding: 4.75rem 0; }
.compact-top { padding-top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 13, 16, 0.86);
  backdrop-filter: blur(16px);
}

.site-header.scrolled {
  background: rgba(11, 13, 16, 0.96);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.nav-shell {
  width: min(1220px, calc(100% - 28px));
  min-height: 74px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.brand-logo {
  border-radius: 13px;
  border: 1px solid var(--line);
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 2px 0;
  background: currentColor;
  border-radius: 10px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-links {
  position: absolute;
  top: 82px;
  left: 14px;
  right: 14px;
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #11151b;
  box-shadow: var(--shadow);
}

.nav-links.open { display: flex; }

.nav-links a {
  color: var(--muted);
  font-weight: 760;
  padding: 0.85rem 1rem;
  border-radius: 12px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links .nav-cta {
  color: #1b1108;
  background: #fb923c;
  text-align: center;
}

.hero { padding-top: 5.3rem; }
.hero-grid,
.split-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: #fdba74;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 850;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 { max-width: 840px; font-size: clamp(2.55rem, 8vw, 5.3rem); }
h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
h3 { font-size: 1.26rem; }
.inner-page h1 { max-width: 980px; font-size: clamp(2.35rem, 7vw, 4.4rem); }
.feature-card h2, .price-card h2 { font-size: 1.55rem; }

.hero-text,
.section-text,
.section-heading p:not(.eyebrow),
.feature-card p,
.price-card p,
.notice-card p,
.content-card p,
.content-card li,
.faq-card p,
.cta-card p,
.mini-card p,
.product-row span,
.panel-note,
.steps span,
.stat-card span {
  color: var(--muted);
}

.hero-text,
.section-heading p:not(.eyebrow),
.section-text {
  max-width: 740px;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.7rem;
}
.hero-actions.center { justify-content: center; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 820;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button.primary { color: #1b1108; background: #fb923c; border-color: #fb923c; }
.button.secondary { background: rgba(255, 255, 255, 0.06); }
.button.full { width: 100%; margin-top: auto; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.45rem;
}

.trust-row span,
.badge {
  border: 1px solid var(--accent-line);
  background: var(--accent-soft);
  color: #fed7aa;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 760;
}

.hero-panel,
.feature-card,
.price-card,
.notice-card,
.stat-card,
.faq-card,
.cta-card,
.content-card,
.mini-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.035));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 1.15rem;
  max-width: 500px;
  margin-inline: auto;
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.panel-top img { border-radius: 16px; }
.panel-top strong { display: block; font-size: 1.12rem; }
.panel-top span { color: var(--muted); font-weight: 680; }

.panel-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.product-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
}
.product-row strong { color: #fed7aa; white-space: nowrap; }
.panel-note { margin: 1rem 0 0; font-size: 0.95rem; }

.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  padding-bottom: 1rem;
}

.stat-card { padding: 1.05rem; }
.stat-card strong { display: block; color: #fed7aa; font-size: 2rem; line-height: 1; }

.section-heading { max-width: 850px; margin-bottom: 2rem; }
.page-hero { padding-top: 5.8rem; padding-bottom: 2.4rem; }

.feature-grid,
.pricing-grid,
.faq-grid,
.mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.feature-card,
.price-card,
.notice-card,
.content-card,
.mini-card { padding: 1.25rem; }

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 14px;
  color: #1b1108;
  background: #fb923c;
  font-weight: 850;
}

.accent-section {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.check-list span {
  display: block;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.check-list span::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 0.55rem;
}

.inline-link {
  display: inline-flex;
  margin-top: 0.5rem;
  color: #fed7aa;
  font-weight: 850;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.price-card.premium { border-color: var(--accent-line); }
.badge { position: absolute; right: 1rem; top: 1rem; }

.price {
  color: #fed7aa;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}
.price span { color: var(--muted); font-size: 1rem; letter-spacing: 0; }
.price-note { margin: -0.45rem 0 0; color: var(--muted); font-size: 0.95rem; }
.price-card ul { margin: 0; padding-left: 1.15rem; color: var(--muted); }
.price-card li { margin: 0.48rem 0; }

.setup-section {
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.09), transparent 48%);
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 1rem 1rem 1rem 3.7rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  color: #1b1108;
  background: #fb923c;
  font-weight: 900;
}
.steps strong, .steps span { display: block; }
.compact-steps { margin-top: 1rem; }

.faq-grid { align-items: start; }
.faq-card { padding: 0; overflow: hidden; align-self: start; }
.faq-card summary { cursor: pointer; padding: 1.1rem 1.2rem; font-weight: 820; }
.faq-card p { margin: 0; padding: 0 1.2rem 1.2rem; }
.faq-card[open] { border-color: var(--accent-line); background: rgba(249, 115, 22, 0.09); }

.cta-section { padding-top: 1rem; }
.cta-card { padding: clamp(1.7rem, 6vw, 3.5rem); text-align: center; }
.cta-card p:not(.eyebrow) { max-width: 690px; margin-inline: auto; }

.content-card h2 + p,
.content-card h2 + ul { margin-top: 0.65rem; }
.content-card h2:not(:first-child) { margin-top: 1.5rem; }
.content-card ul { padding-left: 1.2rem; }
.content-card .button { margin-top: 1rem; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.18);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-grid p { margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.footer-links a { font-weight: 760; }

.reveal { opacity: 1; transform: none; }
.js-ready .reveal { opacity: 0; transform: translateY(14px); transition: opacity 420ms ease, transform 420ms ease; }
.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }

@media (min-width: 560px) {
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .stats { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 760px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 980px) {
  .nav-toggle { display: none; }
  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .nav-links a { padding: 0.58rem 0.76rem; }
  .hero { padding-top: 6.5rem; }
  .hero-grid { grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr); }
  .split-grid { grid-template-columns: 1fr 1fr; }
  .section-pad { padding: 5.6rem 0; }
  .page-hero { padding-top: 6.5rem; padding-bottom: 2.6rem; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* Docs page */
.docs-layout {
  display: grid;
  gap: 1.2rem;
  align-items: start;
}

.docs-toc {
  position: relative;
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.docs-toc strong {
  margin-bottom: 0.35rem;
  color: #fed7aa;
  font-size: 0.92rem;
}

.docs-toc a {
  color: var(--muted);
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  font-weight: 760;
}

.docs-toc a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.docs-content {
  display: grid;
  gap: 1rem;
}

.docs-content .content-card {
  scroll-margin-top: 96px;
}

.docs-content .faq-card {
  margin-top: 0.75rem;
  box-shadow: none;
}

.docs-mini-grid {
  margin: 1rem 0;
}

.docs-page .content-card p:last-child,
.docs-page .content-card ul:last-child,
.docs-page .content-card ol:last-child {
  margin-bottom: 0;
}

@media (min-width: 980px) {
  .docs-layout {
    grid-template-columns: minmax(210px, 0.28fr) minmax(0, 1fr);
  }

  .docs-toc {
    position: sticky;
    top: 96px;
  }
}


/* Store Bot public status badge */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  margin-top: 1rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 760;
}

.status-pill:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.09);
}

.status-pill-dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(69, 212, 131, 0.15);
}

.status-pill[data-status="maintenance"] .status-pill-dot { background: #5865f2; box-shadow: 0 0 0 6px rgba(88, 101, 242, 0.16); }
.status-pill[data-status="degraded"] .status-pill-dot,
.status-pill[data-status="partial_outage"] .status-pill-dot { background: #facc15; box-shadow: 0 0 0 6px rgba(250, 204, 21, 0.16); }
.status-pill[data-status="major_outage"] .status-pill-dot,
.status-pill[data-status="outage"] .status-pill-dot { background: #ed4245; box-shadow: 0 0 0 6px rgba(237, 66, 69, 0.16); }

/* Store Bot dropdown nav + public shops/reputation */
.brand,
.brand span,
.brand strong {
  white-space: nowrap;
}

.nav-shell {
  width: min(1240px, calc(100% - 28px));
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
  color: var(--muted);
  font-weight: 760;
  border-radius: 12px;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "▾";
  margin-left: 0.35rem;
  font-size: 0.72rem;
}

.nav-dropdown[open] summary,
.nav-dropdown summary:hover,
.nav-dropdown summary:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-dropdown-menu {
  display: grid;
  gap: 0.15rem;
}

@media (max-width: 979px) {
  .nav-dropdown summary {
    padding: 0.85rem 1rem;
  }

  .nav-dropdown-menu {
    padding: 0.25rem 0 0.25rem 0.75rem;
  }

  .nav-dropdown-menu a {
    padding-block: 0.7rem;
  }
}

@media (min-width: 980px) {
  .nav-shell {
    gap: 0.75rem;
  }

  .nav-links {
    flex: 1 1 auto;
    justify-content: flex-end;
    min-width: 0;
    gap: 0.12rem;
  }

  .nav-links a,
  .nav-dropdown summary {
    white-space: nowrap;
    padding: 0.52rem 0.58rem;
    font-size: 0.94rem;
  }

  .nav-links .nav-cta {
    margin-left: 0.35rem;
    padding-inline: 1rem;
  }

  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    z-index: 200;
    min-width: 190px;
    padding: 0.45rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #11151b;
    box-shadow: var(--shadow);
  }

  .nav-dropdown:not([open]) .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown-menu a {
    display: block;
    padding: 0.65rem 0.75rem;
  }
}

@media (min-width: 980px) and (max-width: 1140px) {
  .nav-links a,
  .nav-dropdown summary {
    padding-inline: 0.42rem;
    font-size: 0.89rem;
  }

  .brand {
    gap: 0.55rem;
    font-size: 0.98rem;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }
}

.trust-showcase-section {
  background: linear-gradient(90deg, rgba(251, 146, 60, 0.08), transparent 42%), rgba(255, 255, 255, 0.012);
  border-block: 1px solid var(--line);
}

.trust-showcase-card,
.shop-preview-card,
.reputation-card,
.directory-card,
.product-card-live,
.lookup-card,
.compact-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.038));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.trust-showcase-card,
.shop-preview-card,
.reputation-card,
.directory-card,
.lookup-card,
.product-card-live {
  padding: 1.25rem;
}

.shop-preview-header,
.directory-card-top {
  display: grid;
  gap: 0.45rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.directory-card-top {
  align-items: start;
}

.shop-preview-header strong,
.directory-card h3,
.product-card-live h3 {
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.shop-preview-header p,
.trust-showcase-card p,
.shop-preview-card p,
.reputation-card p,
.directory-card p,
.product-card-live p,
.review-stack span,
.trust-score small,
.lookup-card p,
.lookup-message,
.product-card-bottom span,
.product-card-bottom small {
  color: var(--muted);
}

.verified-badge,
.soft-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 850;
}

.verified-badge {
  border: 1px solid rgba(52, 211, 153, 0.32);
  color: #bbf7d0;
  background: rgba(52, 211, 153, 0.09);
}

.verified-badge::before {
  content: "✓";
  color: var(--green);
  font-weight: 1000;
}

.soft-badge {
  border: 1px solid var(--line);
  color: #fed7aa;
  background: rgba(249, 115, 22, 0.09);
}

.seller-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  margin: 1rem 0;
}

.seller-metrics.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seller-metrics span {
  display: block;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--muted);
}

.seller-metrics strong {
  display: block;
  color: #fed7aa;
  font-size: 1.35rem;
  line-height: 1.1;
}

.shop-product-list,
.review-stack,
.shop-results,
.shop-product-grid,
.policy-grid,
.card-actions,
.tag-row {
  display: grid;
  gap: 0.75rem;
}

.shop-results,
.shop-product-grid {
  grid-template-columns: 1fr;
}

.product-card-live {
  display: grid;
  gap: 1.25rem;
}

.product-card-bottom {
  display: grid;
  gap: 0.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.product-card-bottom strong {
  color: #fed7aa;
  font-size: 1.35rem;
}

.review-stack blockquote {
  margin: 0;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-left: 4px solid #fb923c;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--text);
  font-weight: 760;
}

.review-stack span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.86rem;
  font-weight: 800;
}

.review-rating {
  color: #fed7aa;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.trust-score {
  display: grid;
  gap: 0.35rem;
  padding: 1.1rem;
  border: 1px solid rgba(251, 146, 60, 0.34);
  border-radius: 20px;
  background: radial-gradient(circle at top left, rgba(251, 146, 60, 0.18), transparent 18rem), rgba(0, 0, 0, 0.16);
}

.trust-score span {
  color: #fed7aa;
  font-size: clamp(3rem, 12vw, 5rem);
  line-height: 0.9;
  font-weight: 1000;
  letter-spacing: -0.08em;
}

.trust-score strong {
  font-size: 1.2rem;
  letter-spacing: -0.035em;
}

.lookup-card {
  margin-top: 1.5rem;
}

.lookup-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.lookup-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.2);
  font: inherit;
}

.lookup-form input::placeholder {
  color: rgba(170, 178, 191, 0.72);
}

.lookup-message {
  margin-top: 0.9rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.lookup-message.success { border-color: rgba(52, 211, 153, 0.32); color: #bbf7d0; }
.lookup-message.warning { border-color: rgba(250, 204, 21, 0.32); color: #fde68a; }
.lookup-message a { color: #fed7aa; font-weight: 850; }
.warning-note { color: #fde68a; }

.directory-header {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}

.tag-row span {
  padding: 0.28rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #fed7aa;
  background: rgba(249, 115, 22, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
}

.card-actions {
  grid-template-columns: 1fr;
  margin-top: 1rem;
}

.button.small {
  padding: 0.68rem 0.85rem;
  min-height: auto;
}

.generated-hero {
  padding-bottom: 2rem;
}

.compact-card {
  padding: 1rem;
}

@media (min-width: 640px) {
  .lookup-form {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .card-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 760px) {
  .seller-metrics { grid-template-columns: repeat(3, 1fr); }
  .seller-metrics.compact { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .shop-results { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .policy-grid { grid-template-columns: 1fr; }
}

/* Maintenance mode */
html.maintenance-pending body {
  visibility: hidden;
}

.maintenance-page {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.22), transparent 34rem),
    linear-gradient(135deg, #0f172a 0%, #111827 52%, #1f2937 100%);
  color: #f8fafc;
}

.maintenance-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 5vw, 3rem);
}

.maintenance-card,
.section-maintenance-card {
  width: min(100%, 720px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.82);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  padding: clamp(1.5rem, 5vw, 3rem);
}

.maintenance-card {
  text-align: left;
}

.maintenance-mark {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  margin-bottom: 1rem;
  background: rgba(249, 115, 22, 0.18);
  border: 1px solid rgba(249, 115, 22, 0.35);
  color: #fed7aa;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.maintenance-card h1,
.section-maintenance-card h2 {
  margin: 0.35rem 0 0.8rem;
  max-width: 680px;
}

.maintenance-reason,
.maintenance-eta,
.section-maintenance-card p {
  color: rgba(248, 250, 252, 0.78);
  line-height: 1.7;
  max-width: 62ch;
}

.maintenance-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.section-maintenance-wrapper {
  padding: 4rem 0;
}

.section-maintenance-card {
  margin-inline: auto;
}



/* STOREBOT_HOME_PREMIUM_CHECKOUT_STYLES_V1 */
.button.ghost {
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
}
.button.ghost:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}
.premium-checkout-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.4rem;
  align-items: center;
  margin-top: -1rem;
  margin-bottom: 2.5rem;
  padding: 1.35rem;
  border: 1px solid rgba(255, 157, 18, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 157, 18, 0.13), rgba(255, 255, 255, 0.055)),
    rgba(19, 22, 30, 0.76);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}
.premium-checkout-copy h2 {
  margin: 0.18rem 0 0.42rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}
.premium-checkout-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}
.premium-checkout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.price-note {
  margin: -0.55rem 0 1rem;
  color: var(--accent-3);
  font-weight: 800;
}
@media (min-width: 800px) {
  .premium-checkout-strip {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 1.55rem 1.7rem;
  }
  .premium-checkout-actions {
    justify-content: flex-end;
  }
}

/* Site-wide visual polish v11 */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 55% at 88% -8%, rgba(249, 115, 22, 0.14), transparent 52%),
    radial-gradient(ellipse 70% 45% at 4% 105%, rgba(249, 115, 22, 0.07), transparent 48%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.015), transparent 70%);
}

.hero-panel,
.feature-card,
.price-card,
.notice-card,
.stat-card,
.content-card,
.mini-card,
.cta-card,
.trust-showcase-card,
.shop-preview-card,
.reputation-card,
.directory-card,
.lookup-card,
.hero-panel {
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

@media (hover: hover) {
  .feature-card:hover,
  .mini-card:hover,
  .content-card:hover,
  .notice-card:hover,
  .trust-showcase-card:hover,
  .directory-card:hover,
  .lookup-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.28);
    box-shadow: 0 26px 64px rgba(0, 0, 0, 0.38);
  }

  .hero-panel:hover {
    transform: translateY(-3px);
    border-color: rgba(249, 115, 22, 0.32);
    box-shadow: 0 28px 70px rgba(249, 115, 22, 0.12), var(--shadow);
  }

  .stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(249, 115, 22, 0.24);
  }

  .price-card:hover {
    transform: translateY(-4px);
  }

  .nav-links .nav-cta:hover {
    box-shadow: 0 10px 28px rgba(251, 146, 60, 0.38);
  }
}

.button.primary {
  box-shadow: 0 4px 18px rgba(249, 115, 22, 0.22);
}

@media (hover: hover) {
  .button.primary:hover {
    box-shadow: 0 14px 36px rgba(249, 115, 22, 0.38);
  }
}

.price-card.premium {
  background:
    linear-gradient(165deg, rgba(249, 115, 22, 0.11), rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: 0 24px 70px rgba(249, 115, 22, 0.1), var(--shadow);
}

.price-card.premium .badge {
  background: rgba(249, 115, 22, 0.18);
  border-color: rgba(249, 115, 22, 0.42);
}

.cta-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(249, 115, 22, 0.28);
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.16), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.06), transparent 55%);
}

.cta-card > * {
  position: relative;
}

.card-icon {
  box-shadow: 0 8px 22px rgba(249, 115, 22, 0.28);
}

.accent-section,
.trust-showcase-section,
.setup-section {
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.22), transparent);
  pointer-events: none;
}

.page-hero {
  position: relative;
}

.stats-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.stats-band .stat-card strong {
  font-size: clamp(1.8rem, 5vw, 2.4rem);
}

.home-stats-wrap {
  margin-top: -1.5rem;
  margin-bottom: 1rem;
}

.premium-checkout-strip {
  position: relative;
  overflow: hidden;
}

.premium-checkout-strip::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.18), transparent 68%);
  pointer-events: none;
}

.site-footer {
  position: relative;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.28)),
    rgba(0, 0, 0, 0.18);
}

.footer-links a {
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: #fed7aa;
}

.product-row {
  transition: border-color 160ms ease, background 160ms ease;
}

@media (hover: hover) {
  .product-row:hover {
    border-color: rgba(249, 115, 22, 0.24);
    background: rgba(249, 115, 22, 0.06);
  }
}

.check-list span {
  transition: border-color 160ms ease, background 160ms ease;
}

@media (hover: hover) {
  .check-list span:hover {
    border-color: rgba(69, 212, 131, 0.28);
    background: rgba(69, 212, 131, 0.06);
  }
}

.faq-card summary {
  transition: color 160ms ease, background 160ms ease;
}

.faq-card summary:hover {
  color: #fed7aa;
}

@media (min-width: 560px) {
  .stats-band {
    grid-template-columns: repeat(3, 1fr);
  }
}
