﻿*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Strict palette: black, pink, white only */
  --black: #000000;
  --pink: #ff2d8a;
  --pink-glow: rgba(255, 45, 138, 0.55);
  --pink-dim: rgba(255, 45, 138, 0.16);
  --white: #ffffff;
  --white-muted: rgba(255, 255, 255, 0.68);
  --white-dim: rgba(255, 255, 255, 0.42);
  --white-faint: rgba(255, 255, 255, 0.28);
  --border: rgba(255, 255, 255, 0.1);
  --card-bg: rgba(0, 0, 0, 0.78);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --wrap: 1200px;
  --wrap-wide: 1320px;
  --hero-phone: min(580px, 54vw);
  --orbit-spread: 17.5rem;
  --orbit-spread-inner: 16rem;
  --orbit-left-shift: 2.5rem;
  --orbit-right-shift: 2.5rem;
  --header-h: 3.35rem;
  --announce-h: 0;
  --nav-float-gap: 0.5rem;
  --nav-float-max: 1120px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.wrap-wide {
  max-width: var(--wrap-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3 {
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--pink);
  background: var(--pink-dim);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 45, 138, 0.35);
}

.tag--on-dark {
  color: var(--pink);
  background: var(--pink-dim);
}

.announce-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: var(--announce-h);
  padding: 0.5rem 1rem;
  background: var(--black);
  color: var(--white-muted);
  font-size: 0.8125rem;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--pink-glow);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.9); }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: calc(var(--header-h) + var(--nav-float-gap) + 0.75rem);
  padding-bottom: 0;
  overflow-x: clip;
  overflow-y: visible;
  background: var(--black);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent calc(12.5% - 1px),
    rgba(255, 255, 255, 0.035) calc(12.5% - 1px),
    rgba(255, 255, 255, 0.035) 12.5%
  );
  mask-image: linear-gradient(180deg, black 0%, black 50%, transparent 92%);
}

.hero-glow {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(900px, 100vw);
  height: 65%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 70% 55% at 50% 90%, var(--pink-glow) 0%, transparent 72%);
  pointer-events: none;
  filter: blur(55px);
  opacity: 0.5;
}

.site-header {
  position: fixed;
  top: var(--nav-float-gap);
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 max(1rem, 2.5vw);
  pointer-events: none;
}

.site-header__shell {
  position: relative;
  width: 100%;
  max-width: var(--nav-float-max);
  pointer-events: auto;
}

.site-header__bar {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem 1rem;
  height: var(--header-h);
  padding: 0 0.65rem 0 1rem;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 12px 40px rgba(0, 0, 0, 0.55);
  overflow: visible;
}

.site-header__bar .brand-lockup {
  justify-self: start;
  z-index: 2;
}

.site-header__bar .header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  align-self: center;
  gap: 0.65rem;
  z-index: 2;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  justify-self: center;
  white-space: nowrap;
}

.site-nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--white-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.site-nav a:hover {
  color: var(--white);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--white);
  flex-shrink: 0;
}

.brand-lockup__icon {
  border-radius: 0.55rem;
  display: block;
}

.brand-lockup__name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.header-actions {
  flex-shrink: 0;
  overflow: visible;
}

.header-icon-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  border-radius: 0.6rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.header-icon-btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 1rem;
  background: var(--white);
  border-radius: 1px;
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 1.25rem;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 1.15rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav:not([hidden]) {
  display: flex;
}

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

