/* ShopDot Pet — Marketing site styles
   Layered hero + sections. Keep this readable; tokens come from
   colors_and_type.css. */

/* ── Section-padding scale (project layout vars) ──
   Tiered vertical rhythm so section padding stops drifting. Standard defaults to
   the vendor token (80); both tiers drop on mobile. Heroes use --sd-hero-pad-*;
   strips (56) + seams (0 top) are deliberate exceptions kept per-component. */
:root { --sd-sec-y: var(--sd-section-y-sm); --sd-sec-y-cta: 112px; }
@media (max-width: 768px) { :root { --sd-sec-y: 64px; --sd-sec-y-cta: 72px; } }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--sd-bg);
  overflow-x: clip; /* clip (not hidden) so position:sticky descendants still pin */
}
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

/* ── Containers ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-md { max-width: 970px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  padding: 0 22px;
  border-radius: var(--sd-radius-sm);
  font-weight: var(--sd-fw-medium);
  font-size: 16px;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform var(--sd-dur-fast) var(--sd-ease),
              background-color var(--sd-dur-base) var(--sd-ease),
              box-shadow var(--sd-dur-base) var(--sd-ease),
              color var(--sd-dur-base) var(--sd-ease);
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
}
.btn-primary {
  background: var(--sd-primary);
  color: #fff;
  border-color: var(--sd-primary-700);
  box-shadow: var(--sd-shadow-xs);
}
.btn-primary:hover { background: var(--sd-primary-700); color: #fff; }
.btn-primary:active { transform: translateY(1px); box-shadow: none; }

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.85);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); color: #fff; }

.btn-outline {
  background: #fff;
  color: var(--sd-fg);
  border-color: var(--sd-border-strong);
  box-shadow: var(--sd-shadow-xs);
}
.btn-outline:hover { background: var(--sd-neutral-50); }

.btn-sm { height: 44px; padding: 0 18px; font-size: 15px; }
.btn-lg { height: 54px; padding: 0 28px; font-size: 17px; }

/* ── Top nav ────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: 72px;
  z-index: 100;
  background: rgba(255,255,255,0);
  transition: background-color var(--sd-dur-slow) var(--sd-ease),
              box-shadow var(--sd-dur-slow) var(--sd-ease),
              border-color var(--sd-dur-slow) var(--sd-ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom-color: var(--sd-border);
}
.nav-inner {
  height: 100%;
  /* 3-col grid (1fr auto 1fr) keeps the links dead-center regardless of how
     wide the per-page CTA label is — flex space-between let the links shift
     between pages because the CTA wording differs by audience. */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1568px;
  margin: 0 auto;
  padding: 0 40px;
}
.nav-logo { height: 44px; justify-self: start; }
.nav-links { justify-self: center; }
.nav-logo img { height: 100%; width: auto; }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  font-weight: var(--sd-fw-medium);
  transition: color var(--sd-dur-fast) var(--sd-ease);
}
.nav-links a:hover { color: #fff; }
.nav.is-scrolled .nav-links a { color: var(--sd-neutral-950); }
.nav.is-scrolled .nav-links a:hover { color: var(--sd-primary); }
/* Active nav link — class="active" on the current page's link. Orange on
   every page (never the audience accent), per the canonical nav contract. */
.nav .nav-links a.active { color: var(--sd-primary); }
.nav .nav-links a.active::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--sd-primary);
  border-radius: 2px;
  margin-top: 6px;
}


.nav-cta { display: flex; gap: 12px; align-items: center; justify-self: end; }
.nav .login-link {
  font-size: 15px;
  font-weight: var(--sd-fw-medium);
  color: rgba(255,255,255,0.92);
  padding: 10px 16px;
}
.nav.is-scrolled .login-link { color: var(--sd-neutral-950); }
.nav .login-link:hover { color: #fff; }
.nav.is-scrolled .login-link:hover { color: var(--sd-primary); }
/* Logo swap on scroll */
.nav .logo-light { display: block; }
.nav .logo-dark  { display: none; }
.nav.is-scrolled .logo-light { display: none; }
.nav.is-scrolled .logo-dark  { display: block; }

/* ── Mobile menu toggle (hamburger) ──────────────── */
/* Hidden on desktop; shown ≤1024px (where .nav-links collapses into a panel).
   Icon color follows the same light→dark scroll swap as the logo. */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  grid-column: 3;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 10px;
  color: rgba(255,255,255,0.95);
  transition: background-color var(--sd-dur-base) var(--sd-ease),
              color var(--sd-dur-slow) var(--sd-ease);
}
.nav.is-scrolled .nav-toggle { color: var(--sd-neutral-950); }
.nav-toggle:hover { background: rgba(0,0,0,0.06); }
.nav-toggle:focus-visible { outline: 2px solid var(--sd-primary); outline-offset: 2px; }
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .ico-close { display: none; }
.nav.is-open .nav-toggle .ico-menu { display: none; }
.nav.is-open .nav-toggle .ico-close { display: block; }

/* ── Hero ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 64vh;
  padding: var(--sd-hero-pad-top) 24px var(--sd-hero-pad-bottom);
  background: #2c2f32;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

/* Layered photo backdrop */
.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center 35%;
  will-change: transform;
  transform: scale(1.08);
  animation: heroDrift 28s var(--sd-ease) infinite alternate;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(44,47,50,0.78) 0%, rgba(44,47,50,0.62) 40%, rgba(44,47,50,0.85) 100%),
    linear-gradient(90deg, rgba(44,47,50,0.55) 0%, rgba(44,47,50,0.25) 50%, rgba(44,47,50,0.55) 100%);
}
@keyframes heroDrift {
  0%   { transform: scale(1.08) translate3d(-1%, -0.5%, 0); }
  100% { transform: scale(1.14) translate3d( 1%,  0.8%, 0); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  padding-top: 16px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 13px;
  font-weight: var(--sd-fw-medium);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sd-primary);
  box-shadow: 0 0 0 4px rgba(225,84,57,0.25);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(225,84,57,0.20); }
  50%      { box-shadow: 0 0 0 8px rgba(225,84,57,0.05); }
}

