/* Opura marketing system: home, product, and pricing pages. */
@view-transition {
  navigation: auto;
}

:root {
  --ink: oklch(15% 0.012 78);
  --ink-deep: oklch(10% 0.009 78);
  --ink-raised: oklch(19% 0.014 78);
  --paper: oklch(92% 0.025 83);
  --paper-bright: oklch(97% 0.012 84);
  --paper-dim: oklch(84% 0.025 81);
  --amber: oklch(73% 0.145 76);
  --amber-dark: oklch(53% 0.115 72);
  --earth: oklch(48% 0.035 74);
  --line-dark: oklch(62% 0.026 78 / 0.34);
  --line-light: oklch(37% 0.028 76 / 0.28);
  --text-dim: oklch(72% 0.023 80);
  --text-dark-dim: oklch(39% 0.025 78);
  --body: "Schibsted Grotesk", "Helvetica Neue", sans-serif;
  --mono: "Azeret Mono", "SFMono-Regular", monospace;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --page-gutter: clamp(20px, 3.4vw, 56px);
  --section-space: clamp(88px, 11vw, 176px);
  --header-height: 72px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quiet: cubic-bezier(0.25, 1, 0.5, 1);
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  background: var(--ink);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 90;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

::selection {
  background: var(--amber);
  color: var(--ink-deep);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

img,
picture {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

h1,
h2,
h3,
p,
blockquote,
figure,
dl,
dd,
ol {
  margin: 0;
}

ol {
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--paper-bright);
  color: var(--ink);
  font: 500 12px/1 var(--mono);
  transform: translateY(-150%);
  transition: transform 180ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
}

.overline,
.section-index,
.hero-readout,
.grade-caption,
.reel-timeline {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.overline {
  color: var(--amber);
  font-size: 10px;
}

.overline-dark {
  color: var(--amber-dark);
}

.button,
.header-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid transparent;
  padding: 0 18px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition:
    color 240ms var(--ease-quiet),
    background-color 240ms var(--ease-quiet),
    border-color 240ms var(--ease-quiet),
    transform 240ms var(--ease-out);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button span,
.header-cta span:last-child,
.text-link span {
  transition: transform 240ms var(--ease-out);
}

.button:hover span,
.header-cta:hover span:last-child,
.text-link:hover span {
  transform: translate(3px, -3px);
}

.button-primary {
  background: var(--amber);
  color: var(--ink-deep);
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0 8px;
  border-bottom: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link-dark {
  color: var(--ink);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
  padding: 0 var(--page-gutter);
  border-bottom: 1px solid var(--line-dark);
  background: color-mix(in oklch, var(--ink) 82%, transparent);
  transition:
    background-color 300ms var(--ease-quiet),
    height 300ms var(--ease-out);
}

@supports (backdrop-filter: blur(12px)) {
  .site-header {
    backdrop-filter: blur(14px);
  }
}

.site-header.is-compact {
  --header-height: 62px;
  background: color-mix(in oklch, var(--ink) 94%, transparent);
}

.wordmark {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.wordmark span {
  font-size: 27px;
  font-weight: 700;
}

.wordmark small {
  color: var(--amber);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.13em;
}

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 40px);
}

.main-navigation a {
  position: relative;
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 200ms ease;
}

.main-navigation a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease-out);
}

.main-navigation a:hover {
  color: var(--paper);
}

.main-navigation a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-height: 38px;
  border-color: var(--line-dark);
  padding-inline: 14px;
  color: var(--paper);
}

.menu-button {
  display: none;
}

/* Hero */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(540px, 1.28fr);
  grid-template-rows: 1fr auto;
  padding-top: var(--header-height);
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}

.hero-copy {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(24px, 3.5vh, 42px);
  padding: clamp(76px, 10vw, 150px) var(--page-gutter) clamp(48px, 7vw, 96px);
}

.hero h1 {
  max-width: 9ch;
  font-size: clamp(58px, 7.4vw, 126px);
  font-weight: 600;
  letter-spacing: -0.067em;
  line-height: 0.84;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  margin-left: clamp(12px, 4vw, 68px);
  white-space: nowrap;
}

.hero h1 em {
  color: var(--amber);
  font-family: var(--serif);
  font-weight: 400;
}

.hero-lead {
  max-width: 53ch;
  color: var(--text-dim);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.hero-readout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line-dark);
  font-size: 8px;
  line-height: 1.5;
}

.hero-readout dt {
  color: var(--earth);
}

.hero-readout dd {
  margin-top: 3px;
  color: var(--paper-dim);
  letter-spacing: 0.02em;
  text-transform: none;
}

.hero-contact {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border-left: 1px solid var(--line-dark);
  background: var(--ink-deep);
}

.hero-contact picture,
.hero-contact img {
  width: 100%;
  height: 100%;
}

.hero-contact img {
  object-fit: cover;
  filter: saturate(0.83) contrast(1.04) brightness(0.82);
}

.hero-contact::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, color-mix(in oklch, var(--ink) 52%, transparent), transparent 24%),
    linear-gradient(0deg, color-mix(in oklch, var(--ink) 68%, transparent), transparent 28%);
}

.hero-contact__top,
.hero-contact__footer,
.hero-contact__selection {
  position: absolute;
  z-index: 2;
  font-family: var(--mono);
}

.hero-contact__top {
  top: 24px;
  right: 24px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  color: var(--paper);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.hero-contact__selection {
  top: 0;
  right: 0;
  width: 33.333%;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 4px;
  padding: 16px;
  border: 2px solid var(--amber);
  color: var(--ink-deep);
  box-shadow: inset 0 -55px 45px -35px color-mix(in oklch, var(--paper) 82%, transparent);
}

.hero-contact__selection span {
  padding: 4px 6px;
  background: var(--amber);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.hero-contact__selection small {
  color: var(--paper-bright);
  font-size: 7px;
  text-shadow: 0 1px 8px var(--ink-deep);
}

.hero-contact__footer {
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  color: var(--paper);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.hero-caption {
  grid-column: 1 / -1;
  padding: 13px var(--page-gutter);
  border-top: 1px solid var(--line-dark);
  color: var(--earth);
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.04em;
}

/* Paper introduction */
.paper-intro,
.closing-section {
  background: var(--paper);
  color: var(--ink);
}

.paper-intro,
.closing-section {
  padding: var(--section-space) var(--page-gutter);
}

.section-index {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-light);
  color: var(--text-dark-dim);
  font-size: 9px;
}

.paper-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  gap: clamp(56px, 10vw, 170px);
  align-items: end;
  padding: clamp(54px, 7vw, 110px) 0 clamp(70px, 9vw, 140px);
}

.paper-intro h2,
.closing-section h2 {
  margin-top: 22px;
  font-size: clamp(46px, 7vw, 108px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.paper-intro__copy {
  display: grid;
  gap: 32px;
  padding-bottom: 7px;
  color: var(--text-dark-dim);
  font-size: clamp(16px, 1.35vw, 20px);
}

.paper-intro__copy blockquote {
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(24px, 2.3vw, 36px);
  font-style: italic;
  line-height: 1.15;
}

.workflow-ledger {
  border-top: 1px solid var(--line-light);
}

.workflow-ledger li {
  display: grid;
  grid-template-columns: 52px minmax(110px, 0.55fr) minmax(180px, 0.8fr) minmax(220px, 1fr) 44px;
  gap: 24px;
  align-items: center;
  min-height: 114px;
  border-bottom: 1px solid var(--line-light);
  transition: background-color 260ms var(--ease-quiet);
}

.workflow-ledger li:hover {
  background: color-mix(in oklch, var(--amber) 9%, transparent);
}

.workflow-ledger__number,
.workflow-ledger__verb {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workflow-ledger__number {
  color: var(--amber-dark);
}

.workflow-ledger__verb {
  color: var(--text-dark-dim);
}

.workflow-ledger strong {
  font-size: clamp(25px, 2.5vw, 38px);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.workflow-ledger p {
  color: var(--text-dark-dim);
}

.workflow-ledger a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-light);
  transition:
    background-color 220ms ease,
    color 220ms ease,
    transform 220ms var(--ease-out);
}

.workflow-ledger a:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(3px);
}

/* Shared dark product sections */
.burst-selection {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40%;
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 5px;
  padding: 14px;
  border: 2px solid var(--amber);
  box-shadow: inset 0 -72px 50px -55px var(--ink-deep);
  font-family: var(--mono);
}

.burst-selection span {
  width: fit-content;
  padding: 3px 5px;
  background: var(--amber);
  color: var(--ink-deep);
  font-size: 8px;
}

.burst-selection small {
  color: var(--paper);
  font-size: 7px;
}

/* Studio */
.adjustment-panel {
  display: grid;
  gap: 18px;
  margin: 50px 0 34px;
  padding: 20px;
  border: 1px solid var(--line-light);
  background: color-mix(in oklch, var(--paper-bright) 42%, transparent);
  font-family: var(--mono);
  font-size: 8px;
}

.adjustment-panel__head,
.adjustment-row {
  display: grid;
  grid-template-columns: minmax(90px, 0.8fr) minmax(100px, 1fr) 42px;
  gap: 16px;
  align-items: center;
}

.adjustment-panel__head {
  grid-template-columns: 1fr auto;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-light);
  color: var(--text-dark-dim);
  letter-spacing: 0.11em;
}

.adjustment-row i {
  position: relative;
  height: 2px;
  background: color-mix(in oklch, var(--ink) 22%, transparent);
}

.adjustment-row b {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--value);
  height: 100%;
  background: var(--amber-dark);
}

