@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #171717;
  background: #fcfaf7;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Layout helpers ── */
.section-shell { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section-shell--wide { max-width: 1280px; }
.section-shell--narrow { max-width: 860px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.section-head--stacked {
  display: block;
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.section-head h2,
.section-head--stacked h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-top: 0.35rem;
}
.section-head p,
.section-head--stacked p {
  color: #5f5b57;
  font-size: 1rem;
  max-width: 520px;
}
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #B57898;
  font-weight: 700;
}
.section-kicker--with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.section-kicker--light { color: rgba(255,255,255,0.76); }

/* ── Nav ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(23,23,23,0.06);
  position: sticky;
  top: 0;
  background: rgba(252,250,247,0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  z-index: 100;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
}
.nav-brand {
  gap: 0.7rem;
}
.nav-brand-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(18,55,61,0.08));
}
.nav-brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: #8D5A75;
}
.nav-brand-wordmark span {
  color: #C9A669;
}
.nav-links { display: flex; align-items: center; gap: 1.5rem; font-size: 0.95rem; }
.nav-links a { color: #5f5b57; transition: color 0.15s; }
.nav-links a:hover { color: #171717; }
.nav-links .btn-primary { color: #fff; transition: all 0.18s ease; }
.nav-links .btn-primary:hover {
  background: #5A2C41;
  border-color: #5A2C41;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.18s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: #4A2436;
  color: #fff;
  border-color: #4A2436;
}
.btn-primary:hover {
  background: #3B1C2B;
  border-color: #3B1C2B;
}
.btn-secondary {
  background: transparent;
  color: #171717;
  border-color: rgba(23,23,23,0.12);
}
.btn-secondary:hover { background: rgba(23,23,23,0.04); }
.btn-lg { padding: 0.95rem 1.55rem; }

/* ── Hero ── */
.hero-premium {
  padding: 4.5rem 0 3rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(181,140,113,0.14), transparent 28%),
    linear-gradient(180deg, #fbf8f4 0%, #fcfaf7 100%);
}
.hero-premium::after {
  content: "";
  position: absolute;
  right: -110px;
  top: 26px;
  width: 520px;
  height: 520px;
  opacity: 0.12;
  pointer-events: none;
  background-image: url('/brand/catalogshoot-app-icon-mark-tight.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.hero-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.82fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.hero-copy { max-width: 620px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #f1e6dd;
  color: #B57898;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.aperture-dot {
  width: 0.82rem;
  height: 0.82rem;
  border-radius: 50%;
  flex: 0 0 auto;
  background:
    radial-gradient(circle at center, transparent 0 24%, #8D5A75 24% 31%, transparent 31% 43%, #C9A669 43% 50%, transparent 50% 100%);
}
.aperture-dot--light {
  background:
    radial-gradient(circle at center, transparent 0 24%, rgba(255,255,255,0.92) 24% 31%, transparent 31% 43%, rgba(255,255,255,0.55) 43% 50%, transparent 50% 100%);
}
.hero-copy h1 {
  font-size: clamp(2.9rem, 6vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  margin-bottom: 1rem;
}
.hero-lede {
  font-size: 1.08rem;
  color: #5f5b57;
  max-width: 560px;
  margin-bottom: 1.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 1.5rem; }
.hero-proof { display: grid; gap: 0.6rem; max-width: 560px; }
.hero-proof li {
  position: relative;
  padding-left: 1.4rem;
  color: #3b3835;
}
.hero-proof li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #B57898;
  font-size: 1.1rem;
  line-height: 1.2;
}

.hero-stage {
  position: relative;
  min-height: 0;
  width: min(100%, 560px);
  justify-self: end;
}
.hero-stage-main {
  border-radius: 30px;
  overflow: hidden;
  background: #efe7de;
  box-shadow: 0 32px 80px rgba(69,44,28,0.14);
}
.hero-stage-main img {
  width: 100%;
  height: auto;
  max-height: min(72vh, 820px);
  aspect-ratio: 0.96 / 1.08;
  object-fit: cover;
  object-position: center;
}
.hero-stage--result {
  min-height: 0;
}
.hero-stage-main--result {
  border-radius: 30px;
  overflow: hidden;
  background: #efe7de;
  box-shadow: 0 32px 80px rgba(69,44,28,0.16);
}
.hero-stage-main--result img {
  width: 100%;
  height: auto;
  max-height: min(72vh, 820px);
  aspect-ratio: 0.96 / 1.08;
  object-fit: cover;
  object-position: center;
}
.hero-stage-detail {
  position: absolute;
  right: -1.25rem;
  bottom: -1.25rem;
  width: clamp(160px, 32%, 220px);
  border-radius: 24px;
  overflow: hidden;
  border: 8px solid rgba(252,250,247,0.96);
  box-shadow: 0 24px 56px rgba(23,23,23,0.16);
  background: #efe7de;
}
.hero-stage-detail img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  object-position: center;
}
.stage-label {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #B57898;
}

/* ── Signal bar ── */
.signal-bar {
  border-top: 1px solid rgba(23,23,23,0.06);
  border-bottom: 1px solid rgba(23,23,23,0.06);
  background: #fff;
}
.signal-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem 2rem;
  color: #6b625c;
  font-size: 0.92rem;
}

/* ── Demo / proof ── */
.demo-strip { padding: 5rem 0 2rem; }
.proof-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 1.4rem;
  align-items: start;
}
.proof-card {
  background: #fff;
  border: 1px solid rgba(23,23,23,0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(23,23,23,0.05);
}
.proof-card--wide {
  display: flex;
  flex-direction: column;
}
.proof-card-media img,
.proof-card-media video {
  width: 100%;
  height: auto;
  display: block;
}
.proof-card-media--video {
  padding: 0.9rem;
}
.proof-card-media--video video {
  background: #000;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border-radius: 20px;
  border: 1px solid rgba(23,23,23,0.08);
}
.proof-card--composition .proof-card-media {
  padding: 0.9rem;
}
.proof-card--composition img {
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border-radius: 20px;
  border: 1px solid rgba(23,23,23,0.08);
  background: #f7f3ee;
}
.proof-card-body {
  padding: 1.1rem 1.25rem 1.25rem;
}
.proof-card-body h3 { font-size: 1.25rem; letter-spacing: -0.03em; margin: 0.35rem 0 0.45rem; }
.proof-card-body p { color: #5f5b57; }
.demo-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  background: #4A2436;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.demo-badge--soft {
  background: #f1e6dd;
  color: #B57898;
}

/* ── Compare ── */
.compare-section { padding: 5rem 0; }
.compare-media-stage {
  margin-bottom: 1.6rem;
  background: #fff;
  border: 1px solid rgba(23,23,23,0.08);
  border-radius: 28px;
  padding: 1rem;
  box-shadow: 0 18px 46px rgba(23,23,23,0.06);
}
.compare-media-stage video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border-radius: 20px;
  background: #000;
}
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}
.compare-card {
  background: #fff;
  border: 1px solid rgba(23,23,23,0.08);
  border-radius: 24px;
  padding: 1.6rem;
}
.compare-card--accent {
  background: #2A1E24;
  color: #fff;
  border-color: #2A1E24;
}
.compare-card h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.compare-card ul { display: grid; gap: 0.7rem; }
.compare-card li { position: relative; padding-left: 1.2rem; color: inherit; }
.compare-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #b97e5f;
}