.hero-title {
  font-family: var(--sd-font-display);
  font-weight: var(--sd-fw-bold);
  font-size: var(--sd-text-display-fluid);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0 0 20px;
  color: #fff;
}
.hero-title .accent {
  display: inline-block;
  color: var(--sd-primary-400); /* light tint — reads on the dark photo hero */
}
.hero-sub {
  font-size: var(--sd-text-hero-sub);
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  max-width: 640px;
  margin: 0 auto 30px;
  text-wrap: pretty;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.hero-meta .check {
  display: inline-flex;
  width: 18px; height: 18px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(225,84,57,0.9);
}

.hero-card {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35), 0 8px 16px rgba(0,0,0,0.18);
  background: #fff;
  transform: translate3d(0,0,0);
  will-change: transform;
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Individual cards — small + subtle, only 2 corners */
.hc-1 { display: none; }
.hc-2 { /* bottom-left earnings card */
  bottom: 10%; left: 4%;
  width: 200px; height: 138px;
  transform: rotate(-3deg);
  animation: float2 11s ease-in-out infinite alternate;
  opacity: 0.95;
}
.hc-3 { /* right top - storefront tile */
  top: 22%; right: 4%;
  width: 210px; height: 158px;
  transform: rotate(3deg);
  animation: float3 10s ease-in-out infinite alternate;
  opacity: 0.95;
}

/* Floating hero cards (.hc-*) are absolutely positioned at the hero edges;
   on a phone they overlap the centered hero copy — hide them. */
@media (max-width: 768px) {
  .hero-card { display: none; }
}

@keyframes float1 {
  0%   { transform: translate3d(0,0,0) rotate(-6deg); }
  100% { transform: translate3d(8px,-14px,0) rotate(-4deg); }
}
@keyframes float2 {
  0%   { transform: translate3d(0,0,0) rotate(4deg); }
  100% { transform: translate3d(-10px,-18px,0) rotate(2deg); }
}
@keyframes float3 {
  0%   { transform: translate3d(0,0,0) rotate(5deg); }
  100% { transform: translate3d(-12px,-10px,0) rotate(3deg); }
}
@keyframes float4 {
  0%   { transform: translate3d(0,0,0) rotate(-4deg); }
  100% { transform: translate3d(-6px,-16px,0) rotate(-2deg); }
}





/* Marquee track for floating logos at hero bottom */
.hero-trust {
  position: relative;
  z-index: 5;
  margin-top: 56px;
  text-align: center;
}
.hero-trust .label {
  font-size: 12px;
  font-weight: var(--sd-fw-semibold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 22px;
}
.trust-row {
  display: flex;
  gap: 56px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.trust-row .brand {
  font-family: var(--sd-font-display);
  font-size: 22px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.01em;
  font-style: italic;
}
.trust-row .brand.sans { font-style: normal; letter-spacing: 0.18em; font-size: 15px; font-weight: 600; }

/* ── Generic section frame ──────────────────────── */
.section { position: relative; padding: var(--sd-sec-y) 24px; isolation: isolate; }
.section-cream { background: linear-gradient(180deg, #ffffff 0%, var(--sd-bg-cream) 100%); }
.section-cream2 { background: var(--sd-bg-cream); }
.section-mute { background: var(--sd-bg-mute); }

.section-head { text-align: center; margin-bottom: 40px; }
.section-head .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600;
  color: var(--sd-primary-text);   /* AA — matches vendor web.css (v0.5.1) */
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
/* Eyebrow dot — sitewide eyebrow pattern (home included) */
.section-head .eyebrow::before {
  content: ""; width: 6px; height: 6px;
  border-radius: 50%; background: currentColor;  /* match eyebrow text */
}
.section-head h2 {
  font-size: var(--sd-text-section);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--sd-neutral-950);
  margin: 0 0 16px;
  text-wrap: balance;
}
.section-head p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--sd-fg-muted);
  max-width: 680px;
  margin: 0 auto;
  text-wrap: pretty;
}

/* ── How it works — light section, dark tiles ───── */
.hiw-section {
  background: #f5f6f6;
  color: var(--sd-neutral-950);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
/* subtle ambient washes — approved; ≤6% opacity, reads as gradual
   color drift, not a blob (DESIGN-SYSTEM.md §19) */
.hiw-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 12% 0%, rgba(225,84,57,0.06), transparent 60%),
    radial-gradient(700px 400px at 88% 100%, rgba(75,82,126,0.05), transparent 60%);
  pointer-events: none;
}
.hiw-section .container { position: relative; z-index: 1; }
.hiw-section .eyebrow-accent {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sd-primary-text);
  margin-bottom: 14px;
}
.hiw-section .eyebrow-accent::before {
  content: ""; width: 6px; height: 6px;
  border-radius: 50%; background: currentColor;  /* match eyebrow text */
}
.hiw-h2 {
  color: var(--sd-neutral-950);
  font-size: var(--sd-text-section);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.hiw-sub {
  color: var(--sd-fg-muted);
  font-size: 18px; line-height: 1.55;
  max-width: 640px; margin: 0 auto 56px;
}
.hiw-section .section-head { text-align: center; }








.quote-card {
  background: #fff;
  border: 1px solid var(--sd-border);
  border-radius: 16px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote-card blockquote {
  font-size: 18px; line-height: 1.55;
  color: var(--sd-neutral-950);
  margin: 0;
  font-weight: 500;
  text-wrap: pretty;
}
.quote-card .who {
  display: flex; gap: 12px; align-items: center;
  margin-top: auto; padding-top: 4px;
}
.quote-card .av {
  width: 42px; height: 42px; border-radius: 50%;
  background-size: cover; background-position: center;
  flex: none;
}
.quote-card .name { font-size: 14px; font-weight: 700; color: var(--sd-neutral-950); }
.quote-card .role { font-size: 13px; color: var(--sd-fg-muted); }


@media (max-width: 1024px) {


  .insider-grid { grid-template-columns: 1fr; }
  .insider-card { grid-template-columns: 160px 1fr; }
}



/* ── Tab pills ──────────────────────────────────── */
.tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid var(--sd-border);
  margin: 0 auto 56px;
  max-width: 760px;
}
.tab {
  position: relative;
  padding: 14px 28px;
  font-size: 16px; font-weight: 500;
  background: none; border: 0;
  color: var(--sd-fg-muted);
  transition: color var(--sd-dur-fast) var(--sd-ease);
}
.tab.active { color: var(--sd-primary); font-weight: 600; }
.tab.active::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 2px;
  background: var(--sd-primary);
}
.tab:hover { color: var(--sd-neutral-950); }
.tab.active:hover { color: var(--sd-primary); }