.adjustment-row b::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--ink);
  transform: translate(50%, -50%);
}

.adjustment-row em {
  color: var(--amber-dark);
  font-style: normal;
  text-align: right;
}

.grade-column {
  width: min(100%, 570px);
  justify-self: center;
}

.grade-compare {
  --split: 50%;
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 2 / 3;
  border: 1px solid var(--line-light);
  background: var(--ink);
  cursor: ew-resize;
  touch-action: none;
  box-shadow: 24px 30px 0 color-mix(in oklch, var(--amber) 16%, transparent);
}

.grade-compare:focus-visible {
  outline-color: var(--amber-dark);
}

.grade-compare__image {
  position: absolute;
  inset: 0;
  background-image: image-set(
    url("/assets/images/cull-home/studio-grade-1448.avif") type("image/avif"),
    url("/assets/images/cull-home/studio-grade-1448.webp") type("image/webp")
  );
  background-repeat: no-repeat;
  background-size: 200% 100%;
}

.grade-compare__before {
  background-position: left center;
}

.grade-compare__after {
  background-position: right center;
  clip-path: inset(0 0 0 var(--split));
}

.grade-handle {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 1px;
  background: var(--amber);
}

.grade-handle i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--amber);
  background: var(--ink);
  color: var(--paper);
  font-style: normal;
  transform: translate(-50%, -50%);
}

.grade-tag {
  position: absolute;
  z-index: 2;
  top: 14px;
  padding: 5px 7px;
  background: var(--ink);
  color: var(--paper);
  font: 8px/1 var(--mono);
  letter-spacing: 0.06em;
}

.grade-tag-before {
  left: 14px;
}

.grade-tag-after {
  right: 14px;
  background: var(--amber);
  color: var(--ink);
}

.grade-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 15px;
  color: var(--text-dark-dim);
  font-size: 8px;
}

/* Reel */
.reel-stage {
  display: grid;
  grid-template-columns: minmax(360px, 1.1fr) minmax(360px, 0.9fr);
  border: 1px solid var(--line-dark);
}

.reel-stage__preview {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border-right: 1px solid var(--line-dark);
}

.reel-stage__preview picture,
.reel-stage__preview img {
  width: 100%;
  height: 100%;
}

.reel-stage__preview img {
  object-fit: cover;
  filter: saturate(0.68) contrast(1.16) brightness(0.65);
  transform: scale(1.05);
}

.reel-stage__timecode,
.reel-stage__rec {
  position: absolute;
  z-index: 2;
  top: 16px;
  padding: 5px 7px;
  background: color-mix(in oklch, var(--ink-deep) 88%, transparent);
  font: 8px/1 var(--mono);
}

.reel-stage__timecode {
  left: 16px;
  color: var(--paper);
}

.reel-stage__rec {
  right: 16px;
  color: var(--amber);
}

.reel-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  min-width: 0;
  padding: clamp(24px, 4vw, 54px);
  background:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 44px 44px;
  font-size: 7px;
}

.reel-timeline__head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  color: var(--text-dim);
}

.timeline-track {
  position: relative;
  height: 50px;
  margin-left: 28px;
  border: 1px solid var(--line-dark);
  background: color-mix(in oklch, var(--ink-raised) 84%, transparent);
}

.track-label {
  position: absolute;
  top: -1px;
  right: 100%;
  width: 28px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  color: var(--earth);
}

.timeline-video i {
  position: absolute;
  top: 8px;
  left: var(--start);
  width: var(--length);
  height: 32px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 8px;
  border: 1px solid var(--amber-dark);
  background: color-mix(in oklch, var(--amber) 14%, var(--ink-raised));
  color: var(--paper);
  font-style: normal;
  white-space: nowrap;
}

.timeline-audio {
  height: 36px;
}

.timeline-audio .track-label {
  height: 36px;
}

.timeline-audio i {
  position: absolute;
  inset: 7px 5% 7px 2%;
  background:
    linear-gradient(110deg, transparent 0 4%, var(--amber) 4.4% 4.8%, transparent 5.2% 9%, var(--amber) 9.4% 9.8%, transparent 10.2% 17%, var(--amber) 17.4% 17.8%, transparent 18.2% 27%, var(--amber) 27.4% 27.8%, transparent 28.2% 42%, var(--amber) 42.4% 42.8%, transparent 43.2% 58%, var(--amber) 58.4% 58.8%, transparent 59.2% 72%, var(--amber) 72.4% 72.8%, transparent 73.2%);
  opacity: 0.72;
}

.timeline-beats {
  display: flex;
  justify-content: space-between;
  margin: 8px 3% 0 38px;
}

.timeline-beats span {
  width: 4px;
  height: 4px;
  background: var(--amber);
  transform: rotate(45deg);
}

.timeline-playhead {
  position: absolute;
  z-index: 4;
  top: 25%;
  bottom: 25%;
  left: calc(clamp(24px, 4vw, 54px) + 28px);
  width: 1px;
  background: var(--paper);
  box-shadow: 0 0 0 1px color-mix(in oklch, var(--ink) 35%, transparent);
}

.timeline-playhead::before {
  position: absolute;
  top: -6px;
  left: -4px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--paper);
  transform: rotate(45deg);
}

/* Principles and close */
.closing-section {
  min-height: 78svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.closing-section h2 {
  max-width: 12ch;
  margin-top: 34px;
}

.closing-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: clamp(48px, 7vw, 90px);
}

.closing-actions p {
  color: var(--text-dark-dim);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 34px;
  align-items: center;
  padding: 34px var(--page-gutter);
  border-top: 1px solid var(--line-dark);
  background: var(--ink-deep);
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Compact homepage product index */
.suite-products {
  padding: var(--section-space) var(--page-gutter);
  background: var(--ink);
}

.suite-products__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.5fr);
  gap: clamp(48px, 10vw, 170px);
  align-items: end;
  padding: clamp(54px, 7vw, 110px) 0;
}