/* ── Workflow ── */
.workflow-section { padding: 1rem 0 5rem; }
.workflow-collage-stage,
.workflow-copy-card {
  background: #fff;
  border: 1px solid rgba(23,23,23,0.08);
}
.workflow-collage-stage {
  border-radius: 28px;
  padding: 1.2rem;
  box-shadow: 0 18px 46px rgba(23,23,23,0.06);
  margin-bottom: 1.6rem;
}
.workflow-collage-stage img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
}
.workflow-collage-stage--shopify {
  padding: 1rem;
}
.workflow-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.workflow-story-card {
  background: #fcfaf7;
  border: 1px solid rgba(23,23,23,0.06);
  border-radius: 18px;
  overflow: hidden;
}
.workflow-story-card img {
  width: 100%;
  display: block;
}
.workflow-story-card p {
  padding: 0.85rem 1rem 0.95rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #B57898;
}
.workflow-copy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}

/* ── Generations vs activations ── */
.activations-section {
  padding: 5.5rem 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(248,244,239,0.92) 100%);
}

.activations-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: clamp(1.8rem, 4vw, 3.2rem);
  align-items: center;
}

.activations-stage {
  display: flex;
  align-items: center;
}

.activations-stage img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  border: 1px solid rgba(23,23,23,0.08);
  box-shadow: 0 22px 54px rgba(23,23,23,0.08);
}

.activations-copy h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-top: 0.35rem;
  margin-bottom: 1rem;
}

.activations-lede {
  color: #5f5b57;
  font-size: 1rem;
  margin-bottom: 1.4rem;
}

.activations-note {
  color: #5f5b57;
  font-size: 1rem;
}

.activation-cards {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.2rem;
}

.activation-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(23,23,23,0.08);
  border-radius: 22px;
  padding: 1.25rem 1.25rem 1.15rem;
  box-shadow: 0 14px 34px rgba(23,23,23,0.04);
}

.activation-card--accent {
  background: linear-gradient(180deg, rgba(232,247,238,0.96) 0%, rgba(255,255,255,0.94) 100%);
  border-color: rgba(74,158,108,0.22);
}