.mobile-nav a {
  padding: 0.65rem 0;
  color: var(--white-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
}

.mobile-nav a:hover {
  color: var(--pink);
}

.app-store-wrap {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
}

.app-store-wrap--center {
  margin: 0 auto 1.75rem;
}

.header-actions .app-store-wrap {
  margin-right: 0;
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: inherit;
  cursor: default;
  border: none;
  text-align: left;
}

.app-store-badge--header {
  background: var(--white);
  color: var(--black);
  padding: 0.45rem 0.9rem 0.45rem 0.7rem;
  border-radius: 0.65rem;
  line-height: 1.1;
}

.app-store-badge--header .apple-icon {
  width: 1.35rem;
  height: 1.35rem;
}

.app-store-badge--header .badge-text strong {
  font-size: 0.875rem;
}

.app-store-badge--header .badge-text small {
  font-size: 0.5rem;
  letter-spacing: 0.01em;
}

.app-store-badge--light {
  background: var(--white);
  color: var(--black);
  padding: 0.65rem 1.25rem 0.65rem 1rem;
  border-radius: 0.75rem;
}

.app-store-badge--compact {
  background: var(--black);
  color: var(--white);
  padding: 0.45rem 0.9rem 0.45rem 0.75rem;
  border-radius: 0.65rem;
  border: 1px solid var(--border);
}

.apple-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.badge-text small {
  font-size: 0.5625rem;
  font-weight: 500;
}

.badge-text strong {
  font-size: 1rem;
  font-weight: 700;
}

.soon-chip {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(38%, -58%);
  font-size: 0.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  background: var(--pink);
  color: var(--white);
  padding: 0.2rem 0.42rem;
  border-radius: 999px;
  border: 1.5px solid var(--black);
  box-shadow: 0 2px 10px var(--pink-glow);
  pointer-events: none;
  z-index: 2;
}

.hero-copy {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: 1.5rem 2.5rem;
  align-items: start;
  text-align: left;
  max-width: min(1180px, 94vw);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.hero-title {
  font-size: clamp(2.35rem, 5.2vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero-title__accent {
  color: var(--pink);
}

.hero-copy__aside {
  padding-top: 0.35rem;
  max-width: 20rem;
  justify-self: start;
  text-align: left;
}

.hero-lead {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--white-muted);
  margin-bottom: 1.15rem;
}

.hero-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
}

.hero-link:hover {
  color: var(--pink);
}

/* Hero stage — phone + Blooio orbit cards */
.hero-stage {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: min(1180px, 94vw);
  margin: -0.75rem auto 0;
  padding: 0 1.5rem 0.5rem;
  overflow: visible;
}

.hero-stage__canvas {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.hero-orbit {
  position: relative;
  width: 100%;
  min-height: clamp(540px, 68vh, 760px);
  margin: 0 auto;
  perspective: 1400px;
  perspective-origin: 50% 38%;
}

.hero-orbit::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: min(520px, 72%);
  height: 55%;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    rgba(255, 45, 138, 0.35) 0%,
    transparent 72%
  );
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}

.hero-scene {
  position: relative;
  width: 100%;
  min-height: inherit;
  transform-style: preserve-3d;
  z-index: 1;
}

.hero-device {
  position: absolute;
  left: 50%;
  bottom: 4rem;
  transform: translateX(-50%);
  z-index: 8;
  width: var(--hero-phone);
  max-width: 100%;
  line-height: 0;
  pointer-events: none;
  transform-style: preserve-3d;
}

.parallax-layer {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.parallax-layer--phone {
  transform:
    rotateX(calc(8deg + var(--tilt-x)))
    rotateY(var(--tilt-y))
    scale(1.08)
    translateZ(36px);
  filter: drop-shadow(0 48px 100px rgba(0, 0, 0, 0.85));
}

.hero-device__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2.75rem;
}

.float-card--tl .parallax-layer {
  transform:
    rotateX(calc(-5deg + var(--tilt-x)))
    rotateY(calc(12deg + var(--tilt-y)))
    translateZ(52px);
}

.float-card--tr .parallax-layer {
  transform:
    rotateX(calc(-4deg + var(--tilt-x)))
    rotateY(calc(-14deg + var(--tilt-y)))
    translateZ(64px);
}

.float-card--ml .parallax-layer {
  transform:
    rotateX(calc(-3deg + var(--tilt-x)))
    rotateY(calc(10deg + var(--tilt-y)))
    translateZ(28px);
}

.float-card--mr .parallax-layer {
  transform:
    rotateX(calc(-6deg + var(--tilt-x)))
    rotateY(calc(-11deg + var(--tilt-y)))
    translateZ(40px);
}

.float-card--bl .parallax-layer {
  transform:
    rotateX(calc(5deg + var(--tilt-x)))
    rotateY(calc(9deg + var(--tilt-y)))
    translateZ(32px);
}

.float-card--br .parallax-layer {
  transform:
    rotateX(calc(4deg + var(--tilt-x)))
    rotateY(calc(-12deg + var(--tilt-y)))
    translateZ(56px);
}

/* Floating cards (Blooio-style) — orbit around phone */
.float-card {
  position: absolute;
  z-index: 4;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  animation: cardFloat 6s ease-in-out infinite;
  max-width: 200px;
  transform-style: preserve-3d;
}

.float-card .parallax-layer {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 24px 60px rgba(0, 0, 0, 0.55);
}

.float-card--stat .parallax-layer {
  padding: 0.85rem 1rem;
  min-width: 160px;
}

.float-card--compact .parallax-layer {
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.float-card--rich .parallax-layer {
  padding: 0.85rem 1rem;
  min-width: 170px;
}

.float-card__pill {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--white-dim);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  margin-bottom: 0.5rem;
}

.float-card__metric {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
}

.float-card__metric span {
  color: var(--pink);
}

.float-card__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--white-muted);
  margin-top: 0.2rem;
}

