:root {
  --paper: #f4efe4;
  --paper-2: #eee5d5;
  --paper-3: #e3d5bd;
  --ink: #0f0e0d;
  --ink-2: #2d251c;
  --muted: #6f6253;
  --faint: #9e8e7c;
  --rule: rgba(18, 16, 13, 0.16);
  --rule-strong: rgba(18, 16, 13, 0.32);
  --amber: #d4820a;
  --amber-dark: #9e5a05;
  --red: #b83a2e;
  --red-soft: rgba(184, 58, 46, 0.12);
  --blue: #536578;
  --white: #fffaf0;
  --mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --sans: Inter, "Segoe UI", system-ui, sans-serif;
  --serif: "DM Serif Display", Georgia, "Times New Roman", serif;
  --radius: 10px;
  --shadow: 0 30px 90px rgba(62, 44, 24, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 78% 8%, rgba(212, 130, 10, 0.14), transparent 24%),
    linear-gradient(180deg, var(--paper) 0%, #f7f1e7 44%, #f1e7d6 100%);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(18, 16, 13, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 16, 13, 0.018) 1px, transparent 1px);
  background-size: 42px 42px, 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.42), transparent 70%);
}

.paper-grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(18, 16, 13, 0.06) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 60%, rgba(18, 16, 13, 0.05) 0 1px, transparent 1px);
  background-size: 19px 17px, 23px 29px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.skip-link,
.sr-only {
  position: absolute;
}

.skip-link {
  left: 16px;
  top: 16px;
  z-index: 80;
  padding: 10px 12px;
  background: var(--ink);
  color: var(--white);
  border-radius: 4px;
  transform: translateY(-140%);
  transition: transform 140ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.sr-only {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  width: 100%;
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(22px, 2vw, 42px);
  min-height: 104px;
  padding: 0 clamp(42px, 3.2vw, 72px);
  border-bottom: 1px solid var(--rule);
  background: rgba(244, 239, 228, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand--lockup {
  gap: 0;
  line-height: 1;
}

.brand__lockup {
  display: block;
  width: clamp(198px, 15vw, 270px);
  height: auto;
}

.brand__mark {
  width: 54px;
  height: 54px;
  background: url("brand/logo-system/owlyvision-micro-mark.svg?v=20260426n") center / contain no-repeat;
}

.studio-nudge__mark {
  width: 38px;
  height: 38px;
  background: url("brand/logo-system/owlyvision-micro-mark.svg?v=20260426n") center / contain no-repeat;
}

.brand__copy {
  display: grid;
  gap: 0;
  line-height: 1.02;
}

.brand__copy span {
  font-size: clamp(1.72rem, 1.85vw, 2.2rem);
}

.brand__copy small {
  display: none;
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topbar__nav {
  justify-self: center;
  display: flex;
  gap: clamp(24px, 3vw, 58px);
  color: var(--ink-2);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.1vw, 1.32rem);
  font-weight: 650;
}

.topbar__nav a,
.topbar__secondary {
  position: relative;
}

.topbar__nav a::after,
.topbar__secondary::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.topbar__nav a.is-active::after,
.topbar__nav a:hover::after,
.topbar__secondary:hover::after {
  transform: scaleX(1);
}

.topbar__nav a.is-active {
  color: var(--red);
}

.topbar__secondary {
  padding: 16px 26px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  color: var(--ink-2);
  font-size: 1.05rem;
}

.topbar__cta,
.crit-form button,
.beta-form button,
.pricing-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(18, 16, 13, 0.18);
}

.topbar__cta {
  min-width: 150px;
  padding: 18px 22px;
  font-size: 1.04rem;
  white-space: nowrap;
}

.product-family-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.product-family-strip a,
.product-family-strip span {
  display: grid;
  gap: 4px;
  min-height: 70px;
  padding: 14px 16px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.5);
  color: var(--ink);
}

.product-family-strip a:hover,
.product-family-strip a:focus-visible {
  border-color: rgba(184, 58, 46, 0.45);
  background: rgba(255, 250, 240, 0.8);
}

.product-family-strip strong {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.05;
}

.product-family-strip small {
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(480px, 0.39fr) minmax(720px, 0.61fr);
  gap: clamp(24px, 2.3vw, 42px);
  align-items: start;
  min-height: clamp(760px, calc(100vh - 220px), 920px);
  padding: clamp(26px, 2.8vw, 54px) clamp(42px, 4.6vw, 90px) clamp(28px, 4vw, 58px);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 54px;
  background:
    radial-gradient(28px 18px at 20px 4px, transparent 18px, rgba(18, 16, 13, 0.08) 19px, transparent 20px) 0 10px / 74px 34px repeat-x,
    linear-gradient(180deg, transparent 0 32px, rgba(255, 250, 240, 0.52) 33px);
  opacity: 0.62;
}

.hero__copy {
  position: relative;
  z-index: 3;
  padding-top: 0;
}

.stamp,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 24px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.79rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.stamp {
  padding: 14px 18px;
  border: 1px solid var(--red);
  border-radius: 3px;
  transform: rotate(-1.8deg);
  background: rgba(255, 250, 240, 0.35);
  font-size: 0.86rem;
}

.hero h1,
.steps h2,
.section-copy h2,
.studio-bridge h2,
.beta h2 {
  margin: 0;
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(4.05rem, 4.8vw, 6.25rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.hero h1::after {
  content: "";
  display: block;
  width: min(460px, 68%);
  height: 5px;
  margin: 10px 0 0 auto;
  background: var(--red);
  transform: rotate(-1deg);
}

.hero__lead {
  max-width: 720px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.28vw, 1.38rem);
}

.crit-form {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  max-width: 720px;
  min-height: 70px;
  margin-top: 34px;
  border: 1px solid var(--rule-strong);
  border-radius: 9px;
  background: rgba(255, 250, 240, 0.66);
  box-shadow: 0 18px 60px rgba(68, 50, 28, 0.12), inset 0 1px 0 rgba(255,255,255,0.7);
  overflow: hidden;
}

.crit-form:focus-within {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(212, 130, 10, 0.14), 0 22px 70px rgba(68, 50, 28, 0.15);
}

.crit-form__status {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--red);
  font-size: 0.94rem;
  font-weight: 760;
}

.first-finding {
  display: grid;
  gap: 13px;
  max-width: 720px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(184, 58, 46, 0.28);
  border-radius: 9px;
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 16px 46px rgba(68, 50, 28, 0.1);
}

.first-finding[hidden] {
  display: none;
}

.first-finding__kicker {
  margin: 0;
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.first-finding h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.28rem, 2.1vw, 2rem);
  line-height: 1;
}

.first-finding p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.5;
}

.first-finding__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.first-finding__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
}

.first-finding__actions a + a {
  border-color: var(--rule-strong);
  background: transparent;
  color: var(--ink);
}

.hero__skip-link {
  display: inline-flex;
  margin-top: 13px;
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration-color: rgba(18, 16, 13, 0.35);
}