.activation-card h3 {
  font-size: 1.15rem;
  line-height: 1.15;
  margin-bottom: 0.55rem;
}

.activation-card p {
  color: #5f5b57;
  font-size: 0.97rem;
}

.activation-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: #f1e6dd;
  color: #B57898;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.activation-chip--accent {
  background: #dff5e6;
  color: #2d7d48;
}

@media (max-width: 900px) {
  .activations-grid {
    grid-template-columns: 1fr;
  }

  .activations-stage {
    order: -1;
  }

  .activation-cards {
    grid-template-columns: 1fr;
  }
}
.workflow-copy-card {
  border-radius: 20px;
  padding: 1.4rem;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.workflow-copy-card--featured {
  border-color: rgba(138,90,68,0.18);
  box-shadow: 0 14px 32px rgba(23,23,23,0.05);
}
.workflow-number {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: #B57898;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.workflow-copy-card h3 { font-size: 1.08rem; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.workflow-copy-card p { color: #5f5b57; font-size: 0.94rem; max-width: 28ch; }

/* ── Pricing ── */
.pricing { padding: 4rem 0 5rem; }
.pricing-annual-banner {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  width: fit-content;
  margin: 0 auto 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 18px;
  background: #f5ede4;
  border: 1px solid rgba(183,138,92,0.18);
  text-align: center;
}
.pricing-annual-banner__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #B57898;
  font-weight: 700;
}
.pricing-annual-banner--trial {
  background: #e6f2ed;
  border-color: rgba(0, 128, 96, 0.18);
}
.pricing-annual-banner__eyebrow--trial {
  color: #008060;
}
.pricing-annual-banner__text--trial {
  color: #004d39;
}
.pricing-annual-banner strong {
  font-size: 1rem;
  color: #171717;
  letter-spacing: -0.02em;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}
.pricing-card {
  background: #fff;
  border: 1px solid rgba(23,23,23,0.08);
  border-radius: 26px;
  padding: 1.9rem;
  position: relative;
}
.pricing-card--featured {
  border-color: #4A2436;
  transform: translateY(-8px);
}
.plan-badge {
  position: absolute;
  top: -0.8rem;
  left: 1.5rem;
  background: #4A2436;
  color: #fff;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
}
.plan-name { color: #8c857f; font-weight: 700; margin-bottom: 0.6rem; }
.plan-price { font-size: 2.7rem; font-weight: 800; letter-spacing: -0.05em; margin-bottom: 0.35rem; }
.plan-price span { font-size: 1rem; font-weight: 500; color: #8c857f; }
.plan-note { font-size: 0.95rem; color: #6f6760; margin-bottom: 0.2rem; }
.plan-effective {
  font-size: 0.86rem;
  color: #B57898;
  margin-bottom: 1rem;
  font-weight: 700;
}
.section-subtle {
  color: #5f5b57;
  font-size: 1rem;
  max-width: 520px;
  margin: 1.25rem auto 2rem;
  text-align: center;
}
.pricing-card ul { display: grid; gap: 0.6rem; margin-bottom: 1.4rem; }
.pricing-card li { color: #4f4a46; }
.pricing-card .btn { width: 100%; }

/* ── CTA ── */
.cta-premium {
  background: #221A21;
  color: #fff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-premium::before {
  content: "";
  position: absolute;
  left: -200px;
  bottom: -250px;
  width: 800px;
  height: 800px;
  opacity: 0.06;
  pointer-events: none;
  background-image: url('/brand/catalogshoot-app-icon-mark-tight.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.cta-premium .section-shell { text-align: center; position: relative; z-index: 1; }
.cta-kicker-branded {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.cta-premium h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0.5rem 0 0.9rem;
}
.cta-premium p {
  color: rgba(255,255,255,0.72);
  max-width: 640px;
  margin: 0 auto 1.5rem;
}
.cta-premium .btn-primary {
  background: #fff;
  color: #171717;
  border-color: #fff;
}
.cta-premium .btn-primary:hover { background: #f3efe8; }

/* ── Pages ── */
.page-inner { max-width: 760px; margin: 0 auto; padding: 4rem 2rem; }
.page-inner h1 { font-size: 2rem; font-weight: 800; margin-bottom: 2rem; }
.page-inner h2 { font-size: 1.3rem; font-weight: 700; margin: 2rem 0 0.5rem; }
.page-inner p, .page-inner li { color: #555; margin-bottom: 0.75rem; }

.feature-page-hero {
  padding: 4.5rem 0 1rem;
}
.how-section {
  padding: 1.5rem 0 4.5rem;
}
.how-section--alt {
  background: rgba(23, 23, 23, 0.02);
  border-top: 1px solid rgba(23,23,23,0.05);
  border-bottom: 1px solid rgba(23,23,23,0.05);
}
.how-media-grid {
  display: grid;
  gap: 1.4rem;
}
.how-media-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.how-media-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.how-media-grid--full {
  grid-template-columns: 1fr;
}
.how-media-card,
.how-copy-card {
  background: #fff;
  border: 1px solid rgba(23,23,23,0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(23,23,23,0.05);
}
.how-media-card video,
.how-media-card img {
  width: 100%;
  display: block;
}
.how-media-card video {
  background: #000;
}
.how-media-card--stacked-pair {
  padding: 1rem;
}
.before-after-pair {
  display: grid;
  gap: 1rem;
}
.before-after-pair img {
  border-radius: 16px;
  border: 1px solid rgba(23,23,23,0.08);
}
.how-step-label {
  padding: 0.95rem 1rem 1.05rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #B57898;
}
.how-copy-card {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.how-copy-card h3 {
  font-size: 1.6rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 0.9rem;
}
.how-copy-card p {
  color: #5f5b57;
  margin-bottom: 1.2rem;
}

.how-media-card--feature-image {
  padding: 1rem;
}
.how-media-card--feature-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
}

/* ── Footer ── */
.footer { border-top: 1px solid rgba(23,23,23,0.06); padding: 1.5rem 2rem; text-align: center; font-size: 0.85rem; color: #888; }
.footer a { color: #888; text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hero-shell,
  .proof-split,
  .compare-grid,
  .workflow-copy-grid,
  .workflow-story-grid,
  .pricing-grid,
  .how-media-grid--two,
  .how-media-grid--three {
    grid-template-columns: 1fr;
  }

  .pricing-annual-banner {
    display: flex;
    width: 100%;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-stage {
    min-height: 0;
    padding-bottom: 0;
    width: min(100%, 640px);
    margin: 0 auto;
    justify-self: center;
  }

  .workflow-copy-card--featured {
    box-shadow: 0 16px 40px rgba(23,23,23,0.05);
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 0.75rem;
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .nav {
    padding: 0.9rem 1rem;
    gap: 0.85rem;
    align-items: flex-start;
    flex-direction: column;
  }
  .nav-brand-mark { width: 34px; height: 34px; }
  .nav-brand-wordmark { font-size: 1.3rem; }
  .nav-links {
    width: 100%;
    gap: 0.9rem;
    flex-wrap: wrap;
  }
  .nav-links a:not(.btn) { display: none; }
  .nav-links .btn {
    width: 100%;
    margin-top: 0.2rem;
  }
  .hero-premium { padding-top: 3.5rem; }
  .hero-premium::after {
    width: 280px;
    height: 280px;
    right: -80px;
    top: 34px;
    opacity: 0.08;
  }
  .cta-premium::before {
    width: 400px;
    height: 400px;
    left: -120px;
    bottom: -150px;
  }
  .hero-shell,
  .section-shell,
  .section-shell--wide,
  .section-shell--narrow { padding-left: 1.25rem; padding-right: 1.25rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stage {
    padding-bottom: 0;
    min-height: auto;
    width: min(100%, 640px);
  }
  .hero-stage--result { min-height: auto; }
  .hero-stage-main img,
  .hero-stage-main--result img,
  .demo-card-media img,
  .workflow-collage-stage img {
    aspect-ratio: auto;
    height: auto;
    object-fit: contain;
  }
  .hero-stage-detail img {
    aspect-ratio: auto;
    height: auto;
    object-fit: contain;
  }
  .hero-stage-detail {
    position: static;
    width: min(68%, 260px);
    margin: -2rem 0 0 auto;
  }
  .workflow-collage-stage {
    padding: 0.85rem;
  }
  .proof-card--composition .proof-card-media {
    padding: 0.75rem;
  }
  .signal-bar-inner { justify-content: flex-start; }
}

/* ── Pitch Pages ── */
.pitch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.pitch-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(23,23,23,0.06);
  border: 1px solid rgba(23,23,23,0.08);
  display: flex;
  flex-direction: column;
}
.pitch-card--original {
  background: #fbf8f4;
}
.pitch-label {
  display: block;
  padding: 1rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #B57898;
  border-bottom: 1px solid rgba(23,23,23,0.06);
}
.pitch-media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 0;
}
.pitch-card--original .pitch-media {
  padding: 2rem;
  background: transparent;
}
.pitch-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pitch-hero {
  padding-bottom: 2rem;
  padding-top: 3.5rem;
}
.text-center {
  margin: 0 auto;
  text-align: center;
}
.pitch-kicker {
  justify-content: center;
}
.pitch-hero h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.pitch-lede {
  margin: 0 auto 2rem;
  text-align: left;
  font-size: 1.1rem;
  color: #3b3835;
}
.pitch-cta {
  text-align: center;
  margin: 0 auto;
}
.pitch-cta-text {
  color: #5f5b57;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