.float-card__title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
}

.float-card__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: var(--pink-dim);
  border: 1px solid rgba(255, 45, 138, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: var(--pink);
}

.float-card__icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.float-card__head {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white-dim);
  margin-bottom: 0.5rem;
}

.float-card__body {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  padding: 0.55rem 0.65rem;
}

.float-card--pay .float-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.float-card--pay strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--pink);
}

.float-card--pay span {
  font-size: 0.6875rem;
  color: var(--white-dim);
}

.mock-templates {
  display: flex;
  gap: 0.4rem;
}

.mock-tpl {
  flex: 1;
  height: 2.5rem;
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.mock-tpl--active {
  border-color: var(--pink);
  box-shadow: 0 0 12px var(--pink-glow);
}

.mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 2.25rem;
  padding-top: 0.25rem;
}

.mock-bars span {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--white), var(--pink));
  min-width: 6px;
}

.mock-bars span:nth-child(1) { height: 45%; opacity: 0.5; }
.mock-bars span:nth-child(2) { height: 70%; opacity: 0.7; }
.mock-bars span:nth-child(3) { height: 100%; }
.mock-bars span:nth-child(4) { height: 55%; opacity: 0.6; }

/* Card positions: symmetric around center phone (50%) */
.float-card--tl {
  top: 6%;
  left: calc(50% - var(--orbit-spread) - var(--orbit-left-shift));
  z-index: 6;
  animation-delay: 0s;
}

.float-card--tr {
  top: 10%;
  right: calc(50% - var(--orbit-spread) - var(--orbit-right-shift));
  left: auto;
  z-index: 7;
  animation-delay: 0.6s;
}

.float-card--ml {
  top: 36%;
  left: calc(50% - var(--orbit-spread) - 1.75rem - var(--orbit-left-shift));
  z-index: 3;
  animation-delay: 1s;
}

.float-card--mr {
  top: 32%;
  right: calc(50% - var(--orbit-spread) - 1.75rem - var(--orbit-right-shift));
  left: auto;
  z-index: 4;
  animation-delay: 0.3s;
}

.float-card--bl {
  bottom: 22%;
  left: calc(50% - var(--orbit-spread-inner) - var(--orbit-left-shift));
  z-index: 3;
  animation-delay: 1.4s;
}

