*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg-primary: #0f0f0f;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #252525;
  --bg-card: #1e1e1e;
  --text-primary: #f1f1f1;
  --text-secondary: #aaaaaa;
  --text-muted: #717171;
  --accent: #3ea6ff;
  --accent-hover: #65b8ff;
  --green: #2ecc71;
  --border: #2b2b2b;
  --radius: 8px;
  --radius-lg: 14px;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  border-bottom: 1px solid var(--border);
  background: rgba(15, 15, 15, 0.92);
  backdrop-filter: blur(14px);
}
.logo { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 800; }
.logo svg { width: 28px; height: 28px; }
.nav { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); border-color: var(--accent); color: #050505; }
.btn-ghost { background: transparent; border-color: transparent; }
.btn-lg { min-height: 52px; padding: 12px 24px; font-size: 16px; }

/* Hero */
.hero {
  text-align: center;
  padding: 88px 40px 48px;
  max-width: 1280px;
  margin: 0 auto;
}
.hero .eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
}
.hero h1 {
  max-width: 880px;
  margin: 0 auto 20px;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero h1 span { color: var(--accent); }
.hero p {
  max-width: 640px;
  margin: 0 auto 32px;
  color: var(--text-secondary);
  font-size: 20px;
}
.actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.note { margin-top: 16px; color: var(--text-muted); font-size: 13px; }

/* Lizard experiments that preserve the saved page order */
.hero-top-strip {
  padding-top: 34px;
}
.lizard-strip {
  width: min(1040px, 100%);
  height: 230px;
  margin: 0 auto 46px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #080808;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}
.lizard-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}
.lizard-strip-full {
  height: auto;
}
.lizard-strip-full img {
  height: auto;
  object-fit: contain;
}
.edge-image-page .header {
  position: absolute;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.82), rgba(15, 15, 15, 0.18));
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.edge-image-page .hero-top-strip {
  max-width: none;
  padding: 0 0 48px;
}
.lizard-strip-edge {
  width: 100%;
  height: auto;
  margin: 0 0 54px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.lizard-strip-edge img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.edge-image-page .hero-top-strip > h1,
.edge-image-page .hero-top-strip > p,
.edge-image-page .hero-top-strip > .actions,
.edge-image-page .hero-top-strip > .note {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
.edge-image-page .hero-top-strip > p {
  max-width: 640px;
}
.below-nav-edge-image-page .hero-top-strip {
  max-width: none;
  padding: 0 0 48px;
}
.below-nav-edge-image-page .lizard-strip-edge {
  width: 100%;
  height: auto;
  margin: 0 0 54px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.below-nav-edge-image-page .lizard-strip-edge img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.below-nav-edge-image-page .hero-top-strip > h1,
.below-nav-edge-image-page .hero-top-strip > p,
.below-nav-edge-image-page .hero-top-strip > .actions,
.below-nav-edge-image-page .hero-top-strip > .note {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
.below-nav-edge-image-page .hero-top-strip > p {
  max-width: 640px;
}
.cta-lizard-page .cta-strip {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #111;
}
.cta-lizard-page .cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.98) 0%, rgba(17, 17, 17, 0.78) 45%, rgba(17, 17, 17, 0.35) 100%),
    linear-gradient(180deg, rgba(17, 17, 17, 0.35) 0%, rgba(17, 17, 17, 0.92) 100%),
    url("assets/lizardprojector1.png") right 78% bottom 44% / 680px auto no-repeat;
  opacity: 0.52;
}
.cta-lizard-page .cta-strip::after {
  content: "YouTubeCollector.com";
  position: absolute;
  right: 54px;
  bottom: 30px;
  color: rgba(244, 190, 54, 0.28);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0;
}
.cta-lizard-page .cta-strip h2,
.cta-lizard-page .cta-strip p,
.cta-lizard-page .cta-strip .actions {
  position: relative;
  z-index: 1;
}
.cta-lizard-page .cta-strip h2,
.cta-lizard-page .cta-strip p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.cta-whole-lizard-page .cta-strip {
  position: relative;
  overflow: hidden;
  max-width: 1120px;
  min-height: 720px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #080808;
}
.cta-whole-lizard-page .cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/lizardprojector1.png") center / cover no-repeat;
}
.cta-whole-lizard-page .cta-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.12) 0%, rgba(8, 8, 8, 0.02) 46%, rgba(8, 8, 8, 0.12) 100%),
    linear-gradient(90deg, rgba(8, 8, 8, 0.22) 0%, transparent 28%, transparent 72%, rgba(8, 8, 8, 0.22) 100%);
  pointer-events: none;
}
.cta-whole-lizard-page .cta-strip h2,
.cta-whole-lizard-page .cta-strip p,
.cta-whole-lizard-page .cta-strip .actions {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}
.cta-whole-lizard-page .cta-strip h2 {
  margin-top: 88px;
  margin-bottom: 8px;
  font-size: 30px;
}
.cta-whole-lizard-page .cta-strip p {
  margin-bottom: 18px;
}
.cta-whole-lizard-page .cta-strip .actions {
  padding-bottom: 0;
}
.cta-whole-lizard-page .cta-strip .btn-primary {
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.44);
}
.cta-generated-lizard-page .cta-strip {
  position: relative;
  overflow: hidden;
  max-width: 1120px;
  min-height: 630px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #080808;
}
.cta-generated-lizard-page .cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/lizard-cta-generated-1.png") center / cover no-repeat;
}
.cta-generated-lizard-page .cta-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.3) 0%, rgba(8, 8, 8, 0.03) 42%, rgba(8, 8, 8, 0.14) 100%),
    linear-gradient(90deg, rgba(8, 8, 8, 0.34) 0%, transparent 40%, transparent 100%);
  pointer-events: none;
}
.cta-generated-lizard-page .cta-strip h2,
.cta-generated-lizard-page .cta-strip p,
.cta-generated-lizard-page .cta-strip .actions {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-left: 58px;
  margin-right: auto;
  text-align: left;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}