.crit-form__icon {
  position: relative;
  width: 58px;
  height: 70px;
}

.crit-form__icon::before,
.crit-form__icon::after {
  content: "";
  position: absolute;
  width: 17px;
  height: 9px;
  border: 2px solid var(--ink-2);
  border-radius: 999px;
  transform: rotate(-38deg);
}

.crit-form__icon::before {
  left: 20px;
  top: 27px;
}

.crit-form__icon::after {
  left: 27px;
  top: 34px;
}

.crit-form input {
  min-width: 0;
  height: 70px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.05rem;
}

.crit-form input::placeholder {
  color: var(--faint);
}

.crit-form button {
  min-height: 58px;
  margin-right: 6px;
  padding: 0 28px;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 760px;
  margin-top: 30px;
}

.hero__proof span {
  position: relative;
  min-height: 58px;
  padding-left: 44px;
  color: var(--ink-2);
  font-size: 0.92rem;
}

.hero__proof span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 28px;
  height: 28px;
  border: 2px solid var(--red);
  border-radius: 50%;
  background: transparent;
}

.hero__proof strong,
.hero__proof small {
  display: block;
}

.hero__proof strong {
  color: var(--ink);
  font-size: 0.94rem;
}

.hero__proof small {
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.25;
}

.proof--why::after {
  content: "!";
  position: absolute;
  left: 11px;
  top: 5px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 900;
}

.proof--code::after {
  content: "</>";
  position: absolute;
  left: 5px;
  top: 8px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 900;
}

.proof--scan::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 26px;
  width: 12px;
  height: 2px;
  background: var(--red);
  transform: rotate(45deg);
}

.studio-nudge {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  max-width: 600px;
  margin-top: 34px;
  padding: 20px 24px;
  border: 1px solid rgba(18, 16, 13, 0.12);
  border-radius: 8px;
  background: rgba(227, 213, 189, 0.42);
  color: var(--muted);
}

.studio-nudge strong {
  display: block;
  color: var(--ink);
}

.studio-nudge:hover {
  border-color: rgba(184, 58, 46, 0.42);
}

.hero__artifact {
  position: relative;
  z-index: 2;
  min-width: 0;
  margin-top: 0;
  padding-top: 0;
}

.crit-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  grid-template-rows: auto auto;
  gap: clamp(16px, 1.6vw, 24px);
  align-items: start;
  overflow: visible;
}

.browser-frame {
  position: relative;
  grid-column: 1 / -1;
  grid-row: 1;
  z-index: 1;
  width: 100%;
  margin-left: 0;
  border: 6px solid var(--ink);
  border-radius: 23px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(-1.2deg);
}

.browser-frame__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 20px;
  border-bottom: 1px solid var(--rule);
  background: rgba(244, 239, 228, 0.9);
}

.browser-frame__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rule-strong);
}

.browser-frame__bar strong {
  margin-left: 12px;
  padding: 7px 12px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  background: var(--paper);
  overflow: hidden;
}

.crit-loop {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1);
  background: var(--white);
  opacity: 0;
  filter: contrast(1.12) saturate(1.08);
  transition: opacity 240ms ease;
}

.video-shell.is-video-ready .crit-loop {
  opacity: 1;
}

.video-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 75% 30%, rgba(83, 101, 120, 0.22), transparent 24%),
    var(--paper);
}

.fallback-site {
  position: absolute;
  left: 10%;
  top: 13%;
  width: 66%;
  height: 62%;
  padding: 32px 40px;
  border: 1px solid var(--rule);
  border-radius: 13px;
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 0 24px 60px rgba(44, 32, 18, 0.13);
}

.fallback-site nav {
  width: 100%;
  height: 8px;
  margin-bottom: 44px;
  background: linear-gradient(90deg, var(--ink) 0 9%, transparent 9% 73%, var(--ink) 73% 82%, transparent 82% 88%, var(--ink) 88% 100%);
  opacity: 0.22;
}

.fallback-site h2 {
  max-width: 360px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.fallback-site p {
  max-width: 330px;
  color: var(--muted);
}

.fallback-site button {
  border: 0;
  border-radius: 6px;
  background: #4038b9;
  color: #fff;
  padding: 11px 16px;
}

.annotation {
  position: absolute;
  z-index: 3;
  color: var(--red);
  font-family: var(--sans);
  font-style: italic;
  font-weight: 760;
  letter-spacing: 0.01em;
  font-size: 1.22rem;
  line-height: 1.05;
  transform: rotate(-6deg);
}

.annotation::after {
  content: "";
  position: absolute;
  width: 78px;
  height: 34px;
  border-bottom: 2px solid var(--red);
  border-right: 2px solid var(--red);
  border-radius: 0 0 42px 0;
}

.annotation--one {
  left: 5%;
  top: 22%;
}

.annotation--one::after {
  left: 92px;
  top: 20px;
  transform: rotate(14deg);
}

.annotation--two {
  right: 4%;
  top: 30%;
}

.annotation--two::after {
  right: 112px;
  top: 20px;
  transform: rotate(166deg);
}

.annotation--three {
  left: 18%;
  bottom: 14%;
}

.annotation--three::after {
  left: 104px;
  top: -10px;
  transform: rotate(-22deg);
}

.notes-card,
.prompt-preview {
  position: relative;
  z-index: 5;
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 28px 78px rgba(55, 38, 18, 0.18);
}

.notes-card {
  grid-column: 1;
  grid-row: 2;
  z-index: 6;
  width: 100%;
  margin-top: 0;
  padding: 17px 22px 18px;
  line-height: 1.25;
}

.notes-card__top,
.prompt-preview__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--rule);
}

.notes-card__top span {
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 850;
}

.notes-card ol {
  counter-reset: notes;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.notes-card li {
  counter-increment: notes;
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  gap: 11px;
  padding: 4px 0;
}

.notes-card li::before {
  content: counter(notes);
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 850;
}

.notes-card li strong,
.notes-card li span {
  display: block;
  grid-column: 2;
}

.notes-card li span {
  color: var(--muted);
  font-size: 0.8rem;
}

.notes-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 800;
}