.suite-products__heading h2 {
  font-size: clamp(46px, 7vw, 104px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.suite-products__heading > p {
  color: var(--text-dim);
  font-size: clamp(16px, 1.3vw, 20px);
}

.product-teaser {
  min-height: min(62vw, 640px);
  display: grid;
  grid-template-columns: minmax(300px, 0.55fr) minmax(440px, 1.45fr);
  border-top: 1px solid var(--line-dark);
}

.product-teaser:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.product-teaser__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  padding: clamp(44px, 6vw, 92px) clamp(24px, 5vw, 72px) clamp(44px, 6vw, 92px) 0;
}

.product-teaser__copy h3 {
  font-size: clamp(48px, 6.2vw, 96px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.product-teaser__copy > p:not(.overline) {
  max-width: 35ch;
  color: var(--text-dim);
  font-size: 17px;
}

.product-teaser__media {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border-left: 1px solid var(--line-dark);
  background: var(--ink-deep);
}

.product-teaser__media picture,
.product-teaser__media img {
  width: 100%;
  height: 100%;
}

.product-teaser__media img {
  object-fit: cover;
}

.product-teaser__burst img {
  filter: saturate(0.7) brightness(0.78) contrast(1.08);
}

.teaser-select {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40%;
  width: 20%;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  border: 2px solid var(--amber);
  color: var(--paper);
  font: 8px/1 var(--mono);
}

.product-teaser-studio {
  margin-inline: calc(var(--page-gutter) * -1);
  padding-inline: var(--page-gutter);
  border-color: var(--line-light);
  background: var(--paper);
  color: var(--ink);
}

.product-teaser-studio .product-teaser__copy {
  order: 2;
  padding-right: 0;
  padding-left: clamp(24px, 5vw, 72px);
}

.product-teaser-studio .product-teaser__copy > p:not(.overline) {
  color: var(--text-dark-dim);
}

.product-teaser-studio .product-teaser__media {
  border-right: 1px solid var(--line-light);
  border-left: 0;
}

.product-teaser__grade img {
  object-position: center;
}

.product-teaser__reel img {
  filter: saturate(0.62) brightness(0.68) contrast(1.12);
}

.teaser-timeline {
  position: absolute;
  right: 4%;
  bottom: 7%;
  left: 4%;
  height: 72px;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1.3fr;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line-dark);
  background: color-mix(in oklch, var(--ink-deep) 92%, transparent);
}

.teaser-timeline span {
  border: 1px solid var(--amber-dark);
  background: color-mix(in oklch, var(--amber) 12%, var(--ink-raised));
}

.teaser-timeline i {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 54%;
  width: 1px;
  background: var(--paper);
}

.suite-promise {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 var(--page-gutter);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink-deep);
}

.suite-promise p {
  min-height: 116px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid var(--line-dark);
  color: var(--paper-dim);
}

.suite-promise p:last-child {
  border-right: 0;
}

.suite-promise span {
  color: var(--amber);
  font: 8px/1 var(--mono);
}

/* Product pages */
.site-header [aria-current="page"] {
  color: var(--paper);
}

.site-header [aria-current="page"]::after {
  transform: scaleX(1);
}

.product-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(350px, 0.72fr) minmax(520px, 1.28fr);
  padding-top: var(--header-height);
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink);
}

.product-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
  padding: clamp(80px, 10vw, 160px) var(--page-gutter);
}

.product-hero h1 {
  max-width: 8.5ch;
  font-size: clamp(64px, 8.4vw, 138px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.84;
}

.product-hero h1 em {
  color: var(--amber);
  font-family: var(--serif);
  font-weight: 400;
}

.product-hero__lead {
  max-width: 47ch;
  color: var(--text-dim);
  font-size: clamp(16px, 1.35vw, 20px);
}

.product-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  color: var(--earth);
  font: 8px/1.5 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-hero__media {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border-left: 1px solid var(--line-dark);
  background: var(--ink-deep);
}

.product-hero__media picture,
.product-hero__media img {
  width: 100%;
  height: 100%;
}

.product-hero__media img {
  object-fit: cover;
}

.product-hero-cull .product-hero__media img {
  width: max(1300px, 170%);
  max-width: none;
  object-position: center;
  filter: saturate(0.68) brightness(0.76) contrast(1.1);
}

.product-hero-cull .burst-selection {
  left: 40%;
}

.product-hero-studio .grade-column {
  width: min(72%, 620px);
  align-self: center;
}

.product-hero-studio .product-hero__media {
  display: grid;
  place-items: center;
  padding: clamp(54px, 7vw, 110px);
}

.product-hero-reel {
  grid-template-columns: minmax(360px, 0.68fr) minmax(520px, 1.32fr);
}

.product-hero-reel .product-hero__media img {
  filter: saturate(0.68) brightness(0.68) contrast(1.12);
}

.product-hero-reel .teaser-timeline {
  height: 100px;
}

.product-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink-deep);
}