/* ── Brand marquee rows ─────────────────────────── */
.marquee {
  --gap: 20px;
  display: flex;
  overflow: hidden;
  user-select: none;
}
.marquee-track {
  flex: none;
  display: flex;
  gap: var(--gap);
  padding-right: var(--gap);
  min-width: max-content;
  animation: marqueeScroll var(--dur, 50s) linear infinite;
}
.marquee.reverse .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll {
  to { transform: translate3d(-50%, 0, 0); }
}
.brand-tile {
  flex: 0 0 180px;
  height: 180px;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  position: relative;
  box-shadow: 0 1px 3px rgba(44,47,50,0.06);
  border: 1px solid var(--sd-border);
}
.brand-tile .photo {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}
/* V3 overlay (2026-06-05): charcoal wash + charcoal bottom scrim — replaced
   the tangerine multiply version so brand photos keep natural color while
   still reading as one cohesive row. */
.brand-tile .photo::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: var(--sd-neutral-950, #2C2F32);
  mix-blend-mode: multiply;
  opacity: 0.14;
}
.brand-tile .photo::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(44,47,50,0.80), rgba(44,47,50,0.10) 55%, transparent 75%);
}
.brand-tile .name {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  padding: 8px 12px;
  font-family: var(--sd-font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 1px 8px rgba(44,47,50,0.35);
}
.brand-cta {
  display: flex; gap: 20px; justify-content: center;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 56px;
}
.brand-cta-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 15px; font-weight: 600;
  color: var(--sd-primary-text);   /* AA */
  letter-spacing: 0.01em;
  transition: gap 180ms cubic-bezier(0.2,0.8,0.2,1), color 180ms cubic-bezier(0.2,0.8,0.2,1);
}
.brand-cta-link:hover { gap: 11px; color: var(--sd-primary-700, #bb341a); }


/* ── Insider access cards ───────────────────────── */
.insider-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.insider-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .insider-grid--3 { grid-template-columns: 1fr; max-width: 480px; }
}



.insider-card-v {
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--sd-border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--sd-dur-base) var(--sd-ease),
              box-shadow var(--sd-dur-base) var(--sd-ease);
}
.insider-card-v:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(44,47,50,0.08);
}
.insider-photo-v {
  background-size: cover;
  background-position: center;
  aspect-ratio: 4 / 3;
}
.insider-body-v {
  padding: 20px 22px 20px;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.insider-quote-v {
  font-size: 15px; line-height: 1.5;
  color: var(--sd-neutral-950);
  font-weight: 500;
  margin: 0;
  text-wrap: pretty;
}
.insider-foot-v {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-top: auto;
  gap: 12px;
}
.insider-foot-v .insider-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--sd-primary-100);
  color: var(--sd-primary);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--sd-dur-base) var(--sd-ease), color var(--sd-dur-base) var(--sd-ease);
}
.insider-foot-v .insider-link:hover { background: var(--sd-primary); color: #fff; }
.insider-foot-v .insider-link i { width: 16px; height: 16px; }


.insider-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  background: #fff;
  border: 1px solid var(--sd-border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform var(--sd-dur-base) var(--sd-ease),
              box-shadow var(--sd-dur-base) var(--sd-ease);
}
.insider-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(44,47,50,0.08);
}
.insider-photo {
  background-size: cover;
  background-position: center;
  min-height: 240px;
}
.insider-body {
  padding: 24px 26px 22px;
  display: flex; flex-direction: column; gap: 14px;
}
.insider-tag {
  align-self: flex-start;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--sd-primary-text);   /* AA — 11px on the 100 tint */
  background: var(--sd-primary-100);
  padding: 4px 10px;
  border-radius: 9999px;
}
.insider-quote {
  font-size: 16px; line-height: 1.5;
  color: var(--sd-neutral-950);
  font-weight: 500;
  margin: 0;
  text-wrap: pretty;
}
.insider-foot {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-top: auto;
  gap: 12px;
}
.insider-name {
  font-size: 14px; font-weight: 700; color: var(--sd-neutral-950);
}
.insider-role {
  font-size: 12px; color: var(--sd-fg-muted);
  margin-top: 2px;
}
.insider-link {
  font-size: 13px; font-weight: 600;
  color: var(--sd-primary-text);   /* AA */
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.insider-link i { width: 14px; height: 14px; transition: transform var(--sd-dur-fast) var(--sd-ease); }
.insider-link:hover i { transform: translateX(3px); }






/* ── FAQ ───────────────────────────────────────── */
.faq-list {
  max-width: 970px;
  margin: 0 auto;
  border-top: 1px solid var(--sd-border);
}
.faq-item {
  border-bottom: 1px solid var(--sd-border);
}
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  padding: 26px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 18px;
  font-weight: 500;
  color: var(--sd-neutral-950);
  text-align: left;
}
.faq-q .toggle {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sd-primary-100);
  color: var(--sd-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: transform var(--sd-dur-base) var(--sd-ease),
              background var(--sd-dur-base) var(--sd-ease);
}
.faq-item.open .toggle {
  background: var(--sd-primary);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--sd-dur-slow) var(--sd-ease);
}
.faq-a-inner {
  padding: 0 8px 26px;
  color: var(--sd-fg-muted);
  line-height: 1.7;
  font-size: 16px;
  max-width: 820px;
}
.faq-item.open .faq-a { max-height: 240px; }

