/* 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,
.window-bar,
.burst-meta,
.pipeline,
.grade-caption,
.reel-timeline,
.journal-card figcaption span {
  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,
.studio-section,
.journal-section,
.closing-section {
  background: var(--paper);
  color: var(--ink);
}

.paper-intro,
.studio-section,
.journal-section,
.principles-section,
.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,
.journal-heading 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 */
.product-section {
  padding: var(--section-space) var(--page-gutter);
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
}

.product-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.55fr);
  gap: clamp(54px, 10vw, 180px);
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 104px);
}

.product-heading h2,
.studio-copy h2,
.principles-title h2 {
  margin-top: 22px;
  font-size: clamp(48px, 7.4vw, 112px);
  font-weight: 600;
  letter-spacing: -0.067em;
  line-height: 0.9;
}

.product-heading__note {
  display: grid;
  gap: 22px;
  color: var(--text-dim);
}

.product-heading__note span {
  padding-top: 14px;
  border-top: 1px solid var(--line-dark);
  color: var(--amber);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.burst-window {
  border: 1px solid var(--line-dark);
  background: var(--ink-deep);
}

.window-bar,
.burst-meta {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 14px;
  color: var(--text-dim);
  font-size: 8px;
}

.window-bar {
  border-bottom: 1px solid var(--line-dark);
}

.burst-window__scroll {
  position: relative;
  overflow: hidden;
}

.burst-window__scroll picture,
.burst-window__scroll img {
  width: 100%;
}

.burst-window__scroll img {
  filter: saturate(0.74) contrast(1.08) brightness(0.86);
}

.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;
}

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

.burst-meta span:last-child {
  color: var(--amber);
}

.product-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(190px, 0.7fr);
  border-bottom: 1px solid var(--line-dark);
}

.product-proof > div,
.product-proof__link {
  min-height: 146px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line-dark);
  padding: 26px;
}

.product-proof > div:first-child {
  border-left: 1px solid var(--line-dark);
}

.product-proof > div span {
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.055em;
}

.product-proof > div p {
  margin-top: 5px;
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-proof__link {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-right: 1px solid var(--line-dark);
  color: var(--amber);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background-color 220ms ease;
}

.product-proof__link:hover {
  background: color-mix(in oklch, var(--amber) 8%, transparent);
}

/* Studio */
.studio-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(60px, 11vw, 190px);
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
}

.studio-copy h2 {
  color: var(--ink);
}

.studio-copy__lead {
  max-width: 52ch;
  margin-top: 32px;
  color: var(--text-dark-dim);
  font-size: clamp(16px, 1.3vw, 20px);
}

.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;
}

.pipeline {
  display: grid;
  gap: 0;
  margin-bottom: 28px;
  border-top: 1px solid var(--line-light);
  font-size: 8px;
}

.pipeline div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-light);
}

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

.pipeline dd {
  color: var(--text-dark-dim);
  letter-spacing: 0.03em;
  text-transform: none;
}

.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-section {
  background: var(--ink-deep);
}

.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);
}

.reel-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 28px 0 0;
}

.reel-footer p {
  color: var(--text-dim);
  font-size: 13px;
}

.reel-footer p span {
  display: block;
  margin-bottom: 5px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Journal */
.journal-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  gap: clamp(54px, 10vw, 180px);
  align-items: end;
  padding: clamp(54px, 7vw, 110px) 0;
}

.journal-heading h2 {
  margin: 0;
}

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

.journal-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  grid-auto-rows: minmax(280px, 31vw);
  gap: 12px;
}

.journal-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}

.journal-card-wide {
  grid-column: span 2;
}

.journal-card-tall {
  grid-row: span 2;
}

.journal-shot {
  min-height: 0;
  background-image: image-set(
    url("/assets/images/cull-home/contact-sheet-1680.avif") type("image/avif"),
    url("/assets/images/cull-home/contact-sheet-1680.webp") type("image/webp")
  );
  background-repeat: no-repeat;
  background-size: 300% 200%;
  filter: saturate(0.76) contrast(1.03);
  transition:
    filter 500ms var(--ease-quiet),
    transform 700ms var(--ease-out);
}

.journal-card:hover .journal-shot {
  filter: saturate(0.96) contrast(1.03);
  transform: scale(1.018);
}

.shot-cycling { background-position: 0 0; }
.shot-wedding { background-position: 50% 0; }
.shot-portrait { background-position: 100% 0; }
.shot-city { background-position: 0 100%; }
.shot-film { background-position: 50% 100%; }

.journal-card figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 2px 20px;
  border-top: 1px solid var(--paper);
}

.journal-card figcaption span {
  color: var(--amber-dark);
  font-size: 8px;
}

.journal-card figcaption strong {
  font-size: 12px;
  font-weight: 500;
}

/* Principles and close */
.principles-section {
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
}

.principles-title {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 60px;
  align-items: end;
  padding-bottom: clamp(60px, 8vw, 120px);
}

.principles-title h2 {
  margin: 0;
}

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

.principles-list article {
  display: grid;
  grid-template-columns: 48px minmax(190px, 0.75fr) 1fr;
  gap: 28px;
  align-items: baseline;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-dark);
}

.principles-list article > span {
  color: var(--amber);
  font-family: var(--mono);
  font-size: 9px;
}

.principles-list h3 {
  font-size: clamp(26px, 3.2vw, 48px);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.principles-list p {
  max-width: 58ch;
  color: var(--text-dim);
}

.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(3, 1fr);
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink-deep);
}

.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;
}

.studio-tools__visual {
  display: grid;
  gap: 14px;
}

.studio-tools__visual img {
  width: 100%;
  border: 1px solid var(--line-light);
}

.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,
.pricing-plan__stage {
  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-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%;
}

/* 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. */
.product-section,
.studio-section,
.journal-section,
.principles-section,
.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);
  }

  .product-proof {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-proof__link {
    grid-column: 1 / -1;
    min-height: 74px;
    border-left: 1px solid var(--line-dark);
  }

  .studio-layout {
    gap: clamp(50px, 7vw, 90px);
  }

  .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;
  }

  .journal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .journal-card-wide {
    grid-column: span 1;
  }
}

@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;
    transform: translateY(-12px);
    transition:
      opacity 220ms var(--ease-quiet),
      transform 220ms var(--ease-out);
  }

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

  .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,
  .product-heading,
  .journal-heading {
    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;
  }

  .studio-layout {
    grid-template-columns: 1fr;
  }

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

  .principles-title {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .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,
  .journal-heading h2,
  .closing-section h2,
  .product-heading h2,
  .studio-copy h2,
  .principles-title 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-window__scroll {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .burst-window__scroll picture,
  .burst-window__scroll img {
    width: 900px;
    max-width: none;
  }

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

  .burst-meta {
    flex-wrap: wrap;
    padding-block: 10px;
  }

  .burst-meta span:nth-child(2) {
    display: none;
  }

  .product-proof {
    grid-template-columns: 1fr;
  }

  .product-proof > div {
    min-height: 104px;
    border-left: 1px solid var(--line-dark);
  }

  .product-proof__link {
    grid-column: auto;
  }

  .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;
  }

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

  .journal-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(340px, 112vw);
  }

  .journal-card-tall {
    grid-row: span 1;
  }

  .principles-list article {
    grid-template-columns: 34px 1fr;
    gap: 18px;
  }

  .principles-list p {
    grid-column: 2;
  }

  .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;
}