.prompt-preview {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  z-index: 8;
  width: 100%;
  padding: 20px 26px 22px;
  transform: rotate(0.7deg);
  background:
    linear-gradient(180deg, var(--white), #f7efe0),
    var(--white);
}

.prompt-preview::before,
.prompt-preview::after {
  content: "";
  position: absolute;
  width: 76px;
  height: 28px;
  background: rgba(202, 177, 129, 0.5);
  box-shadow: 0 8px 18px rgba(99, 72, 35, 0.12);
  transform: rotate(-28deg);
}

.prompt-preview::before {
  left: -22px;
  top: -12px;
}

.prompt-preview::after {
  right: -18px;
  bottom: -12px;
}

.prompt-preview__top button {
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: transparent;
  color: var(--ink-2);
  padding: 8px 12px;
  font-size: 0.98rem;
}

.prompt-preview__top button.is-copied {
  border-color: var(--red);
  color: var(--red);
}

.prompt-tabs {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.prompt-tabs button {
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: transparent;
  color: var(--ink-2);
  padding: 8px 11px;
  font-size: 0.84rem;
}

.prompt-tabs button.is-active {
  background: var(--ink);
  color: var(--white);
}

.prompt-preview pre,
.prompt-paper pre {
  margin: 0;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.86rem;
  line-height: 1.42;
  white-space: pre-wrap;
  overflow: hidden;
}

.prompt-preview pre {
  min-height: clamp(150px, 10vw, 192px);
  max-height: none;
  padding: 18px 22px;
  margin-top: 16px;
}

.steps,
.sample,
.notes,
.studio-bridge,
.pricing,
.beta,
.faq {
  padding: clamp(68px, 8vw, 124px) clamp(22px, 4vw, 76px);
  border-top: 1px solid var(--rule);
}

.steps {
  text-align: center;
}

.steps h2,
.section-copy h2,
.studio-bridge h2,
.beta h2 {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.35rem, 4.3vw, 4.9rem);
  letter-spacing: -0.045em;
}

.step-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(100%, 1180px);
  margin: 42px auto 0;
}

.step-grid article,
.pricing-grid article,
.faq-grid article,
.beta,
.prompt-workbench,
.studio-bridge,
.markup-board {
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: rgba(255, 250, 240, 0.55);
  box-shadow: 0 18px 60px rgba(68, 50, 28, 0.08);
}

.step-grid article {
  padding: 26px;
  text-align: left;
}

.step-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--mono);
  font-weight: 850;
}

.step-grid h3,
.pricing-grid h3,
.faq-grid h3,
.marked-page h3 {
  margin: 18px 0 8px;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.step-grid p,
.section-copy p,
.pricing-grid p,
.faq-grid p,
.beta p,
.studio-bridge small,
.markup-board aside p,
.markup-board li {
  color: var(--muted);
}

.sample {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(32px, 5vw, 78px);
  align-items: center;
}

.section-copy {
  max-width: 700px;
}

.section-copy h2 {
  margin-left: 0;
  margin-right: 0;
}

.section-copy p {
  font-size: 1.05rem;
}

.sample-source-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 850;
}

.markup-board {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) 0.55fr;
  gap: 28px;
  padding: clamp(22px, 3vw, 36px);
}

.owned-sample-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 510px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: rgba(255, 250, 240, 0.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.56);
  overflow: hidden;
}

.owned-sample-frame img {
  display: block;
  width: 100%;
  max-height: 472px;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  filter: contrast(1.04) saturate(0.94);
}