/* ── Bottom CTA ─────────────────────────────────── */
.cta-banner {
  position: relative;
  height: 600px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.cta-banner {
  /* flat dark surface — intentional, no photo / no glow (DESIGN-SYSTEM.md §19) */
  background: var(--sd-surface-dark);
}
.cta-banner-inner {
  position: relative; z-index: 1;
  max-width: 760px;
  padding: 0 24px;
}
.cta-banner h2 {
  font-size: var(--sd-text-section-lg);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: #fff;
  text-wrap: balance;
}
.cta-banner p {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin: 0 0 32px;
}
/* devices variant (home) — copy left, storefront device duo right */
.cta-banner--devices .cta-banner-inner {
  max-width: 1170px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 72px;
  text-align: left;
}
.cta-devices { position: relative; justify-self: end; width: min(430px, 100%); }
.cta-desktop {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.cta-bar { display: flex; align-items: center; gap: 6px; padding: 9px 12px; background: #f5f6f6; }
.cta-bar i { width: 9px; height: 9px; border-radius: 50%; background: #cdd1d4; }
.cta-bar em { margin-left: 10px; font-style: normal; font-size: 11px; color: #657075; }
.cta-shot { aspect-ratio: 16/10; overflow: hidden; }
.cta-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.cta-ipx { position: absolute; left: -26px; bottom: -30px; z-index: 5; }
@media (max-width: 900px) {
  .cta-banner--devices .cta-banner-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-devices { display: none; }
}
@media (max-width: 640px) {
  /* fixed 600px band + 20px title overflow the viewport on a phone */
  .cta-banner { height: auto; min-height: 420px; padding: 72px 0; }
  .cta-banner h2 { font-size: clamp(28px, 8vw, 34px); }
  .cta-banner p { font-size: 16px; margin-bottom: 24px; }
}

/* ── Footer ────────────────────────────────────── */
.footer {
  background: #fff;
  padding: 80px 24px 0;
  border-top: 1px solid var(--sd-border);
}
.footer-inner {
  max-width: 1170px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}
.footer-brand img { height: 44px; margin-bottom: 18px; }
.footer-brand p {
  color: var(--sd-fg-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 380px;
  margin: 0;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sd-neutral-950);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: var(--sd-fg-muted);
  font-size: 15px;
  transition: color var(--sd-dur-fast) var(--sd-ease);
}
.footer-col a:hover { color: var(--sd-primary); }
.footer-bottom {
  border-top: 1px solid var(--sd-border);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--sd-fg-muted);
}
.footer-bottom .links { display: flex; gap: 24px; }
.footer-bottom .links a { color: var(--sd-fg-muted); }

/* Footer socials — promoted from the Brands page (index.html).
   Placed inside .footer-brand below the description paragraph. */
.footer-brand .socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-brand .socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--sd-border);
  display: grid; place-items: center;
  color: var(--sd-fg);
  transition: background var(--sd-dur-fast) var(--sd-ease),
              color var(--sd-dur-fast) var(--sd-ease),
              border-color var(--sd-dur-fast) var(--sd-ease);
}
.footer-brand .socials a:hover {
  background: var(--sd-primary);
  color: #fff;
  border-color: var(--sd-primary-700);
}
.footer-brand .socials a:focus-visible {
  outline: 2px solid var(--sd-primary);
  outline-offset: 2px;
}

/* ── Reveal on scroll ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--sd-ease-out),
              transform 700ms var(--sd-ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }


/* Guard: clip horizontal overflow from full-bleed marquees and decorative
   overhanging device mocks. `clip` (not `hidden`) preserves sticky positioning. */
html { overflow-x: clip; }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }

  /* Bar = logo (left) + CTA & hamburger (right); links drop into a slide-down
     panel. Replaces the old `.nav-links { display:none }` (links were unreachable). */
  .nav-inner { display: flex; align-items: center; gap: 12px; }
  .nav-logo { margin-right: auto; }
  .nav-toggle { display: inline-flex; }

  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    justify-self: stretch; /* override desktop justify-self:center — else the
                              fixed panel shrinks to content width & centers */
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 6px 0;
    background: rgba(255,255,255,0.98);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--sd-border);
    box-shadow: 0 14px 28px rgba(0,0,0,0.10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity var(--sd-dur-base) var(--sd-ease),
                transform var(--sd-dur-base) var(--sd-ease),
                visibility var(--sd-dur-base) var(--sd-ease);
  }
  .nav.is-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
  .nav-links li { width: 100%; }
  /* Panel is always light → dark links regardless of scroll state. */
  .nav-links a,
  .nav.is-scrolled .nav-links a {
    display: block;
    padding: 13px 24px;
    color: var(--sd-neutral-900);
    font-size: 16px;
  }
  .nav .nav-links a.active { color: var(--sd-primary); }
  .nav .nav-links a.active::after { display: none; }
}
@media (max-width: 640px) {
  .hero { padding: 110px 20px 60px; }
  .section { padding: var(--sd-sec-y) 20px; }

  .nav-inner { padding: 0 20px; }

  /* mobile: let centered rows reflow instead of forcing horizontal overflow */
  .tabs { flex-wrap: wrap; }
  .tab { padding: 12px 16px; }
  .hero-ctas { flex-wrap: wrap; justify-content: center; }
  .hero-points { flex-wrap: wrap; justify-content: center; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; align-items: flex-start; }

  .nav-cta .login-link { display: none; }

  /* display-fluid floor is 54px → long words ("Recommendation") clip at 375px */
  .hero-title { font-size: clamp(32px, 9.6vw, 46px); }

  /* Trust row + endorsement strip: shrink so wide marks don't crowd at 375px */
  .trust-row { gap: 24px 32px; }
  .trust-row .brand { font-size: 18px; }
  /* higher specificity (2 classes) so this wins over the repeat(3) ≤1024 rule
     that appears later in source and would otherwise override at 375px */
  .endorsed-strip .endorsed-row { grid-template-columns: repeat(2, 1fr); gap: 18px 20px; }
  .endorsed-mark img { height: 52px; }
  .endorsed-mark { font-size: 15px; }
}

