/* Local Stores — My Eats blue theme (from eats-all-web) */
:root {
  --ink: #0f2d52;
  --ink-soft: #2d4665;
  --muted: #5c6b7a;
  --bg: #f8fbff;
  --bg-warm: #f4f8ff;
  --surface: #ffffff;
  --border: #c5d6ea;
  --brand: #004b9c;
  --brand-deep: #003771;
  --brand-soft: rgba(0, 75, 156, 0.12);
  --accent: #2f6fa7;
  --accent-soft: rgba(47, 111, 167, 0.12);
  --band: #0d4a82;
  --band-mid: #082848;
  --glow: rgba(47, 111, 167, 0.28);
  --shadow: 0 18px 40px -20px rgba(15, 45, 82, 0.35);
  --radius: 1rem;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-brand: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 72rem;
  --header-h: 4rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(70% 50% at 85% 0%, rgba(0, 75, 156, 0.12), transparent 60%),
    radial-gradient(50% 40% at 10% 20%, rgba(47, 111, 167, 0.08), transparent 55%),
    linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 40%, #fafcff 100%);
  background-attachment: fixed;
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-brand);
  font-weight: 500;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-optical-sizing: auto;
}

.logo strong {
  font-style: normal;
  font-weight: 700;
  color: var(--brand);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-desktop a {
  padding: 0.45rem 0.85rem;
  border-radius: 0.55rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--ink);
  background: color-mix(in srgb, var(--brand) 8%, transparent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  padding: 0.7rem 1.15rem;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(180deg, #2f6fa7 0%, #1e4f7a 100%);
  color: white;
  box-shadow: 0 10px 22px -12px rgba(30, 79, 122, 0.65);
}

.btn-primary:hover {
  box-shadow: 0 14px 28px -12px rgba(30, 79, 122, 0.75);
}

.btn-brand {
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: white;
  box-shadow: 0 10px 22px -12px var(--glow);
}

.btn-ghost {
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--surface);
  border-color: color-mix(in srgb, var(--brand) 40%, var(--border));
}

.btn-play {
  background: linear-gradient(180deg, #1e4f7a 0%, #0d2a4a 100%);
  color: white;
  padding: 0.55rem 1.1rem;
  border-radius: 0.85rem;
  box-shadow: var(--shadow);
  gap: 0.75rem;
}

.btn-play .play-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.btn-play .play-label small {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.65;
  font-weight: 600;
}

.btn-play .play-label strong {
  margin-top: 0.28rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.menu-toggle {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.65rem;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--surface);
}

.menu-toggle svg {
  width: 1.1rem;
  height: 1.1rem;
}

.btn-seller-desktop {
  display: none;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  padding: 0.75rem 0 1rem;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav a {
  padding: 0.7rem 0.85rem;
  border-radius: 0.65rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.mobile-nav a:hover {
  background: var(--brand-soft);
  color: var(--ink);
}

.mobile-nav .btn {
  margin-top: 0.35rem;
}

.mobile-nav a.btn-primary,
.mobile-nav a.btn-primary:hover {
  color: #fff;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--muted);
  box-shadow: 0 4px 14px -10px rgba(15, 45, 82, 0.25);
}

.live-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--brand);
  position: relative;
}

.live-dot::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.45;
  animation: ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  75%,
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.brand-hero {
  margin: 1.15rem 0 0;
  font-family: var(--font-brand);
  font-weight: 500;
  font-size: clamp(2.75rem, 8.5vw, 4.6rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--ink);
  font-optical-sizing: auto;
  font-variant-ligatures: no-common-ligatures;
  overflow: visible;
}

.brand-hero strong {
  font-style: normal;
  font-weight: 700;
  color: var(--brand);
}

.hero h1 {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  max-width: 18ch;
  color: var(--ink);
  font-variant-ligatures: no-common-ligatures;
  overflow: visible;
}

.hero h1 .underline {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-thickness: 0.07em;
  text-underline-offset: 0.14em;
}

.hero-lead {
  margin: 1.1rem 0 0;
  max-width: 30ch;
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-ctas {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-meta {
  margin-top: 1.1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.phone-wrap {
  position: relative;
  width: min(100%, 19.5rem);
  margin-inline: auto;
}

.phone-glow {
  position: absolute;
  inset: -1.5rem;
  border-radius: 3rem;
  background: radial-gradient(closest-side, var(--glow), transparent);
  filter: blur(18px);
  z-index: -1;
}

.phone {
  border-radius: 2.1rem;
  padding: 5px;
  background: linear-gradient(160deg, #4a6f96 0%, #1e4f7a 40%, #0d2a4a 70%, #2f6fa7 100%);
  box-shadow: var(--shadow);
  animation: floatY 5.5s ease-in-out infinite;
}

.phone-screen {
  overflow: hidden;
  border-radius: 1.75rem;
  background: #0d2a4a;
}

.phone-screen img {
  width: 100%;
  height: auto;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.rise {
  opacity: 0;
  transform: translateY(14px);
  animation: riseIn 0.7s ease forwards;
  animation-delay: var(--rise-delay, 0ms);
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
.section {
  padding: 3.5rem 0;
  border-top: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
}

.section-muted {
  background: color-mix(in srgb, var(--surface) 45%, transparent);
}

.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.section h2 {
  margin: 0.65rem 0 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 4vw, 2.7rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
  /* Fraunces fi/fl ligatures clip the f terminal; render letters separately */
  font-variant-ligatures: no-common-ligatures;
  overflow: visible;
  padding-top: 0.06em;
}

.section-lead {
  margin: 1rem 0 0;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 40ch;
}

.section-lead--full {
  max-width: none;
  width: 100%;
}

.steps {
  margin: 2.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.75rem;
}

.step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: white;
  font-weight: 800;
  font-size: 0.85rem;
}

.steps h3 {
  margin: 0.85rem 0 0;
  font-size: 1.1rem;
}

.steps p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

/* Sell page — How it works cards */
.how-cards {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.how-card {
  position: relative;
  padding: 1.5rem 1.35rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  background: var(--surface);
  overflow: hidden;
}

.how-card-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: color-mix(in srgb, var(--border) 85%, var(--ink) 15%);
  margin-bottom: 0.85rem;
}

.how-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-body);
}

.how-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .how-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .how-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
  }
}

/* Sell page — What you need */
.need-wrap {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.need-copy .section-lead {
  max-width: 32ch;
}

.need-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.need-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  background: var(--surface);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

.need-check {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
}

.need-check svg {
  width: 0.95rem;
  height: 0.95rem;
}

@media (min-width: 800px) {
  .need-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

/* Marquee — full-width continuous scroll */
.marquee-section {
  overflow: hidden;
  padding: 3.5rem 0 3.25rem;
}

.marquee-intro h2 {
  margin-top: 0.55rem;
}

.marquee-intro .section-lead {
  margin-top: 0.7rem;
  max-width: 36rem;
}

.marquee-mask {
  margin-top: 1.75rem;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.marquee {
  display: flex;
  width: max-content;
  gap: 1rem;
  overflow: visible;
  padding: 0.35rem 0;
  will-change: transform;
}

.marquee.reverse {
  margin-top: 0.65rem;
}

.marquee-track {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  width: max-content;
  animation: marquee-scroll var(--duration, 40s) linear infinite;
}

.marquee.reverse .marquee-track {
  animation-name: marquee-scroll-reverse;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 1rem));
  }
}

@keyframes marquee-scroll-reverse {
  from {
    transform: translateX(calc(-100% - 1rem));
  }
  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  padding: 0.7rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid var(--border);
  background: var(--surface);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  box-shadow: 0 6px 16px -14px rgba(15, 45, 82, 0.35);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.chip:hover {
  border-color: color-mix(in srgb, var(--brand) 45%, var(--border));
  box-shadow: 0 12px 24px -14px var(--glow);
}

.map-note {
  margin-top: 1.75rem;
  margin-bottom: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.map-note a {
  color: var(--brand-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.map-note a:hover {
  text-decoration: none;
}

/* Why */
.why-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.why-figure {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 36rem;
  margin: 0;
}

.why-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  max-height: 28rem;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (min-width: 1024px) {
  .why-figure {
    max-width: none;
  }

  .why-figure img {
    max-height: 32rem;
    min-height: 22rem;
  }
}

.why-figure figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 3rem 1rem 1rem;
  background: linear-gradient(to top, rgba(8, 40, 72, 0.85), transparent);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
}

.why-figure figcaption span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #7eb6e8;
}

.why-list {
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.why-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--brand-soft);
  color: var(--brand);
}

.why-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.why-item dt {
  font-weight: 700;
}

.why-item dd {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Sell benefit cards — icon style from Hood /sell */
.benefit-stack {
  display: grid;
  gap: 1rem;
  max-width: 40rem;
  margin: 0 auto;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.benefit-card:hover {
  border-color: color-mix(in srgb, var(--brand) 35%, var(--border));
  box-shadow: 0 10px 24px -16px rgba(15, 45, 82, 0.35);
  transform: translateY(-2px);
}

.benefit-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  background: #eef5fc;
  font-size: 1.35rem;
  line-height: 1;
}

.benefit-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-body);
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.feature-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  grid-template-columns: 1fr;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.4rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: color-mix(in srgb, var(--brand) 35%, var(--border));
  box-shadow: 0 10px 24px -16px rgba(15, 45, 82, 0.35);
  transform: translateY(-2px);
}

.feature-card .benefit-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.75rem;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-body);
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
  }
}