.cta-generated-lizard-page .cta-strip h2 {
  margin-top: 74px;
  margin-bottom: 8px;
  font-size: 30px;
}
.cta-generated-lizard-page .cta-strip p {
  margin-bottom: 18px;
}
.cta-generated-lizard-page .cta-strip .actions {
  justify-content: flex-start;
}
.cta-generated-lizard-page .cta-strip .btn-primary {
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.44);
}
.cta-generated-image-only-page .cta-strip {
  max-width: 1120px;
  padding: 0;
  overflow: hidden;
  background: #080808;
}
.cta-generated-image-only-page .cta-strip img {
  width: 100%;
  height: auto;
}
.cta-generated-edge-page .cta-strip {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  overflow: hidden;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background: #080808;
}
.cta-generated-edge-page .cta-strip img {
  width: 100%;
  height: auto;
}
.cta-generated-flush-edge-page main > section:has(.cta-strip) {
  margin: 0;
  padding: 0;
}
.cta-generated-flush-edge-page .cta-strip {
  position: relative;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background: #080808;
  box-shadow: none;
}
.cta-generated-flush-edge-page .cta-strip img {
  width: 100%;
  height: auto;
}
.launch-ref-note {
  width: min(100% - 40px, 680px);
  margin: 0 auto 18px;
  padding: 10px 14px;
  border: 1px solid rgba(62, 166, 255, 0.35);
  border-radius: 999px;
  background: rgba(62, 166, 255, 0.08);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}
.launch-cta-panel {
  position: absolute;
  left: 50%;
  bottom: clamp(24px, 6vw, 72px);
  transform: translateX(-50%);
  width: min(100% - 32px, 620px);
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(12px);
  text-align: center;
}
.launch-cta-panel h2 {
  margin-bottom: 8px;
  font-size: 32px;
}
.launch-cta-panel p {
  max-width: 440px;
  margin: 0 auto 16px;
  color: var(--text-secondary);
  font-size: 16px;
}
.launch-cta-panel .example-video-link {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.4;
}
.launch-cta-panel .example-video-link a {
  color: var(--accent);
  font-weight: 700;
}
@media (min-width: 769px) {
  .bottom-left-high-preview-page .launch-cta-panel {
    left: 28%;
    bottom: clamp(130px, 15vw, 220px);
  }
  .bottom-left-higher-preview-page .launch-cta-panel {
    left: 24%;
    bottom: clamp(260px, 26vw, 360px);
    width: min(100% - 32px, 560px);
  }
  .bottom-far-left-high-preview-page .launch-cta-panel {
    top: clamp(120px, 13vw, 210px);
    bottom: auto;
    left: clamp(42px, 6vw, 120px);
    transform: none;
    width: min(410px, 100% - 84px);
    padding: 18px 20px;
    text-align: left;
  }
  .bottom-far-left-high-preview-page .launch-cta-panel h2 {
    font-size: 26px;
  }
  .bottom-far-left-high-preview-page .launch-cta-panel p {
    margin-left: 0;
    margin-right: 0;
    font-size: 14px;
  }
  .bottom-far-left-high-preview-page .launch-cta-panel .actions {
    justify-content: flex-start;
  }
  .bottom-far-left-high-preview-page .launch-cta-panel .btn-lg {
    min-height: 44px;
    padding: 10px 16px;
  }
  .bottom-example-card-preview-page .launch-cta-panel {
    left: clamp(42px, 6vw, 120px);
    bottom: clamp(130px, 14vw, 210px);
    transform: none;
  }
  .bottom-example-card-preview-page .example-video-card {
    position: absolute;
    top: clamp(155px, 16vw, 260px);
    right: clamp(90px, 12vw, 230px);
    width: min(360px, 100% - 64px);
    padding: 18px 18px 16px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px;
    background: rgba(8,8,8,0.78);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.32);
  }
  .bottom-example-card-preview-page .example-kicker {
    margin-bottom: 6px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
  }
  .bottom-example-card-preview-page .example-title {
    display: block;
    margin-bottom: 4px;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.18;
  }
  .bottom-example-card-preview-page .example-source {
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 13px;
  }
  .bottom-example-card-preview-page .example-copy-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
  }
  .bottom-example-card-preview-page .example-copy-row code {
    overflow: hidden;
    padding: 9px 10px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    color: var(--text-secondary);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .bottom-example-card-preview-page .copy-example-btn {
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid var(--accent);
    border-radius: 8px;
    background: rgba(62,166,255,0.16);
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
  }
  /* 29may: lift CTA into the calm dark upper-left night sky, clear of the
     bright baked-in sign (right) and wordmark (bottom-centre). */
  .bottom-cta-calm-preview-page .launch-cta-panel {
    top: clamp(34px, 5vw, 82px);
    bottom: auto;
    left: clamp(40px, 5vw, 96px);
    transform: none;
    width: min(404px, 100% - 80px);
    padding: 22px 24px;
    text-align: left;
    background: rgba(8,8,8,0.72);
  }
  .bottom-cta-calm-preview-page .launch-cta-panel p {
    margin-left: 0;
    margin-right: 0;
  }
  .bottom-cta-calm-preview-page .launch-cta-panel .actions {
    justify-content: flex-start;
  }
  /* 29may example-copy-v2: separate inviting example card in the calm
     lower-left, with a one-tap full-width copy button. Sits clear of the
     bright sign (right) and centre wordmark. */
  .bottom-example-copy-v2-preview-page .example-copy-card {
    position: absolute;
    left: clamp(40px, 5vw, 96px);
    bottom: clamp(28px, 4vw, 66px);
    width: min(338px, 100% - 80px);
    padding: 18px 20px 18px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 14px;
    background: rgba(8,8,8,0.80);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.34);
    text-align: left;
  }
  .bottom-example-copy-v2-preview-page .example-copy-kicker {
    margin: 0 0 6px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .bottom-example-copy-v2-preview-page .example-copy-title {
    margin: 0 0 4px;
    color: var(--text-primary);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
  }
  .bottom-example-copy-v2-preview-page .example-copy-source {
    margin: 0 0 14px;
    color: var(--text-secondary);
    font-size: 13px;
  }
  .bottom-example-copy-v2-preview-page .example-copy-btn {
    display: block;
    width: 100%;
    min-height: 44px;
    padding: 11px 14px;
    border: 0;
    border-radius: 10px;
    background: var(--accent);
    color: #06121f;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
  }
  .bottom-example-copy-v2-preview-page .example-copy-watch {
    display: inline-block;
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
  }
  /* 30may bottom-v3: one focused CTA panel, nudged lower + right but kept over
     the dark sky (bright sign/wordmark live to the right). The example sample is
     folded into a quiet inline copy-link inside the panel — no competing card. */
  .bottom-v3-30may-page .launch-cta-panel {
    top: clamp(116px, 12vw, 208px);
    bottom: auto;
    left: clamp(72px, 8vw, 150px);
    transform: none;
    width: min(412px, 100% - 80px);
    padding: 24px 26px;
    text-align: left;
    background: rgba(8,8,8,0.74);
  }
  .bottom-v3-30may-page .launch-cta-panel p {
    margin-left: 0;
    margin-right: 0;
  }
  .bottom-v3-30may-page .launch-cta-panel .actions {
    justify-content: flex-start;
  }
  .bottom-v3-30may-page .cta-sample-note {
    margin: 16px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted);
  }
  .bottom-v3-30may-page .cta-sample-copy {
    padding: 0;
    border: 0;
    background: none;
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
}