/* ── Make it yours ──────────────────────────────── */
/* Real storefront screenshots in minimal browser chrome; whole card
   links to the live store (new tab). URL in the address bar is the
   social proof — don't fake or shorten domains beyond ellipsis. */
.miy-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.miy-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.miy-card:focus-visible { outline: 2px solid var(--sd-primary); outline-offset: 3px; border-radius: 14px; }
.miy-frame {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--sd-border-strong);
  box-shadow: 0 2px 4px rgba(44,47,50,0.06), 0 22px 44px -16px rgba(44,47,50,0.22);
  transition: transform var(--sd-dur-base) var(--sd-ease),
              box-shadow var(--sd-dur-base) var(--sd-ease);
}
.miy-card:hover .miy-frame {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(44,47,50,0.07), 0 32px 60px -18px rgba(44,47,50,0.28);
}
.miy-card:active .miy-frame { transform: translateY(-2px); }
.miy-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: #f6f3ee;
  border-bottom: 1px solid var(--sd-border);
}
.miy-dots { display: flex; gap: 5px; }
.miy-dots span { width: 8px; height: 8px; border-radius: 50%; background: #ddd6ca; }
.miy-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  font-size: 11px;
  font-weight: 500;
  color: var(--sd-fg-muted);
  background: #fff;
  border: 1px solid #eee8dd;
  border-radius: var(--sd-radius-pill);
  padding: 4px 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.miy-url svg { flex: none; }
.miy-shot { position: relative; overflow: hidden; }
.miy-shot img { width: 100%; display: block; }
.miy-arrow {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sd-neutral-950);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(6px) scale(0.9);
  transition: opacity var(--sd-dur-base) var(--sd-ease),
              transform var(--sd-dur-base) cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 18px -6px rgba(0,0,0,0.4);
}
.miy-card:hover .miy-arrow,
.miy-card:focus-visible .miy-arrow { opacity: 1; transform: translateY(0) scale(1); }
.miy-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 0 4px;
}
.miy-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--sd-neutral-950);
  letter-spacing: -0.01em;
}
.miy-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sd-fg-muted);
  padding: 5px 10px;
  background: rgba(44,47,50,0.05);
  border-radius: var(--sd-radius-pill);
  flex: none;
}





/* ── Endorsed-by strip ──────────────────────────── */
.endorsed-strip {
  background: #fff;
  border-top: 1px solid var(--sd-border);
  border-bottom: 1px solid var(--sd-border);
  padding: 56px 24px;
}
.endorsed-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sd-fg-muted);
  margin-bottom: 28px;
}
.endorsed-row {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  align-items: start;
}
.endorsed-mark {
  text-align: center;
  color: var(--sd-neutral-700);
  font-size: 18px;
  line-height: 1.2;
}
.endorsed-mark a {
  display: block;
  text-decoration: none;
  border-radius: 8px;
  transition: transform var(--sd-dur-base) var(--sd-ease);
}
.endorsed-mark a:hover { transform: translateY(-2px); }
.endorsed-mark a:hover em { color: var(--sd-primary); }
.endorsed-mark a:focus-visible {
  outline: 2px solid var(--sd-primary);
  outline-offset: 4px;
}
.endorsed-mark a:active { transform: scale(0.97); }
.endorsed-mark img {
  display: block;
  height: 80px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
}
.endorsed-mark em {
  display: block;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--sd-neutral-700);
  margin-top: 10px;
  transition: color var(--sd-dur-base) var(--sd-ease);
}

@media (max-width: 1024px) {
  .miy-row { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }


  .endorsed-row { grid-template-columns: repeat(3, 1fr); gap: 28px; }


}





















/* ── Reduced motion ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}



.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  color: var(--sd-primary);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow:
    0 0 0 12px rgba(255,255,255,0.10),
    0 0 0 30px rgba(255,255,255,0.05),
    0 20px 40px rgba(0,0,0,0.30);
  z-index: 3;
  transition: transform 200ms cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 200ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.video-play svg {
  margin-left: 4px;
}
.video-play:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow:
    0 0 0 14px rgba(255,255,255,0.14),
    0 0 0 34px rgba(255,255,255,0.06),
    0 24px 48px rgba(0,0,0,0.36);
}

.video-meta {
  position: absolute;
  top: 24px; left: 28px; right: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  color: #fff;
  z-index: 2;
}


@media (max-width: 700px) {
  .video-play { width: 72px; height: 72px; }


}




.vis-merch {
  background: linear-gradient(180deg, #fef4ee 0%, #fbe5d8 100%);
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
}










/* ════════════════════════════════════════════════
   VIDEO MODAL
   ══════════════════════════════════════════════ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20, 22, 24, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  animation: vm-fade 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.video-modal[hidden] { display: none; }
@keyframes vm-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.video-modal-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background-color 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.video-modal-close:hover { background: rgba(255,255,255,0.22); }
.video-modal-close i { width: 18px; height: 18px; }

.video-modal-stage {
  width: 100%;
  max-width: 1080px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: vm-rise 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes vm-rise {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.video-modal-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
}
.video-modal-eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--sd-peach);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.video-modal-title {
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.005em;
}

.video-modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0c0d0e;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}


/* Placeholder (until a real Vimeo ID is supplied) */
.video-modal-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vmp-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5) saturate(0.9);
}
.vmp-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,0.6) 100%);
}
.vmp-center {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 24px;
}
.vmp-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,255,255,0.92);
  color: #2c2f32;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.vmp-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  max-width: 320px;
}

