.hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: 96px 44px 90px;
}

.badge-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero h1 {
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
  max-width: 980px;
  margin-bottom: 34px;
}

.hero-sub {
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 44px;
}

.hero-sub strong { color: var(--text-dark); font-weight: 600; }

.cta-wrap { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 0; }

.cta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

.trust-row {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin-left: 28px;
}

.trust-item { display: flex; align-items: center; gap: 9px; white-space: nowrap; }

.trust-item.as-seen { gap: 14px; flex-wrap: wrap; }

.trust-item .label { color: var(--text-muted); }

.press-logo {
  font-weight: 700;
  color: var(--text-dark);
  opacity: 0.7;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: opacity 0.18s ease;
}

a.press-logo:hover { opacity: 1; }

.press-logo.p1 { font-family: -apple-system, "Segoe UI", sans-serif; font-weight: 800; }
.press-logo.p2 { font-family: Georgia, "Times New Roman", serif; font-style: italic; font-weight: 700; }

.divider { width: 1px; height: 18px; background: rgba(16,16,20,0.12); }

.yc-badge { display: inline-flex; align-items: center; gap: 6px; color: var(--text-muted); font-weight: 500; }

.yc-square {
  width: 22px; height: 22px;
  background: #9b9ba3;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  border-radius: 3px;
}

.forbes {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 21px;
  color: #101014;
}
/* ==========================================================
   SHOWCASE MARQUEE
   ========================================================== */
.showcase { padding: 10px 0 56px; }

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll-left 45s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 12px)); }
}

.card {
  flex-shrink: 0;
  width: 430px;
  height: 560px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--btn-gray);
}

.card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.card:hover img { transform: scale(1.03); }

/* ==========================================================
   PLATFORM LOGOS
   ========================================================== */
.platforms { padding: 32px 0 96px; text-align: center; }

.platforms .eyebrow {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  padding: 6px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: scroll-left 28s linear infinite;
}

.logo-marquee:hover .logo-track { animation-play-state: paused; }

.logo-item {
  flex-shrink: 0;
  height: 46px;
  width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.logo-item img:hover { filter: grayscale(0); opacity: 1; }

/* Wix / Canva ship as padded raster PNGs (logo sits inside a lot of
   built-in whitespace) — zoom the image itself in slightly so the mark
   reads at the same visual weight as the trimmed SVG logos, without
   letting it escape the box (overflow:hidden on .logo-item above is
   what keeps this safe). */
.logo-item img.lg-wix,
.logo-item img.lg-canva {
  max-width: 135%;
  max-height: 135%;
}

/* WordPress and Squarespace are background-removed PNGs with no padding
   of their own, so they need no zoom — anything over 100% is cropped by
   the overflow:hidden above, which is what clipped them on phones where
   the row shrinks to 34px. Held at 100% they always scale to fit whole. */
.logo-item img.lg-wp,
.logo-item img.lg-squarespace {
  max-width: 100%;
  max-height: 100%;
}


/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .trust-row { margin-left: 0; margin-top: 28px; }
}

@media (max-width: 768px) {
  .card { width: 300px; height: 400px; }
  .marquee-track { gap: 16px; }
  .logo-track { gap: 44px; }
  .logo-item { height: 34px; width: 84px; }
  /* Nothing is zoomed past the box on phones, so no logo can be clipped. */
  .logo-item img.lg-wix,
  .logo-item img.lg-canva { max-width: 115%; max-height: 115%; }
}

@media (max-width: 640px) {
  .hero { padding: 56px 20px 60px; }
  .hero h1 { font-size: 44px; letter-spacing: -0.03em; }
  .hero-sub { font-size: 17px; }
  .badge-row { gap: 10px; }
  .cta-row { flex-direction: column; align-items: center; gap: 12px; }
  .cta-row .btn { width: 100%; max-width: 340px; }
  .divider { display: none; }
  .trust-row { gap: 14px; }
}