/* 761–1023px: the flush 16:9 hero is too short here for the overlay to clear
   the baked-in wordmark/lizard, so stack the panel below the image (as on
   phones) rather than float it over the artwork. The desktop overlay resumes
   at >=1024px, where the image has the headroom it was tuned for. */
@media (min-width: 761px) and (max-width: 1023px) {
  .bottom-v3-30may-page .launch-cta-panel {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: min(560px, 100% - 48px);
    margin: 22px auto 30px;
    padding: 26px 30px;
    text-align: center;
    background: rgba(8, 8, 8, 0.74);
  }
  .bottom-v3-30may-page .launch-cta-panel p {
    margin-left: auto;
    margin-right: auto;
  }
  .bottom-v3-30may-page .launch-cta-panel .actions {
    justify-content: center;
  }
  .bottom-v3-30may-page .cta-sample-note {
    margin: 18px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted);
  }
  .bottom-v3-30may-page .cta-sample-copy {
    padding: 0;
    border: 0;
    background: none;
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
}
.cta-generated-flush-edge-page .foot {
  margin-top: 0;
}
.top-image-hide-bottom-page .hero-top-strip .lizard-strip-edge {
  height: auto;
}
.top-image-hide-bottom-page .hero-top-strip .lizard-strip-edge img {
  height: auto;
  object-fit: contain;
}
.old-crop-preview-page .hero-top-strip .lizard-strip-edge {
  height: clamp(320px, 44vw, 520px);
}
.old-crop-preview-page .hero-top-strip .lizard-strip-edge img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-spacing-tight-preview-page .hero-top-strip .lizard-strip-edge {
  margin-bottom: 34px;
}
.hero-spacing-tighter-preview-page .hero-top-strip .lizard-strip-edge {
  margin-bottom: 24px;
}
@media (min-width: 769px) {
  .hero-top-gap-tighter-preview-page .hero-top-strip {
    margin-top: -18px;
  }
}
.spacing-tight-page main > .section:first-of-type {
  padding-bottom: 48px !important;
}
.spacing-tight-page .step-section {
  padding-top: 48px;
  padding-bottom: 48px;
}
.spacing-tight-page .step-section + .step-section {
  padding-top: 48px;
}
.spacing-tight-page #repurpose + .section {
  padding-top: 48px;
  padding-bottom: 34px;
}
.spacing-tight-page #repurpose + .section + section {
  margin: 0;
  padding: 0;
}
.spacing-tight-page #repurpose + .section + section .cta-strip {
  margin-top: 0;
  margin-bottom: 0;
}
.spacing-tight-page .foot {
  margin-top: 0;
}
.spacing-fixed-page main > .hero + .section {
  padding-bottom: 48px !important;
}
.spacing-fixed-page .step-section {
  padding-top: 48px;
  padding-bottom: 48px;
}
.spacing-fixed-page .step-section + .step-section {
  padding-top: 48px;
}
.spacing-fixed-page #repurpose {
  padding-bottom: 36px;
}
.spacing-fixed-page #repurpose + .section {
  padding-top: 36px;
  padding-bottom: 24px;
}
.spacing-fixed-page #repurpose + .section + section,
.spacing-fixed-page #repurpose + .section + section .cta-strip {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.spacing-fixed-page .foot {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 12px;
}
.footer-balanced-page .foot {
  padding-top: 18px;
  padding-bottom: 18px;
}
.footer-compact-page .foot {
  min-height: 54px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.hero-lizard-bg {
  position: relative;
  overflow: hidden;
  padding-top: 124px;
  padding-bottom: 92px;
  isolation: isolate;
}
.hero-lizard-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--lizard-art) center 38% / cover no-repeat;
}
.hero-lizard-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0.2) 0%, rgba(15, 15, 15, 0.86) 72%, #0f0f0f 100%),
    radial-gradient(circle at 50% 44%, rgba(15, 15, 15, 0.24), rgba(15, 15, 15, 0.76) 62%);
}
.hero-lizard-bg .eyebrow,
.hero-lizard-bg p,
.hero-lizard-bg .note {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

.hero-side-art {
  max-width: 1240px;
  padding-top: 64px;
  display: grid;
  grid-template-columns: minmax(440px, 0.9fr) minmax(480px, 1.1fr);
  gap: 44px;
  align-items: center;
  text-align: left;
}
.hero-side-art h1,
.hero-side-art p {
  margin-left: 0;
  margin-right: 0;
}
.hero-side-art .actions {
  justify-content: flex-start;
}
.hero-side-visual {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #080808;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.44);
}
.hero-side-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.hero-fade-under {
  position: relative;
  overflow: hidden;
  padding-bottom: 190px;
  isolation: isolate;
}
.hero-fade-under::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: -1;
  width: min(1080px, calc(100vw - 80px));
  height: 260px;
  transform: translateX(-50%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border: 1px solid var(--border);
  border-bottom: 0;
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0.08), #0f0f0f 94%),
    var(--lizard-art) center 42% / cover no-repeat;
  opacity: 0.88;
  box-shadow: 0 -18px 70px rgba(0, 0, 0, 0.34);
}