.owned-sample-frame::after {
  content: "actual owned page";
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 8px 11px;
  border: 1px solid var(--red);
  border-radius: 3px;
  background: rgba(255, 250, 240, 0.88);
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.marked-page {
  position: relative;
  min-height: 510px;
  padding: 44px;
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: linear-gradient(145deg, #fffaf0 0 62%, #e5dac8 62% 100%);
  overflow: hidden;
}

.marked-page__nav {
  height: 9px;
  margin-bottom: 76px;
  background: linear-gradient(90deg, var(--ink) 0 8%, transparent 8% 70%, var(--ink) 70% 79%, transparent 79% 86%, var(--ink) 86% 100%);
  opacity: 0.22;
}

.marked-page h3 {
  max-width: 430px;
  font-size: clamp(2.2rem, 3.8vw, 4.2rem);
}

.marked-page p {
  max-width: 360px;
  color: var(--muted);
}

.marked-page__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.marked-page button {
  border: 0;
  border-radius: 7px;
  background: #4038b9;
  color: #fff;
  padding: 13px 18px;
}

.marked-page__actions a {
  color: var(--muted);
}

.marked-page__image {
  position: absolute;
  right: -44px;
  bottom: -20px;
  width: 46%;
  height: 54%;
  background:
    linear-gradient(145deg, rgba(83, 101, 120, 0.22), rgba(64, 56, 185, 0.28)),
    linear-gradient(22deg, transparent 0 38%, rgba(255,255,255,0.56) 38% 42%, transparent 42% 100%);
  clip-path: polygon(30% 2%, 100% 22%, 78% 100%, 0 76%);
}

.crit-line {
  position: absolute;
  color: var(--red);
  font-family: var(--sans);
  font-style: italic;
  font-size: 0.94rem;
  font-weight: 700;
}

.crit-line::before {
  content: "";
  position: absolute;
  border: 1.5px dashed var(--red);
}

.crit-line--headline {
  left: 54%;
  top: 23%;
  transform: rotate(-3deg);
}

.crit-line--headline::before {
  right: calc(100% + 8px);
  top: 19px;
  width: 150px;
  height: 54px;
}

.crit-line--cta {
  left: 48%;
  top: 67%;
  transform: rotate(3deg);
}

.crit-line--cta::before {
  right: calc(100% + 10px);
  top: -8px;
  width: 112px;
  height: 44px;
}

.crit-line--mobile {
  right: 5%;
  top: 35%;
  transform: rotate(5deg);
}

.crit-line--mobile::before {
  right: calc(100% + 8px);
  top: 8px;
  width: 74px;
  height: 124px;
}

.markup-board aside {
  padding: 20px 0 0;
}

.markup-board aside h3 {
  margin: 0;
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.markup-board ul {
  padding-left: 18px;
}

.notes {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: clamp(32px, 5vw, 78px);
  align-items: center;
}

.prompt-workbench {
  padding: clamp(24px, 4vw, 44px);
}

.tool-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.tool-stack span {
  padding: 10px 13px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: rgba(244, 239, 228, 0.72);
  color: var(--ink-2);
  font-weight: 750;
  font-size: 0.88rem;
}

.prompt-paper {
  padding: 20px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: rgba(255, 250, 240, 0.72);
}

.prompt-paper span {
  display: block;
  margin-bottom: 13px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.prompt-paper pre {
  padding: 20px;
}

.studio-bridge {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
  align-items: center;
  width: min(calc(100% - 44px), 1180px);
  margin: clamp(68px, 8vw, 124px) auto;
}

.studio-bridge h2 {
  margin-left: 0;
  margin-right: 0;
}

.bridge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.bridge-grid a {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: rgba(244, 239, 228, 0.72);
}

.bridge-grid a:hover {
  border-color: rgba(184, 58, 46, 0.45);
}

.bridge-grid span {
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bridge-grid strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.seo-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(440px, 0.96fr) minmax(360px, 0.64fr);
  gap: clamp(30px, 5vw, 84px);
  align-items: center;
  min-height: clamp(650px, calc(100vh - 160px), 820px);
  padding: clamp(42px, 5vw, 86px) clamp(42px, 5vw, 90px);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}

.seo-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46px;
  background:
    radial-gradient(28px 18px at 20px 4px, transparent 18px, rgba(18, 16, 13, 0.08) 19px, transparent 20px) 0 10px / 74px 34px repeat-x,
    linear-gradient(180deg, transparent 0 32px, rgba(255, 250, 240, 0.52) 33px);
  opacity: 0.62;
}

.seo-hero__copy,
.seo-report-card {
  position: relative;
  z-index: 2;
}

.seo-hero h1 {
  max-width: 880px;
  margin: 0;
  font-family: var(--serif);
  font-size: 6.2rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.seo-hero h1::after {
  content: "";
  display: block;
  width: min(520px, 66%);
  height: 5px;
  margin: 12px 0 0 auto;
  background: var(--red);
  transform: rotate(-1deg);
}

.seo-hero__form {
  margin-top: 32px;
}

.seo-hero .crit-form__status:not(.is-error) {
  color: var(--muted);
}

.seo-report-card {
  justify-self: stretch;
}

.seo-report-card::before,
.seo-report-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  border: 2px solid var(--red);
  pointer-events: none;
}

.seo-report-card::before {
  left: -14px;
  top: 16%;
  width: 116px;
  height: 64px;
  border-right: 0;
  border-bottom: 0;
  border-radius: 62px 0 0 0;
  transform: rotate(-8deg);
}

.seo-report-card::after {
  right: 22px;
  bottom: 13%;
  width: 138px;
  height: 54px;
  border-radius: 50%;
  transform: rotate(-5deg);
}

.seo-report-card__sheet {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 22px;
  min-height: 520px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--rule);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(247, 239, 224, 0.96)),
    var(--white);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.seo-report-card__sheet::before {
  content: "";
  position: absolute;
  left: 34px;
  top: -12px;
  width: 86px;
  height: 28px;
  background: rgba(202, 177, 129, 0.5);
  box-shadow: 0 8px 18px rgba(99, 72, 35, 0.12);
  transform: rotate(-6deg);
}

.seo-report-card__top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.seo-report-card__top strong {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  letter-spacing: 0;
}

.seo-report-card h2 {
  max-width: 560px;
  margin: 0;
  font-family: var(--serif);
  font-size: 4.25rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.seo-report-card ol {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  counter-reset: report;
  list-style: none;
}

.seo-report-card li {
  counter-increment: report;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
}

.seo-report-card li::before {
  content: counter(report);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 850;
}

.seo-report-card li strong,
.seo-report-card li span {
  display: block;
  grid-column: 2;
}

.seo-report-card li strong {
  font-family: var(--serif);
  font-size: 1.34rem;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.seo-report-card li span,
.seo-report-card p {
  color: var(--muted);
}

.seo-report-card p {
  align-self: end;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(184, 58, 46, 0.14);
  border-radius: 9px;
  background: rgba(184, 58, 46, 0.08);
}

.review-artifact,
.fit-section {
  padding: clamp(68px, 8vw, 124px) clamp(22px, 4vw, 76px);
  border-top: 1px solid var(--rule);
}

.review-artifact {
  text-align: center;
}

.review-artifact .section-copy,
.fit-section .section-copy {
  margin: 0 auto;
}

.artifact-grid,
.review-checks,
.fit-grid {
  display: grid;
  gap: 22px;
  width: min(100%, 1180px);
  margin: 42px auto 0;
}

.artifact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-checks,
.fit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.artifact-grid article,
.review-checks article,
.fit-grid article {
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: rgba(255, 250, 240, 0.55);
  box-shadow: 0 18px 60px rgba(68, 50, 28, 0.08);
}

.artifact-grid article,
.review-checks article {
  padding: 26px;
  text-align: left;
}

.artifact-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--mono);
  font-weight: 850;
}

.artifact-grid h3,
.review-checks h3,
.fit-grid h3 {
  margin: 18px 0 8px;
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.artifact-grid p,
.review-checks p,
.fit-grid li {
  color: var(--muted);
}

.review-sample {
  align-items: start;
}

.review-checks {
  margin: 0;
}

.review-tools {
  border-top: 1px solid var(--rule);
}

.fit-grid article {
  padding: clamp(24px, 3vw, 34px);
}

.fit-grid h3 {
  margin-top: 0;
  color: var(--red);
}

.fit-grid ul {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  margin: 18px 0 0;
}

.pricing {
  text-align: center;
}

.pricing-grid article {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 28px;
  text-align: left;
}

.pricing-grid article.is-featured {
  border-color: rgba(184, 58, 46, 0.48);
  background: rgba(255, 250, 240, 0.82);
}

.pricing-grid article > span {
  align-self: flex-start;
  margin-bottom: 6px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price {
  margin: 12px 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.pricing-grid a {
  margin-top: auto;
  padding: 13px 16px;
}

.pricing-grid article:not(.is-featured) a {
  border: 1px solid var(--rule-strong);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.launch-report {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  width: min(calc(100% - 44px), 1080px);
  margin: clamp(68px, 8vw, 124px) auto;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: rgba(255, 250, 240, 0.62);
  box-shadow: 0 18px 60px rgba(68, 50, 28, 0.08);
}

.launch-report h2 {
  margin: 0;
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(2.15rem, 3.7vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.launch-report p {
  color: var(--muted);
}

.launch-report .launch-report-note {
  color: var(--ink-2);
}

.launch-report .launch-report-note strong {
  color: var(--ink);
}

.launch-report-form {
  display: grid;
  gap: 11px;
}

.launch-report-form label {
  color: var(--ink-2);
  font-size: 0.88rem;
  font-weight: 750;
}

.launch-report-form input[type="text"],
.launch-report-form input[type="email"] {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--rule);
  border-radius: 7px;
  background: rgba(255, 250, 240, 0.7);
  color: var(--ink);
}

.launch-report-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  line-height: 1.45;
}

.launch-report-consent a {
  color: var(--ink);
  font-weight: 800;
}

.launch-report-disclaimer {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.launch-report-form button,
.launch-report-checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(18, 16, 13, 0.18);
}

.launch-report-form__status {
  margin: 0;
  color: var(--muted);
}

.launch-report-form__status.is-error {
  color: var(--red);
}

.launch-report-form__status.is-success {
  color: #187043;
}

.launch-report-result {
  display: grid;
  gap: 12px;
  margin-top: 4px;
  padding: 16px;
  border: 1px solid var(--rule);
  border-radius: 9px;
  background: rgba(244, 239, 228, 0.82);
}

.launch-report-result code {
  display: block;
  padding: 13px 14px;
  border: 1px solid var(--rule);
  border-radius: 7px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.launch-success-page {
  min-height: 100vh;
}

.launch-success-shell {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: clamp(24px, 6vw, 72px);
}

.launch-success-card {
  width: min(100%, 760px);
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--rule);
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.86);
  box-shadow: var(--shadow);
}

.launch-success-card .brand {
  margin-bottom: 36px;
}

.launch-success-card h1 {
  max-width: 650px;
  margin: 16px 0 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.launch-success-card > p {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.launch-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 850;
}

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(18, 16, 13, 0.18);
}

.button-secondary {
  border: 1px solid var(--rule);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.28);
}

.launch-success-note {
  display: grid;
  gap: 6px;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid var(--rule);
  border-radius: 9px;
  background: rgba(244, 239, 228, 0.86);
}

.launch-success-note span,
.launch-success-fallback {
  color: var(--muted);
}

.launch-success-fallback a {
  color: var(--red);
  font-weight: 800;
}

.launch-success-legal,
.footer__trust {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.launch-success-legal > span,
.footer__trust > span {
  display: grid;
  gap: 2px;
}

.launch-success-legal strong,
.footer__trust strong {
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.launch-success-legal a,
.footer__trust a {
  color: var(--ink);
  font-weight: 750;
}

.beta {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  width: min(calc(100% - 44px), 1080px);
  margin: clamp(68px, 8vw, 124px) auto;
  padding: clamp(28px, 5vw, 54px);
}

.beta h2 {
  margin-left: 0;
  margin-right: 0;
  font-size: clamp(2.15rem, 3.7vw, 4.2rem);
}

.beta-form {
  display: grid;
  gap: 11px;
}

.beta-form label {
  color: var(--ink-2);
  font-size: 0.88rem;
  font-weight: 750;
}

.beta-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--rule);
  border-radius: 7px;
  background: rgba(255, 250, 240, 0.7);
  color: var(--ink);
}

.beta-form button {
  min-height: 54px;
}

.beta-form__status {
  margin: 0;
  color: var(--muted);
}

.beta-form .turnstile-box:not([hidden]) {
  display: flex;
  align-items: center;
  min-height: 65px;
}

.turnstile-box.is-invisible {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.beta-form__status.is-error {
  color: var(--red);
}

.beta-form__status.is-success {
  color: #187043;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-grid article {
  padding: 26px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 40px clamp(22px, 4vw, 76px) 54px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
}

.footer p {
  max-width: 680px;
  margin: 12px 0 0;
}

.footer p a,
.footer nav a {
  color: var(--ink);
  font-weight: 750;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
}

.analytics-consent {
  position: fixed;
  left: clamp(14px, 3vw, 32px);
  right: auto;
  bottom: clamp(14px, 3vw, 32px);
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  max-width: min(620px, calc(100vw - 28px));
  padding: 14px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: rgba(255, 250, 240, 0.96);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(62, 44, 24, 0.18);
  backdrop-filter: blur(18px);
}

.analytics-consent strong {
  display: block;
  font-family: var(--serif);
  font-size: 0.98rem;
  line-height: 1.1;
}

.analytics-consent p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.32;
}

.analytics-consent__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.analytics-consent__actions button {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--rule);
  border-radius: 7px;
  background: rgba(255, 250, 240, 0.7);
  color: var(--ink);
  font-weight: 850;
}

.analytics-consent__actions button[data-analytics-consent="granted"] {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.sticky-crit {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 45;
  display: none;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 9px;
  background: var(--ink);
  color: var(--white);
  font-weight: 850;
  box-shadow: 0 18px 44px rgba(18, 16, 13, 0.22);
}

@media (prefers-reduced-motion: no-preference) {
  .browser-frame {
    animation: editorial-float 7s ease-in-out infinite;
  }

  .notes-card {
    animation: note-rise 580ms ease both 180ms;
  }

  .prompt-preview {
    animation: note-rise 580ms ease both 320ms;
  }

  .annotation,
  .crit-line {
    animation: ink-in 780ms ease both;
  }
}

@keyframes editorial-float {
  0%,
  100% {
    transform: rotate(-1.2deg) translateY(0);
  }
  50% {
    transform: rotate(-0.4deg) translateY(-8px);
  }
}

@keyframes note-rise {
  from {
    opacity: 1;
    transform: translateY(18px) rotate(0deg);
  }
  to {
    opacity: 1;
  }
}

@keyframes ink-in {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@media (max-width: 1500px) {
  .topbar {
    min-height: 88px;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .brand__lockup {
    width: 214px;
  }

  .brand__copy span {
    font-size: 1.34rem;
  }

  .topbar__nav {
    font-family: var(--sans);
    font-size: 0.96rem;
    gap: clamp(18px, 2.4vw, 36px);
  }

  .hero {
    min-height: min(830px, calc(100vh - 88px));
    grid-template-columns: minmax(470px, 0.43fr) minmax(570px, 0.57fr);
    padding-left: clamp(34px, 4vw, 58px);
    padding-right: clamp(34px, 4vw, 58px);
  }

  .hero h1 {
    max-width: 660px;
    font-size: clamp(3.8rem, 5vw, 5.8rem);
  }

  .seo-hero h1 {
    font-size: 5.25rem;
  }

  .seo-report-card h2 {
    font-size: 3.65rem;
  }

  .notes-card {
    margin-top: clamp(28px, 3vw, 58px);
    padding: 20px 22px;
  }

  .prompt-preview {
    padding: 20px 22px 22px;
  }

  .prompt-preview pre {
    min-height: 160px;
    font-size: 0.68rem;
    line-height: 1.34;
  }
}

@media (max-width: 1260px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .seo-hero {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 980px;
  }

  .seo-hero__copy {
    max-width: 980px;
  }

  .crit-stage {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  }
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: auto 1fr auto;
  }

  .topbar__nav,
  .topbar__secondary {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 12vw, 5.8rem);
  }

  .sample,
  .notes,
  .studio-bridge,
  .launch-report,
  .beta {
    grid-template-columns: 1fr;
  }

  .markup-board,
  .bridge-grid,
  .product-family-strip,
  .step-grid,
  .artifact-grid,
  .review-checks,
  .fit-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .studio-bridge {
    width: calc(100% - 44px);
  }

  .crit-stage {
    grid-template-columns: 1fr;
  }

  .browser-frame,
  .notes-card,
  .prompt-preview {
    grid-column: 1;
    grid-row: auto;
  }

  .notes-card {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .topbar {
    min-height: 68px;
    padding: 0 16px;
  }

  .brand__copy span {
    font-size: 1.02rem;
  }

  .brand__copy small {
    display: none;
  }

  .brand__mark,
  .studio-nudge__mark {
    width: 28px;
    height: 28px;
  }

  .brand__lockup {
    width: 168px;
  }

  .topbar__cta {
    min-width: 136px;
    padding: 11px 12px;
    font-size: 0.92rem;
  }

  .hero,
  .seo-hero,
  .review-artifact,
  .steps,
  .sample,
  .notes,
  .fit-section,
  .pricing,
  .faq {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
  }

  .seo-hero {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 58px;
  }

  .stamp,
  .section-kicker {
    font-size: 0.72rem;
  }

  .hero h1 {
    font-size: clamp(2.62rem, 12.2vw, 3.55rem);
  }

  .seo-hero h1 {
    font-size: 3.1rem;
  }

  .seo-report-card__sheet {
    min-height: 0;
    padding: 24px;
    transform: none;
  }

  .seo-report-card h2 {
    font-size: 2.55rem;
  }

  .seo-report-card::before,
  .seo-report-card::after {
    display: none;
  }

  .hero__lead {
    margin-top: 18px;
  }

  .crit-form {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .crit-form__icon {
    display: none;
  }

  .crit-form input {
    height: 70px;
    padding: 0 18px;
  }

  .crit-form button {
    width: 100%;
    min-height: 58px;
    margin: 0;
    border-radius: 0;
  }

  .crit-form__status {
    font-size: 0.9rem;
  }

  .hero__proof,
  .studio-nudge {
    display: none;
  }

  .hero__artifact {
    margin-top: 20px;
  }

  .crit-stage {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .notes-card {
    order: 1;
  }

  .browser-frame {
    order: 2;
  }

  .prompt-preview {
    order: 3;
  }

  .browser-frame {
    width: 100%;
    border-width: 4px;
    border-radius: 18px;
    transform: none;
  }

  .browser-frame__bar strong {
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .video-shell {
    min-height: 0;
  }

  .crit-loop {
    transform: scale(1);
    filter: contrast(1.24) saturate(1.16) brightness(0.98);
  }

  .fallback-site {
    left: 7%;
    top: 12%;
    width: 72%;
    height: 62%;
    padding: 22px;
  }

  .fallback-site nav {
    margin-bottom: 28px;
  }

  .fallback-site h2 {
    font-size: 1.75rem;
  }

  .fallback-site p {
    display: none;
  }

  .annotation {
    font-size: 0.9rem;
  }

  .notes-card,
  .prompt-preview {
    position: static;
    width: 100%;
    transform: none;
  }

  .notes-card ol li:nth-child(n + 4) {
    display: none;
  }

  .prompt-preview pre {
    max-height: 220px;
  }

  .steps h2,
  .section-copy h2,
  .studio-bridge h2,
  .beta h2 {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
  }

  .marked-page {
    min-height: 420px;
    padding: 28px 24px;
  }

  .owned-sample-frame,
  .owned-sample-frame img {
    min-height: 0;
  }

  .owned-sample-frame {
    min-height: 320px;
    padding: 12px;
  }

  .owned-sample-frame img {
    max-height: 248px;
  }

  .marked-page__nav {
    margin-bottom: 46px;
  }

  .marked-page h3 {
    font-size: 2.35rem;
  }

  .crit-line {
    font-size: 0.86rem;
  }

  .crit-line--headline {
    left: 46%;
    top: 39%;
  }

  .crit-line--headline::before {
    width: 128px;
    height: 66px;
  }

  .crit-line--mobile {
    display: none;
  }

  .studio-bridge,
  .beta {
    width: calc(100% - 32px);
  }

  .footer {
    flex-direction: column;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 82px;
  }

  .analytics-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .analytics-consent__actions {
    width: 100%;
  }

  .analytics-consent__actions button {
    flex: 1 1 0;
    padding: 0 12px;
  }

  body.is-scrolled .sticky-crit {
    display: flex;
  }
}

body.opus-review-page {
  background:
    linear-gradient(180deg, #f0ede8 0%, #eee8df 46%, #e8e3dc 100%);
}

.opus-review-page .topbar {
  min-height: 78px;
  grid-template-columns: auto 1fr auto;
  border-bottom-color: rgba(15, 14, 13, 0.18);
  background: rgba(240, 237, 232, 0.94);
  box-shadow: 0 1px 0 rgba(15, 14, 13, 0.06);
}

.opus-review-page .topbar__secondary {
  display: none;
}

.opus-review-page .topbar__cta,
.opus-review-page .crit-form button,
.opus-review-page .launch-report-form button,
.opus-review-page .launch-report-checkout {
  border-radius: 4px;
  box-shadow: none;
}

.opus-hero,
.opus-sample,
.rubric-section,
.fix-section,
.opus-fit,
.order-section,
.opus-faq {
  position: relative;
  padding: clamp(72px, 8vw, 126px) clamp(22px, 4vw, 76px);
  border-top: 1px solid rgba(15, 14, 13, 0.18);
}

.opus-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.76fr) minmax(520px, 1fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: center;
  min-height: clamp(680px, calc(100vh - 78px), 860px);
  border-top: 0;
}

.opus-hero__copy {
  position: relative;
  z-index: 2;
}

.opus-hero h1,
.opus-section-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.opus-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 4.9vw, 5.15rem);
}

.opus-section-head {
  max-width: 760px;
}

.opus-section-head h2 {
  max-width: 760px;
  font-size: clamp(2.4rem, 4.2vw, 4.5rem);
}

.opus-section-head p:not(.section-kicker) {
  max-width: 670px;
  color: var(--ink-2);
  font-size: 1.06rem;
}

.opus-hero .hero__lead {
  max-width: 650px;
  margin-top: 24px;
  font-size: 1.08rem;
  line-height: 1.6;
}

.opus-hero__form {
  margin-top: 30px;
}

.opus-hero .crit-form__status:not(.is-error) {
  color: var(--muted);
}

.opus-ledger {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  max-width: 690px;
  margin: 24px 0 0;
  padding: 13px 0;
  border-top: 1px solid rgba(15, 14, 13, 0.24);
  border-bottom: 1px solid rgba(15, 14, 13, 0.24);
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  list-style: none;
}

.opus-ledger li {
  display: inline-flex;
  gap: 9px;
  align-items: center;
}

.opus-ledger li::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: var(--red);
}

.opus-deliverables {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.opus-deliverables li {
  min-height: 108px;
  padding: 14px;
  border: 1px solid rgba(15, 14, 13, 0.16);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.58);
}

.opus-deliverables strong,
.opus-deliverables span {
  display: block;
}

.opus-deliverables strong {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.86rem;
  line-height: 1.2;
}

.opus-deliverables span {
  margin-top: 7px;
  color: var(--ink-2);
  font-size: 0.82rem;
  line-height: 1.42;
}

.opus-proof-strip {
  max-width: 760px;
  margin-top: 16px;
  padding: 15px 16px;
  border: 1px solid rgba(184, 58, 46, 0.28);
  border-left: 3px solid var(--red);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.72);
}

.opus-proof-strip span,
.opus-proof-strip strong,
.opus-proof-strip p {
  display: block;
}

.opus-proof-strip span {
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.opus-proof-strip strong {
  margin-top: 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.08;
}

.opus-proof-strip p {
  margin: 8px 0 0;
  color: var(--ink-2);
  font-size: 0.9rem;
  line-height: 1.42;
}

.launch-mock {
  position: relative;
  z-index: 1;
  min-height: 620px;
  margin: 0;
}

.launch-mock__page {
  position: absolute;
  inset: 28px 9% 20px 0;
  border: 1px solid rgba(15, 14, 13, 0.22);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.78), rgba(232, 227, 220, 0.72)),
    var(--paper);
  overflow: hidden;
}

.launch-mock__bar {
  display: flex;
  gap: 7px;
  align-items: center;
  height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(15, 14, 13, 0.14);
}

.launch-mock__bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(15, 14, 13, 0.24);
}

.launch-mock__bar strong {
  margin-left: 12px;
  color: rgba(45, 37, 28, 0.64);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.launch-mock__hero {
  position: relative;
  margin: 54px 44px 34px;
  padding: 44px 38px;
  border: 1px solid rgba(15, 14, 13, 0.12);
  background: rgba(255, 250, 240, 0.48);
}

.mock-line {
  display: block;
  width: 62%;
  height: 18px;
  margin-top: 15px;
  background: rgba(15, 14, 13, 0.12);
}

.mock-line--wide {
  width: 82%;
  height: 38px;
  margin-top: 0;
  background: rgba(15, 14, 13, 0.18);
}

.mock-line--short {
  width: 46%;
}

.launch-mock__hero button,
.launch-mock__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  border: 0;
  border-radius: 4px;
  padding: 13px 17px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
}

.launch-mock__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 44px;
}

.launch-mock__features span {
  min-height: 132px;
  border: 1px solid rgba(15, 14, 13, 0.13);
  background: rgba(255, 250, 240, 0.36);
}

.red-note {
  position: absolute;
  z-index: 4;
  color: var(--red);
  font-family: var(--sans);
  font-style: italic;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  transform: rotate(-5deg);
}

.red-note::after {
  content: "";
  position: absolute;
  border-top: 2px solid var(--red);
  transform-origin: left;
}

.red-note--one {
  left: -2%;
  top: 20%;
}

.red-note--one::after {
  left: 100%;
  top: 10px;
  width: 128px;
  transform: rotate(13deg);
}

.red-note--two {
  right: 1%;
  top: 47%;
}

.red-note--two::after {
  right: 100%;
  top: 10px;
  width: 118px;
  transform: rotate(165deg);
}

.red-note--three {
  left: 12%;
  bottom: 12%;
}

.red-note--three::after {
  left: 100%;
  top: 8px;
  width: 106px;
  transform: rotate(-14deg);
}

.launch-index-card {
  position: absolute;
  right: 0;
  top: 8%;
  z-index: 5;
  width: min(320px, 46%);
  padding: 22px;
  border: 1px solid rgba(15, 14, 13, 0.2);
  border-radius: 6px;
  background: #fffaf0;
  transform: rotate(-1.4deg);
  box-shadow: 0 1px 0 rgba(15, 14, 13, 0.06);
}

.launch-index-card::before,
.sample-report-sheet::before {
  content: "";
  position: absolute;
  width: 86px;
  height: 26px;
  background: rgba(202, 177, 129, 0.48);
  transform: rotate(-5deg);
}

.launch-index-card::before {
  left: 28px;
  top: -14px;
}

.launch-index-card > span,
.sample-report-sheet__findings > span,
.fix-prompt-card > span,
.fix-console__top span {
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.launch-index-card ol {
  display: grid;
  gap: 12px;
  padding: 14px 0 0;
  margin: 14px 0 0;
  border-top: 1px solid rgba(15, 14, 13, 0.18);
  list-style: none;
}

.launch-index-card li {
  display: grid;
  gap: 3px;
}

.launch-index-card strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1;
}

.launch-index-card small {
  color: var(--muted);
}

.severity {
  color: var(--amber-dark) !important;
  font-family: var(--mono);
  letter-spacing: 0.08em;
}

.launch-mock__mobile-note {
  display: none;
}

.opus-sample,
.opus-fit {
  background: #e8e3dc;
}

.sample-report-sheet {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(320px, 0.7fr);
  gap: 28px;
  width: min(100%, 1180px);
  margin: 44px auto 0;
  padding: clamp(24px, 4vw, 44px);
  border-top: 1px solid rgba(15, 14, 13, 0.28);
  border-bottom: 1px solid rgba(15, 14, 13, 0.28);
}

.sample-report-poster {
  display: block;
  max-width: 760px;
  margin: 32px auto 0;
}

.sample-report-poster img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(15, 14, 13, 0.12);
  border-radius: 6px;
  box-shadow:
    0 24px 60px -28px rgba(15, 14, 13, 0.35),
    0 2px 0 rgba(15, 14, 13, 0.06);
}

