/* Zesthentic marketing — premium narrative layout */
:root {
  --brand: #8f20c2;
  --brand-dark: #4c1d95;
  --brand-mid: #6d28d9;
  --brand-light: #f3e8ff;
  --brand-glow: rgba(143, 32, 194, 0.45);
  --premium: #c9a962;
  --premium-muted: rgba(201, 169, 98, 0.35);
  --text: #0a0a0a;
  --text-muted: #525252;
  --text-on-dark: #f5f5f5;
  --text-muted-on-dark: #a3a3a3;
  --bg: #ffffff;
  --bg-alt: #f7f7f8;
  --bg-dark: #0a0a0f;
  --bg-dark-elevated: #14141c;
  --border: #e5e5e5;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 64px rgba(10, 10, 15, 0.12);
  --container: 1140px;
  --header-h: 72px;
  --font-display: "Inter", system-ui, -apple-system, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

#download,
#partner,
#contact-form,
#standard,
#the-loop,
#flywheel,
#faq,
#report-form {
  scroll-margin-top: calc(var(--header-h) + 3rem);
}

/* In-page jump nav */
.page-jump {
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.page-jump__inner {
  display: flex;
  gap: 1.5rem;
  padding: 0.65rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.page-jump__inner::-webkit-scrollbar {
  display: none;
}

.page-jump__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.page-jump__link:hover {
  color: var(--text);
  text-decoration: none;
}

.page-jump__link.is-active {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.eyebrow--accent,
.eyebrow--premium {
  color: var(--premium);
  letter-spacing: 0.18em;
}

/* Partner hub — dedicated conversion section */
.partner-hub {
  padding: clamp(4rem, 9vw, 6rem) 0;
  background: linear-gradient(165deg, #0f0a18 0%, #1a1028 40%, #14141c 100%);
  color: var(--text-on-dark);
  outline: none;
  transition: box-shadow 0.4s ease;
}

.partner-hub--focused {
  box-shadow: inset 0 0 0 2px rgba(201, 169, 98, 0.45);
}

.partner-hub__grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .partner-hub__grid {
    grid-template-columns: 1fr minmax(320px, 420px);
    gap: 4rem;
  }

  .partner-hub__story {
    position: sticky;
    top: calc(var(--header-h) + 3.5rem);
  }
}

.partner-hub .eyebrow--accent {
  color: var(--premium);
}

.partner-hub__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 1rem;
  color: #fff;
}

.partner-hub__lead {
  font-size: 1.1rem;
  color: var(--text-muted-on-dark);
  line-height: 1.6;
  margin: 0 0 2rem;
  max-width: 36rem;
}

.partner-hub__steps {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.partner-hub__steps li {
  padding-left: 2.5rem;
  position: relative;
}

.partner-hub__steps li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 0;
  top: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: rgba(143, 32, 194, 0.35);
  color: #e9d5ff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-hub__steps {
  counter-reset: step;
}

.partner-hub__steps strong {
  display: block;
  color: #fff;
  margin-bottom: 0.2rem;
}

.partner-hub__steps span {
  font-size: 0.95rem;
  color: var(--text-muted-on-dark);
}

.partner-hub__note {
  font-size: 0.9rem;
  color: var(--text-muted-on-dark);
  margin: 0;
}

.partner-hub__email {
  color: #e9d5ff;
  font-weight: 500;
}

.partner-hub__form-card {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
}

.partner-hub__form-card--email {
  text-align: center;
}

.partner-hub__form-title {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.partner-hub__form-lead {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.partner-hub__form-card .form-panel {
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}

body.marketing-body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }
}

/* Typography utilities */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 0.75rem;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  height: var(--header-h);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-logo:hover {
  text-decoration: none;
}

.site-logo img {
  height: 32px;
  width: auto;
}

.site-logo__full {
  display: block;
  height: 32px;
  width: auto;
}

.site-logo__mark-img {
  display: none;
  height: 36px;
  width: auto;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.site-nav__link {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.4rem 0.65rem;
}

.site-nav__link:hover {
  color: var(--text);
  text-decoration: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 44px;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn--lg {
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
}

.btn--sm {
  padding: 0.45rem 0.95rem;
  font-size: 0.85rem;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 32px var(--brand-glow);
}

.btn--primary:hover {
  background: var(--brand-mid);
}

.btn--secondary {
  background: var(--bg);
  color: var(--brand);
  border-color: var(--brand);
}

.btn--outline {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn--ghost {
  background: var(--brand-light);
  color: var(--brand-dark);
}

.btn--inverse {
  background: #fff;
  color: var(--brand-dark);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.btn--inverse:hover {
  background: var(--brand-light);
}

/* Flash */
.flash {
  padding: 0.75rem 1rem;
  text-align: center;
  font-weight: 500;
}

.flash--notice {
  background: #dcfce7;
  color: #166534;
}

.flash--alert {
  background: #fee2e2;
  color: #991b1b;
}

/* Hero — cinematic */
.hero--cinema {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3.5rem, 10vw, 7rem);
  background: var(--bg-dark);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}

.hero--cinema::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, var(--brand-glow), transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(109, 40, 217, 0.25), transparent 50%);
  pointer-events: none;
}

.hero--cinema .container {
  position: relative;
  z-index: 1;
}

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

.hero__title--display {
  font-size: clamp(2.25rem, 7vw, 4.5rem);
  line-height: 1.05;
  margin: 0 0 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  overflow-wrap: break-word;
}

.hero__title--display span {
  color: #c084fc;
}

.hero--premium .hero__title--display span {
  background: linear-gradient(135deg, #e9d5ff 0%, var(--premium) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero--cinema .eyebrow {
  color: #c084fc;
}

.hero__lead--display {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--text-muted-on-dark);
  margin: 0 0 2rem;
  max-width: 32rem;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.hero__logo-wrap {
  margin-bottom: 1rem;
}

.hero__logo {
  display: block;
  height: 32px;
  width: auto;
}

.hero__visual--glow .hero__phones {
  max-width: min(100%, 380px);
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.5));
}

/* Marketing images — placeholder.svg when asset missing or load fails */
.marketing-img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.marketing-img--hero {
  width: min(100%, 380px);
  margin-inline: auto;
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.5));
}

