/* PriceIntel AI static site — restored */
:root {
  --background: hsl(230 30% 97%);
  --foreground: hsl(213 80% 14%);
  --card: hsl(0 0% 100%);
  --muted: hsl(230 20% 94%);
  --muted-foreground: hsl(215 16% 47%);
  --accent: hsl(174 78% 33%);
  --accent-foreground: hsl(0 0% 100%);
  --primary: hsl(213 80% 14%);
  --primary-foreground: hsl(0 0% 100%);
  --secondary: hsl(230 30% 94%);
  --border: hsl(220 20% 90%);
  --ring: hsl(174 78% 33%);
  --teal: 174 78% 33%;
  --navy: 213 80% 14%;
  --hero-gradient: linear-gradient(135deg, hsl(235 60% 97%) 0%, hsl(220 50% 95%) 50%, hsl(235 60% 97%) 100%);
  --container: 80rem;
  --font: "DM Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html {
  scrollbar-gutter: stable;
  max-width: 100%;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .animate-float {
    animation: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: hidden;
}

/* Global responsive media (large width="" on <img> must not set a min-content wider than the viewport) */
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

canvas {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Inline UI icons: max-width only — avoid display:block so flex alignment stays predictable */
svg {
  max-width: 100%;
}

figure {
  margin: 0;
  max-width: 100%;
}

figure > img {
  display: block;
  width: 100%;
}

/* Grid/flex items default to min-width:auto, which uses the replaced element's intrinsic width */
.hero-grid > *,
.split > *,
.industries-grid > *,
.proof-split > *,
.value-grid > *,
.contact-grid > *,
.brand-logo-grid > *,
.feature-grid > *,
.audience-grid > *,
.faq-layout > *,
.footer-grid > * {
  min-width: 0;
}

.split__visual {
  min-width: 0;
  width: 100%;
}

.hero-visual-inner {
  width: 100%;
  max-width: min(40rem, 100%);
  margin-inline: auto;
}

.hero-visual-inner .glass-card {
  max-width: 100%;
  box-sizing: border-box;
}

.hero-visual-inner img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-logo-grid a {
  min-width: 0;
  max-width: 100%;
}

.brand-logo-grid img {
  width: auto;
  max-width: 100%;
  max-height: 2.25rem;
  height: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .brand-logo-grid img {
    max-height: 3rem;
  }
}

:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 200;
  padding: 8px 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transform: translateY(-200%);
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

[id] {
  scroll-margin-top: 6rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: hsl(0 0% 100% / 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(220 20% 90% / 0.5);
  transition: box-shadow 0.2s;
}

.site-header.is-scrolled {
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 4rem;
  min-width: 0;
}

.site-header__inner > * {
  min-width: 0;
}

.brand {
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .site-header__inner {
    min-height: 4.5rem;
  }
}

.brand img {
  display: block;
  height: 2.25rem;
  width: auto;
  max-width: min(100%, 10rem);
}

@media (min-width: 768px) {
  .brand img {
    height: 2.5rem;
    max-width: 11.5rem;
  }
}

.nav-desktop {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop__links {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-decoration: none;
}

.nav-link:hover {
  color: var(--foreground);
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

@media (min-width: 900px) {
  .nav-actions {
    display: flex;
  }
}

.nav-dd {
  position: relative;
}

.nav-dd__btn {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 0.5rem 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  cursor: pointer;
}

.nav-dd__chev {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}

.nav-dd__btn[aria-expanded="true"] .nav-dd__chev {
  transform: rotate(180deg);
}

.nav-dd__menu {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  padding-top: 0.5rem;
  min-width: 15rem;
  z-index: 120;
}

.nav-dd__menu.is-open {
  display: block;
}

.nav-dd__panel {
  border-radius: 0.75rem;
  border: 1px solid hsl(220 20% 90% / 0.8);
  background: var(--card);
  box-shadow: 0 10px 40px rgb(0 0 0 / 0.12);
  padding: 0.5rem 0;
}

.nav-dd__panel a {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--foreground);
}

.nav-dd__panel a:hover {
  background: hsl(230 20% 94% / 0.8);
}

.nav-toggle {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
}

.nav-panel {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--card);
  padding: 1rem 1.5rem 1.25rem;
}

.nav-panel.is-open {
  display: block;
}

@media (min-width: 900px) {
  .nav-panel {
    display: none !important;
  }
}

.nav-panel a,
.nav-panel button.sub {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.625rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-decoration: none;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.nav-panel__sub {
  margin-left: 0.75rem;
  padding-left: 0.75rem;
  border-left: 2px solid hsl(174 78% 33% / 0.3);
}

body.nav-open {
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--accent {
  background: var(--accent);
  color: var(--accent-foreground);
  box-shadow: 0 10px 25px hsl(174 78% 33% / 0.2);
}

.btn--accent:hover {
  background: hsl(174 78% 33% / 0.9);
}

.btn--outline {
  background: hsl(0 0% 100% / 0.6);
  color: var(--foreground);
  border: 2px solid var(--border);
  backdrop-filter: blur(6px);
}

.btn--outline:hover {
  background: var(--secondary);
}

.btn--border {
  height: 2.25rem;
  padding: 0 1rem;
  border: 1px solid var(--border);
  background: hsl(230 30% 97%);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn--lg {
  height: 3rem;
  padding: 0 1.75rem;
}

.btn--block {
  width: 100%;
}

.glass-card {
  background: hsl(0 0% 100% / 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid hsl(220 20% 90% / 0.5);
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.04), 0 6px 24px -4px rgb(0 0 0 / 0.06);
}

.hero-bg {
  position: relative;
  overflow: hidden;
  background: var(--hero-gradient);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle, hsl(var(--navy) / 1) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  padding-top: 9rem;
  padding-bottom: 7rem;
}

@media (min-width: 1024px) {
  .hero-inner {
    padding-top: 6rem;
    padding-bottom: 7rem;
  }
}

.hero-grid {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    min-height: calc(100dvh - 4.75rem);
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.hero-badges {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .hero-badges {
    justify-content: flex-start;
  }
}

.hero-badges img {
  max-height: 1.75rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .hero-badges img {
    max-height: 2.5rem;
    max-width: 10rem;
  }
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 1.75rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 2.65rem;
  }
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

@media (min-width: 640px) {
  .hero-lead {
    font-size: 1.125rem;
  }
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-trust-line {
  margin: 0;
  max-width: min(32rem, 100%);
  padding-left: 1rem;
  border-left: 2px solid hsl(174 78% 33% / 0.4);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

.hero-visual {
  display: flex;
  justify-content: center;
  min-width: 0;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-visual {
    justify-content: flex-end;
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.text-gradient {
  background: linear-gradient(135deg, hsl(var(--navy) / 1) 0%, hsl(var(--teal) / 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section {
  border-bottom: 1px solid hsl(220 20% 90% / 0.3);
}

.py-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (min-width: 640px) {
  .py-section {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

@media (min-width: 1024px) {
  .py-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.muted {
  color: var(--muted-foreground);
}

.link-accent {
  font-weight: 500;
  color: var(--accent);
  text-underline-offset: 4px;
}

.link-accent:hover {
  text-decoration: underline;
}

.bg-muted-soft {
  background: hsl(230 20% 94% / 0.2);
}

.bg-background {
  background: var(--background);
}

.bg-secondary-soft {
  background: hsl(230 30% 94% / 0.25);
}

.bg-secondary-15 {
  background: hsl(230 30% 94% / 0.15);
}

.bg-card {
  background: var(--card);
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 4rem;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 5rem;
  }
}

.feature-card {
  border-radius: 1rem;
  border: 1px solid hsl(220 20% 90% / 0.6);
  background: var(--card);
  padding: 2rem;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.04);
}

.feature-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsl(174 78% 33% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.split {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .split--flip .split__text {
    order: 2;
  }

  .split--flip .split__visual {
    order: 1;
  }
}

.split__text {
  max-width: min(36rem, 100%);
  width: 100%;
}

.split__text .prose {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .split__text .prose {
    font-size: 1rem;
  }
}

.split__text .prose p + p {
  margin-top: 1rem;
}

/* Capped widths for large marketing mockups (desktop + narrow viewports) */
.split__visual figure {
  max-width: min(55rem, 100%);
  margin-inline: auto;
}

.industries-grid > div:last-child figure {
  max-width: min(40rem, 100%);
  margin-inline: auto;
}

.proof-split figure {
  max-width: min(40rem, 100%);
  margin-inline: auto;
}

.pis-hero-visual {
  min-width: 0;
  width: 100%;
}

.pis-hero-visual figure {
  max-width: min(55rem, 100%);
  margin-inline: auto;
}

.ebay-lp-preview-ring img {
  width: 100%;
  max-width: min(55rem, 100%);
  height: auto;
  margin-inline: auto;
}

.audience-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 3.5rem;
    gap: 2rem;
  }
}

.audience-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  border: 1px solid hsl(220 20% 90% / 0.5);
  background: hsl(0 0% 100% / 0.9);
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.04), 0 8px 24px -6px rgb(0 0 0 / 0.06);
}

.value-grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .value-grid {
    grid-template-columns: 5fr 7fr;
    gap: 3rem;
    align-items: stretch;
  }
}

.pillar-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pillar-card {
  border-radius: 1rem;
  border: 1px solid hsl(220 20% 90% / 0.5);
  background: hsl(0 0% 100% / 0.9);
  padding: 1.25rem;
}

.outcomes-box {
  border-radius: 1rem;
  border: 1px solid hsl(220 20% 90% / 0.6);
  background: var(--card);
  padding: 2rem;
  min-height: 19rem;
  display: flex;
  flex-direction: column;
}

.benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  flex: 1;
}

@media (min-width: 640px) {
  .benefit-list {
    grid-template-columns: 1fr 1fr;
  }
}

.benefit-list li {
  display: flex;
  gap: 0.625rem;
  font-size: 0.875rem;
}

.pricing-aside {
  position: relative;
  border-radius: 1rem;
  border: 1px solid hsl(220 20% 90% / 0.6);
  background: var(--card);
  box-shadow: 0 8px 40px -12px rgb(0 0 0 / 0.12);
  overflow: hidden;
  margin-top: 1.25rem;
}

.pricing-aside::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, hsl(174 78% 33% / 0.8), transparent);
}

.pricing-aside__inner {
  padding: 1.75rem 1.5rem;
}

.price-big {
  margin: 0.5rem 0 0;
  font-size: 2.25rem;
  font-weight: 700;
}

.price-big span {
  color: var(--accent);
}

.industries-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .industries-grid {
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
  }
}

.industry-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
  max-width: min(28rem, 100%);
}

.industry-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid hsl(220 20% 90% / 0.6);
  background: var(--card);
  font-size: 0.875rem;
  font-weight: 600;
}

.stats-row {
  display: grid;
  gap: 1rem;
  max-width: min(56rem, 100%);
  margin: 3rem auto 0;
}

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

.stat-card {
  text-align: center;
  border-radius: 1rem;
  border: 1px solid hsl(220 20% 90% / 0.6);
  background: var(--card);
  padding: 1.5rem;
}

.stat-card .v {
  font-size: 1.5rem;
  font-weight: 700;
}

.proof-split {
  display: grid;
  gap: 3rem;
  margin-top: 4rem;
}

@media (min-width: 1024px) {
  .proof-split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.faq-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .faq-layout {
    grid-template-columns: 4fr 8fr;
    gap: 3rem;
    align-items: start;
  }

  .faq-layout__acc {
    border-left: 1px solid hsl(220 20% 90% / 0.4);
    padding-left: 2.5rem;
    border-top: 0;
    padding-top: 0;
  }
}

.faq-layout__acc {
  border-top: 1px solid hsl(220 20% 90% / 0.5);
  padding-top: 2.5rem;
}

.acc-item {
  border-bottom: 1px solid hsl(220 20% 90% / 0.5);
}

.acc-btn {
  width: 100%;
  text-align: left;
  padding: 1rem 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.acc-panel {
  padding-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

.acc-panel[hidden] {
  display: none;
}

.cta-band {
  border-radius: 1.5rem;
  border: 1px solid hsl(220 20% 90% / 0.6);
  background: var(--card);
  box-shadow: 0 10px 40px -10px rgb(0 0 0 / 0.08);
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3.5rem 2rem;
}

.site-footer {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  gap: 3.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer-logo {
  height: 2rem;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  color: hsl(0 0% 100% / 0.6);
  line-height: 1.6;
}

.footer-col h4 {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(0 0% 100% / 0.8);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col a {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: hsl(0 0% 100% / 0.5);
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid hsl(0 0% 100% / 0.1);
  text-align: center;
  font-size: 0.75rem;
  color: hsl(0 0% 100% / 0.45);
}

.page-main {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.breadcrumb {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--muted-foreground);
  text-decoration: none;
}

.contact-grid {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
  }
}

.info-card {
  border-radius: 1rem;
  border: 1px solid hsl(220 20% 90% / 0.5);
  background: hsl(0 0% 100% / 0.75);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
}

.form-grid-2 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  padding: 0.5rem 0.75rem;
  font: inherit;
  background: var(--card);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.ebay-lp-hero {
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 5rem;
  background: radial-gradient(1200px 600px at 15% -10%, hsl(174 78% 33% / 0.09) 0%, transparent 55%),
    radial-gradient(900px 480px at 95% 20%, hsl(213 80% 14% / 0.06) 0%, transparent 50%), var(--hero-gradient);
}

.ebay-lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: radial-gradient(circle, hsl(var(--navy) / 1) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.ebay-lp-preview-ring {
  box-shadow: 0 0 0 1px hsl(220 20% 90% / 0.8), 0 24px 80px -24px hsl(213 80% 14% / 0.25),
    0 12px 40px -16px hsl(174 78% 33% / 0.12);
}

.ebay-lp-primary-band {
  background: linear-gradient(180deg, var(--primary) 0%, hsl(213 76% 11%) 100%);
  color: var(--primary-foreground);
}

.ebay-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 0.75rem;
  box-sizing: border-box;
  max-width: 100%;
  border-top: 1px solid var(--border);
  background: hsl(0 0% 100% / 0.9);
  backdrop-filter: blur(12px);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .ebay-sticky-cta {
    display: none;
  }
}

.hero-bg-walmart {
  position: relative;
  overflow: hidden;
  padding-top: 7rem;
  padding-bottom: 4rem;
  background: var(--hero-gradient);
}

.hero-bg-walmart::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle, hsl(var(--navy) / 1) 1px, transparent 1px);
  background-size: 32px 32px;
}

.pis-table-wrap {
  max-width: 100%;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 0.75rem;
  border: 1px solid hsl(220 20% 90% / 0.6);
  background: var(--card);
}

.pis-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.875rem;
  text-align: left;
}

.pis-table th,
.pis-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid hsl(220 20% 90% / 0.6);
}

.pis-table thead {
  background: hsl(230 20% 94% / 0.4);
}

.pis-hero-visual {
  order: 2;
}

.pis-hero-copy {
  order: 1;
}

@media (min-width: 1024px) {
  .pis-hero-visual {
    order: 1;
  }

  .pis-hero-copy {
    order: 2;
  }
}

.brand-logo-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .brand-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .brand-logo-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.flex {
  display: flex;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-2xl {
  max-width: min(42rem, 100%);
}

.max-w-3xl {
  max-width: min(48rem, 100%);
}

.justify-center {
  justify-content: center;
}

.items-center {
  align-items: center;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}