.sample-report-poster figcaption {
  margin-top: 14px;
  color: rgba(45, 37, 28, 0.64);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.sample-before-after {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  width: min(100%, 820px);
  margin: 30px auto 0;
}

.sample-before-after article {
  min-height: 174px;
  border: 1px solid rgba(15, 14, 13, 0.16);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.46);
  padding: 16px;
}

.sample-before-after > p,
.sample-before-after article > span {
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sample-before-after > p {
  margin: 0;
  color: rgba(45, 37, 28, 0.68);
  text-align: center;
}

.sample-before-after__browser {
  position: relative;
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 26px 18px 18px;
  border: 1px solid rgba(15, 14, 13, 0.12);
  background: rgba(255, 250, 240, 0.72);
}

.sample-before-after__browser i {
  position: absolute;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(15, 14, 13, 0.18);
}

.sample-before-after__browser i:nth-child(1) {
  left: 12px;
}

.sample-before-after__browser i:nth-child(2) {
  left: 24px;
}

.sample-before-after__browser i:nth-child(3) {
  left: 36px;
}

.sample-before-after__browser strong {
  max-width: 210px;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.02;
}

.sample-before-after__browser em {
  justify-self: start;
  margin-top: 6px;
  border: 1px solid rgba(184, 58, 46, 0.58);
  border-radius: 99px;
  padding: 5px 8px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sample-before-after__report ol {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.sample-before-after__report li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  padding-top: 10px;
  border-top: 1px solid rgba(15, 14, 13, 0.14);
}

.sample-before-after__report strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.05;
}

.sample-before-after__report small {
  color: var(--muted);
  line-height: 1.35;
}

.sample-report-sheet::before {
  left: 42px;
  top: -14px;
}

.sample-report-sheet__mock {
  position: relative;
  min-height: 430px;
  grid-row: span 2;
}

.sample-mini-page {
  height: 100%;
  padding: 38px;
  border: 1px solid rgba(15, 14, 13, 0.18);
  background: rgba(255, 250, 240, 0.52);
}

.sample-mini-page__nav {
  display: block;
  width: 100%;
  height: 9px;
  margin-bottom: 58px;
  background: rgba(15, 14, 13, 0.16);
}

.sample-mini-page h3 {
  max-width: 420px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 0.95;
}

.sample-mini-page p {
  max-width: 360px;
  color: var(--muted);
}

.sample-mini-page button {
  margin-top: 20px;
  border: 0;
  border-radius: 4px;
  padding: 13px 18px;
  background: var(--ink);
  color: var(--white);
}

.sample-mini-page__block {
  position: absolute;
  right: 32px;
  bottom: 32px;
  width: 28%;
  height: 34%;
  border: 1px solid rgba(15, 14, 13, 0.14);
  background: rgba(15, 14, 13, 0.05);
}

.sample-note--one {
  left: 45%;
  top: 27%;
}

.sample-note--two {
  right: 6%;
  bottom: 14%;
}

.sample-report-sheet__findings {
  padding: 6px 0 0;
}

.sample-report-sheet__findings ol {
  display: grid;
  gap: 18px;
  padding: 18px 0 0;
  margin: 0;
  list-style: none;
  counter-reset: findings;
}

.sample-report-sheet__findings li {
  counter-increment: findings;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 14, 13, 0.16);
}