@media (max-width: 720px) {
  .video-modal { padding: 24px 16px; }
  .video-modal-close { top: 12px; right: 12px; width: 38px; height: 38px; }
  .video-modal-meta { padding: 0 8px; }
}






/* ════════════════════════════════════════════════
   WATCH CALLOUT (reinforces hero "See how it works")
   ════════════════════════════════════════════════ */
.watch-callout {
  padding: 0 24px;
  margin: -28px auto 0;
  position: relative;
  z-index: 3;
}
.watch-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding: 22px 28px 22px 22px;
  border: 1px solid var(--sd-border);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 18px 40px rgba(44,47,50,0.06);
  transition: transform 200ms cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 200ms cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 200ms cubic-bezier(0.2, 0.8, 0.2, 1);
  font-family: inherit;
}
.watch-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 56px rgba(44,47,50,0.10);
  border-color: var(--sd-border-strong);
}
.watch-poster {
  position: relative;
  width: 168px;
  height: 104px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  flex: 0 0 auto;
  overflow: hidden;
}
.watch-overlay {
  position: absolute;
  inset: 0;
  width: 168px;
  height: 104px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(44,47,50,0.0) 0%, rgba(44,47,50,0.55) 100%);
  pointer-events: none;
}
.watch-body { min-width: 0; }
.watch-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--sd-primary-text);   /* AA */
  margin-bottom: 6px;
}
.watch-eyebrow::before {
  content: ""; width: 6px; height: 6px;
  border-radius: 50%; background: currentColor;  /* match eyebrow text */
}
.watch-body h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--sd-neutral-950);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0 0 8px;
  text-wrap: balance;
}
.watch-meta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--sd-fg-muted);
}
.watch-meta-tag {
  text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 600; font-size: 11px;
  color: var(--sd-neutral-700);
}
.watch-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--sd-border-strong); }
.watch-duration { font-weight: 600; font-variant-numeric: tabular-nums; }
.watch-play {
  flex: 0 0 56px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--sd-primary);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(225,84,57,0.32);
  transition: transform 200ms cubic-bezier(0.2,0.8,0.2,1), background-color 200ms cubic-bezier(0.2,0.8,0.2,1);
}
.watch-play svg { transform: translateX(1px); }
.watch-card:hover .watch-play { background: var(--sd-primary-700, #bb341a); transform: scale(1.04); }
@media (max-width: 720px) {
  .watch-card { grid-template-columns: auto 1fr; padding: 16px; gap: 14px; }
  .watch-poster, .watch-overlay { width: 96px; height: 96px; }
  .watch-play { grid-column: 1 / -1; width: 100%; height: 44px; border-radius: 10px; }
  .watch-body h3 { font-size: 18px; }
}

/* ════════════════════════════════════════════════
   WHAT YOU CAN SELL (products / merch / both)
   ════════════════════════════════════════════════ */
.sell-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.sell-card {
  background: #fff;
  border: 1px solid var(--sd-border);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 200ms cubic-bezier(0.2,0.8,0.2,1),
              box-shadow 200ms cubic-bezier(0.2,0.8,0.2,1),
              border-color 200ms cubic-bezier(0.2,0.8,0.2,1);
}
.sell-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(44,47,50,0.08);
  border-color: var(--sd-border-strong);
}
.sell-vis {
  position: relative;
  height: 300px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #fdfbf7 0%, #fef4ee 100%);
}
.sell-tag {
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;
  padding: 5px 10px 5px 8px;
  border-radius: 999px;
  background: var(--sd-primary-100);
  color: var(--sd-primary-700, #bb341a);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sell-tag.sell-tag-alt { background: #eef0f1; color: var(--sd-neutral-950); }

/* "Coming soon" status pill — branded merch launches ~early July 2026.
   Shared across all 3 merch features: home #sell, for-pet-pros #merch,
   for-platforms tile. Tangerine-tinted so it reads as an on-brand status,
   not a neutral feature chip. */
.soon-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--sd-primary-100);
  color: var(--sd-primary-700, #bb341a);
  font-family: var(--sd-font-body, inherit);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap;
}
.soon-pill::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: currentColor; flex: none;
}
/* home #sell — keep the tag + coming-soon pill on one row */
.sell-tag-row {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}

.sell-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--sd-neutral-950);
  line-height: 1.25;
  margin: 0;
  text-wrap: balance;
}
.sell-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--sd-fg-muted);
  margin: 0;
}

/* Product + merch tile fans (shared) */
.sell-vis-products,
.sell-vis-merch { padding: 0; }
.ptile-fan {
  position: absolute; inset: 0;
}
.ptile {
  position: absolute;
  top: 50%; left: 50%;
  width: 42%;
}
.pt-back-l { transform: translate(-92%, -50%) rotate(-9deg); z-index: 1; }
.pt-back-r { transform: translate(-8%,  -50%) rotate(9deg);  z-index: 1; }
.pt-front  { transform: translate(-50%, -50%) rotate(-1deg) scale(1.04); z-index: 3; }