/* Screenshot frames */
.shot {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #111;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}
.shot img { width: 100%; }
.hero-shot { width: min(1440px, calc(100vw - 80px)); margin: 40px auto 0; }
.shot-summary-crop img {
  max-width: none;
  width: 100%;
}

/* Step / journey sections */
.step-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 96px 40px;
}
.step-section + .step-section { padding-top: 0; }
.step-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 20px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--accent);
  color: #050505;
  font-size: 14px;
  font-weight: 800;
}
.step-title {
  max-width: 760px;
  margin: 0 auto 14px;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
}
.step-lede {
  max-width: 640px;
  margin: 0 auto 36px;
  color: var(--text-secondary);
  font-size: 18px;
  text-align: center;
}

/* Alternating split layout */
.split {
  max-width: 1240px;
  margin: 0 auto;
  padding: 88px 40px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 56px;
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
.split-copy .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-card);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.split-copy h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.split-copy p {
  color: var(--text-secondary);
  font-size: 17px;
  margin-bottom: 18px;
}
.split-copy ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}
.split-copy li {
  display: flex;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 15px;
}
.split-copy li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
}

/* Generic section */
.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 88px 40px;
}
.section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section .sub {
  text-align: center;
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Feature grid (showcase) */
.grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  transition: transform 0.2s, border-color 0.2s;
}
.feature-card:hover { transform: translateY(-3px); border-color: #3a3a3a; }
.feature-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a0a0a;
}
.feature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}
.feature-card-img-summary img {
  object-position: top right;
  transform: scale(1.8);
  transform-origin: top right;
}
.feature-card-body { padding: 22px 24px 26px; }
.feature-card .eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.feature-card h3 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 6px;
}
.feature-card p { color: var(--text-secondary); font-size: 15px; }
.feature-card .feature-card-cta {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}