.float-card--br {
  bottom: 26%;
  right: calc(50% - var(--orbit-spread) - var(--orbit-right-shift));
  left: auto;
  z-index: 6;
  animation-delay: 1.8s;
}

@keyframes cardFloat {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -6px; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes phoneIn {
  from { opacity: 0; transform: translateX(-50%) translateY(32px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.hero-entrance {
  opacity: 0;
  animation: heroLoadReveal 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.site-header__shell.hero-entrance {
  animation-delay: 0.05s;
}

.hero-copy.hero-entrance {
  animation-delay: 0.2s;
}

.hero-stage.hero-entrance {
  animation-delay: 0.4s;
}

.marquee.hero-entrance {
  animation-delay: 0.6s;
}

@keyframes heroLoadReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.marquee {
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--border);
  padding: 0.9rem 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

@keyframes marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--marquee-loop, 50%)), 0, 0);
  }
}

.marquee-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  --marquee-loop: 50%;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.marquee-group > span:not(.marquee-dot) {
  color: var(--pink);
}

.marquee-dot {
  color: var(--white-faint);
  font-weight: 400;
}

.pitch {
  position: relative;
  padding: 5.5rem 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 50%, rgba(255, 45, 138, 0.08) 0%, transparent 70%),
    var(--black);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.scroll-reveal {
  opacity: 1;
  transform: none;
}

html.scroll-reveal-ready .scroll-reveal {
  opacity: 0;
  transform: translateY(56px);
}