.hero__visual--glow .marketing-img--hero {
  max-width: min(100%, 380px);
}

.marketing-img--card {
  width: 100%;
  margin-top: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.marketing-img--bento {
  width: 100%;
  margin-top: 1rem;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}

.split-section__media .marketing-img--bento {
  margin-top: 0;
}

.hero--cinema .store-badges {
  margin-top: 1.75rem;
}

.hero--cinema .store-badge--soon {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-muted-on-dark);
}

/* Manifesto — full-bleed tension */
.manifesto {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--bg-dark-elevated);
  color: var(--text-on-dark);
  text-align: center;
}

.manifesto__inner {
  max-width: 52rem;
  margin: 0 auto;
}

.manifesto__logo-wrap {
  margin-bottom: 1.25rem;
}

.manifesto__logo {
  display: block;
  height: 36px;
  width: auto;
  margin-inline: auto;
}

.manifesto__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 1.5rem;
}

.manifesto__body {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted-on-dark);
  margin: 0;
  line-height: 1.7;
}

.manifesto__body strong {
  color: #e9d5ff;
  font-weight: 600;
}

.manifesto--merchant {
  background: linear-gradient(180deg, var(--bg-dark-elevated) 0%, var(--bg-dark) 100%);
}

.manifesto__title--serif {
  font-family: var(--font-serif);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.01em;
}

.manifesto--premium {
  border-top: 1px solid rgba(201, 169, 98, 0.15);
}

/* Premium standard — curated lifestyle */
.premium-standard {
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  background: var(--bg);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.premium-standard--merchant {
  background: var(--bg-alt);
}

.premium-standard__inner {
  max-width: 56rem;
  margin: 0 auto;
}

.premium-standard__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  color: var(--text);
}

.premium-standard__lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  list-style: none;
  margin: 0 0 3rem;
  padding: 0;
}

.category-strip li {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
}

.premium-standard--merchant .category-strip li {
  background: #fff;
}

.premium-pillars {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  text-align: left;
}

.premium-pillars__item {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-alt);
}

.premium-standard--merchant .premium-pillars__item {
  background: #fff;
}

.premium-pillars__mark {
  display: block;
  color: var(--premium);
  font-size: 0.65rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.2em;
}