/* Before / after panels */
.pain-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto 30px;
}
.pain-card {
  padding: 28px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.pain-card.bad { border-color: #4a2222; background: #1c1414; }
.pain-card.good { border-color: #1f4a2c; background: #131c16; }
.pain-card h3 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.pain-card.bad h3 { color: #ef6b6b; }
.pain-card.good h3 { color: #6cd897; }
.pain-card ul { list-style: none; display: grid; gap: 10px; }
.pain-card li {
  display: flex;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 15px;
}
.pain-card.bad li::before { content: "✕"; color: #ef6b6b; font-weight: 800; }
.pain-card.good li::before { content: "✓"; color: #6cd897; font-weight: 800; }

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}
.price-card {
  padding: 28px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}
.price-card h3 { font-size: 18px; margin-bottom: 8px; }
.price-card.featured { border-color: var(--accent); position: relative; }
.price-card.featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -11px;
  left: 26px;
  padding: 3px 10px;
  background: var(--accent);
  color: #050505;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 999px;
}
.price {
  font-size: 36px;
  line-height: 1;
  font-weight: 800;
  margin: 12px 0 18px;
}
.price span { color: var(--text-muted); font-size: 16px; font-weight: 400; }
.price-card ul { list-style: none; display: grid; gap: 8px; }
.price-card li { color: var(--text-secondary); font-size: 14px; }
.price-card li::before { content: "✓ "; color: var(--green); font-weight: 800; }

/* CTA strip */
.cta-strip {
  margin: 24px auto 88px;
  max-width: 960px;
  padding: 48px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #1c1c1c 0%, #151515 100%);
  text-align: center;
}
.cta-strip h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.cta-strip p {
  color: var(--text-secondary);
  margin-bottom: 22px;
  font-size: 17px;
}

/* Footer */
.foot {
  max-width: 1240px;
  margin: 0 auto;
  padding: 36px 40px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 13px;
}
.foot nav { display: flex; gap: 20px; }
.foot a:hover { color: var(--text-secondary); }

/* Responsive */
@media (max-width: 960px) {
  .header { padding: 14px 20px; }
  .nav .btn:not(.btn-primary) { display: none; }
  .hero { padding: 56px 20px 32px; }
  .hero h1 { font-size: 34px; }
  .hero p { font-size: 17px; }
  .hero-shot { width: calc(100vw - 28px); margin-top: 28px; }
  .step-section, .section { padding: 64px 20px; }
  .step-title { font-size: 28px; }
  .step-lede { font-size: 16px; }
  .split {
    padding: 56px 20px;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .split.reverse > :first-child { order: 0; }
  .split-copy h2 { font-size: 26px; }
  .grid-2x2 { grid-template-columns: 1fr; }
  .pain-row { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .cta-strip { padding: 36px 24px; margin: 24px 20px 56px; }
  .cta-strip h2 { font-size: 26px; }
  .foot { flex-direction: column; gap: 14px; padding: 24px 20px; }
}

.footer-compact-fixed-page .foot {
  min-height: 48px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.screenshots-edge-page main > .hero + .section {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.screenshots-edge-page main > .hero + .section > h2,
.screenshots-edge-page main > .hero + .section > .sub {
  padding-left: 40px;
  padding-right: 40px;
}
.screenshots-edge-page .grid-2x2 {
  gap: 20px;
}
.screenshots-edge-page .feature-card {
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}
.screenshots-edge-page .feature-card-img {
  border-radius: 0;
}
.screenshots-edge-page .step-section {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.screenshots-edge-page .step-header,
.screenshots-edge-page .step-title,
.screenshots-edge-page .step-lede {
  padding-left: 40px;
  padding-right: 40px;
}
.screenshots-edge-page .step-section > .shot {
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}

.hoverable-page .btn,
.hoverable-page .feature-card,
.hoverable-page .price-card,
.hoverable-page .shot,
.hoverable-page .cta-strip,
.hoverable-page .foot a {
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease,
    filter 0.18s ease;
}
.hoverable-page .btn:hover,
.hoverable-page .btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(62, 166, 255, 0.8);
  box-shadow: 0 0 0 3px rgba(62, 166, 255, 0.14), 0 14px 34px rgba(0, 0, 0, 0.28);
  outline: none;
}
.hoverable-page .btn-primary:hover,
.hoverable-page .btn-primary:focus-visible {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}
.hoverable-page .feature-card:hover,
.hoverable-page .feature-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(62, 166, 255, 0.75);
  box-shadow: 0 0 0 1px rgba(62, 166, 255, 0.2), 0 22px 58px rgba(0, 0, 0, 0.42);
  outline: none;
}
.hoverable-page .feature-card:hover .feature-card-img img,
.hoverable-page .feature-card:focus-visible .feature-card-img img {
  filter: brightness(1.13) saturate(1.08);
}
.hoverable-page .feature-card:hover h3,
.hoverable-page .feature-card:focus-visible h3 {
  color: #ffffff;
}
.hoverable-page .feature-card:hover .feature-card-cta,
.hoverable-page .feature-card:focus-visible .feature-card-cta {
  color: var(--accent-hover);
}
.hoverable-page .price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(62, 166, 255, 0.55);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}
.hoverable-page .step-section > .shot:hover {
  border-color: rgba(62, 166, 255, 0.5);
  box-shadow: 0 0 0 1px rgba(62, 166, 255, 0.14), 0 28px 84px rgba(0, 0, 0, 0.54);
}
.hoverable-page .cta-strip:hover {
  filter: brightness(1.06);
}
.hoverable-page .foot a:hover,
.hoverable-page .foot a:focus-visible {
  color: var(--accent-hover);
  outline: none;
}
.hover-border-inset-page main > .hero + .section {
  padding-left: 6px;
  padding-right: 6px;
}
.hover-border-inset-page .step-section {
  padding-left: 6px;
  padding-right: 6px;
}
.hover-border-inset-page .feature-card,
.hover-border-inset-page .feature-card-img,
.hover-border-inset-page .step-section > .shot {
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.hover-border-inset-page .feature-card:hover,
.hover-border-inset-page .feature-card:focus-visible,
.hover-border-inset-page .step-section > .shot:hover {
  border-color: rgba(62, 166, 255, 0.85);
}

@media (max-width: 760px) {
  .mobile-friendly-page .header {
    position: sticky;
    padding: 10px 14px;
    gap: 10px;
  }
  .mobile-friendly-page .logo {
    font-size: 15px;
    gap: 8px;
  }
  .mobile-friendly-page .logo svg {
    width: 24px;
    height: 24px;
  }
  .mobile-friendly-page .nav {
    gap: 6px;
  }
  .mobile-friendly-page .nav .btn-primary {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 13px;
  }
  .mobile-friendly-page .hero-top-strip {
    padding-bottom: 34px;
  }
  .mobile-friendly-page .hero-top-strip .lizard-strip-edge {
    height: 58vw;
    max-height: 360px;
    min-height: 230px;
  }
  .mobile-friendly-page .hero-top-strip .lizard-strip-edge img {
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .mobile-friendly-page .hero h1 {
    max-width: 360px;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 34px;
    line-height: 1.08;
  }
  .mobile-friendly-page .hero p {
    max-width: 360px;
    padding-left: 22px;
    padding-right: 22px;
    font-size: 16px;
    line-height: 1.48;
  }
  .mobile-friendly-page .actions {
    padding-left: 18px;
    padding-right: 18px;
  }
  .mobile-friendly-page .actions .btn {
    width: 100%;
    max-width: 320px;
  }
  .mobile-friendly-page .note {
    padding-left: 22px;
    padding-right: 22px;
  }
  .mobile-friendly-page main > .hero + .section {
    padding-top: 46px !important;
    padding-bottom: 32px !important;
    padding-left: 4px;
    padding-right: 4px;
  }
  .mobile-friendly-page main > .hero + .section > h2,
  .mobile-friendly-page main > .hero + .section > .sub {
    padding-left: 18px;
    padding-right: 18px;
  }
  .mobile-friendly-page .section h2,
  .mobile-friendly-page .step-title {
    font-size: 26px;
    line-height: 1.15;
  }
  .mobile-friendly-page .section .sub,
  .mobile-friendly-page .step-lede {
    font-size: 15px;
    line-height: 1.5;
  }
  .mobile-friendly-page .grid-2x2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .mobile-friendly-page .feature-card {
    border-radius: 10px;
  }
  .mobile-friendly-page .feature-card-body {
    padding: 16px 18px 18px;
  }
  .mobile-friendly-page .feature-card h3 {
    font-size: 19px;
  }
  .mobile-friendly-page .feature-card p {
    font-size: 14px;
  }
  .mobile-friendly-page .step-section {
    padding: 34px 4px;
  }
  .mobile-friendly-page .step-section + .step-section {
    padding-top: 34px;
  }
  .mobile-friendly-page .step-header,
  .mobile-friendly-page .step-title,
  .mobile-friendly-page .step-lede {
    padding-left: 18px;
    padding-right: 18px;
  }
  .mobile-friendly-page .step-lede {
    margin-bottom: 22px;
  }
  .mobile-friendly-page .step-section > .shot {
    border-radius: 10px;
  }
  .mobile-friendly-page #repurpose + .section {
    padding: 38px 18px 24px;
  }
  .mobile-friendly-page .pricing {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .mobile-friendly-page .price-card {
    padding: 22px 20px;
  }
  .mobile-friendly-page #repurpose + .section + section {
    padding: 0;
  }
  .mobile-friendly-page .cta-strip img {
    min-height: 260px;
    object-fit: cover;
    object-position: center;
  }
  .mobile-friendly-page .foot {
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
    min-height: 0;
    text-align: center;
  }
  .mobile-friendly-page .foot nav {
    gap: 16px;
  }
}

.mobile-jumpbar {
  display: none;
}

@media (max-width: 760px) {
  .responsive-v24-page .header {
    position: sticky;
    padding: 10px 12px;
    gap: 8px;
  }
  .responsive-v24-page .logo {
    min-width: 0;
    gap: 8px;
    font-size: 15px;
  }
  .responsive-v24-page .logo svg {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
  }
  .responsive-v24-page .logo span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .responsive-v24-page .nav {
    flex: 0 0 auto;
    gap: 0;
  }
  .responsive-v24-page .nav .btn-ghost {
    display: none;
  }
  .responsive-v24-page .nav .btn-primary {
    min-height: 36px;
    padding: 8px 11px;
    border-radius: 7px;
    font-size: 13px;
  }
  .responsive-v24-page .hero-top-strip {
    padding-bottom: 28px;
  }
  .responsive-v24-page .hero-top-strip .lizard-strip-edge {
    height: clamp(210px, 54vw, 320px);
    margin-bottom: 30px;
    overflow: hidden;
  }
  .responsive-v24-page .hero-top-strip .lizard-strip-edge img {
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .responsive-v24-page .hero h1 {
    max-width: 360px;
    padding-left: 18px;
    padding-right: 18px;
    margin-bottom: 16px;
    font-size: 36px;
    line-height: 1.04;
  }
  .responsive-v24-page .hero p {
    max-width: 360px;
    padding-left: 22px;
    padding-right: 22px;
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.45;
  }
  .responsive-v24-page .actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100% - 36px, 320px);
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
  }
  .responsive-v24-page .actions .btn {
    width: 100%;
    min-height: 46px;
  }
  .responsive-v24-page .note {
    padding-left: 18px;
    padding-right: 18px;
    margin-top: 12px;
    font-size: 12px;
  }
  .responsive-v24-page main > .hero + .section {
    padding: 34px 0 20px !important;
  }
  .responsive-v24-page main > .hero + .section > h2,
  .responsive-v24-page main > .hero + .section > .sub {
    padding-left: 18px;
    padding-right: 18px;
  }
  .responsive-v24-page .section h2,
  .responsive-v24-page .step-title {
    font-size: 27px;
    line-height: 1.12;
  }
  .responsive-v24-page .section .sub,
  .responsive-v24-page .step-lede {
    font-size: 15px;
    line-height: 1.48;
  }
  .responsive-v24-page .mobile-jumpbar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 0 12px;
    margin: 18px 0 14px;
  }
  .responsive-v24-page .mobile-jumpbar a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-card);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 800;
  }
  .responsive-v24-page .grid-2x2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 8px;
  }
  .responsive-v24-page .feature-card {
    display: grid;
    grid-template-columns: 102px 1fr;
    min-height: 118px;
    border-radius: 10px;
    overflow: hidden;
  }
  .responsive-v24-page .feature-card-img {
    height: 100%;
    min-height: 118px;
    border-bottom: 0;
    border-right: 1px solid var(--border);
  }
  .responsive-v24-page .feature-card-img img {
    height: 100%;
    object-fit: cover;
  }
  .responsive-v24-page .feature-card-body {
    padding: 12px 13px;
  }
  .responsive-v24-page .feature-card .eyebrow {
    margin-bottom: 4px;
    font-size: 10px;
  }
  .responsive-v24-page .feature-card h3 {
    margin-bottom: 3px;
    font-size: 16px;
    line-height: 1.18;
  }
  .responsive-v24-page .feature-card p {
    margin-bottom: 6px;
    font-size: 12px;
    line-height: 1.35;
  }
  .responsive-v24-page .feature-card-cta {
    font-size: 12px;
  }
  .responsive-v24-page .step-section {
    padding: 34px 0 24px;
  }
  .responsive-v24-page .step-section + .step-section {
    padding-top: 34px;
  }
  .responsive-v24-page .step-header,
  .responsive-v24-page .step-title,
  .responsive-v24-page .step-lede {
    padding-left: 18px;
    padding-right: 18px;
  }
  .responsive-v24-page .step-lede {
    margin-bottom: 20px;
  }
  .responsive-v24-page .step-section > .shot {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }
  .responsive-v24-page .step-section > .shot img {
    width: 100%;
  }
  .responsive-v24-page #repurpose + .section {
    padding: 34px 14px 24px;
  }
  .responsive-v24-page .pricing {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }
  .responsive-v24-page .price-card {
    padding: 18px 18px;
    border-radius: 10px;
  }
  .responsive-v24-page .price-card h3 {
    margin-bottom: 8px;
  }
  .responsive-v24-page .price {
    margin-bottom: 10px;
    font-size: 30px;
  }
  .responsive-v24-page .price-card li {
    padding: 4px 0;
    font-size: 14px;
  }
  .responsive-v24-page #repurpose + .section + section {
    padding: 0;
  }
  .responsive-v24-page .cta-strip img {
    min-height: 260px;
    object-fit: cover;
    object-position: center;
  }
  .responsive-v24-page .foot {
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
    min-height: 0;
    text-align: center;
  }
  .responsive-v24-page .foot nav {
    gap: 16px;
  }
}

.mobile-v25-jumpbar {
  display: none;
}

@media (max-width: 760px) {
  .mobile-v25-page .header {
    position: sticky;
    padding: 10px 12px;
    gap: 10px;
  }
  .mobile-v25-page .logo {
    min-width: 0;
    gap: 8px;
    font-size: 15px;
  }
  .mobile-v25-page .logo svg {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
  }
  .mobile-v25-page .logo span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .mobile-v25-page .nav {
    flex: 0 0 auto;
  }
  .mobile-v25-page .nav .btn-ghost {
    display: none;
  }
  .mobile-v25-page .nav .btn-primary {
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
  }
  .mobile-v25-page .hero-top-strip {
    padding-bottom: 30px;
  }
  .mobile-v25-page .hero-top-strip .lizard-strip-edge {
    height: clamp(215px, 56vw, 330px);
    margin-bottom: 32px;
    overflow: hidden;
  }
  .mobile-v25-page .hero-top-strip .lizard-strip-edge img {
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .mobile-v25-page .hero h1 {
    max-width: 360px;
    padding-left: 18px;
    padding-right: 18px;
    margin-bottom: 16px;
    font-size: 35px;
    line-height: 1.06;
  }
  .mobile-v25-page .hero p {
    max-width: 360px;
    padding-left: 22px;
    padding-right: 22px;
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.45;
  }
  .mobile-v25-page .actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100% - 36px, 320px);
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
  }
  .mobile-v25-page .actions .btn {
    width: 100%;
    min-height: 46px;
  }
  .mobile-v25-page .note {
    padding-left: 18px;
    padding-right: 18px;
    margin-top: 12px;
    font-size: 12px;
  }
  .mobile-v25-page main > .hero + .section {
    padding: 36px 14px 26px !important;
  }
  .mobile-v25-page main > .hero + .section > h2,
  .mobile-v25-page main > .hero + .section > .sub {
    padding-left: 4px;
    padding-right: 4px;
  }
  .mobile-v25-page .section h2,
  .mobile-v25-page .step-title {
    font-size: 27px;
    line-height: 1.12;
  }
  .mobile-v25-page .section .sub,
  .mobile-v25-page .step-lede {
    font-size: 15px;
    line-height: 1.48;
  }
  .mobile-v25-page .mobile-v25-jumpbar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin: 18px 0 14px;
  }
  .mobile-v25-page .mobile-v25-jumpbar a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-card);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 800;
  }
  .mobile-v25-page .grid-2x2 {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .mobile-v25-page .feature-card {
    display: block;
    min-height: 0;
    border-radius: 10px;
    overflow: hidden;
  }
  .mobile-v25-page .feature-card-img {
    display: none;
  }
  .mobile-v25-page .feature-card-body {
    padding: 15px 16px 16px;
  }
  .mobile-v25-page .feature-card .eyebrow {
    margin-bottom: 4px;
    font-size: 10px;
  }
  .mobile-v25-page .feature-card h3 {
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 1.18;
  }
  .mobile-v25-page .feature-card p {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.4;
  }
  .mobile-v25-page .feature-card-cta {
    font-size: 13px;
  }
  .mobile-v25-page .step-section {
    padding: 38px 0 28px;
  }
  .mobile-v25-page .step-section + .step-section {
    padding-top: 38px;
  }
  .mobile-v25-page .step-header,
  .mobile-v25-page .step-title,
  .mobile-v25-page .step-lede {
    padding-left: 18px;
    padding-right: 18px;
  }
  .mobile-v25-page .step-lede {
    margin-bottom: 20px;
  }
  .mobile-v25-page .step-section > .shot {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }
  .mobile-v25-page .step-section > .shot img {
    width: 100%;
  }
  .mobile-v25-page #repurpose + .section {
    padding: 36px 16px 26px;
  }
  .mobile-v25-page .pricing {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }
  .mobile-v25-page .price-card {
    padding: 18px 18px;
    border-radius: 10px;
  }
  .mobile-v25-page .price {
    margin-bottom: 10px;
    font-size: 30px;
  }
  .mobile-v25-page .price-card li {
    padding: 4px 0;
    font-size: 14px;
  }
  .mobile-v25-page #repurpose + .section + section {
    padding: 0;
  }
  .mobile-v25-page .cta-strip img {
    min-height: 260px;
    object-fit: cover;
    object-position: center;
  }
  .mobile-v25-page .foot {
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
    min-height: 0;
    text-align: center;
  }
  .mobile-v25-page .foot nav {
    gap: 16px;
  }
}