/* built merch tiles — styled to match the pet product tiles */
.mtile {
  background: #fff;
  border: 1px solid var(--sd-border);
  border-radius: 12px;
  box-shadow: 0 16px 28px rgba(44,47,50,0.16), 0 3px 8px rgba(44,47,50,0.06);
  padding: 9px 11px 11px;
  text-align: left;
}
.mt-photo {
  position: relative;
  width: 100%; aspect-ratio: 1 / 1;
  background-color: #fff;
  background-size: 88% auto;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 8px;
  margin-bottom: 9px;
}
.mt-brand {
  font-size: 11px; font-weight: 600;
  color: var(--sd-neutral-950);
  text-decoration: underline; text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.mt-name  { font-size: 13px; color: var(--sd-fg-muted); margin-top: 2px; line-height: 1.2; }
.mt-price { font-size: 15px; font-weight: 800; color: var(--sd-neutral-950); margin-top: 5px; }

/* rescue logo printed on the garment */
.rescue-print {
  position: absolute; left: 50%; top: 46%;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  pointer-events: none;
}
.rp-mark { width: 22px; height: auto; display: block; }
.rp-name { font-size: 8px; font-weight: 800; letter-spacing: 0.07em; line-height: 1.0; text-align: center; margin-top: 2px; }
/* mark uses currentColor → recolors with the print color, no filter needed */
.print-dark  .rescue-print { color: #2c2f32; }   /* light garments */
.print-light .rescue-print { color: #ffffff; }   /* dark/colored garments */
.rp-hat    { top: 45%; }
.rp-tee    { top: 41%; }
.rp-hoodie { top: 49%; }



@media (max-width: 1024px) {
  .sell-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .sell-strip { max-width: 520px; margin-left: auto; margin-right: auto; }
}

/* One-cart reassurance strip */
.sell-strip {
  margin-top: 24px;
  display: flex; align-items: center; gap: 16px;
  padding: 22px 28px;
  background: #fff;
  border: 1px solid var(--sd-border);
  border-radius: var(--sd-radius-lg, 18px);
  box-shadow: var(--sd-shadow-sm);
}
.sell-strip-icon {
  flex: none;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--sd-primary);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.sell-strip-icon i { width: 22px; height: 22px; }
.sell-strip p {
  margin: 0;
  font-size: 15px; line-height: 1.55;
  color: var(--sd-fg-muted);
}
.sell-strip p strong { color: var(--sd-neutral-950); font-weight: 600; }
@media (max-width: 560px) {
  .sell-strip { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ════════════════════════════════════════════════
   FOR PET BRANDS (charcoal pitch section)
   ════════════════════════════════════════════════ */
.brands-pitch {
  position: relative;
  padding: 120px 24px;
  background: #2c2f32;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.brands-pitch .bp-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.brands-pitch .eyebrow.bp-eyebrow {
  color: var(--sd-peach);
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.brands-pitch h2 {
  font-size: var(--sd-text-section-lg);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  color: #fff;
  text-wrap: balance;
}
.brands-pitch .bp-copy > p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  max-width: 56ch;
  margin: 0 0 32px;
}
.bp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 28px;
}
.bp-stats div { display: flex; flex-direction: column; gap: 4px; }
.bp-stats strong {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}
.bp-stats span {
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255,255,255,0.62);
}
.bp-ctas { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.bp-textlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600;
  color: var(--sd-peach);
  text-decoration: none;
  background: none; border: 0; padding: 0; cursor: pointer; font-family: inherit;
  transition: gap 180ms cubic-bezier(0.2,0.8,0.2,1), color 180ms cubic-bezier(0.2,0.8,0.2,1);
}
.bp-textlink:hover { gap: 12px; color: #fff; }

/* Visual stack */
.bp-visual {
  position: relative;
  height: 460px;
}
.bp-card {
  position: absolute;
  background: #fff;
  color: var(--sd-neutral-950);
  border-radius: 14px;
  box-shadow: 0 30px 56px rgba(0,0,0,0.35), 0 4px 10px rgba(0,0,0,0.18);
}
.bp-card-chart {
  width: 68%;
  left: 0; top: 36px;
  padding: 18px 20px 16px;
  z-index: 3;
}
.bp-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.bp-card-eyebrow {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--sd-fg-muted);
}
.bp-card-delta {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 700;
  color: var(--sd-success, #3c704b);
  background: #e6f0e9;
  padding: 4px 8px;
  border-radius: 999px;
}
.bp-card-value {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}
.bp-card-bars { display: grid; grid-template-columns: repeat(8, 1fr); gap: 6px; height: 70px; align-items: end; margin-top: 18px; }
.bp-card-bars div {
  background: #e5e7e8;
  border-radius: 3px 3px 0 0;
}
.bp-card-bars div.hi { background: var(--sd-primary); }

.bp-card-logo {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px;
  padding: 0 12px;
  text-align: center;
}
.bp-logo-img {
  display: block;
  max-width: 100%;
  max-height: 36px;
  width: auto; height: auto;
  object-fit: contain;
}
.bp-logo-name {
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 12px;
  line-height: 1.1;
}
.bp-logo-cat {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sd-fg-muted);
}
.bp-card-logo-1 { right: 24px; top: 0; width: 156px; height: 78px; transform: rotate(4deg); z-index: 4; }
.bp-card-logo-2 { right: 0; top: 88px; width: 156px; height: 78px; transform: rotate(-3deg); z-index: 4; }
.bp-card-logo-3 { right: 48px; top: 180px; width: 156px; height: 78px; transform: rotate(2deg); z-index: 4; }

.bp-card-integrations {
  left: 14%;
  right: 4%;
  bottom: 20px;
  padding: 14px 18px;
  display: flex; flex-direction: column; gap: 8px;
  z-index: 5;
}
.bp-int-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
}
.bp-int-name { line-height: 1; }
.bp-int-status { margin-left: auto; }
.bp-int-logo { display: inline-flex; align-items: center; }
.bp-int-logo svg { display: block; }
.bp-int-logo-shopify svg { width: 18px; height: 18px; }
.bp-int-logo-woo svg { height: 16px; width: auto; }
.bp-int-status {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--sd-success, #3c704b);
}

@media (max-width: 1024px) {
  .brands-pitch .bp-grid { grid-template-columns: 1fr; gap: 56px; }
  /* The absolute-positioned collage only works inside the wide desktop column.
     Once the grid stacks, bp-visual (margin:auto + only absolute children)
     collapses to 0 width and the cards pile up off-screen. Collapse to just the
     chart card — static, full-width, centered — and drop the floating tiles. */
  .bp-visual { height: auto; max-width: 420px; margin: 0 auto; }
  .bp-card-logo, .bp-card-integrations { display: none; }
  .bp-card-chart { position: static; width: 100%; transform: none; }
}
@media (max-width: 640px) {
  .brands-pitch { padding: 88px 24px; }
  .bp-stats { grid-template-columns: 1fr; gap: 16px; padding: 18px 0; }
}

/* ──────────────────────────────────────────────────────────────────
   BLOG-CARD GRID — "Launching with" / "Trusted platforms" partner cards.
   SHARED component (promoted from features.css 2026-06-10): used on
   for-platforms.html, index.html (home) and for-brands.html. Single row,
   horizontal scroll-snap. Partner launch posts as article cards: 16:9
   cover, meta, title, excerpt. Vanilla recreation of a shadcn/Tailwind/
   framer-motion reference — native loading="lazy", no radial glows.
   ────────────────────────────────────────────────────────────────── */
.blog-grid {
  display: flex;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 2px;
  scrollbar-width: none;            /* bar hidden — .blog-nav arrows drive it */
  -ms-overflow-style: none;
}
.blog-grid::-webkit-scrollbar { display: none; }

/* prev/next controls — mirror .tc-arrow (testimonial carousel) for brand parity */
.blog-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}
.blog-nav {
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--sd-bg); color: var(--sd-fg-muted);
  border: 1px solid var(--sd-border); box-shadow: var(--sd-shadow-md);
  cursor: pointer;
  transition: background var(--sd-dur-fast) var(--sd-ease), color var(--sd-dur-fast) var(--sd-ease),
              transform var(--sd-dur-fast) var(--sd-ease), border-color var(--sd-dur-fast) var(--sd-ease),
              opacity var(--sd-dur-fast) var(--sd-ease);
}
.blog-nav i { width: 20px; height: 20px; }
.blog-nav:hover:not(:disabled) {
  background: var(--sd-primary); color: #fff; border-color: var(--sd-primary);
}
.blog-nav:active:not(:disabled) { transform: scale(.94); }
.blog-nav:focus-visible { outline: 2px solid var(--sd-primary); outline-offset: 2px; }
.blog-nav:disabled { opacity: .4; cursor: default; }
.blog-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  padding: 10px;
  border-radius: var(--sd-radius-xl);
}
/* hover = title shifts to brand orange (matches every other link affordance) +
   the cover image zoom below; no background fill (that came from the shadcn ref) */