html.scroll-reveal-ready .scroll-reveal.is-visible {
  animation: scrollRevealIn 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes scrollRevealIn {
  from {
    opacity: 0;
    transform: translateY(56px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (scripting: none) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.pitch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3.5rem;
  align-items: center;
}

.pitch-intro {
  max-width: 34rem;
}

.pitch-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.15rem;
}

.text-accent {
  color: var(--pink);
}

.pitch-intro p {
  color: var(--white-muted);
  font-size: 1.0625rem;
  line-height: 1.75;
  max-width: 32rem;
}

.pitch-benefits {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.pitch-benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.pitch-benefit:hover {
  border-color: rgba(255, 45, 138, 0.4);
  transform: translateX(4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.pitch-benefit__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  color: var(--pink);
  background: var(--pink-dim);
  border: 1px solid rgba(255, 45, 138, 0.25);
}

.pitch-benefit__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.pitch-benefit__icon,
.feature-card__icon {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}

.pitch-benefit__icon svg,
.feature-card__icon svg {
  display: block;
  margin: 0;
  flex-shrink: 0;
}

.pitch-benefit strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.pitch-benefit > div > span {
  display: block;
  font-size: 0.875rem;
  color: var(--white-muted);
  line-height: 1.5;
}

.app-screenshots,
.app-videos {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

.section-divider {
  height: 1px;
  margin: 0;
  border: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--border) 18%,
    rgba(255, 45, 138, 0.45) 50%,
    var(--border) 82%,
    transparent 100%
  );
}

.app-screenshots {
  background: var(--black);
}

.app-videos {
  background: linear-gradient(180deg, var(--black) 0%, rgba(255, 45, 138, 0.04) 50%, var(--black) 100%);
}

.screenshot-explorer {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.5rem 3rem;
  align-items: end;
}

.screenshot-explorer__preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.screenshot-explorer__phone {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0;
  padding: 1.75rem 1.15rem 1.35rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 32rem;
  background:
    radial-gradient(ellipse 75% 70% at 50% 88%, rgba(255, 45, 138, 0.16) 0%, transparent 72%),
    rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 1.75rem;
}

.screenshot-explorer__img {
  display: block;
  width: min(310px, 88%);
  height: auto;
  border-radius: 1.15rem;
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: opacity 0.28s ease;
}

.screenshot-explorer__img.is-fading {
  opacity: 0;
}

.screenshot-explorer__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.screenshot-explorer__dot {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.screenshot-explorer__dot.is-active {
  background: var(--pink);
  transform: scale(1.15);
}

.screenshot-explorer__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.screenshot-explorer__list::-webkit-scrollbar {
  width: 4px;
}

.screenshot-explorer__list::-webkit-scrollbar-thumb {
  background: rgba(255, 45, 138, 0.35);
  border-radius: 999px;
}

.screenshot-explorer__card {
  display: block;
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  cursor: pointer;
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.screenshot-explorer__card:hover {
  border-color: rgba(255, 45, 138, 0.35);
  background: rgba(255, 45, 138, 0.04);
}

.screenshot-explorer__card.is-active {
  border-color: rgba(255, 45, 138, 0.55);
  background: rgba(255, 45, 138, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 45, 138, 0.12) inset;
}

.screenshot-explorer__card h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
  color: var(--white);
}

.screenshot-explorer__card p {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--white-muted);
}

.screenshot-explorer__caption-shell {
  display: contents;
}

.screenshot-explorer__nav {
  display: none;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.video-card {
  margin: 0;
  text-align: center;
}

.video-card__media {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 1.35rem;
  padding: 1rem;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.video-card:hover .video-card__media {
  border-color: rgba(255, 45, 138, 0.45);
  transform: translateY(-4px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 45, 138, 0.08);
}

.video-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

.video-card figcaption {
  margin-top: 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
}

/* Mobile carousels for screenshots & videos */
.media-carousel__shell {
  display: block;
}

.media-carousel__btn {
  display: none;
}

.media-carousel__viewport {
  overflow: visible;
}

.features {
  padding: 5.5rem 0;
  background:
    radial-gradient(ellipse 60% 45% at 85% 0%, rgba(255, 45, 138, 0.06) 0%, transparent 70%),
    var(--black);
}

.feature-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
  padding: 1.65rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 45, 138, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.feature-card:hover {
  border-color: rgba(255, 45, 138, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card--lead {
  grid-row: span 2;
  padding: 2rem;
}

.feature-card--wide {
  grid-column: 1 / -1;
}

.feature-card__icon {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 0.9rem;
  color: var(--pink);
  background: var(--pink-dim);
  border: 1px solid rgba(255, 45, 138, 0.25);
}

.feature-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.feature-card h3 {
  position: relative;
  font-size: 1.125rem;
  font-weight: 700;
}

.feature-card p {
  position: relative;
  font-size: 0.9375rem;
  color: var(--white-muted);
  line-height: 1.65;
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: 640px;
}

.section-head.center {
  text-align: center;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
}

.section-sub {
  margin-top: 0.75rem;
  color: var(--white-muted);
  font-size: 1.0625rem;
}

.steps {
  padding: 5rem 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.steps-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.steps-list li {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 1.15rem;
  padding: 1.75rem;
}

.steps-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--pink);
  background: var(--pink-dim);
  border-radius: 999px;
  margin-bottom: 1rem;
}

.steps-list h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.steps-list p {
  font-size: 0.9375rem;
  color: var(--white-muted);
}

.who {
  padding: 5.5rem 0;
  background:
    radial-gradient(ellipse 55% 50% at 50% 100%, rgba(255, 45, 138, 0.07) 0%, transparent 72%),
    var(--black);
  border-top: 1px solid var(--border);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.audience-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
  padding: 2rem 1.65rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 1.35rem;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.audience-card:hover {
  border-color: rgba(255, 45, 138, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.42);
}

.audience-card--featured {
  background:
    linear-gradient(180deg, rgba(255, 45, 138, 0.1) 0%, rgba(255, 255, 255, 0.02) 42%),
    rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 45, 138, 0.35);
}

.audience-card__label {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--pink-dim);
  border: 1px solid rgba(255, 45, 138, 0.3);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}

.audience-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.audience-card p {
  font-size: 0.9375rem;
  color: var(--white-muted);
  line-height: 1.65;
}

.audience-card__list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.audience-card__list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.8125rem;
  color: var(--white-dim);
}

.audience-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink-glow);
}

.notify {
  padding: 5rem 0;
  background: var(--black);
}

.notify-box {
  text-align: center;
  border: 1px solid rgba(255, 45, 138, 0.4);
  border-radius: 1.5rem;
  padding: clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(ellipse at 50% 0%, var(--pink-dim), transparent 55%),
    var(--black);
}

.notify-box h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.notify-box > p {
  color: var(--white-muted);
  margin-bottom: 0.5rem;
}

.notify-form {
  display: flex;
  gap: 0.75rem;
  max-width: 440px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.notify-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.9rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.9375rem;
  font-family: inherit;
  background: var(--black);
  color: var(--white);
  outline: none;
}

.notify-form input:focus {
  border-color: var(--pink);
}

.notify-form button {
  padding: 0.9rem 1.75rem;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.notify-form button:hover {
  background: var(--white);
  color: var(--black);
}

.form-msg {
  margin-top: 1.25rem;
  color: var(--pink);
  font-weight: 600;
}

.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  border-radius: 0.5rem;
}

.footer-brand p {
  font-size: 0.8125rem;
  color: var(--white-dim);
  margin-top: 0.15rem;
}

.copy {
  font-size: 0.8125rem;
  color: var(--white-faint);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.scroll-reveal-ready .scroll-reveal,
  .scroll-reveal.is-visible {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .hero-entrance {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .float-card,
  .pulse-dot,
  .hero-copy,
  .hero-device {
    animation: none;
  }
  .hero-device {
    transform: translateX(-50%);
  }
  .parallax-layer {
    transition: none;
  }
  .parallax-layer--phone {
    transform: rotateX(4deg) scale(1.04) translateZ(0);
  }
  .float-card--tl .parallax-layer { transform: rotateY(6deg) translateZ(0); }
  .float-card--tr .parallax-layer { transform: rotateY(-6deg) translateZ(0); }
  .float-card--ml .parallax-layer { transform: rotateY(4deg) translateZ(0); }
  .float-card--mr .parallax-layer { transform: rotateY(-4deg) translateZ(0); }
  .float-card--bl .parallax-layer { transform: rotateY(4deg) translateZ(0); }
  .float-card--br .parallax-layer { transform: rotateY(-4deg) translateZ(0); }
}

@media (min-width: 1400px) {
  :root {
    --hero-phone: clamp(540px, 38vw, 640px);
    --orbit-spread: 18.5rem;
    --orbit-spread-inner: 17rem;
  }

  .hero-copy {
    max-width: min(1240px, 94vw);
    gap: 1.5rem 3rem;
  }

  .hero-stage {
    max-width: min(1240px, 94vw);
  }
}

@media (max-width: 1100px) {
  :root {
    --hero-phone: min(440px, 62vw);
    --orbit-spread: 16.5rem;
    --orbit-spread-inner: 15.25rem;
  }

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

  .feature-card--lead {
    grid-row: span 1;
  }

  .float-card--tl { left: max(0.25rem, calc(50% - var(--orbit-spread) - var(--orbit-left-shift))); }
  .float-card--tr { right: auto; left: calc(50% + 9.5rem + var(--orbit-right-shift)); }
  .float-card--ml { left: max(0.25rem, calc(50% - var(--orbit-spread) - 1.75rem - var(--orbit-left-shift))); }
  .float-card--mr { right: auto; left: calc(50% + 8.75rem + var(--orbit-right-shift)); }
  .float-card--bl { left: max(0.25rem, calc(50% - var(--orbit-spread-inner) - var(--orbit-left-shift))); }
  .float-card--br { right: auto; left: calc(50% + 9.25rem + var(--orbit-right-shift)); }
}

@media (max-width: 960px) {
  .site-header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    height: auto;
    min-height: 3.1rem;
    padding: 0.45rem 0.5rem 0.45rem 0.7rem;
    border-radius: 1.15rem;
  }

  .site-nav {
    display: none;
  }

  .header-icon-btn,
  .nav-toggle {
    display: flex;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .brand-lockup {
    gap: 0.5rem;
    min-width: 0;
  }

  .brand-lockup__icon {
    width: 32px;
    height: 32px;
  }

  .brand-lockup__name {
    font-size: 1.05rem;
  }

  .app-store-badge--header {
    padding: 0.42rem 0.85rem 0.42rem 0.65rem;
    border-radius: 999px;
  }

  .app-store-badge--header .badge-text small {
    display: none;
  }

  .app-store-badge--header .badge-text strong {
    font-size: 0.8125rem;
    font-weight: 700;
  }

  .app-store-badge--header .apple-icon {
    width: 1.05rem;
    height: 1.05rem;
  }

  .header-actions .app-store-wrap {
    margin-top: 0.15rem;
  }

  .soon-chip {
    transform: translate(28%, -52%);
    font-size: 0.4375rem;
    padding: 0.16rem 0.36rem;
  }

  :root {
    --hero-phone: min(380px, 92vw);
  }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding-top: calc(var(--header-h) + var(--nav-float-gap) + 0.35rem);
    padding-bottom: 0;
  }

  .hero-copy {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    text-align: left;
    max-width: none;
    width: 100%;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .hero-title {
    font-size: clamp(2rem, 9.5vw, 2.65rem);
  }

  .hero-copy__aside {
    justify-self: start;
    max-width: none;
    padding-top: 0;
  }

  .hero-lead {
    font-size: 0.875rem;
    line-height: 1.65;
    margin-bottom: 0;
  }

  .float-card {
    display: none;
  }

  .hero-stage {
    margin-top: 0;
    max-width: none;
    width: 100%;
    padding: 0 1rem;
  }

  .hero-stage__canvas {
    padding: 0;
  }

  .hero-orbit {
    min-height: auto;
    padding: 0.15rem 0 0.35rem;
    perspective: none;
  }

  .hero-orbit::before {
    display: block;
    bottom: 0;
    width: min(300px, 82%);
    height: 42%;
    filter: blur(32px);
    opacity: 0.85;
  }

  .hero-device {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin: 0 auto;
    width: var(--hero-phone);
    max-width: 100%;
  }

  .parallax-layer--phone {
    transform: none;
    filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.72));
  }

  .marquee {
    margin-top: 0.25rem;
    padding: 0.75rem 0;
  }

  .float-card--tl .parallax-layer,
  .float-card--tr .parallax-layer,
  .float-card--ml .parallax-layer,
  .float-card--mr .parallax-layer,
  .float-card--bl .parallax-layer,
  .float-card--br .parallax-layer {
    transform: none;
  }

  .steps-list,
  .pitch-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .pitch-layout > * {
    min-width: 0;
  }

  .pitch {
    padding: 4rem 0;
    overflow-x: clip;
  }

  .pitch-intro {
    max-width: none;
  }

  .pitch-intro h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.5rem);
  }

  .pitch-intro p {
    font-size: 0.9375rem;
    line-height: 1.65;
    max-width: none;
  }

  .pitch .media-carousel,
  .pitch .media-carousel__shell,
  .pitch .media-carousel__viewport {
    min-width: 0;
    max-width: 100%;
  }

  .pitch .media-carousel__btn {
    display: none;
  }

  .pitch .media-carousel__shell {
    display: block;
  }

  .pitch .media-carousel__viewport {
    overflow: visible;
  }

  .media-carousel__shell {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .media-carousel__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition:
      background 0.2s ease,
      border-color 0.2s ease,
      color 0.2s ease;
  }

  .media-carousel__btn:hover {
    background: rgba(255, 45, 138, 0.12);
    border-color: rgba(255, 45, 138, 0.45);
    color: var(--pink);
  }

  .media-carousel__btn:focus-visible {
    outline: 2px solid var(--pink);
    outline-offset: 2px;
  }

  .media-carousel__viewport {
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .media-carousel__viewport::-webkit-scrollbar {
    display: none;
  }

  .media-carousel__track,
  .video-grid,
  .feature-showcase,
  .steps-list,
  .audience-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    grid-template-columns: unset;
  }

  .app-screenshots {
    padding: 3.5rem 0;
  }

  .screenshot-explorer {
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: stretch;
  }

  .screenshot-explorer__preview {
    gap: 0.85rem;
    width: 100%;
  }

  .screenshot-explorer__phone {
    order: 1;
    max-width: min(320px, 100%);
    width: 100%;
    min-height: auto;
    margin: 0 auto;
    padding: 1rem 0.75rem 0.85rem;
    border-radius: 1.35rem;
  }

  .screenshot-explorer__img {
    width: min(220px, 62vw);
  }

  .screenshot-explorer__dots {
    order: 2;
    flex-wrap: wrap;
    gap: 0.55rem;
    padding: 0 0.5rem;
    max-width: 100%;
  }

  .screenshot-explorer__dot {
    width: 0.45rem;
    height: 0.45rem;
    flex-shrink: 0;
  }

  .screenshot-explorer__caption-shell {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
  }

  .screenshot-explorer__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition:
      background 0.2s ease,
      border-color 0.2s ease,
      color 0.2s ease;
  }

  .screenshot-explorer__nav:hover {
    background: rgba(255, 45, 138, 0.12);
    border-color: rgba(255, 45, 138, 0.45);
    color: var(--pink);
  }

  .screenshot-explorer__nav:focus-visible {
    outline: 2px solid var(--pink);
    outline-offset: 2px;
  }

  .screenshot-explorer__list {
    flex: 1;
    min-width: 0;
    max-height: none;
    overflow: visible;
    padding-right: 0;
    gap: 0;
  }

  .screenshot-explorer__card:not(.is-active) {
    display: none;
  }

  .screenshot-explorer__card.is-active {
    text-align: left;
    padding: 1.1rem 1.15rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 45, 138, 0.55);
    border-radius: 1.1rem;
    box-shadow: 0 0 0 1px rgba(255, 45, 138, 0.12) inset;
    cursor: default;
    pointer-events: none;
  }

  .screenshot-explorer__card.is-active h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }

  .screenshot-explorer__card.is-active p {
    font-size: 0.8125rem;
    line-height: 1.6;
    max-width: none;
    margin: 0;
  }

  .screenshot-explorer__hint {
    font-size: 0.9rem;
    padding: 0 0.25rem;
  }

  .feature-card,
  .steps-list > li,
  .audience-card {
    flex: 0 0 min(82vw, 300px);
    scroll-snap-align: center;
  }

  .video-card {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: center;
  }

  .feature-card--wide,
  .feature-card--lead {
    grid-column: span 1;
    grid-row: span 1;
  }

  .pitch-benefit:hover,
  .feature-card:hover,
  .audience-card:hover {
    transform: none;
  }

  .pitch-layout {
    gap: 2rem;
  }

  .pitch .pitch-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .pitch .pitch-benefit {
    flex: none;
    width: 100%;
    scroll-snap-align: unset;
  }
}

@media (max-width: 600px) {
  :root {
    --nav-float-gap: 0.35rem;
  }

  .announce-bar { font-size: 0.72rem; }
  .site-header {
    padding: 0 0.75rem;
  }
  .pitch-benefit:hover {
    transform: none;
  }
  .footer-row { flex-direction: column; text-align: center; }
  .footer-brand { flex-direction: column; }
  .notify-form { flex-direction: column; }
  .notify-form input,
  .notify-form button { width: 100%; }
}