@media (max-width: 760px) {
  .mobile-v26-page .header {
    position: sticky;
    padding: 10px 12px;
    gap: 10px;
  }
  .mobile-v26-page .logo {
    min-width: 0;
    gap: 8px;
    font-size: 15px;
  }
  .mobile-v26-page .logo svg {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
  }
  .mobile-v26-page .logo span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .mobile-v26-page .nav {
    flex: 0 0 auto;
  }
  .mobile-v26-page .nav .btn-ghost {
    display: none;
  }
  .mobile-v26-page .nav .btn-primary {
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
  }
  .mobile-v26-page .hero-top-strip {
    padding-bottom: 26px;
  }
  .mobile-v26-page .hero-top-strip .lizard-strip-edge {
    height: auto;
    margin-bottom: 22px;
    overflow: hidden;
  }
  .mobile-v26-page .hero-top-strip .lizard-strip-edge img {
    height: auto;
    object-fit: contain;
  }
  .mobile-v26-page.old-crop-preview-page .hero-top-strip .lizard-strip-edge {
    height: clamp(145px, 43vw, 220px);
  }
  .mobile-v26-page.old-crop-preview-page .hero-top-strip .lizard-strip-edge img {
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .mobile-v26-page .hero h1 {
    max-width: 360px;
    padding-left: 18px;
    padding-right: 18px;
    margin-bottom: 14px;
    font-size: 32px;
    line-height: 1.06;
  }
  .mobile-v26-page .hero p {
    max-width: 360px;
    padding-left: 22px;
    padding-right: 22px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.45;
  }
  .mobile-v26-page .actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100% - 36px, 320px);
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
  }
  .mobile-v26-page .actions .btn {
    width: 100%;
    min-height: 46px;
  }
  .mobile-v26-page .note {
    padding-left: 18px;
    padding-right: 18px;
    margin-top: 10px;
    font-size: 12px;
  }
  .mobile-v26-page .launch-ref-note {
    width: min(100% - 28px, 360px);
    margin-bottom: 14px;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.35;
  }
  .mobile-v26-page main > .hero + .section {
    padding: 36px 14px 26px !important;
  }
  .mobile-v26-page main > .hero + .section > h2,
  .mobile-v26-page main > .hero + .section > .sub {
    padding-left: 4px;
    padding-right: 4px;
  }
  .mobile-v26-page .section h2,
  .mobile-v26-page .step-title {
    font-size: 27px;
    line-height: 1.12;
  }
  .mobile-v26-page .section .sub,
  .mobile-v26-page .step-lede {
    font-size: 15px;
    line-height: 1.48;
  }
  .mobile-v26-page .mobile-v25-jumpbar,
  .mobile-v26-page .mobile-v26-jumpbar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin: 18px 0 14px;
  }
  .mobile-v26-page .mobile-v25-jumpbar a,
  .mobile-v26-page .mobile-v26-jumpbar a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-card);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 800;
  }
  .mobile-v26-page .grid-2x2 {
    /* Phones already get the four deep-dive sections below (full, legible
       screenshots). The 2x2 thumbnail grid duplicated those same shots, so
       hide it on phones. Desktop (>=769px) is unaffected. */
    display: none;
  }
  .mobile-v26-page .feature-card {
    display: block;
    min-height: 0;
    border-radius: 10px;
    overflow: hidden;
  }
  .mobile-v26-page .feature-card-img {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0a0a0a;
  }
  .mobile-v26-page .feature-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
  }
  .mobile-v26-page .feature-card-body {
    padding: 15px 16px 16px;
  }
  .mobile-v26-page .feature-card .eyebrow {
    margin-bottom: 4px;
    font-size: 10px;
  }
  .mobile-v26-page .feature-card h3 {
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 1.18;
  }
  .mobile-v26-page .feature-card p {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.4;
  }
  .mobile-v26-page .feature-card-cta {
    font-size: 13px;
  }
  .mobile-v26-page .step-section {
    padding: 38px 0 28px;
  }
  .mobile-v26-page .step-section + .step-section {
    padding-top: 38px;
  }
  .mobile-v26-page .step-header,
  .mobile-v26-page .step-title,
  .mobile-v26-page .step-lede {
    padding-left: 18px;
    padding-right: 18px;
  }
  .mobile-v26-page .step-lede {
    margin-bottom: 20px;
  }
  .mobile-v26-page .step-section > .shot {
    margin-left: 8px;
    margin-right: 8px;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
  }
  .mobile-v26-page .step-section > .shot img {
    width: 100%;
  }
  .mobile-v26-page #repurpose + .section {
    padding: 36px 16px 26px;
  }
  .mobile-v26-page .pricing {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }
  .mobile-v26-page .price-card {
    padding: 18px 18px;
    border-radius: 10px;
  }
  .mobile-v26-page .price {
    margin-bottom: 10px;
    font-size: 30px;
  }
  .mobile-v26-page .price-card li {
    padding: 4px 0;
    font-size: 14px;
  }
  .mobile-v26-page #repurpose + .section + section {
    padding: 0;
  }
  .mobile-v26-page .cta-strip img {
    /* Original artwork sizing — leave the lizard image alone. */
    min-height: 260px;
    object-fit: cover;
    object-position: center;
  }
  .mobile-v26-page .launch-cta-panel {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: auto;
    /* Panel sits below the lizard image (no overlay), kept genuinely compact on
       phones: smaller heading + sub and shorter buttons shrink the box, and a
       clear gap under the buttons separates the sample-link line from the
       "View Pricing" button. */
    margin: 16px 16px 22px;
    padding: 16px 16px 18px;
  }
  .mobile-v26-page .launch-cta-panel h2 {
    font-size: 17px;
    margin-bottom: 4px;
  }
  .mobile-v26-page .launch-cta-panel p {
    margin: 0 auto 14px;
    font-size: 12px;
    line-height: 1.4;
  }
  .mobile-v26-page .launch-cta-panel .actions {
    width: 100%;
    gap: 8px;
  }
  .mobile-v26-page .launch-cta-panel .btn-lg {
    min-height: 40px;
    padding: 8px 16px;
    font-size: 14px;
  }
  /* Note is a <p>, so it must out-specify ".launch-cta-panel p" (whose margin
     shorthand otherwise zeroes the top margin) to get a real gap under the
     buttons. */
  .mobile-v26-page .launch-cta-panel .cta-sample-note {
    margin: 22px 0 0;
    font-size: 12px;
  }
  .mobile-v26-page .foot {
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
    min-height: 0;
    text-align: center;
  }
  .mobile-v26-page .foot nav {
    gap: 16px;
  }
}
