@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; }
/* scroll-padding-top offsets in-page anchor jumps below the sticky .nav (~72px),
   so a target section's heading lands just under the nav instead of hidden behind it. */
html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: 80px; }
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; }
/* Hamburger toggle — hidden on desktop, shown in the ≤760px media query below.
   Pure-CSS checkbox hack (the #nav-toggle checkbox is a sibling before .nav-links),
   with a tiny progressive-enhancement script in nav.html to auto-close on tap. */
.nav-toggle-cb { display: none; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  border-radius: 10px;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #2e2a27;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle-cb:focus-visible ~ .nav-toggle { outline: 2px solid #5A2C41; outline-offset: 2px; }
.nav-toggle-cb:checked ~ .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle-cb:checked ~ .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-toggle-cb:checked ~ .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.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, 1.35fr) minmax(0, 0.9fr);
  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;
  /* Even 4-up that wraps responsively (no 3+1 orphan) — mirrors the tutorial's
     plans grid. auto-fit handles all widths, so it's dropped from the ≤1100px
     single-column rule below. */
  grid-template-columns: repeat(auto-fit, minmax(208px, 1fr));
  gap: 1.1rem;
  align-items: start;
}
.pricing-card {
  background: #fff;
  border: 1px solid rgba(23,23,23,0.08);
  border-radius: 18px;
  padding: 1.6rem 1.3rem;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.pricing-card--featured {
  border-color: #4A2436;
  box-shadow: 0 14px 32px rgba(74,36,54,0.16);
}
.plan-badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: #4A2436;
  color: #fff;
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.plan-name { color: #8c857f; font-weight: 700; margin: 0.25rem 0 0.5rem; font-size: 1.02rem; }
.plan-price { font-size: 2.1rem; font-weight: 800; letter-spacing: -0.04em; margin-bottom: 0.2rem; line-height: 1; }
.plan-price span { font-size: 0.9rem; font-weight: 500; color: #8c857f; }
.plan-note { font-size: 0.8rem; color: #6f6760; margin-bottom: 0.2rem; font-weight: 600; }
.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 { list-style: none; margin: 0.7rem 0 1.2rem; padding: 0; }
.pricing-card li { color: #4f4a46; font-size: 0.92rem; padding: 0.4rem 0; border-top: 1px solid rgba(23,23,23,0.08); }
.pricing-card li > p { margin: 0; }
.pricing-card .btn { width: 100%; margin-top: auto; }

/* ── 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; }

/* Support page — Discord community CTA (from the discord-cta shortcode). */
.support-discord-btn { display: inline-flex; align-items: center; gap: 0.5rem; margin: 0.75rem 0 0.5rem; }
.support-discord-icon { flex-shrink: 0; }
.support-discord-note { margin-top: 0.25rem; font-size: 0.92rem; color: #5f5b57; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hero-shell,
  .proof-split,
  .compare-grid,
  .workflow-copy-grid,
  .workflow-story-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;
    flex-wrap: wrap;
  }
  .nav-brand-mark { width: 34px; height: 34px; }
  .nav-brand-wordmark { font-size: 1.3rem; }
  /* visually-hidden checkbox drives the dropdown; the ☰ label is the control */
  .nav-toggle-cb {
    display: block;
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav-links {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.1rem;
    margin-top: 0.6rem;
  }
  .nav-toggle-cb:checked ~ .nav-links { display: flex; }
  .nav-links a:not(.btn) {
    display: block;
    padding: 0.7rem 0.2rem;
    border-bottom: 1px solid rgba(23,23,23,0.06);
  }
  .nav-links .btn {
    width: 100%;
    margin-top: 0.6rem;
  }
  .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;
}

/* Media placeholders — described boxes for assets to backfill (layouts/index.html).
   They render cleanly (no broken images) and state exactly what goes where. Swap each
   .media-ph for an <img>/<video> once the real asset lands. The per-element inline
   aspect-ratio sets the box shape. */
.media-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 200px;
  padding: 28px;
  box-sizing: border-box;
  text-align: center;
  background:
    repeating-linear-gradient(45deg, rgba(181, 120, 152, 0.05) 0 12px, transparent 12px 24px),
    #fbf8f4;
  border: 2px dashed #d9b8c6;
  border-radius: 14px;
  color: #5f5b57;
}
.media-ph__kind {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b57898;
  background: rgba(181, 120, 152, 0.12);
  border-radius: 999px;
  padding: 4px 12px;
}
.media-ph__note {
  font-size: 13.5px;
  line-height: 1.55;
  max-width: 48ch;
}
.media-ph__note strong { color: #4a2436; }
.media-ph__note code {
  font-size: 0.92em;
  background: rgba(74, 36, 54, 0.06);
  border-radius: 4px;
  padding: 1px 5px;
  word-break: break-all;
}

/* Backfilled homepage media — wrapper sets the box (inline aspect-ratio); the image
   or video fills it via object-fit. Default cover (fill, center-crop); --contain pads
   to show a full UI screenshot; --right anchors the crop to the right edge. */
.hp-media {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #fbf8f4;
}
.hp-media img,
.hp-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hp-media--contain img,
.hp-media--contain video { object-fit: contain; }
.hp-media--right img { object-position: right center; }

/* Floating UI-card image (e.g. the share card) — no box, sized to its natural
   width and lifted with a soft shadow so it reads as a real card, not a framed
   screenshot in an oversized container. */
/* Scoped higher than `.proof-card--composition img` (which forces a 16:10
   contain-box with a grey bg) so the share card shows at its natural portrait
   size — readable, no grey frame. */
.proof-card--composition .hp-card {
  display: block;
  width: 100%;
  max-width: 340px;
  height: auto;
  aspect-ratio: auto;
  object-fit: fill;
  margin-inline: 0;
  border: 0;
  background: transparent;
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(23, 23, 23, 0.16);
}

/* The right "share" card floats free — the screenshot is itself a card, so the
   outer .proof-card box was a double frame. Strip it; center the caption under it. */
.proof-card--composition {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.proof-card--composition .proof-card-media { padding: 0; }
.proof-card--composition .proof-card-body { text-align: left; padding-left: 0; padding-right: 0; }

/* ============================================================
   Tutorial page — deck-style design system (scoped to .tut-*)
   Ported from the pre-fork; .btn-lg already exists above.
   ============================================================ */
:root {
  --tut-accent: #5c6ac4;
  --tut-accent-2: #7b61ff;
  --tut-ink: #1f2933;
  --tut-muted: #6b7480;
  --tut-line: #e6e8ec;
  --tut-bg-soft: #f6f7fb;
}

/* Responsive 16:9 video frame (also used for the "coming soon" placeholder) */
.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}
.video-embed--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--tut-bg-soft), #eef0f7);
  border: 1px dashed #c9d2dc;
  color: var(--tut-accent);
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* Hero — cream band with the brand mark as a big background watermark */
.tut-hero {
  position: relative;
  overflow: hidden;
  background: #faf8f4;
  border-bottom: 1px solid rgba(23,23,23,0.06);
  color: var(--tut-ink);
  padding: 5.5rem 1.5rem 4.5rem;
  text-align: center;
}
.tut-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -150px;
  width: 780px;
  height: 780px;
  transform: translateY(-50%);
  background: url("/brand/catalogshoot-app-icon-mark-tight.png") no-repeat center / contain;
  opacity: 0.14;
  pointer-events: none;
}
.tut-hero__inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.tut-hero__kicker {
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem;
  font-weight: 700; color: var(--tut-accent); margin-bottom: 1rem;
}
.tut-hero h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.1; margin: 0 0 1rem; color: var(--tut-ink); }
.tut-hero__sub { font-size: 1.15rem; line-height: 1.5; color: #4a5560; margin: 0 auto 2rem; max-width: 620px; }

/* Section jump bar — pills sitting in the gap below the hero */
.tut-jump-nav { background: #faf8f4; border-bottom: 1px solid var(--tut-line); padding: 1.25rem 1.5rem; }
.tut-jump-inner { max-width: 960px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
.tut-jump {
  display: inline-block; padding: 0.5rem 1.05rem; border-radius: 999px;
  background: #fff; border: 1px solid var(--tut-line); color: var(--tut-ink);
  font-size: 0.88rem; font-weight: 600; text-decoration: none; line-height: 1.1;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease, border-color .16s ease;
}
.tut-jump:hover, .tut-jump:focus-visible {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(135deg, var(--tut-accent), var(--tut-accent-2));
  color: #fff; border-color: transparent;
  box-shadow: 0 10px 22px rgba(92,106,196,0.32);
}
/* Keep a visible focus ring for keyboard users (survives forced-colors mode). */
.tut-jump:focus-visible {
  outline: 2px solid var(--tut-accent);
  outline-offset: 2px;
}

/* Page canvas */
.tut-page { max-width: 960px; margin: 0 auto; padding: 3.5rem 1.5rem 5rem; }
.tut-video { max-width: 960px; margin: 2.6rem auto 0; padding: 0 1.5rem; }
.tut-page > h2 {
  font-size: 1.75rem; font-weight: 800; color: var(--tut-ink);
  margin: 3.25rem 0 1.25rem; padding-top: 1.5rem; border-top: 1px solid var(--tut-line);
}
.tut-page > h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.tut-page > h3 { font-size: 1.15rem; font-weight: 700; color: var(--tut-ink); margin: 1.75rem 0 0.5rem; }
.tut-page > p { color: #4a5560; font-size: 1.02rem; line-height: 1.6; margin: 0 0 1rem; }
.tut-page > p > strong, .tut-page li > strong { color: var(--tut-ink); }
.tut-page > ul { color: #4a5560; line-height: 1.6; margin: 0 0 1.25rem; padding-left: 1.2rem; }
.tut-page > ul li { margin-bottom: 0.4rem; }

/* Card grid */
.tut-cards { display: grid; gap: 1rem; margin: 1.5rem 0 2rem; }
.tut-cards--2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.tut-cards--3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.tut-cards--4 { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.tut-card {
  background: #fff; border: 1px solid var(--tut-line); border-radius: 14px;
  padding: 1.25rem 1.25rem 1.1rem; box-shadow: 0 1px 2px rgba(16,24,40,0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.tut-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(16,24,40,0.08); }
.tut-card__icon { font-size: 1.9rem; line-height: 1; margin-bottom: 0.6rem; }
.tut-card__title { font-size: 1.02rem; font-weight: 700; color: var(--tut-ink); margin: 0 0 0.35rem; }
.tut-card__body { color: var(--tut-muted); font-size: 0.93rem; line-height: 1.5; }
.tut-card__body p { margin: 0 0 0.5rem; }
.tut-card__body p:last-child { margin-bottom: 0; }

/* Numbered steps */
.tut-steps { counter-reset: tut-step; list-style: none; margin: 1.5rem 0 2rem; padding: 0; display: grid; gap: 0.85rem; }
.tut-step {
  counter-increment: tut-step; position: relative; background: #fff;
  border: 1px solid var(--tut-line); border-radius: 14px; padding: 1.1rem 1.25rem 1.1rem 4rem;
}
.tut-step::before {
  content: counter(tut-step); position: absolute; left: 1.1rem; top: 1.05rem;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--tut-accent), var(--tut-accent-2));
  color: #fff; font-weight: 800; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
}
.tut-step__title { display: block; font-weight: 700; color: var(--tut-ink); margin-bottom: 0.15rem; }
.tut-step__body { color: var(--tut-muted); font-size: 0.95rem; line-height: 1.5; }
.tut-step__body p { margin: 0; }
.tut-step-cta { display: block; width: fit-content; margin: 0.85rem 0 0 auto; }

/* Callout boxes */
.tut-callout { border-radius: 14px; padding: 1.25rem 1.4rem; margin: 1.75rem 0 2rem; border: 1px solid var(--tut-line); }
.tut-callout__title { font-size: 1.1rem; font-weight: 800; color: var(--tut-ink); margin: 0 0 0.5rem; }
.tut-callout__icon { margin-right: 0.15rem; }
.tut-callout__body { color: #4a5560; font-size: 0.97rem; line-height: 1.55; }
.tut-callout__body :first-child { margin-top: 0; }
.tut-callout__body :last-child { margin-bottom: 0; }
.tut-callout__body ul { margin: 0.4rem 0 0; padding-left: 1.2rem; }
.tut-callout__body li { margin-bottom: 0.35rem; }
.tut-callout--info { background: var(--tut-bg-soft); }
.tut-callout--warn { background: #fff8ed; border-color: #f5d9a8; }
.tut-callout--tip { background: #f0fdf6; border-color: #b6e7cd; }
.tut-callout--magic {
  background: linear-gradient(135deg, rgba(123,97,255,0.10), rgba(92,106,196,0.12));
  border: 1px solid rgba(123,97,255,0.30);
}
.tut-callout--magic .tut-callout__title { color: var(--tut-accent); }

/* Pricing plans */
.tut-plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin: 1.5rem 0 2.25rem; }
.tut-plan {
  position: relative; background: #fff; border: 1px solid var(--tut-line);
  border-radius: 16px; padding: 1.4rem 1.25rem; text-align: center;
}
.tut-plan--featured { border-color: var(--tut-accent); box-shadow: 0 10px 30px rgba(92,106,196,0.18); }
.tut-plan__ribbon {
  position: absolute; top: -0.7rem; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--tut-accent), var(--tut-accent-2));
  color: #fff; font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 0.25rem 0.7rem; border-radius: 999px; white-space: nowrap;
}
.tut-plan__name { font-size: 1.05rem; font-weight: 700; color: var(--tut-ink); margin: 0.25rem 0 0.5rem; }
.tut-plan__price { font-size: 2rem; font-weight: 800; color: var(--tut-ink); line-height: 1; }
.tut-plan__period { font-size: 0.85rem; font-weight: 600; color: var(--tut-muted); margin-left: 0.15rem; }
.tut-plan__note { font-size: 0.8rem; font-weight: 600; color: var(--tut-muted); margin-top: 0.3rem; }
.tut-plan__list { list-style: none; margin: 1rem 0 0; padding: 0; color: var(--tut-muted); font-size: 0.92rem; }
.tut-plan__list li { padding: 0.3rem 0; border-top: 1px solid var(--tut-line); }
.tut-plan__list strong { color: var(--tut-ink); }

/* Screenshot figures (placeholders until real captures land) */
.tutorial-shot { margin: 1.75rem 0 2.25rem; }
.tutorial-shot img {
  max-width: 100%; display: block; margin: 0 auto;
  border: 1px solid var(--tut-line); border-radius: 12px;
  background: var(--tut-bg-soft); box-shadow: 0 12px 30px rgba(16,24,40,0.10);
}
.tutorial-shot figcaption { margin-top: 0.6rem; font-size: 0.85rem; color: var(--tut-muted); text-align: center; }
.tutorial-shot figcaption strong { color: var(--tut-accent); }

@media (max-width: 600px) {
  .tut-hero { padding: 3.5rem 1.25rem 2.75rem; }
  .tut-page { padding: 2.5rem 1.1rem 3.5rem; }
}