.premium-pillars__item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.premium-pillars__item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.quote-wall--premium {
  padding-top: 0;
}

.quote-wall--premium .eyebrow {
  margin-bottom: 2rem;
}

.quote-wall--premium .quote-wall__item--featured {
  border-color: var(--premium-muted);
  background: linear-gradient(145deg, #faf9f7 0%, #fff 100%);
  color: var(--text);
}

.cta-band__title--serif {
  font-family: var(--font-serif);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.02em;
}

.cta-band--accent .cta-band__title span,
.cta-band--premium .cta-band__title span {
  color: var(--premium);
  font-style: normal;
}

.cta-band--accent .cta-band__eyebrow,
.cta-band--premium .cta-band__eyebrow {
  color: var(--premium);
}

.cta-band__lead {
  max-width: 28rem;
  margin: 0 auto 1.75rem;
  font-size: 1.05rem;
  opacity: 0.9;
  line-height: 1.55;
}

.hero__availability {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted-on-dark);
  letter-spacing: 0.02em;
}

.site-logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 200;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

/* Secondary page hero */
.page-hero {
  padding: clamp(3rem, 8vw, 5rem) 0;
  text-align: center;
}

.page-hero--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.page-hero--dark .eyebrow {
  color: #c084fc;
}

.page-hero--dark .page-hero__title {
  color: #fff;
}

.page-hero--dark .page-hero__lead {
  color: var(--text-muted-on-dark);
}