.sample-report-sheet__findings li::before,
.rubric-sheet li::before {
  content: counter(findings);
  color: var(--red);
  font-family: var(--mono);
  font-weight: 850;
}

.sample-report-sheet__findings strong,
.sample-report-sheet__findings p {
  grid-column: 2;
}

.sample-report-sheet__findings strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.05;
}

.sample-report-sheet__findings p {
  margin: 0;
  color: var(--muted);
}

.fix-prompt-card {
  padding: 20px;
  border: 1px solid rgba(15, 14, 13, 0.18);
  background: rgba(255, 250, 240, 0.48);
}

.fix-prompt-card pre,
.fix-console pre {
  margin: 14px 0 0;
  font-family: var(--mono);
  white-space: pre-wrap;
}

.fix-prompt-card pre {
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.55;
}

.rubric-section .opus-section-head,
.fix-section .opus-section-head,
.opus-fit .opus-section-head,
.opus-faq .opus-section-head {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.rubric-sheet {
  width: min(100%, 1180px);
  margin: 42px auto 0;
  padding: 0;
  border-top: 1px solid rgba(15, 14, 13, 0.28);
  counter-reset: findings;
  list-style: none;
}

.rubric-sheet li {
  counter-increment: findings;
  display: grid;
  grid-template-columns: 46px minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(15, 14, 13, 0.16);
}

.rubric-sheet strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.05;
}