/* Shopkeepers band */
.band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(70% 60% at 90% 0%, rgba(47, 111, 167, 0.4), transparent 65%),
    linear-gradient(160deg, var(--band) 0%, var(--band-mid) 100%);
  color: white;
  border-top: 1px solid transparent;
}

.band .eyebrow {
  color: #9bc4e8;
}

.band h2 {
  color: white;
}

.band-lead {
  margin: 1rem 0 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.band-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.band .btn-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.band .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.band-note {
  margin-top: 1.5rem;
  max-width: 34ch;
  padding-left: 1rem;
  border-left: 2px solid rgba(155, 196, 232, 0.55);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.band-grid {
  display: grid;
  gap: 2.5rem;
}

.keeps h3 {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9bc4e8;
}

.keeps dl {
  margin: 1.25rem 0 0;
}

.keeps .keep {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.keeps dt {
  font-size: 1.1rem;
  font-weight: 700;
}

.keeps dd {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

/* FAQ */
.faq-wrap {
  max-width: 42rem;
}

.faq-list {
  margin-top: 1.75rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

details {
  border-bottom: 1px solid var(--border);
}

details:last-child {
  border-bottom: none;
}

summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  font-weight: 700;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  position: relative;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--brand);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.faq-icon::before {
  left: 0;
  top: 50%;
  width: 1rem;
  height: 2px;
  transform: translateY(-50%);
}

.faq-icon::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 1rem;
  transform: translateX(-50%);
}

details[open] .faq-icon::after {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}

details p {
  margin: 0;
  padding: 0 2rem 1.15rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Final CTA */
.final-cta {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.final-cta p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

/* Sell page CTA band — matches home page shopkeepers band */
.cta-band {
  background:
    radial-gradient(70% 60% at 90% 0%, rgba(47, 111, 167, 0.4), transparent 65%),
    linear-gradient(160deg, var(--band) 0%, var(--band-mid) 100%);
  color: white;
  padding: 4rem 0;
  border-top: 1px solid transparent;
}

.cta-band-inner {
  text-align: center;
  max-width: 42rem;
}

.cta-band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: white;
  font-variant-ligatures: no-common-ligatures;
  overflow: visible;
  padding-top: 0.06em;
}

.cta-band p {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.cta-band-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.btn-play-light {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  color: #0f2d52;
  padding: 0.55rem 1.1rem;
  border-radius: 0.85rem;
  font-weight: 700;
  box-shadow: 0 8px 20px -12px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-play-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.55);
}

.btn-play-light .play-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.btn-play-light .play-label small {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #5c6b7a;
  font-weight: 650;
}

.btn-play-light .play-label strong {
  margin-top: 0.28rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f2d52;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: white;
  border-radius: 0.75rem;
  padding: 0.75rem 1.15rem;
  font-weight: 700;
  font-size: 0.92rem;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

.cta-cards {
  margin: 2.25rem auto 0;
  max-width: 48rem;
  display: grid;
  gap: 1rem;
}

.cta-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: 1.15rem;
  background: var(--surface);
  text-align: left;
}

.cta-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.cta-card p {
  margin: 0.5rem 0 0;
  flex: 1;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-card .btn,
.cta-card .btn-play {
  margin-top: 1.15rem;
}

/* Footer */
.site-footer {
  margin-top: 4rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 40%, transparent), color-mix(in srgb, var(--surface) 70%, transparent));
  padding: 3rem 0 1.75rem;
}

/* No gap when a full-bleed CTA band sits directly above the footer */
main:has(> .cta-band:last-child) + .site-footer {
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-blurb {
  margin: 1rem 0 0;
  max-width: 22rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-col h4 {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--ink);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--reveal-delay, 0ms);
  overflow: visible;
}

.reveal.shown {
  opacity: 1;
  transform: translateY(0);
}

/* Inner pages */
.page-hero {
  padding: 3rem 0 2rem;
}

.page-hero h1 {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.015em;
  line-height: 1.25;
  font-variant-ligatures: no-common-ligatures;
  overflow: visible;
  padding-top: 0.06em;
}

.sell-hero {
  padding: 3rem 0;
  background:
    radial-gradient(70% 60% at 90% 0%, rgba(47, 111, 167, 0.4), transparent 65%),
    linear-gradient(160deg, var(--band) 0%, var(--band-mid) 100%);
  color: white;
}

.sell-hero .eyebrow {
  color: #9bc4e8;
}

.sell-hero h1 {
  color: white;
}

.sell-hero .section-lead {
  color: rgba(255, 255, 255, 0.7);
}

.sell-hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.sell-hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.sell-hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.sell-hero-meta {
  display: grid;
  gap: 1.35rem;
  padding: 1.5rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: 1.15rem;
  background: var(--surface);
  box-shadow: 0 12px 28px -20px rgba(15, 45, 82, 0.28);
}

.sell-meta-item {
  display: grid;
  gap: 0.3rem;
}

.sell-meta-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.sell-meta-item a,
.sell-meta-item p {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 650;
  color: var(--ink);
  line-height: 1.35;
}

.sell-meta-item a:hover {
  color: var(--brand);
}

@media (min-width: 900px) {
  .sell-hero-grid {
    grid-template-columns: 1.35fr 0.85fr;
    gap: 3rem;
    align-items: center;
  }
}

.page-content {
  max-width: 40rem;
  padding-bottom: 3rem;
}

.page-content .section-lead {
  max-width: none;
  width: 100%;
}

.page-content p,
.page-content li {
  color: var(--muted);
}

.form-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-stack label {
  display: grid;
  gap: 0.35rem;
  font-weight: 650;
  font-size: 0.9rem;
}

.form-stack input,
.form-stack textarea,
.form-stack select {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border-radius: 0.7rem;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
}

.form-stack textarea {
  min-height: 8rem;
  resize: vertical;
}

/* Responsive */
@media (max-width: 639px) {
  /* Tighter gap above footer on home final CTA — desktop spacing unchanged */
  main > .section:last-child {
    padding-bottom: 1.75rem;
  }

  main > .section:last-child .cta-cards {
    margin-bottom: 0;
  }

  main:has(> .section:last-child) + .site-footer {
    margin-top: 1.25rem;
  }
}

@media (min-width: 640px) {
  .nav-desktop {
    display: flex;
  }

  .btn-seller-desktop {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .cta-cards {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 3.5rem 0 5rem;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 3.5rem;
  }

  .why-grid,
  .band-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rise,
  .reveal,
  .phone,
  .marquee-track,
  .live-dot::before {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