.page-hero--light {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.page-hero__lead {
  max-width: 36rem;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.page-hero--dark .page-hero__lead {
  color: var(--text-muted-on-dark);
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.page-hero__logo-wrap {
  margin-bottom: 1rem;
}

.page-hero__logo {
  display: block;
  height: 36px;
  width: auto;
  margin-inline: auto;
}

.page-hero__logo--primary {
  height: 40px;
}

/* Contact page */
.contact-page__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .contact-page__grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.contact-page__heading {
  font-size: 1.35rem;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.contact-page__text {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.contact-page__email {
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-page__form .form-panel {
  margin: 0;
  max-width: none;
}

/* Action rows */
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.action-row--left {
  justify-content: flex-start;
  margin-top: 2rem;
}

.form-panel__title {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  text-align: left;
}

/* Footer polish */
.site-footer__brand {
  max-width: 16rem;
}

.site-footer__logo {
  display: block;
  height: 36px;
  width: auto;
  margin-bottom: 0.75rem;
}

.site-footer__name {
  color: #fff;
  font-size: 1.1rem;
  display: block;
}

.site-footer__tagline {
  margin: 0.5rem 0 0;
  line-height: 1.5;
}

.site-footer__sign-out-wrap {
  margin-top: 0.5rem;
}

/* Sections */
.section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

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

.section__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
  margin: 0 0 0.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section__lead {
  text-align: center;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.section__title--left,
.section__lead--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

/* Product loop — Now / Keep / Remind */
.product-loop {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.product-loop__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-loop__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-loop__card--now {
  border-top: 4px solid #f59e0b;
}

.product-loop__card--keep {
  border-top: 4px solid var(--brand);
}

.product-loop__card--remind {
  border-top: 4px solid #ef4444;
}

.product-loop__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.product-loop__card h3 {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.product-loop__card p {
  margin: 0;
  color: var(--text-muted);
  flex: 1;
  font-size: 0.98rem;
}

.product-loop__img {
  margin-top: 0.5rem;
  border-radius: var(--radius-sm);
  max-height: 200px;
  width: auto;
  margin-inline: auto;
  object-fit: contain;
}

/* Bento */
.bento {
  display: grid;
  gap: 1.25rem;
}

.bento__main {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.bento__title {
  font-size: 1.75rem;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.bento__text {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  max-width: 36rem;
}

.bento__img {
  max-height: 240px;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-sm);
}

.bento__side {
  display: grid;
  gap: 1rem;
}

.bento__tile {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.bento__tile h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.bento__tile p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.bento__tile--accent {
  background: linear-gradient(135deg, var(--brand-light), var(--bg));
  border-color: rgba(143, 32, 194, 0.2);
}

/* Quote wall */
.quote-wall {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.quote-wall--light {
  background: var(--bg);
  color: var(--text);
}

.quote-wall__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.quote-wall__item {
  margin: 0;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-wall--light .quote-wall__item {
  background: var(--bg-alt);
  border-color: var(--border);
}

.quote-wall__item p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.quote-wall__item--featured {
  background: linear-gradient(135deg, rgba(143, 32, 194, 0.35), rgba(109, 40, 217, 0.2));
  border-color: rgba(192, 132, 252, 0.35);
}

.quote-wall--light .quote-wall__item--featured {
  background: var(--brand-light);
  border-color: rgba(143, 32, 194, 0.25);
}

/* Flow strip */
.flow-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  max-width: 48rem;
  margin-inline: auto;
}

.flow-strip li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 1.25rem;
  align-items: baseline;
  padding: 1.25rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.flow-strip__num {
  grid-row: span 2;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
}

.flow-strip strong {
  font-size: 1.1rem;
}

.flow-strip li > span:last-child {
  grid-column: 2;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Merchant flywheel */
.flywheel {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.flywheel__step {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
}

.flywheel__num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

.flywheel__step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.flywheel__step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Split + feature list */
.split-section {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.split-section__media {
  display: flex;
  justify-content: center;
}

.split-section__media img {
  max-width: 300px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--brand);
}

.feature-list--compact li {
  margin-bottom: 0.85rem;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.feature-list--compact strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.15rem;
}

/* FAQ */
.faq {
  max-width: 40rem;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.15rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.faq__question-icon {
  color: var(--brand);
  font-weight: 400;
  flex-shrink: 0;
}

.faq__answer {
  display: none;
  padding: 0 0 1.15rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq__item.is-open .faq__answer {
  display: block;
}

.faq__item.is-open .faq__question-icon {
  transform: rotate(45deg);
}

/* CTA band */
.cta-band--cinema {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
  background: linear-gradient(160deg, var(--brand-dark) 0%, var(--brand) 45%, #7c3aed 100%);
  color: #fff;
  text-align: center;
}

.cta-band__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin: 0 0 1rem;
}

.cta-band__logo-wrap {
  margin-bottom: 1rem;
}

.cta-band__logo {
  display: block;
  height: 32px;
  width: auto;
  margin-inline: auto;
  opacity: 0.95;
}

.cta-band__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 2rem;
}

.cta-band__footer-link {
  margin-top: 2rem;
}

.cta-band__link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.cta-band .store-badges {
  justify-content: center;
  margin-top: 1.5rem;
}

/* Store badges */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.store-badge img {
  height: 44px;
  width: auto;
}

.store-badge--soon {
  opacity: 0.6;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: var(--text-muted-on-dark);
}

/* Forms */
.form-panel {
  max-width: 32rem;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-muted-on-dark);
  padding: 3rem 0 1.5rem;
}

.site-footer a {
  color: #e9d5ff;
}

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

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h4 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

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

.site-footer li {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.8rem;
}

.site-footer__sign-out {
  background: none;
  border: none;
  color: #e9d5ff;
  font: inherit;
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.site-footer__sign-out:hover {
  color: #fff;
}

/* Temporary site login */
.site-auth {
  min-height: calc(100vh - var(--header-h) - 8rem);
  display: flex;
  align-items: center;
}

.site-auth__panel {
  max-width: 26rem;
  margin: 0 auto;
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: var(--shadow);
}

.site-auth__brand {
  text-align: center;
  margin-bottom: 1.25rem;
}

.site-auth__logo {
  display: block;
  height: 48px;
  width: auto;
  margin-inline: auto;
}

.site-auth__title {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.site-auth__lead {
  margin: 0 0 1.75rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.site-auth__form .form-group {
  margin-bottom: 1.1rem;
}

.site-auth__submit {
  width: 100%;
  margin-top: 0.5rem;
}

/* Utility */
.text-center {
  text-align: center;
}

.privacy-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.prose {
  max-width: 40rem;
  margin: 0 auto;
}

.prose h1 {
  margin-top: 0;
  letter-spacing: -0.02em;
}

.prose--legal {
  max-width: 42rem;
}

.prose--legal p,
.prose--legal li {
  line-height: 1.75;
}

/* Legacy grids (contact etc.) */
.grid {
  display: grid;
  gap: 1.25rem;
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

/* ==========================================================================
   Responsive — mobile-first grids (avoids minmax() horizontal overflow)
   ========================================================================== */

/* Tablet portrait+ */
@media (min-width: 640px) {
  .product-loop {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

/* Tablet landscape / small laptop */
@media (min-width: 768px) {
  :root {
    --header-h: 72px;
  }

  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }

  .hero__visual {
    justify-self: end;
  }

  .bento {
    grid-template-columns: 1.4fr 1fr;
  }

  .split-section {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .split-section--reverse .split-section__copy {
    order: 2;
  }

  .split-section--reverse .split-section__media {
    order: 1;
  }

  .flow-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .flow-strip li {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .flow-strip__num {
    grid-row: auto;
    margin-bottom: 0.5rem;
  }

  .flow-strip li > span:last-child {
    grid-column: auto;
  }

  .site-footer__grid {
    grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .product-loop {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quote-wall__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .flywheel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .premium-pillars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --header-h: 64px;
  }

  .section {
    padding: clamp(3rem, 8vw, 4.5rem) 0;
  }

  .hero--cinema {
    padding: clamp(2.5rem, 7vw, 4rem) 0 clamp(2.5rem, 8vw, 4.5rem);
  }

  .hero__grid {
    gap: 2rem;
    text-align: center;
  }

  .hero__copy {
    order: 1;
  }

  .hero__visual {
    order: 2;
    justify-self: center;
  }

  .hero__lead--display {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__actions .btn--lg,
  .action-row .btn,
  .action-row .btn--lg,
  .page-hero__actions .btn {
    width: 100%;
    max-width: 22rem;
  }

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

  .cta-band .store-badges {
    flex-direction: column;
    align-items: stretch;
    max-width: 22rem;
    margin-inline: auto;
  }

  .cta-band .store-badge,
  .cta-band .store-badge--soon {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .site-header__inner {
    min-height: var(--header-h);
    padding: 0.5rem 0;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .site-logo {
    font-size: 1rem;
    min-width: 0;
    flex-shrink: 1;
  }

  .site-nav {
    width: auto;
    flex-shrink: 0;
    gap: 0.4rem;
  }

  .site-nav .btn--sm {
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
  }

  .manifesto__title,
  .manifesto__title--serif {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .section__title {
    font-size: clamp(1.65rem, 5vw, 2.25rem);
  }

  .cta-band__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .partner-hub {
    padding: clamp(3rem, 8vw, 4.5rem) 0;
  }

  .partner-hub__title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  .partner-hub__form-card {
    padding: 1.35rem;
  }

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

  .partner-hub__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .partner-hub__steps li {
    text-align: left;
  }

  .bento__main,
  .bento__tile {
    padding: 1.35rem;
  }

  .split-section__media img,
  .split-section__media .marketing-img--bento {
    max-width: min(100%, 280px);
    width: 100%;
  }

  .flow-strip li {
    text-align: left;
  }

  .quote-wall__item p {
    font-size: 1.05rem;
  }

  .section__lead {
    margin-bottom: 2rem;
    padding-inline: 0.25rem;
  }

  .faq__question {
    font-size: 1rem;
    padding: 1rem 0;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
  }

  .page-hero {
    padding: clamp(2.5rem, 7vw, 3.5rem) 0;
  }

  .page-hero__title {
    font-size: clamp(1.85rem, 6vw, 2.5rem);
  }

  .contact-page__aside .btn {
    width: 100%;
    max-width: 22rem;
  }

  .site-auth__panel {
    padding: 1.75rem 1.25rem;
  }

  .page-jump__inner {
    gap: 1rem;
    padding: 0.5rem 0;
    scroll-padding-inline: 1.25rem;
  }

  .page-jump__link {
    font-size: 0.8125rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 479px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .category-strip {
    justify-content: flex-start;
  }

  .category-strip li {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }

  .premium-standard__title,
  .partner-hub__title {
    font-size: 1.65rem;
  }

  .hero__title--display {
    font-size: 2rem;
  }
}

@media (max-width: 380px) {
  .site-logo__full {
    display: none;
  }

  .site-logo__mark-img {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover,
  .product-loop__card:hover {
    transform: none;
  }
}