.rubric-sheet span {
  color: var(--muted);
}

.fix-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.6fr) minmax(440px, 1fr);
  gap: clamp(34px, 5vw, 84px);
  align-items: center;
}

.fix-console {
  padding: clamp(22px, 4vw, 38px);
  background: var(--ink);
  color: var(--white);
}

.fix-console__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.fix-console__top span {
  color: #f2dfca;
}

.fix-console__top button,
.fix-console__copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 250, 240, 0.42);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  padding: 8px 12px;
  font-weight: 800;
}

.fix-console pre {
  padding: 22px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  background: rgba(255, 250, 240, 0.08);
  color: #fffaf0;
  font-size: 0.92rem;
  line-height: 1.58;
}

.fix-console p {
  margin: 16px 0 0;
  color: rgba(255, 250, 240, 0.72);
  font-family: var(--mono);
  font-size: 0.76rem;
}

.opus-fit .fit-grid {
  border-top: 1px solid rgba(15, 14, 13, 0.24);
  border-bottom: 1px solid rgba(15, 14, 13, 0.24);
}

.opus-fit .fit-grid article {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.opus-fit .fit-grid article + article {
  border-left: 1px solid rgba(15, 14, 13, 0.18);
}

.order-section {
  background: #e1dbd0;
}

.order-slip.launch-report {
  width: min(calc(100% - 44px), 1080px);
  margin: 0 auto;
  border-color: rgba(15, 14, 13, 0.22);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.45);
  box-shadow: 0 1px 0 rgba(15, 14, 13, 0.06);
}