.blog-card:hover .blog-title { color: var(--sd-primary); }
.blog-card:focus-visible {
  outline: 2px solid var(--sd-primary);
  outline-offset: 2px;
}
.blog-cover {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--sd-radius-lg);
  border: 1px solid var(--sd-border);
  background: var(--sd-bg-cream);
}
.blog-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms var(--sd-ease);
}
.blog-card:hover .blog-cover img { transform: scale(1.05); }
.blog-meta {
  display: flex;
  flex-direction: column;        /* type on line 1, Live / Coming soon on line 2 */
  align-items: flex-start;
  gap: 3px;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sd-fg-muted);
}
.blog-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--sd-fg-muted);
}
.blog-title {
  font-family: var(--sd-font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--sd-fg);
  transition: color var(--sd-dur-fast) var(--sd-ease);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: var(--sd-fg-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 1025px) {
  /* fit all four cards in one row — three 24px gaps; a 5th would overflow → scroll */
  .blog-card { flex-basis: calc((100% - 72px) / 4); }
}
@media (max-width: 720px) {
  .blog-card { flex-basis: 80%; }
}
@media (prefers-reduced-motion: reduce) {
  .blog-card:hover .blog-cover img { transform: none; }
}

/* ── Phone-bleed media variant ─────────────────────────────────────
   Card cover = the partner's app screen in an .ipx iPhone frame, top
   ~2/3 visible, phone bleeding past the panel bottom, on a brand tint.
   Reuses the approved .ipx framework (mirrors for-brands Step-2 .m2-mock /
   howitworks.css / forpetpros-v2.css — keep in sync). Set the panel tint
   per card with `style="--tint:<color>"`. */
.blog-phone {
  position: relative;
  aspect-ratio: 1 / 1.08;            /* tall panel so ~70% of the phone shows */
  overflow: hidden;
  border-radius: var(--sd-radius-lg);
  border: 1px solid var(--sd-border);
  background: var(--tint, var(--sd-bg-cream));
  container-type: inline-size;
}
.blog-phone .ipx {
  position: absolute;
  left: 50%; top: 14px;
  transform: translateX(-50%);
  --pw: 60cqw;                       /* phone width relative to the panel */
  transition: transform 500ms var(--sd-ease);
}
.blog-card:hover .blog-phone .ipx { transform: translateX(-50%) translateY(-4px); }
.ipx-shot {                          /* the app screenshot fills the screen */
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}

/* .ipx — approved iPhone framework (synced copy; mirrors for-brands inline /
   howitworks.css / forpetpros-v2.css — do NOT drift the proportions) */
.ipx{ --pw:152px; width:var(--pw); aspect-ratio:393/852; position:relative; border-radius:calc(var(--pw)*0.205); padding:calc(var(--pw)*0.042); background:linear-gradient(150deg,#43474d 0%,#23262b 42%,#0c0d0f 100%); box-shadow:0 calc(var(--pw)*0.14) calc(var(--pw)*0.26) calc(var(--pw)*-0.08) rgba(0,0,0,.5), inset 0 0 0 1.5px rgba(255,255,255,.10), inset 0 0 0 4px #0a0b0c; }
.ipx-screen{ position:relative; width:100%; height:100%; background:#fff; overflow:hidden; border-radius:calc(var(--pw)*0.165); }
.ipx-island{ position:absolute; top:calc(var(--pw)*0.040); left:50%; transform:translateX(-50%); z-index:5; width:calc(var(--pw)*0.235); height:calc(var(--pw)*0.085); background:#000; border-radius:9999px; }

@media (prefers-reduced-motion: reduce) {
  .blog-card:hover .blog-phone .ipx { transform: translateX(-50%); }
}