@media (max-width: 980px) {
  .product-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-facts > div {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 24px var(--page-gutter);
  border-right: 1px solid var(--line-dark);
}

.product-facts > div:last-child {
  border-right: 0;
}

.product-facts strong {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.product-facts span {
  color: var(--text-dim);
  font: 8px/1.4 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-section {
  padding: var(--section-space) var(--page-gutter);
  background: var(--ink);
}

.detail-section-paper {
  background: var(--paper);
  color: var(--ink);
}

.detail-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  gap: clamp(48px, 10vw, 170px);
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 120px);
}

.detail-heading h2 {
  margin-top: 22px;
  font-size: clamp(48px, 7vw, 108px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.detail-heading > p {
  color: var(--text-dim);
  font-size: clamp(16px, 1.3vw, 20px);
}

.detail-section-paper .detail-heading > p {
  color: var(--text-dark-dim);
}

.workflow-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.workflow-strip article {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-right: 1px solid var(--line-light);
}

.workflow-strip article:last-child {
  border-right: 0;
}

.workflow-strip span {
  color: var(--amber-dark);
  font: 9px/1 var(--mono);
}

.workflow-strip h3 {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.workflow-strip p {
  color: var(--text-dark-dim);
}

.detail-split {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(54px, 10vw, 170px);
  align-items: center;
}

.detail-split__copy {
  display: grid;
  gap: 28px;
}

.detail-split__copy h2 {
  font-size: clamp(44px, 6vw, 86px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.detail-split__copy > p {
  color: var(--text-dim);
  font-size: 18px;
}

.detail-section-paper .detail-split__copy > p {
  color: var(--text-dark-dim);
}

.feature-ledger {
  border-top: 1px solid var(--line-dark);
}

.feature-ledger li {
  display: grid;
  grid-template-columns: 36px 0.7fr 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
}

.feature-ledger span {
  color: var(--amber);
  font: 8px/1.6 var(--mono);
}

.feature-ledger strong {
  font-weight: 500;
}

.feature-ledger p {
  color: var(--text-dim);
  font-size: 14px;
}

.detail-section-paper .feature-ledger {
  border-color: var(--line-light);
}

.detail-section-paper .feature-ledger li {
  border-color: var(--line-light);
}

.detail-section-paper .feature-ledger p {
  color: var(--text-dark-dim);
}

.loupe-visual {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  border: 1px solid var(--line-dark);
  background-image: image-set(
    url("/assets/images/cull-home/cull-burst-1920.avif") type("image/avif"),
    url("/assets/images/cull-home/cull-burst-1920.webp") type("image/webp")
  );
  background-size: 500% 100%;
  background-position: 50% center;
  filter: saturate(0.45) contrast(1.2);
}

.loupe-visual::before {
  position: absolute;
  top: 34%;
  left: 45%;
  width: 20%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid var(--amber);
}

.loupe-visual::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 6px 8px;
  content: "1:1 LOUPE / SHARP 0.94";
  background: var(--ink-deep);
  color: var(--paper);
  font: 8px/1 var(--mono);
}

.studio-tools {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}

.studio-tools .adjustment-panel {
  margin: 0;
}

.pipeline-large {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.pipeline-large article {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: var(--ink);
}

.pipeline-large span,
.pipeline-large small {
  color: var(--amber);
  font: 8px/1.5 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pipeline-large h3 {
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.pipeline-large p {
  color: var(--text-dim);
  font-size: 14px;
}

.page-crosslink {
  min-height: 72svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 34px;
  padding: var(--section-space) var(--page-gutter);
  background: var(--paper);
  color: var(--ink);
}

.page-crosslink h2 {
  max-width: 13ch;
  font-size: clamp(52px, 8vw, 118px);
  font-weight: 600;
  letter-spacing: -0.067em;
  line-height: 0.9;
}

.page-crosslink p {
  max-width: 50ch;
  color: var(--text-dark-dim);
  font-size: 18px;
}

/* Pricing */
.pricing-hero {
  min-height: 76svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 28px;
  padding: calc(var(--header-height) + clamp(80px, 10vw, 150px)) var(--page-gutter) clamp(64px, 8vw, 120px);
  background: var(--paper);
  color: var(--ink);
}

.pricing-hero h1 {
  max-width: 11ch;
  font-size: clamp(64px, 9.4vw, 144px);
  font-weight: 600;
  letter-spacing: -0.072em;
  line-height: 0.86;
}

.pricing-hero h1 em {
  color: var(--amber-dark);
  font-family: var(--serif);
  font-weight: 400;
}

.pricing-hero > p:not(.overline) {
  max-width: 52ch;
  color: var(--text-dark-dim);
  font-size: 19px;
}

.pricing-section {
  padding: var(--section-space) var(--page-gutter);
  background: var(--ink);
}

.pricing-list {
  border-top: 1px solid var(--line-dark);
}

.pricing-plan {
  display: grid;
  grid-template-columns: 78px minmax(180px, 0.65fr) minmax(260px, 1.1fr) minmax(150px, 0.45fr) 170px;
  gap: 24px;
  align-items: center;
  min-height: 176px;
  border-bottom: 1px solid var(--line-dark);
  transition: background-color 240ms ease;
}

.pricing-plan:hover {
  background: color-mix(in oklch, var(--amber) 6%, transparent);
}

.pricing-plan__number {
  font: 8px/1.5 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-plan__number {
  color: var(--amber);
}

.pricing-plan__name {
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.055em;
}

.pricing-plan__desc {
  color: var(--text-dim);
}

.pricing-plan__price {
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.055em;
}

.pricing-plan__price small {
  display: block;
  color: var(--earth);
  font: 8px/1.5 var(--mono);
  letter-spacing: 0.04em;
}

.pricing-plan-suite {
  margin-inline: calc(var(--page-gutter) * -1);
  padding-inline: var(--page-gutter);
  background: var(--amber);
  color: var(--ink-deep);
}

.pricing-plan-suite:hover {
  background: var(--amber);
}

.pricing-plan-suite .pricing-plan__number,
.pricing-plan-suite .pricing-plan__desc,
.pricing-plan-suite .pricing-plan__price small {
  color: color-mix(in oklch, var(--ink) 72%, transparent);
}

.pricing-plan-suite .button {
  border-color: var(--ink);
}

.pricing-plan__actions {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.pricing-plan__trial {
  font: 8px/1.5 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing-plan__trial:hover {
  color: var(--amber);
}

.pricing-plan-suite .pricing-plan__trial {
  color: color-mix(in oklch, var(--ink) 72%, transparent);
}

.pricing-plan-suite .pricing-plan__trial:hover {
  color: var(--ink-deep);
}

.pricing-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line-dark);
}

.pricing-notes article {
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
}

.pricing-notes article:last-child {
  border-right: 0;
}

.pricing-notes span {
  color: var(--amber);
  font: 8px/1 var(--mono);
}

.pricing-notes h3 {
  margin: 30px 0 8px;
  font-size: 24px;
}

.pricing-notes p {
  color: var(--text-dim);
  font-size: 14px;
}

.faq-section {
  padding: var(--section-space) var(--page-gutter);
  background: var(--paper);
  color: var(--ink);
}

.faq-section h2 {
  margin-bottom: 56px;
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 600;
  letter-spacing: -0.065em;
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  cursor: pointer;
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 500;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--amber-dark);
  font-family: var(--mono);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 68ch;
  padding: 0 0 30px;
  color: var(--text-dark-dim);
}

.wordmark-footer {
  color: var(--paper);
}

.wordmark-footer span {
  font-size: 21px;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a:hover {
  color: var(--paper);
}

.motion-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 0 8px;
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.motion-toggle__dot {
  width: 5px;
  height: 5px;
  background: var(--amber);
  border-radius: 50%;
}

/* Legal pages (Ledger Light) */
.legal-hero {
  min-height: 58svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 28px;
  padding: calc(var(--header-height) + clamp(80px, 10vw, 150px)) var(--page-gutter) clamp(56px, 7vw, 100px);
  background: var(--paper);
  color: var(--ink);
}

.legal-hero h1 {
  max-width: 14ch;
  font-size: clamp(46px, 7vw, 108px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.legal-hero h1 em {
  color: var(--amber-dark);
  font-family: var(--serif);
  font-weight: 400;
}

.legal-hero > p:not(.overline) {
  max-width: 56ch;
  color: var(--text-dark-dim);
  font-size: clamp(16px, 1.35vw, 19px);
}

.legal-ledger {
  padding: 0 var(--page-gutter) var(--section-space);
  background: var(--paper);
  color: var(--ink);
}

.legal-ledger__list {
  margin-top: clamp(40px, 5vw, 72px);
}

.legal-ledger__list li {
  display: grid;
  grid-template-columns: 48px minmax(240px, 0.85fr) 1fr;
  gap: 28px;
  align-items: baseline;
  padding: clamp(32px, 4vw, 54px) 0;
  border-bottom: 1px solid var(--line-light);
}

.legal-ledger__list li:first-child {
  border-top: 1px solid var(--line-light);
}

.legal-ledger__list li > span {
  color: var(--amber-dark);
  font: 9px/1 var(--mono);
  letter-spacing: 0.08em;
}

.legal-ledger__list h2 {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.legal-ledger__list p {
  max-width: 58ch;
  color: var(--text-dark-dim);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
}

.legal-ledger__list strong {
  color: var(--ink);
  font-weight: 600;
}

.legal-note {
  margin-top: clamp(40px, 6vw, 72px);
  color: var(--text-dark-dim);
  font: 500 10px/1.8 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Legal prose pages: long-form documents (Impressum, AGB, Widerruf, Datenschutz). */
.legal-hero--doc {
  min-height: 0;
}

.legal-hero--doc h1 {
  max-width: 22ch;
  font-size: clamp(38px, 5vw, 76px);
}

.legal-prose {
  padding: clamp(40px, 5vw, 72px) var(--page-gutter) var(--section-space);
  background: var(--paper);
  color: var(--ink);
}

.legal-draft-banner {
  display: inline-block;
  margin-bottom: clamp(36px, 5vw, 64px);
  padding: 12px 16px;
  border: 1px solid var(--amber-dark);
  color: var(--amber-dark);
  font: 500 10px/1.7 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-prose h2 {
  max-width: 30ch;
  margin: clamp(44px, 6vw, 76px) 0 18px;
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.legal-prose .legal-draft-banner + h2 {
  margin-top: 0;
}

.legal-prose h3 {
  max-width: 40ch;
  margin: clamp(28px, 3.4vw, 44px) 0 12px;
  font-size: clamp(18px, 1.6vw, 23px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.legal-prose p,
.legal-prose ul,
.legal-prose ol {
  max-width: 66ch;
  margin: 0 0 16px;
  color: var(--text-dark-dim);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
}

.legal-prose strong {
  color: var(--ink);
  font-weight: 600;
}

.legal-prose a {
  color: var(--amber-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-prose ul,
.legal-prose ol {
  padding-left: 1.5em;
}

.legal-prose ol {
  list-style: decimal;
}

.legal-prose li {
  margin-bottom: 8px;
}

.legal-prose li::marker {
  color: var(--amber-dark);
  font-weight: 600;
}

.legal-prose .legal-table-wrap {
  max-width: 88ch;
  margin: 24px 0;
  overflow-x: auto;
  border: 1px solid var(--line-light);
}

.legal-prose table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: clamp(15px, 1.1vw, 17px);
}

.legal-prose th,
.legal-prose td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-light);
  text-align: left;
  vertical-align: top;
}

.legal-prose th {
  color: var(--ink);
  font: 600 10px/1.5 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-prose td {
  color: var(--text-dark-dim);
  line-height: 1.55;
}

.legal-prose tbody tr:last-child td {
  border-bottom: 0;
}

/* Pricing fine print (tax + Merchant-of-Record note). */
.pricing-footnote {
  max-width: 62ch;
  margin-top: clamp(32px, 4vw, 52px);
  color: var(--text-dark-dim);
  font: 500 10px/1.8 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* 404: the frame that never made the contact sheet. */
.notfound {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(320px, 1.12fr) minmax(300px, 0.88fr);
  align-items: center;
  gap: clamp(48px, 7vw, 120px);
  padding: calc(var(--header-height) + clamp(48px, 7vw, 100px)) var(--page-gutter) clamp(72px, 9vw, 130px);
  background: var(--ink);
}

.notfound-copy {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3.5vh, 40px);
}

.notfound h1 {
  max-width: 12ch;
  font-size: clamp(52px, 6.8vw, 112px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.notfound h1 em {
  color: var(--amber);
  font-family: var(--serif);
  font-weight: 400;
}

.notfound-copy > p:not(.overline) {
  max-width: 46ch;
  color: var(--text-dim);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
}

.notfound-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 30px;
}

.notfound-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
}

.notfound-links a {
  color: var(--text-dim);
  font: 9px/1.6 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 200ms ease;
}

.notfound-links a:hover {
  color: var(--amber);
}

.notfound-sheet {
  border: 1px solid var(--line-dark);
  background: var(--ink-raised);
}

.notfound-sheet__bar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--earth);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.notfound-sheet__bar-foot {
  border-top: 1px solid var(--line-dark);
  border-bottom: 0;
}

.notfound-sheet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 18px;
}

.notfound-sheet__grid span,
.notfound-sheet__grid i {
  aspect-ratio: 3 / 2;
  display: grid;
  align-items: end;
  padding: 8px 10px;
  border: 1px solid var(--line-dark);
  background: color-mix(in oklch, var(--ink-deep) 72%, transparent);
  color: var(--earth);
  font: 8px/1 var(--mono);
  letter-spacing: 0.1em;
}

.notfound-sheet__grid i {
  border: 1px dashed var(--amber);
  background: color-mix(in oklch, var(--amber) 9%, transparent);
  color: var(--amber);
  font-style: normal;
}

/* Motion */
@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes progress {
  to { transform: scaleX(1); }
}

@keyframes timeline-scrub {
  from { transform: translateX(0); }
  to { transform: translateX(min(31vw, 460px)); }
}

@supports (animation-timeline: scroll()) {
  .scroll-progress {
    animation: progress linear both;
    animation-timeline: scroll(root block);
  }

  [data-reveal] {
    animation: reveal-up 1ms var(--ease-out) both;
    animation-timeline: view(block);
    animation-range: entry 8% entry 74%;
  }

  .timeline-playhead {
    animation: timeline-scrub 1ms linear both;
    animation-timeline: view(block);
    animation-range: entry 15% cover 72%;
  }
}

@supports not (animation-timeline: scroll()) {
  .no-scroll-timeline [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 720ms var(--ease-out),
      transform 720ms var(--ease-out);
  }

  .no-scroll-timeline [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy > *,
.hero-contact,
.hero-caption {
  transition:
    opacity 900ms var(--ease-out),
    transform 1100ms var(--ease-out);
}

@starting-style {
  .hero-copy > * {
    opacity: 0;
    transform: translateY(28px);
  }

  .hero-contact {
    opacity: 0;
    transform: translateX(22px);
  }

  .hero-caption {
    opacity: 0;
  }
}

.hero-copy > :nth-child(2) { transition-delay: 70ms; }
.hero-copy > :nth-child(3) { transition-delay: 140ms; }
.hero-copy > :nth-child(4) { transition-delay: 210ms; }
.hero-copy > :nth-child(5) { transition-delay: 280ms; }

/* Skip expensive below-fold rendering until needed. */
.closing-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 1000px;
}

/* Responsive */
@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(320px, 0.8fr) minmax(440px, 1.2fr);
  }

  .hero h1 {
    font-size: clamp(54px, 7.6vw, 84px);
  }

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

  .reel-stage__preview {
    min-height: 520px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .reel-timeline {
    min-height: 390px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: grid;
    justify-self: end;
    place-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-button > span:not(.sr-only) {
    position: absolute;
    width: 20px;
    height: 1px;
    background: var(--paper);
    transition: transform 220ms var(--ease-out);
  }

  .menu-button > span:nth-child(2) { transform: translateY(-4px); }
  .menu-button > span:nth-child(3) { transform: translateY(4px); }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { transform: rotate(-45deg); }

  .main-navigation {
    z-index: 1;
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px var(--page-gutter) 24px;
    border-bottom: 1px solid var(--line-dark);
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 220ms var(--ease-quiet),
      transform 220ms var(--ease-out),
      visibility 0s 220ms;
  }

  .main-navigation.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .main-navigation a {
    min-height: 50px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line-dark);
    font-size: 11px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 78svh;
  }

  .hero h1 {
    font-size: clamp(58px, 12.6vw, 100px);
  }

  .hero-contact {
    min-height: min(68vw, 620px);
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .hero-contact__selection {
    top: 0;
  }

  .paper-intro__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .workflow-ledger li {
    grid-template-columns: 40px 100px 1fr 42px;
    gap: 16px;
    padding: 22px 0;
  }

  .workflow-ledger p {
    grid-column: 3 / -1;
  }

  .workflow-ledger a {
    grid-column: 4;
    grid-row: 1;
  }

  .grade-column {
    width: min(88%, 540px);
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .footer-links {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .site-footer > p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .hero-copy {
    min-height: 82svh;
    padding-top: 74px;
  }

  .hero h1 {
    font-size: clamp(49px, 15vw, 76px);
  }

  .hero h1 span:last-child {
    margin-left: 0;
  }

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

  .hero-contact {
    min-height: 72vw;
  }

  .hero-contact__top {
    top: 12px;
    right: 12px;
    left: 12px;
  }

  .hero-contact__selection {
    padding: 8px;
  }

  .hero-contact__footer {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-content: space-between;
    gap: 8px;
  }

  .paper-intro h2,
  .closing-section h2 {
    font-size: clamp(42px, 13vw, 68px);
  }

  .workflow-ledger li {
    grid-template-columns: 34px 1fr 42px;
  }

  .workflow-ledger__verb {
    display: none;
  }

  .workflow-ledger p {
    grid-column: 2 / -1;
  }

  .workflow-ledger a {
    grid-column: 3;
  }

  .burst-selection {
    left: 360px;
    width: 180px;
  }

  .grade-column {
    width: 100%;
  }

  .grade-compare {
    box-shadow: 12px 16px 0 color-mix(in oklch, var(--amber) 16%, transparent);
  }

  .grade-compare__image {
    background-image: image-set(
      url("/assets/images/cull-home/studio-grade-800.avif") type("image/avif"),
      url("/assets/images/cull-home/studio-grade-800.webp") type("image/webp")
    );
  }

  .adjustment-panel__head,
  .adjustment-row {
    grid-template-columns: 96px 1fr 36px;
    gap: 9px;
  }

  .adjustment-panel__head {
    grid-template-columns: 1fr auto;
  }

  .reel-stage__preview {
    min-height: 66vw;
  }

  .reel-timeline {
    min-height: 320px;
    padding: 22px 16px;
  }

  .closing-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links,
  .site-footer > p {
    grid-column: auto;
    grid-row: auto;
  }

  .motion-toggle {
    padding-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .timeline-playhead {
    transform: translateX(min(15vw, 220px));
  }
}

[data-motion="off"] *,
[data-motion="off"] *::before,
[data-motion="off"] *::after {
  animation-play-state: paused !important;
  transition-duration: 0.01ms !important;
}

[data-motion="off"] [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
}

[data-motion="off"] .timeline-playhead {
  transform: translateX(min(15vw, 220px));
}

/* Responsive rules for compact home, product pages, and pricing. */
@media (max-width: 980px) {
  .suite-products__heading,
  .detail-heading {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .product-teaser {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .product-teaser__copy {
    min-height: 420px;
    padding-inline: 0;
  }

  .product-teaser__media {
    min-height: 54vw;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .product-teaser-studio .product-teaser__copy {
    order: 0;
    padding-inline: 0;
  }

  .product-teaser-studio .product-teaser__media {
    border-top-color: var(--line-light);
    border-right: 0;
  }

  .product-hero,
  .product-hero-reel {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .product-hero__copy {
    min-height: 76svh;
  }

  .product-hero__media {
    min-height: 68vw;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .product-hero-cull .product-hero__media img {
    width: 135%;
  }

  .product-hero-studio .product-hero__media {
    min-height: 980px;
  }

  .detail-split,
  .studio-tools {
    grid-template-columns: 1fr;
  }

  .loupe-visual {
    min-height: 70vw;
  }

  .pricing-plan {
    grid-template-columns: 54px minmax(170px, 0.55fr) 1fr minmax(120px, 0.4fr);
  }

  .pricing-plan .button {
    grid-column: 2 / -1;
    width: fit-content;
    margin-bottom: 26px;
  }
}

@media (max-width: 700px) {
  .suite-promise,
  .product-facts,
  .workflow-strip,
  .pipeline-large,
  .pricing-notes {
    grid-template-columns: 1fr;
  }

  .suite-promise p,
  .product-facts > div,
  .workflow-strip article,
  .pricing-notes article {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .workflow-strip article {
    min-height: 220px;
    border-bottom-color: var(--line-light);
  }

  .product-teaser__copy {
    min-height: 360px;
  }

  .product-teaser__media {
    min-height: 72vw;
  }

  .product-hero__copy {
    min-height: 80svh;
  }

  .product-hero h1 {
    font-size: clamp(54px, 15vw, 82px);
  }

  .product-hero__media {
    min-height: 82vw;
  }

  .product-hero-studio .product-hero__media {
    min-height: 780px;
    padding: 58px 20px;
  }

  .product-hero-studio .grade-column {
    width: min(92%, 500px);
  }

  .product-facts > div {
    min-height: 110px;
  }

  .feature-ledger li {
    grid-template-columns: 30px 1fr;
  }

  .feature-ledger li p {
    grid-column: 2;
  }

  .pipeline-large article {
    min-height: 210px;
  }

  .pricing-hero {
    min-height: 72svh;
  }

  .pricing-hero h1 {
    font-size: clamp(56px, 16vw, 82px);
  }

  .pricing-plan {
    grid-template-columns: 34px 1fr auto;
    gap: 16px;
    padding: 30px 0;
  }

  .pricing-plan__number {
    grid-row: 1 / 3;
  }

  .pricing-plan__desc {
    grid-column: 2 / -1;
  }

  .pricing-plan__price {
    grid-column: 2;
  }

  .pricing-plan .button {
    grid-column: 2 / -1;
    margin: 0;
  }

  .pricing-plan-suite {
    padding-inline: var(--page-gutter);
  }

  .faq-list summary {
    min-height: 92px;
  }
}

.suite-products,
.detail-section,
.page-crosslink,
.pricing-section,
.faq-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

/* Responsive rules for legal and 404 pages. */
@media (max-width: 980px) {
  .notfound {
    grid-template-columns: 1fr;
    align-content: center;
    gap: clamp(40px, 8vw, 64px);
  }

  .notfound-sheet {
    max-width: 480px;
  }

  .legal-ledger__list li {
    grid-template-columns: 32px 1fr;
  }

  .legal-ledger__list li p {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .legal-hero {
    min-height: 0;
  }

  .legal-hero h1 {
    font-size: clamp(42px, 12vw, 60px);
  }

  .notfound h1 {
    font-size: clamp(46px, 13.5vw, 66px);
  }

  .legal-ledger__list li {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .legal-ledger__list li p {
    grid-column: 1;
  }
}

/* Open Design handoff alignment: source /Users/andreas/Downloads/Opura-Marketing-Site.zip */
:root {
  --ink: #0e0b06;
  --ink-deep: #0a0804;
  --ink-raised: #17130d;
  --paper: #ede3d2;
  --paper-bright: #f5eddf;
  --paper-dim: #d3c7b7;
  --amber: #c8862b;
  --amber-dark: #9b641f;
  --earth: #7d7163;
  --line-dark: color-mix(in oklab, var(--paper) 18%, transparent);
  --line-light: color-mix(in oklab, var(--ink) 18%, transparent);
  --text-dim: #aca395;
  --text-dark-dim: #675d50;
  --page-gutter: clamp(20px, 5vw, 72px);
  --header-height: 66px;
  --handoff-max: 1240px;
  --handoff-radius: 8px;
  --amber-soft: color-mix(in oklab, var(--amber) 16%, transparent);
}

body {
  background: var(--ink);
  color: var(--paper);
  font-size: 17px;
}

.site-header {
  height: var(--header-height);
  grid-template-columns: auto 1fr auto;
  gap: clamp(22px, 4vw, 58px);
  padding-inline: max(var(--page-gutter), calc((100vw - var(--handoff-max)) / 2));
  border-bottom-color: var(--line-dark);
  background: color-mix(in oklab, var(--ink) 88%, transparent);
  backdrop-filter: saturate(1.08) blur(14px);
}

.site-header.is-compact {
  --header-height: 62px;
  background: color-mix(in oklab, var(--ink) 94%, transparent);
}

.wordmark {
  gap: 11px;
  align-items: center;
  letter-spacing: -0.02em;
}

.wordmark::before {
  width: 26px;
  height: 26px;
  flex: none;
  border: 1.4px solid var(--paper);
  border-radius: 50%;
  content: "";
  background:
    linear-gradient(135deg, transparent 44%, var(--amber) 45% 55%, transparent 56%),
    radial-gradient(circle, transparent 0 33%, var(--text-dim) 34% 39%, transparent 40%);
  opacity: .92;
}

.wordmark span {
  color: var(--paper);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  text-transform: none;
}

.wordmark small {
  margin-left: 2px;
  padding: 3px 7px 2px;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  color: var(--amber);
  font-size: 10px;
  letter-spacing: .2em;
}

.main-navigation {
  justify-content: flex-end;
  gap: clamp(18px, 2.1vw, 28px);
}

.main-navigation a {
  color: var(--text-dim);
  font-family: var(--body);
  font-size: .94rem;
  letter-spacing: 0;
  text-transform: none;
}

.main-navigation a::after {
  bottom: -9px;
  height: 1.5px;
  background: var(--amber);
}

.main-navigation a:hover,
.site-header [aria-current="page"] {
  color: var(--paper);
}

.main-navigation a[href="/releases"] {
  display: none;
}

.header-cta,
.button {
  min-height: 46px;
  border-radius: var(--handoff-radius);
  font-family: var(--body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.header-cta {
  min-height: 42px;
  justify-content: center;
  gap: 10px;
  border-color: var(--amber);
  background: var(--amber);
  color: var(--ink-deep);
  padding-inline: 18px;
}

.header-cta:hover,
.button-primary:hover {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink-deep);
}

.button-primary {
  background: var(--amber);
  color: var(--ink-deep);
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
}

.button:not(.button-primary, .button-dark) {
  border-color: var(--line-dark);
  color: var(--paper);
}

.text-link {
  color: var(--amber);
  font-size: .78rem;
}

.overline,
.section-index,
.hero-readout,
.grade-caption,
.reel-timeline,
.product-hero__meta,
.pricing-plan__number,
.pricing-plan__price small,
.pricing-plan__trial {
  letter-spacing: .14em;
}

.overline {
  color: var(--amber);
  font-size: 12px;
}

.hero {
  min-height: 100svh;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .92fr);
  grid-template-rows: 1fr;
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  padding: var(--header-height) max(var(--page-gutter), calc((100vw - var(--handoff-max)) / 2)) 0;
}

.hero-copy {
  min-width: 0;
  gap: clamp(24px, 3.2vh, 36px);
  padding: clamp(58px, 8vw, 124px) 0 clamp(54px, 7vw, 96px);
}

.hero h1 {
  max-width: 10.2ch;
  font-size: clamp(64px, 6.6vw, 116px);
  letter-spacing: -0.046em;
  line-height: .95;
}

.hero h1 span:last-child {
  margin-left: 0;
  white-space: normal;
}

.hero h1 em,
.product-hero h1 em,
.pricing-hero h1 em,
.paper-intro__copy blockquote {
  color: var(--amber);
  font-family: var(--serif);
  font-weight: 400;
}

.hero-lead,
.product-hero__lead,
.suite-products__heading > p,
.product-teaser__copy > p:not(.overline),
.detail-heading > p,
.detail-split__copy > p {
  color: var(--text-dim);
}

.hero-contact {
  position: relative;
  min-height: 0;
  width: min(100%, 620px);
  aspect-ratio: 4 / 3;
  justify-self: end;
  align-self: center;
  isolation: isolate;
  overflow: visible;
  border: 1px solid var(--line-dark);
  border-radius: var(--handoff-radius);
  background:
    linear-gradient(135deg, color-mix(in oklab, var(--amber) 10%, var(--ink-raised)), var(--ink-deep));
  box-shadow: 24px 30px 0 var(--amber-soft);
}

.hero-contact picture,
.hero-contact img {
  display: none;
}

.hero-contact::before,
.product-hero-cull .product-hero__media::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  content: "";
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .34;
}

.hero-contact::after,
.product-hero-cull .product-hero__media::after {
  position: absolute;
  z-index: -1;
  right: -24px;
  bottom: -30px;
  width: 100%;
  height: 100%;
  border-radius: var(--handoff-radius);
  content: "";
  background: color-mix(in oklab, var(--amber) 14%, transparent);
}

.technical-contact-grid {
  position: absolute;
  z-index: 2;
  inset: 58px 20px 44px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.technical-contact-grid span {
  position: relative;
  min-width: 0;
  border: 1px solid color-mix(in oklab, var(--paper) 16%, transparent);
  border-radius: 4px;
  background: color-mix(in oklab, var(--amber) 5%, var(--ink-deep));
}

.technical-contact-grid .is-pick {
  border-color: var(--amber);
  background: color-mix(in oklab, var(--amber) 13%, var(--ink-deep));
}

.technical-contact-grid .is-pick::after {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--amber);
}

.hero-contact__top,
.burst-selection {
  z-index: 3;
  top: 18px;
  right: auto;
  left: 18px;
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid color-mix(in oklab, var(--ink) 35%, transparent);
  border-radius: 4px;
  background: var(--amber);
  color: var(--ink-deep);
  box-shadow: 0 0 0 2px var(--ink);
  font: 500 11px/1 var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-contact__selection {
  display: none;
}

.hero-contact__footer,
.product-frame-meta {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 17px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-dim);
  font: 500 11px/1 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-caption {
  display: none;
}

.paper-intro,
.closing-section,
.pricing-hero,
.faq-section,
.legal-hero,
.legal-ledger,
.legal-prose,
.page-crosslink,
.detail-section-paper {
  background: var(--paper);
  color: var(--ink);
}

.paper-intro h2,
.closing-section h2,
.suite-products__heading h2,
.detail-heading h2,
.page-crosslink h2,
.faq-section h2,
.legal-hero h1 {
  letter-spacing: -0.045em;
}

.workflow-ledger li,
.pricing-plan,
.feature-ledger li,
.legal-ledger__list li {
  border-color: var(--line-light);
}

.suite-products,
.detail-section,
.pricing-section {
  background: var(--ink);
}

.product-teaser,
.product-facts,
.suite-promise,
.site-footer {
  border-color: var(--line-dark);
}

.product-teaser__media,
.product-hero__media,
.reel-stage,
.loupe-visual,
.grade-compare {
  border-radius: var(--handoff-radius);
}

.product-hero {
  min-height: 100svh;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .92fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  padding: var(--header-height) max(var(--page-gutter), calc((100vw - var(--handoff-max)) / 2)) 0;
}

.product-hero__copy {
  min-width: 0;
  padding: clamp(58px, 8vw, 124px) 0 clamp(54px, 7vw, 96px);
}

.product-hero h1 {
  max-width: 11ch;
  font-size: clamp(58px, 6.3vw, 112px);
  letter-spacing: -0.046em;
  line-height: .95;
}

.product-hero-cull .product-hero__media {
  position: relative;
  width: min(100%, 650px);
  aspect-ratio: 4 / 3;
  justify-self: end;
  align-self: center;
  isolation: isolate;
  overflow: visible;
  border: 1px solid var(--line-dark);
  border-radius: var(--handoff-radius);
  background:
    linear-gradient(135deg, color-mix(in oklab, var(--amber) 10%, var(--ink-raised)), var(--ink-deep));
  box-shadow: 24px 30px 0 var(--amber-soft);
}

.product-hero-cull .product-hero__media picture,
.product-hero-cull .product-hero__media img {
  display: none;
}

.product-hero-cull .technical-contact-grid {
  inset: 58px 20px 44px;
}

.product-hero-cull .burst-selection {
  position: absolute;
  bottom: auto;
  flex-direction: row;
  justify-content: center;
  gap: 0;
}

.product-hero-cull .burst-selection small {
  display: none;
}

.product-frame-meta {
  color: var(--text-dim);
}

.product-facts {
  border-top: 1px solid var(--line-dark);
}

.product-facts strong,
.pricing-plan__price,
.stat .n {
  font-variant-numeric: tabular-nums;
}

.pricing-hero {
  min-height: 0;
  gap: 24px;
  padding: calc(var(--header-height) + clamp(64px, 9vw, 118px)) max(var(--page-gutter), calc((100vw - var(--handoff-max)) / 2)) clamp(56px, 8vw, 104px);
}

.pricing-hero h1 {
  max-width: 12ch;
  font-size: clamp(46px, 5.2vw, 78px);
  letter-spacing: -0.042em;
  line-height: .98;
}

.pricing-section {
  padding-inline: max(var(--page-gutter), calc((100vw - var(--handoff-max)) / 2));
}

.pricing-list {
  border-color: var(--line-dark);
}

.pricing-plan {
  grid-template-columns: minmax(54px, .18fr) minmax(140px, .5fr) minmax(250px, 1.05fr) minmax(132px, .34fr) minmax(168px, .46fr);
  gap: clamp(18px, 3vw, 38px);
  min-height: 158px;
}

.pricing-plan:hover {
  background: color-mix(in oklab, var(--amber) 6%, transparent);
}

.pricing-plan-suite {
  background: color-mix(in oklab, var(--amber) 12%, var(--ink));
  color: var(--paper);
}

.pricing-plan-suite:hover {
  background: color-mix(in oklab, var(--amber) 17%, var(--ink));
}

.pricing-plan-suite .pricing-plan__number,
.pricing-plan-suite .pricing-plan__desc,
.pricing-plan-suite .pricing-plan__price small,
.pricing-plan-suite .pricing-plan__trial {
  color: var(--paper-dim);
}

.pricing-plan-suite .button {
  border-color: var(--paper);
}

.pricing-notes article {
  border-color: var(--line-dark);
}

.faq-list summary::after {
  color: var(--amber-dark);
}

.site-footer {
  grid-template-columns: auto 1fr auto auto;
  padding-inline: max(var(--page-gutter), calc((100vw - var(--handoff-max)) / 2));
  background: var(--ink-deep);
}

.product-proof-section {
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 82% 12%, color-mix(in oklab, var(--amber) 8%, transparent), transparent 38%),
    var(--ink-deep);
}

.product-proof-section .detail-heading {
  margin-bottom: clamp(42px, 6vw, 78px);
}

.product-proof-grid {
  display: grid;
  gap: clamp(18px, 2.4vw, 34px);
}

.product-proof-grid-compare {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-proof-grid-single .product-proof-card {
  width: min(100%, 1200px);
  margin-inline: auto;
}

.product-proof-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--handoff-radius);
  background: var(--ink-raised);
  box-shadow: 0 24px 70px color-mix(in oklab, var(--ink-deep) 58%, transparent);
}

.product-proof-card__media {
  overflow: hidden;
  aspect-ratio: 1357 / 768;
  border-bottom: 1px solid var(--line-dark);
  background: #050505;
}

.product-proof-card__media-selra {
  aspect-ratio: 1208 / 768;
}

.product-proof-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050505;
}

.product-hero__media {
  margin: 0;
}

/* The Selra hero now uses the verified app screenshot rather than the
   decorative contact-sheet treatment.  Keep the old treatment scoped to
   legacy hero media so it cannot hide the proof image. */
.product-hero-cull .product-proof-card__media img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: none;
}

.product-hero-cull .product-proof-card__media::before,
.product-hero-cull .product-proof-card__media::after {
  display: none;
}

.product-proof-card figcaption {
  display: grid;
  gap: 11px;
  padding: clamp(22px, 3vw, 34px);
}

.product-proof-card figcaption > span {
  color: var(--amber);
  font: 500 10px/1.2 var(--mono);
  letter-spacing: .13em;
  text-transform: uppercase;
}

.product-proof-card h3 {
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.02;
}

.product-proof-card figcaption p,
.product-proof-provenance {
  color: var(--text-dim);
}

.product-proof-card figcaption p {
  max-width: 68ch;
  font-size: 15px;
}

.product-proof-provenance {
  width: min(100%, 1200px);
  margin: clamp(24px, 3vw, 38px) auto 0;
  font-size: 13px;
}

.product-proof-provenance a {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-color: var(--amber);
  text-underline-offset: 3px;
}

/* Product clarity modules (job, capabilities, fit) */
.product-job {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.7fr);
  align-items: start;
}

.product-job__lead {
  margin: 0;
  max-width: 48ch;
  color: var(--text-dim);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

.product-job__lead strong {
  color: var(--paper);
  font-weight: 600;
}

.detail-section-paper .product-job__lead {
  color: var(--text-dark-dim);
}

.detail-section-paper .product-job__lead strong {
  color: var(--ink);
}

.product-job__aside {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid var(--line-dark);
  border-radius: var(--handoff-radius, 14px);
  background: color-mix(in oklab, var(--ink-raised) 88%, transparent);
}

.detail-section-paper .product-job__aside {
  border-color: var(--line-light);
  background: color-mix(in oklab, var(--paper-bright) 70%, var(--paper));
}

.product-job__aside h3 {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
}

.detail-section-paper .product-job__aside h3 {
  color: var(--amber-dark);
}

.product-job__aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.product-job__aside li {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.45;
  padding-left: 1.1em;
  position: relative;
}

.product-job__aside li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 12px;
}

.detail-section-paper .product-job__aside li {
  color: var(--text-dark-dim);
}

.capability-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
  border-radius: var(--handoff-radius, 14px);
  overflow: hidden;
}

.detail-section-paper .capability-grid {
  border-color: var(--line-light);
  background: var(--line-light);
}

.capability-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: clamp(22px, 3vw, 32px);
  background: var(--ink);
  min-height: 100%;
}

.detail-section-paper .capability-card {
  background: var(--paper);
}

.capability-card > span {
  color: var(--amber);
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-section-paper .capability-card > span {
  color: var(--amber-dark);
}

.capability-card h3 {
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.capability-card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.5;
}

.detail-section-paper .capability-card p {
  color: var(--text-dark-dim);
}

.capability-card em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font: 500 11px/1.4 var(--mono);
  letter-spacing: 0.04em;
  color: var(--earth);
}

.fit-list {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
  border-radius: var(--handoff-radius, 14px);
  overflow: hidden;
}

.detail-section-paper .fit-list {
  border-color: var(--line-light);
  background: var(--line-light);
}

.fit-list article {
  display: grid;
  gap: 10px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--ink);
}

.detail-section-paper .fit-list article {
  background: var(--paper);
}

.fit-list span {
  color: var(--amber);
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-section-paper .fit-list span {
  color: var(--amber-dark);
}

.fit-list h3 {
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.fit-list p {
  margin: 0;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.5;
  max-width: 42ch;
}

.detail-section-paper .fit-list p {
  color: var(--text-dark-dim);
}

@media (max-width: 980px) {
  .product-job,
  .capability-grid,
  .fit-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1120px) {
  .hero,
  .product-hero {
    grid-template-columns: minmax(0, .95fr) minmax(340px, .85fr);
  }

  .hero h1,
  .product-hero h1 {
    font-size: clamp(56px, 7.6vw, 92px);
  }
}

@media (max-width: 980px) {
  .product-proof-grid-compare {
    grid-template-columns: 1fr;
  }

  .product-hero,
  .product-hero-reel {
    grid-template-columns: 1fr;
    padding-bottom: clamp(54px, 8vw, 96px);
  }

  .product-hero__copy {
    min-height: 0;
  }

  .product-hero-cull .product-hero__media {
    justify-self: start;
    width: min(100%, 620px);
  }

  .pricing-plan {
    grid-template-columns: 54px minmax(170px, .55fr) 1fr minmax(120px, .4fr);
  }
}

@media (max-width: 860px) {
  .site-header {
    padding-inline: var(--page-gutter);
  }

  .menu-button > span:not(.sr-only) {
    background: var(--paper);
  }

  .main-navigation {
    top: var(--header-height);
    grid-template-columns: 1fr;
    justify-content: stretch;
    justify-items: stretch;
    align-content: start;
    border-color: var(--line-dark);
    background: var(--ink);
    box-shadow: 0 24px 70px color-mix(in oklab, var(--ink-deep) 86%, transparent);
  }

  .main-navigation a {
    width: 100%;
    justify-content: flex-start;
    border-color: var(--line-dark);
    font-size: 1rem;
  }

  .main-navigation a::after {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-bottom: clamp(54px, 8vw, 96px);
  }

  .hero-copy {
    min-height: 0;
  }

  .hero-contact {
    justify-self: start;
    width: min(100%, 620px);
    min-height: 0;
    border-top: 1px solid var(--line-dark);
  }
}

@media (max-width: 700px) {
  .product-proof-card figcaption {
    padding: 20px;
  }

  .product-proof-card h3 {
    font-size: clamp(24px, 8vw, 34px);
  }

  .hero,
  .product-hero {
    padding-inline: var(--page-gutter);
  }

  .hero h1,
  .product-hero h1 {
    font-size: clamp(48px, 14vw, 76px);
  }

  .hero-contact,
  .product-hero-cull .product-hero__media {
    width: calc(100% - 12px);
    aspect-ratio: 1.08 / 1;
    box-shadow: 12px 16px 0 var(--amber-soft);
  }

  .technical-contact-grid {
    inset: 54px 14px 42px;
    gap: 7px;
  }

  .hero-contact__top,
  .burst-selection {
    top: 14px;
    left: 14px;
  }

  .hero-contact__footer,
  .product-frame-meta {
    right: 14px;
    bottom: 14px;
    left: 14px;
    font-size: 9px;
  }

  .pricing-plan {
    grid-template-columns: 34px 1fr;
  }

  .pricing-plan__price,
  .pricing-plan__actions,
  .pricing-plan .button {
    grid-column: 2;
  }

  .pricing-plan__trial {
    max-width: 100%;
    white-space: normal;
  }

  .pricing-plan__actions .button {
    grid-column: auto;
    margin: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-column: auto;
    grid-row: auto;
    flex-wrap: wrap;
  }

  .motion-toggle {
    justify-self: start;
    padding-left: 0;
  }

  .site-footer > p {
    grid-column: auto;
  }
}