.order-slip h2 {
  font-size: clamp(2.25rem, 4vw, 4.35rem);
}

.order-trust-line {
  margin: 12px 0 0;
  color: rgba(45, 37, 28, 0.72);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.order-slip .launch-report-form input[type="text"],
.order-slip .launch-report-form input[type="email"] {
  border-radius: 4px;
  background: rgba(255, 250, 240, 0.58);
}

.opus-faq .faq-grid article {
  border-radius: 6px;
  box-shadow: none;
}

@media (max-width: 1260px) {
  .opus-hero,
  .fix-section {
    grid-template-columns: 1fr;
  }

  .launch-mock {
    min-height: 560px;
  }
}

@media (max-width: 980px) {
  .sample-report-sheet {
    grid-template-columns: 1fr;
  }

  .sample-report-sheet__mock {
    grid-row: auto;
  }

  .rubric-sheet li {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .rubric-sheet span {
    grid-column: 2;
  }

  .opus-fit .fit-grid article + article {
    border-left: 0;
    border-top: 1px solid rgba(15, 14, 13, 0.18);
  }
}

@media (max-width: 720px) {
  .opus-review-page .topbar {
    min-height: 58px;
    padding: 0 12px;
  }

  .opus-review-page .brand__copy span {
    font-size: 1rem;
  }

  .opus-review-page .topbar__cta {
    min-width: 132px;
    padding: 10px 11px;
    font-size: 0.82rem;
  }

  .opus-hero,
  .opus-sample,
  .rubric-section,
  .fix-section,
  .opus-fit,
  .order-section,
  .opus-faq {
    padding-left: 12px;
    padding-right: 12px;
  }

  .opus-hero {
    padding-top: 22px;
    grid-template-columns: 1fr;
  }

  .opus-hero__copy {
    order: 1;
  }

  .launch-mock {
    order: 2;
    min-height: 360px;
  }

  .launch-mock__page {
    inset: 18px 0 28px 0;
  }

  .launch-mock__hero {
    margin: 36px 20px 22px;
    padding: 26px 20px;
  }

  .launch-mock__features {
    gap: 10px;
    margin: 0 20px;
  }

  .launch-mock__features span {
    min-height: 72px;
  }

  .red-note,
  .launch-index-card {
    display: none;
  }

  .launch-mock__mobile-note {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 0;
    display: block;
    margin: 0;
    padding: 10px 0;
    border-top: 1px solid rgba(15, 14, 13, 0.22);
    color: var(--red);
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .opus-hero h1 {
    font-size: clamp(2.55rem, 12vw, 3rem);
    line-height: 1;
  }

  .opus-ledger {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 0.72rem;
  }

  .opus-ledger li {
    align-items: flex-start;
  }

  .opus-ledger li::before {
    margin-top: 0.42em;
  }

  .opus-deliverables {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .opus-deliverables li {
    min-height: 0;
  }

  .sample-report-sheet {
    padding-left: 0;
    padding-right: 0;
  }

  .sample-report-poster {
    margin-inline: -12px;
  }

  .sample-before-after {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sample-before-after > p {
    text-align: left;
  }

  .sample-report-sheet__mock {
    min-height: 330px;
  }

  .sample-mini-page {
    padding: 24px;
  }

  .sample-mini-page h3 {
    font-size: 2.35rem;
  }

  .fix-console {
    margin-left: -12px;
    margin-right: -12px;
  }

  .order-slip.launch-report {
    width: 100%;
    padding: 24px;
  }

  .order-slip .launch-report-consent {
    font-size: 0.82rem;
    line-height: 1.48;
  }

  body.is-scrolled .sticky-crit {
    display: flex;
    bottom: max(14px, env(safe-area-inset-bottom));
  }
}
