:root {
  color-scheme: light;
  --bg: #fbfbfd;
  --surface: #ffffff;
  --surface-soft: #f4f5f7;
  --surface-warm: #f8f4ee;
  --text: #171719;
  --muted: rgba(23, 23, 25, 0.52);
  --muted-strong: rgba(23, 23, 25, 0.72);
  --accent: #0a84ff;
  --accent-dark: #0066cc;
  --border: rgba(23, 23, 25, 0.1);
  --border-soft: rgba(23, 23, 25, 0.06);
  --shadow: 0 24px 56px rgba(30, 35, 46, 0.1);
  --shadow-soft: 0 1px 2px rgba(23, 23, 25, 0.04);
  --shadow-cta: 0 4px 14px rgba(10, 132, 255, 0.14);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.2, 0.64, 1);
  --duration-fast: 0.18s;
  --duration-base: 0.28s;
  --duration-slow: 0.72s;
  --space-section: clamp(80px, 9vw, 128px);
  --space-chapter: clamp(72px, 9vw, 112px);
  --space-head: clamp(28px, 3.5vw, 40px);
  --space-title-body: 16px;
  --space-body-action: 24px;
  --space-band: clamp(72px, 8vw, 104px);
  --content-width: 680px;
  --content-width-wide: 760px;
  --measure: 34rem;
  --measure-narrow: 28rem;
  --block-radius: var(--radius-lg);
  --block-padding: clamp(28px, 3.5vw, 40px);
  --block-border: 1px solid var(--border-soft);
  --transition: var(--duration-base) var(--ease-out);
  --label-size: 0.6875rem;
  --label-tracking: 0.07em;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-wrap: pretty;
}

.landing-skip {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: #fff;
  background: var(--text);
  font-size: 0.875rem;
  font-weight: 620;
  transform: translateY(-140%);
  transition: transform var(--transition);
}

.landing-skip:focus-visible {
  transform: translateY(0);
  outline: none;
}

.landing-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

.landing-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.landing-hero.landing-reveal {
  transform: none;
}

.landing-hero.landing-reveal.is-visible .hero-photo img {
  transform: scale(1);
}

.landing-hero.landing-reveal.is-visible .hero-copy,
.landing-hero.landing-reveal.is-visible .hero-marginalia {
  opacity: 1;
  transform: translateY(0);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

.landing-shell {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

/* ── Block system & section rhythm ── */

.landing-band {
  background: var(--surface-soft);
  box-shadow: 0 0 0 100vmax var(--surface-soft);
  clip-path: inset(0 -100vmax);
}

.landing-block {
  border: var(--block-border);
  border-radius: var(--block-radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.landing-eyebrow {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: var(--label-size);
  font-weight: 680;
  letter-spacing: var(--label-tracking);
  line-height: 1.4;
  text-transform: uppercase;
}

.landing-eyebrow-on-dark {
  color: rgba(10, 132, 255, 0.88);
}

.landing-media-card {
  overflow: hidden;
  border-radius: clamp(16px, 2vw, 24px);
  box-shadow:
    0 1px 1px rgba(23, 23, 25, 0.03),
    0 20px 64px rgba(23, 23, 25, 0.07);
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 10px 0;
  background: rgba(251, 251, 253, 0.58);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px) saturate(1.2);
  transition:
    background var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out),
    padding var(--duration-base) var(--ease-out);
}

.landing-header.scrolled {
  padding: 8px 0;
  background: rgba(251, 251, 253, 0.88);
  border-bottom-color: var(--border-soft);
}

.landing-header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-right: auto;
  font-size: 0.9375rem;
  font-weight: 650;
  letter-spacing: -0.014em;
}

.landing-brand img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.landing-nav a:not(.landing-cta) {
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 480;
  letter-spacing: -0.006em;
  transition: color var(--transition), opacity var(--transition);
}

.landing-nav a:not(.landing-cta):hover,
.landing-nav a:not(.landing-cta).is-active {
  color: var(--text);
}

.landing-nav a:not(.landing-cta).is-active {
  font-weight: 560;
  position: relative;
}

.landing-nav a:not(.landing-cta).is-active::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  border-radius: 1px;
  background: var(--accent);
  content: "";
}

.landing-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: var(--radius-sm);
  color: var(--text);
  background: transparent;
  transition: background var(--transition);
}

.landing-menu-toggle span,
.landing-menu-toggle span::before,
.landing-menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.landing-menu-toggle span {
  position: relative;
}

.landing-menu-toggle span::before,
.landing-menu-toggle span::after {
  position: absolute;
  left: 0;
  content: "";
}

.landing-menu-toggle span::before {
  top: -6px;
}

.landing-menu-toggle span::after {
  top: 6px;
}

.landing-header.menu-open .landing-menu-toggle span {
  background: transparent;
}

.landing-header.menu-open .landing-menu-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

.landing-header.menu-open .landing-menu-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

.landing-menu-toggle:hover {
  background: var(--surface-soft);
}

.landing-menu-toggle:focus-visible {
  outline: 2px solid rgba(10, 132, 255, 0.45);
  outline-offset: 2px;
}

.landing-cta,
.landing-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding-inline: 22px;
  border: 0;
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
  font-weight: 650;
  letter-spacing: -0.008em;
  white-space: nowrap;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    transform var(--duration-fast) var(--ease-out),
    opacity var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.landing-cta {
  color: #fff;
  background: var(--accent);
  box-shadow: var(--shadow-cta);
}

.landing-cta:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.16);
  transform: translateY(-1px);
}

.landing-cta:active {
  transform: translateY(0) scale(0.985);
  box-shadow: 0 2px 8px rgba(0, 102, 204, 0.12);
}

.landing-cta-small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 0.875rem;
  box-shadow: none;
}

.landing-cta-secondary {
  color: var(--text);
  background: var(--surface-soft);
  box-shadow: none;
}

.landing-cta-secondary:hover {
  background: #e8eaee;
  transform: translateY(-1px);
}

.landing-cta-secondary:active {
  transform: translateY(0) scale(0.985);
}

.landing-text-link {
  min-height: 0;
  color: var(--accent-dark);
  font-size: 0.9375rem;
  font-weight: 650;
}

.landing-text-link:hover {
  color: var(--accent);
}

.landing-cta:focus-visible,
.landing-cta-secondary:focus-visible,
.landing-text-link:focus-visible,
.landing-nav a:focus-visible {
  outline: 2px solid rgba(10, 132, 255, 0.45);
  outline-offset: 2px;
}

main {
  display: flex;
  flex-direction: column;
}

.landing-section {
  padding: var(--space-section) 0;
}

.landing-band.landing-section {
  padding-block: var(--space-band);
}

.landing-section-head {
  max-width: var(--content-width);
  margin-bottom: var(--space-head);
}

.landing-section-head .landing-eyebrow {
  margin-bottom: 12px;
}

.landing-section-head h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.022em;
}

.landing-section-head p {
  margin: var(--space-title-body) 0 0;
  max-width: var(--measure-narrow);
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  letter-spacing: -0.004em;
}

/* ══════════════════════════════════════════
   1. HERO — one scene, photo leads
   ══════════════════════════════════════════ */

.landing-hero {
  position: relative;
  padding: clamp(8px, 1.2vw, 14px) 0 clamp(24px, 3.5vw, 40px);
}

.hero-stage {
  position: relative;
  isolation: isolate;
  min-height: clamp(640px, calc(100svh - 64px), 880px);
  overflow: hidden;
  border-radius: clamp(16px, 2vw, 24px);
  box-shadow:
    0 1px 1px rgba(23, 23, 25, 0.03),
    0 20px 64px rgba(23, 23, 25, 0.07);
}

.hero-photo {
  position: absolute;
  inset: 0;
  margin: 0;
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 23, 25, 0.22) 0%, rgba(23, 23, 25, 0.04) 30%, rgba(23, 23, 25, 0.1) 52%, rgba(23, 23, 25, 0.86) 100%),
    linear-gradient(90deg, rgba(23, 23, 25, 0.48) 0%, rgba(23, 23, 25, 0.12) 38%, rgba(23, 23, 25, 0) 62%);
  pointer-events: none;
  content: "";
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 26%;
  transform: scale(1.035);
  transition: transform 1.1s var(--ease-out);
  will-change: transform;
}

.hero-marginalia {
  position: absolute;
  top: clamp(24px, 4vw, 48px);
  right: clamp(24px, 4vw, 48px);
  z-index: 2;
  display: grid;
  gap: 12px;
  max-width: min(14.5rem, 34vw);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.9s var(--ease-out) 0.18s,
    transform 0.9s var(--ease-out) 0.18s;
}

.hero-marginalia p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8125rem;
  font-style: italic;
  line-height: 1.5;
  letter-spacing: 0.008em;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.32);
}

.hero-marginalia span {
  font-style: normal;
  font-weight: 550;
  letter-spacing: 0.03em;
  text-transform: lowercase;
  opacity: 0.78;
}

.hero-copy {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: grid;
  gap: 0;
  max-width: 27rem;
  padding: clamp(32px, 4vw, 48px) clamp(32px, 4.5vw, 56px);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.85s var(--ease-out) 0.08s,
    transform 0.85s var(--ease-out) 0.08s;
}

.hero-copy h1 {
  margin: 0 0 var(--space-title-body);
  max-width: 10.5em;
  color: #fff;
  font-size: clamp(2.125rem, 4.2vw, 3.125rem);
  font-weight: 650;
  line-height: 1.03;
  letter-spacing: -0.032em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.28);
}

.landing-hero-lead {
  margin: 0;
  max-width: 24rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.58;
  letter-spacing: -0.003em;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.26);
}

.landing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-body-action);
}

.landing-cta-on-photo {
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.landing-cta-on-photo:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-1px);
}

.landing-cta-on-photo:active {
  transform: translateY(0) scale(0.985);
}

.hero-trust {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8125rem;
  letter-spacing: -0.002em;
  line-height: 1.4;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.22);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  font-weight: 520;
  letter-spacing: -0.002em;
  line-height: 1.3;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.18);
}

.hero-points li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(10, 132, 255, 0.92);
  box-shadow: 0 0 0 2px rgba(10, 132, 255, 0.22);
  content: "";
  flex: 0 0 auto;
}

.example-window {
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.structure-list {
  display: grid;
  gap: 8px;
}

.structure-list article,
.example-analysis article {
  padding: 11px 13px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.structure-list article:first-child,
.example-block-lead {
  border-color: rgba(0, 102, 204, 0.14);
  background: rgba(10, 132, 255, 0.03);
}

.structure-list span,
.example-analysis span,
.example-source span,
.example-script span,
.shooting-grid span {
  display: block;
  margin-bottom: 5px;
  color: var(--accent-dark);
  font-size: var(--label-size);
  font-weight: 680;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
}

.structure-list p,
.example-analysis p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.875rem;
  line-height: 1.4;
}

/* ══════════════════════════════════════════
   2. PROBLEM — typography act
   ══════════════════════════════════════════ */

.landing-problem {
  padding-block: var(--space-band);
  text-align: center;
}

.landing-problem-inner {
  position: relative;
  max-width: 40rem;
  margin-inline: auto;
  padding-block: clamp(8px, 1.5vw, 16px);
}

.landing-problem-inner::before,
.landing-problem-inner::after {
  position: absolute;
  right: 50%;
  width: min(4.5rem, 18vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  transform: translateX(50%);
  content: "";
}

.landing-problem-inner::before {
  top: 0;
}

.landing-problem-inner::after {
  bottom: 0;
}

.landing-problem-inner h2 {
  margin: 0 auto var(--space-head);
  max-width: 16em;
  font-size: clamp(1.9375rem, 4.2vw, 3rem);
  font-weight: 650;
  line-height: 1.06;
  letter-spacing: -0.028em;
}

.landing-problem-lead {
  margin: 0 auto;
  max-width: var(--measure-narrow);
  color: var(--text);
  font-size: clamp(1.25rem, 2.2vw, 1.5625rem);
  font-weight: 620;
  line-height: 1.35;
  letter-spacing: -0.012em;
}

.landing-problem-description {
  margin: var(--space-head) auto 0;
  max-width: var(--measure);
  color: var(--muted-strong);
  font-size: clamp(1.0625rem, 1.3vw, 1.1875rem);
  line-height: 1.62;
  letter-spacing: -0.003em;
}

.landing-problem-beat {
  margin: 0 auto;
  max-width: var(--measure-narrow);
  color: var(--muted-strong);
  font-size: clamp(1.0625rem, 1.3vw, 1.1875rem);
  line-height: 1.5;
  letter-spacing: -0.003em;
}

.landing-problem-beat + .landing-problem-beat {
  margin-top: 0.35em;
}

.landing-problem.is-visible .landing-problem-beat {
  animation: problem-beat-in var(--duration-slow) var(--ease-out) both;
}

.landing-problem.is-visible .landing-problem-beat:nth-child(2) {
  animation-delay: 0.08s;
}

.landing-problem.is-visible .landing-problem-beat:nth-child(3) {
  animation-delay: 0.16s;
}

.landing-problem.is-visible .landing-problem-beat:nth-child(4) {
  animation-delay: 0.24s;
}

.landing-problem.is-visible .landing-problem-accent {
  animation: problem-beat-in var(--duration-slow) var(--ease-out) 0.36s both;
}

@keyframes problem-beat-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.landing-problem-beat-pause {
  margin-top: clamp(28px, 4vw, 44px) !important;
}

.landing-problem-accent {
  margin: clamp(48px, 6vw, 72px) auto 0;
  max-width: 22rem;
  padding-top: 0;
  border-top: 0;
  color: var(--text);
  font-size: clamp(1.0625rem, 1.25vw, 1.1875rem);
  font-weight: 550;
  line-height: 1.55;
  letter-spacing: -0.006em;
}

/* ══════════════════════════════════════════
   3. PROCESS — horizontal story
   ══════════════════════════════════════════ */

.landing-process {
  padding-block: var(--space-section);
}

.landing-process-head {
  max-width: none;
  margin-bottom: clamp(36px, 4.5vw, 52px);
  text-align: center;
}

.landing-process-head h2 {
  font-size: clamp(1.875rem, 3.2vw, 2.625rem);
  font-weight: 650;
}

.landing-process-head p {
  margin-inline: auto;
}

.process-panel {
  overflow: hidden;
  --process-gap: clamp(24px, 3vw, 40px);
}

.process-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: var(--process-gap);
  max-width: none;
  margin: 0;
  padding: var(--block-padding);
  padding-bottom: 0;
  list-style: none;
}

.process-path li {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: start;
  min-width: 0;
  padding: 0;
  border-bottom: 0;
}

.process-path li::before {
  display: none;
}

.process-num {
  align-self: start;
  color: rgba(23, 23, 25, 0.2);
  font-size: clamp(1.25rem, 1.8vw, 1.625rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.process-copy {
  align-self: start;
}

.process-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(1.0625rem, 1.35vw, 1.1875rem);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.014em;
}

.process-copy p {
  margin: 0;
  max-width: 20rem;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.58;
  letter-spacing: -0.003em;
}

.process-step-photo {
  grid-column: 1 / -1;
  grid-row: 2;
  display: block;
  min-width: 0;
  margin: clamp(4px, 0.6vw, 8px) calc(var(--block-padding) * -1) calc(var(--block-padding) * -1);
  padding: 0;
  border-top: 1px solid var(--border-soft);
}

.process-payoff-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  width: 100%;
  height: clamp(440px, 56vh, 640px);
  border-radius: 0 0 calc(var(--block-radius) - 1px) calc(var(--block-radius) - 1px);
  background: #171719;
}

.process-payoff-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(23, 23, 25, 0.76) 0%,
    rgba(23, 23, 25, 0.34) 30%,
    rgba(23, 23, 25, 0.06) 52%,
    rgba(23, 23, 25, 0) 68%
  );
  pointer-events: none;
  content: "";
}

.process-payoff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  transform: scale(1.03);
  transition: transform 1.2s var(--ease-out);
  will-change: transform;
}

.landing-process.is-visible .process-payoff-photo img {
  transform: scale(1);
}

.process-payoff-copy {
  position: absolute;
  top: clamp(18px, 2.5vw, 28px);
  left: var(--block-padding);
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: start;
  width: calc((100% - 2 * var(--block-padding) - 2 * var(--process-gap)) / 3);
  margin: 0;
}

.process-payoff-copy .process-num {
  color: var(--accent);
}

.process-payoff-copy .process-copy h3 {
  margin: 0 0 8px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
}

.process-payoff-copy .process-copy p {
  max-width: none;
  color: rgba(255, 255, 255, 0.72);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.28);
}

/* ══════════════════════════════════════════
   4. STUDIO — mosaic of formats
   ══════════════════════════════════════════ */

.landing-scene {
  position: relative;
  color: #fff;
  background: #171719;
  box-shadow: 0 0 0 100vmax #171719;
  clip-path: inset(0 -100vmax);
  padding-top: var(--space-section);
  padding-bottom: 0;
}

.scene-head {
  max-width: var(--content-width-wide);
  margin-inline: auto;
  margin-bottom: clamp(36px, 4.5vw, 52px);
  text-align: center;
}

.scene-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.022em;
}

.scene-head p {
  margin: var(--space-title-body) auto 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 1rem;
  line-height: 1.55;
  letter-spacing: -0.004em;
}

.scene-mosaic {
  padding-bottom: clamp(72px, 8vw, var(--space-section));
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: clamp(8px, 1vw, 12px);
}

.scene-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  transition: transform var(--duration-base) var(--ease-out);
}

.scene-grid figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(23, 23, 25, 0.55) 0%,
    rgba(23, 23, 25, 0.18) 38%,
    rgba(23, 23, 25, 0) 62%
  );
  pointer-events: none;
  content: "";
}

.scene-grid figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: grid;
  gap: 6px;
  padding: clamp(20px, 2.8vw, 28px) clamp(16px, 2.2vw, 24px);
}

.scene-grid figcaption::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: clamp(88px, 14vw, 132px);
  background: linear-gradient(
    0deg,
    rgba(23, 23, 25, 0.96) 0%,
    rgba(23, 23, 25, 0.82) 32%,
    rgba(23, 23, 25, 0.42) 68%,
    rgba(23, 23, 25, 0) 100%
  );
  pointer-events: none;
  content: "";
}

.scene-grid figcaption span {
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.75rem, 1vw, 0.8125rem);
  font-weight: 680;
  letter-spacing: var(--label-tracking);
  line-height: 1.35;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.scene-grid figcaption strong {
  display: block;
  color: #fff;
  font-size: clamp(1rem, 1.55vw, 1.25rem);
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -0.012em;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.scene-grid figure:first-child figcaption strong {
  font-size: clamp(1.0625rem, 1.75vw, 1.375rem);
  font-weight: 650;
  line-height: 1.26;
  letter-spacing: -0.014em;
}

.scene-grid figure:hover {
  transform: translateY(-2px);
}

.scene-grid figure:first-child {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
}

.scene-grid figure:nth-child(2) {
  grid-column: 5 / 13;
  grid-row: 1;
}

.scene-grid figure:nth-child(3) {
  grid-column: 5 / 9;
  grid-row: 2;
}

.scene-grid figure:nth-child(4) {
  grid-column: 9 / 13;
  grid-row: 2;
}

.scene-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}

.scene-grid figure:hover img {
  transform: scale(1.03);
}

.scene-grid figure:first-child img {
  aspect-ratio: 3 / 4;
  object-position: center 15%;
}

.scene-grid figure:nth-child(2) img {
  aspect-ratio: 16 / 9;
  object-position: center 42%;
}

.scene-grid figure:nth-child(3) img {
  aspect-ratio: 4 / 5;
  object-position: center 35%;
}

.scene-grid figure:nth-child(4) img {
  aspect-ratio: 3 / 4;
  object-position: center 30%;
}

/* Legacy climax — kept for reference, unused */
.landing-climax {
  position: relative;
  width: 100%;
  min-height: clamp(460px, 72vh, 820px);
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.climax-photo {
  position: relative;
  margin: 0;
  width: 100%;
  height: clamp(460px, 72vh, 820px);
}

.climax-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(23, 23, 25, 0.72) 0%, rgba(23, 23, 25, 0.08) 42%, rgba(23, 23, 25, 0) 68%),
    linear-gradient(270deg, rgba(23, 23, 25, 0.34) 0%, rgba(23, 23, 25, 0) 48%);
  pointer-events: none;
  content: "";
}

.climax-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out);
}

.landing-climax.is-visible .climax-photo img {
  transform: scale(1);
}

.climax-thought {
  position: absolute;
  right: clamp(32px, 6vw, 96px);
  bottom: clamp(40px, 7vw, 80px);
  z-index: 1;
  max-width: 11.5em;
  margin: 0;
  padding: 0;
  border: 0;
  color: #fff;
  font-size: clamp(1.625rem, 3.4vw, 2.75rem);
  font-weight: 650;
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.3);
}

.climax-thought p {
  margin: 0;
}

.climax-thought cite {
  display: block;
  margin-top: clamp(14px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.8125rem, 1.1vw, 0.9375rem);
  font-style: normal;
  font-weight: 480;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.28);
}

.landing-deferred {
  display: none !important;
}

.landing-workflow {
  padding-block: var(--space-section);
}

.workflow-chapter + .workflow-chapter {
  margin-top: var(--space-chapter);
  padding-top: var(--space-chapter);
  border-top: 1px solid var(--border-soft);
}

.workflow-chapter-steps .landing-section-head {
  max-width: var(--content-width-wide);
}

/* Steps: one unified panel at distance */
.landing-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.landing-steps article {
  position: relative;
  min-width: 0;
  padding: clamp(24px, 3vw, 32px);
  border-right: 1px solid var(--border-soft);
}

.landing-steps article:last-child {
  border-right: 0;
  color: #fff;
  background: #171719;
}

.landing-steps span {
  display: block;
  margin-bottom: clamp(18px, 2.5vw, 28px);
  color: var(--accent-dark);
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.landing-steps article:last-child span {
  color: rgba(255, 255, 255, 0.52);
}

.landing-steps h3 {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 680;
  line-height: 1.2;
  letter-spacing: -0.014em;
}

.landing-steps article:last-child h3 {
  color: #fff;
}

.landing-steps p {
  margin: 0;
  max-width: 28ch;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.48;
}

.landing-steps article:last-child p {
  color: rgba(255, 255, 255, 0.62);
}

/* Example: center analysis column is the hero */
.workflow-chapter-example .landing-section-head {
  max-width: var(--content-width-wide);
  margin-bottom: clamp(36px, 5vw, 52px);
}

.example-window {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.38fr) minmax(0, 0.72fr);
  gap: 0;
}

.example-source,
.example-script {
  padding: clamp(22px, 3vw, 32px);
  opacity: 0.9;
}

.example-source {
  background: var(--surface-soft);
}

.example-source h3 {
  margin: 8px 0 10px;
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 680;
  line-height: 1.18;
  letter-spacing: -0.014em;
}

.example-source p,
.example-script p {
  margin: 0;
  max-width: 32ch;
  color: var(--muted-strong);
  font-size: 0.9375rem;
  line-height: 1.48;
}

.example-analysis {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: clamp(22px, 3vw, 32px);
  border-right: 1px solid var(--border-soft);
  border-left: 1px solid var(--border-soft);
  background: var(--surface);
}

.example-block-lead p {
  color: var(--text);
  font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
  font-weight: 650;
  line-height: 1.32;
  letter-spacing: -0.012em;
}

.example-analysis article:not(.example-block-lead) {
  opacity: 0.92;
}

.example-script {
  display: grid;
  align-content: center;
  gap: 14px;
  background: var(--surface-warm);
}

/* Features — 6-up grid from prod, editorial styling */
.workflow-chapter-features .landing-section-head {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--border-soft);
}

.features-grid article {
  min-width: 0;
  padding: clamp(22px, 2.8vw, 28px);
  background: var(--surface);
}

.features-grid h3 {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 680;
  line-height: 1.2;
  letter-spacing: -0.014em;
}

.features-grid p {
  margin: 0;
  max-width: 32ch;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.48;
}

/* Platforms */
.landing-platforms-section {
  padding-block: var(--space-band);
}

.landing-platforms-section .landing-section-head {
  max-width: var(--content-width-wide);
}

.landing-platforms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 16px);
}

.landing-platform {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  align-content: start;
  min-width: 0;
  padding: clamp(20px, 2.5vw, 26px);
  border: var(--block-border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--duration-fast) var(--ease-out);
}

.landing-platform:hover {
  border-color: var(--border);
  box-shadow: 0 8px 28px rgba(30, 35, 46, 0.07);
  transform: translateY(-2px);
}

.landing-platform:first-child {
  border-color: rgba(10, 132, 255, 0.14);
  background: linear-gradient(180deg, rgba(10, 132, 255, 0.03) 0%, var(--surface) 42%);
}

.landing-platform > span {
  color: var(--accent-dark);
  font-size: var(--label-size);
  font-weight: 680;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
}

.landing-platform h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.012em;
}

.landing-platform p {
  margin: 0;
  flex: 1 1 auto;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.landing-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  justify-self: start;
  min-height: 44px;
  margin-top: auto;
  padding: 0 16px 0 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text);
  background: var(--surface-soft);
  cursor: pointer;
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--duration-fast) var(--ease-out);
}

.landing-store-badge:hover {
  background: #e8eaee;
  border-color: rgba(23, 23, 25, 0.16);
  transform: translateY(-1px);
}

.landing-store-badge.landing-soon {
  opacity: 0.82;
}

.landing-store-badge.landing-soon:hover {
  opacity: 1;
}

.landing-store-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

img.landing-store-icon {
  display: block;
  object-fit: contain;
}

img.landing-store-icon--brand {
  width: 20px;
  height: 20px;
}

.landing-store-copy {
  display: grid;
  gap: 1px;
  text-align: left;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.1;
}

.landing-store-copy small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body.platform-ios .landing-platform .landing-store-badge[data-store="ios"],
body.platform-android .landing-platform .landing-store-badge[data-store="android"] {
  border-color: rgba(10, 132, 255, 0.32);
  box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.08);
}

body.platform-ios .landing-platform .landing-store-badge[data-store="android"],
body.platform-android .landing-platform .landing-store-badge[data-store="ios"] {
  opacity: 0.76;
}

/* Outcomes: unified grid, first item emphasized */
.workflow-chapter-outcomes .landing-section-head {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.landing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--border-soft);
}

.landing-grid article {
  min-width: 0;
  padding: clamp(22px, 2.8vw, 28px);
  background: var(--surface);
}

.landing-grid h3 {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 680;
  line-height: 1.2;
  letter-spacing: -0.014em;
}

.landing-grid p {
  margin: 0;
  max-width: 28ch;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.48;
}

.landing-grid .outcome-lead {
  grid-column: span 2;
  padding: clamp(28px, 3.5vw, 36px) clamp(24px, 3vw, 32px);
}

.landing-grid .outcome-lead h3 {
  font-size: clamp(1.1875rem, 1.8vw, 1.375rem);
  font-weight: 700;
  letter-spacing: -0.016em;
}

.landing-grid .outcome-lead p {
  max-width: 42ch;
  color: var(--muted-strong);
  font-size: 1rem;
}

/* ══════════════════════════════════════════
   5. PEOPLE — mosaic kept, feature photo dominates
   ══════════════════════════════════════════ */

.landing-shooting {
  padding-block: var(--space-section);
}

#people {
  color: #fff;
  background: #171719;
  box-shadow: 0 0 0 100vmax #171719;
  clip-path: inset(0 -100vmax);
}

#people .landing-section-head {
  max-width: var(--content-width-wide);
  margin-bottom: clamp(40px, 5vw, 56px);
}

#people .landing-section-head h2 {
  color: #fff;
}

#people .landing-section-head p {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.54);
}

.shooting-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: clamp(14px, 1.6vw, 20px);
}

.shooting-grid figure {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
}

.shooting-grid figure.people-feature {
  grid-column: 1 / 6;
  grid-row: 1 / 3;
}

.shooting-grid figure:nth-child(2) {
  grid-column: 6 / 13;
  grid-row: 1;
}

.shooting-grid figure:nth-child(3) {
  grid-column: 6 / 10;
  grid-row: 2;
}

.shooting-grid figure:nth-child(4) {
  grid-column: 10 / 13;
  grid-row: 2;
}

.shooting-grid img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.shooting-grid figure.people-feature img {
  aspect-ratio: 3 / 4;
  object-position: center 15%;
}

.shooting-grid figure:nth-child(2) img {
  aspect-ratio: 16 / 9;
  object-position: center 42%;
}

.shooting-grid figure:nth-child(3) img {
  aspect-ratio: 4 / 5;
  object-position: center 35%;
}

.shooting-grid figure:nth-child(4) img {
  aspect-ratio: 3 / 4;
  object-position: center 30%;
}

.shooting-grid figure:not(.people-feature) {
  opacity: 0.88;
}

.shooting-grid figcaption {
  padding: 0 2px;
}

.shooting-grid span {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.46);
}

.shooting-grid figure.people-feature span {
  color: rgba(255, 255, 255, 0.52);
}

.shooting-grid strong {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.9375rem, 1.3vw, 1.0625rem);
  font-weight: 620;
  line-height: 1.38;
  letter-spacing: -0.008em;
}

.shooting-grid figure.people-feature strong {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.0625rem, 1.8vw, 1.3125rem);
  font-weight: 650;
  line-height: 1.22;
  letter-spacing: -0.012em;
}

/* ══════════════════════════════════════════
   5. NOTES — quiet intertitles
   ══════════════════════════════════════════ */

.landing-notes {
  padding-block: var(--space-section);
}

.notes-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: none;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.notes-list li {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: var(--block-padding) clamp(20px, 2.5vw, 28px);
}

.notes-q {
  color: var(--accent-dark);
  font-size: var(--label-size);
  font-weight: 680;
  letter-spacing: var(--label-tracking);
  line-height: 1.4;
  text-transform: uppercase;
}

.notes-lead {
  margin: 0;
  color: var(--text);
  font-size: 1.0625rem;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -0.006em;
  text-wrap: balance;
}

.notes-detail {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  font-weight: 450;
  line-height: 1.58;
  letter-spacing: -0.003em;
}

.notes-list li:not(:nth-child(3n)) {
  border-right: 1px solid var(--border-soft);
}

.notes-list span,
.notes-list p {
  margin: 0;
}

/* ══════════════════════════════════════════
   6. FINAL CTA — empty stage
   ══════════════════════════════════════════ */

.landing-try {
  padding-block: var(--space-section);
}

.landing-cta-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
  padding: clamp(28px, 5vw, 44px);
  border-radius: var(--radius-lg);
  color: #fff;
  background: #171719;
  box-shadow: var(--shadow);
}

.landing-cta-panel-copy {
  max-width: 28rem;
}

.landing-cta-panel h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.5vw, 2.375rem);
  font-weight: 650;
  line-height: 1.06;
  letter-spacing: -0.028em;
}

.landing-cta-panel p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  line-height: 1.55;
  letter-spacing: -0.003em;
}

.landing-cta-on-dark {
  color: #171719;
  background: #fff;
  box-shadow: none;
}

.landing-cta-on-dark:hover {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.landing-final-cta {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0;
  padding: clamp(52px, 6.5vw, 76px) clamp(28px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--block-radius);
  color: #fff;
  text-align: center;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(10, 132, 255, 0.14) 0%, transparent 62%),
    #171719;
  box-shadow: var(--shadow);
  isolation: isolate;
  overflow: hidden;
}

.landing-final-cta::before {
  display: none;
}

.landing-final-cta h2 {
  margin: 0;
  max-width: 10em;
  color: #fff;
  font-size: clamp(1.9375rem, 4vw, 2.75rem);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: -0.032em;
}

.landing-final-cta p {
  margin: var(--space-title-body) 0 0;
  max-width: 22rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  line-height: 1.58;
  letter-spacing: -0.003em;
}

.landing-final-cta span {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.8125rem;
  letter-spacing: -0.002em;
}

.landing-final-cta .landing-cta {
  width: fit-content;
  max-width: 100%;
  margin-top: var(--space-body-action);
}

.platform-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(100%, 36rem);
  margin-top: 10px;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 14px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  color: var(--text);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  text-align: left;
  transition:
    border-color var(--transition),
    background var(--transition),
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--transition);
}

.platform-badge:hover {
  border-color: var(--border);
  transform: translateY(-1px);
}

.platform-badge:active {
  transform: translateY(0);
}

.platform-badge-active {
  border-color: rgba(10, 132, 255, 0.18);
  background: rgba(10, 132, 255, 0.04);
}

.platform-badge-active:hover {
  border-color: rgba(10, 132, 255, 0.28);
  background: rgba(10, 132, 255, 0.07);
}

.platform-badge-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--accent-dark);
  background: rgba(10, 132, 255, 0.08);
}

.platform-badge-copy {
  display: grid;
  gap: 1px;
}

.platform-badge-copy small {
  color: var(--muted);
  font-size: 0.6875rem;
  font-weight: 520;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.platform-badge-copy strong {
  font-size: 0.9375rem;
  font-weight: 650;
  letter-spacing: -0.008em;
  line-height: 1.2;
}

.platform-badge:focus-visible {
  outline: 2px solid rgba(10, 132, 255, 0.45);
  outline-offset: 2px;
}

.landing-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px 24px;
  align-items: center;
  margin-top: clamp(8px, 1.5vw, 16px);
  padding: 28px 0 40px;
  border-top: var(--block-border);
  color: var(--muted);
  font-size: 0.8125rem;
  letter-spacing: -0.002em;
}

.landing-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.landing-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  color: var(--muted);
  background: var(--surface);
  cursor: pointer;
  transition:
    color var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.landing-social-link svg {
  width: 16px;
  height: 16px;
}

.landing-social-link:hover {
  color: var(--text);
  border-color: var(--border);
  background: var(--surface-soft);
}

.landing-social-link:focus-visible {
  outline: 2px solid rgba(10, 132, 255, 0.45);
  outline-offset: 2px;
}

.landing-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.landing-footer a {
  transition: color var(--transition);
}

.landing-footer a:hover {
  color: var(--text);
}

.landing-soon-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 40;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  color: #fff;
  background: rgba(23, 23, 25, 0.92);
  box-shadow: var(--shadow);
  font-size: 0.875rem;
  font-weight: 620;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  backdrop-filter: blur(14px);
}

.landing-soon-toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ── Responsive ── */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .landing-reveal,
  .landing-reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .hero-photo img,
  .process-payoff-photo img,
  .climax-photo img {
    transform: none;
  }

  .hero-copy,
  .hero-marginalia {
    opacity: 1;
    transform: none;
  }

  .scene-grid figure:hover,
  .scene-grid figure:hover img,
  .landing-platform:hover {
    transform: none;
  }

  .landing-problem.is-visible .landing-problem-beat,
  .landing-problem.is-visible .landing-problem-accent {
    animation: none;
  }
}

@media (max-width: 1080px) {
  .landing-nav {
    gap: 11px;
  }

  .landing-nav a:not(.landing-cta) {
    font-size: 0.84rem;
  }

  .landing-hero {
    padding-bottom: clamp(24px, 4vw, 40px);
  }

  .hero-stage {
    min-height: clamp(560px, 88svh, 760px);
  }

  .hero-marginalia {
    max-width: min(13rem, 42vw);
  }

  .landing-problem {
    padding-block: clamp(88px, 12vw, 128px);
  }

  .landing-process-head {
    margin-bottom: clamp(40px, 5vw, 56px);
  }

  .process-path {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 0;
    min-height: 0;
    padding: 0;
  }

  .process-path li {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: clamp(20px, 2.5vw, 28px) var(--block-padding);
    border-bottom: 1px solid var(--border-soft);
  }

  .process-path li::before {
    display: none;
  }

  .process-path li:first-child {
    padding-top: var(--block-padding);
  }

  .process-path li:last-child:not(.process-step-photo) {
    padding-bottom: var(--block-padding);
    border-bottom: 0;
  }

  .process-path li.process-step-photo {
    grid-column: auto;
    grid-row: auto;
    display: block;
    margin: 0;
    padding: 0;
    border-top: 0;
    border-bottom: 0;
  }

  .process-payoff-photo {
    position: relative;
    display: block;
    height: clamp(360px, 58vh, 480px);
    background: #171719;
    border-radius: 0 0 calc(var(--block-radius) - 1px) calc(var(--block-radius) - 1px);
  }

  .process-payoff-photo::after {
    display: block;
    background:
      linear-gradient(
        180deg,
        rgba(23, 23, 25, 0.62) 0%,
        rgba(23, 23, 25, 0.18) 24%,
        rgba(23, 23, 25, 0) 42%
      ),
      linear-gradient(
        90deg,
        rgba(23, 23, 25, 0.78) 0%,
        rgba(23, 23, 25, 0.34) 34%,
        rgba(23, 23, 25, 0.06) 56%,
        rgba(23, 23, 25, 0) 72%
      );
  }

  .process-payoff-photo img {
    height: 100%;
    margin-top: 0;
    border-radius: 0 0 calc(var(--block-radius) - 1px) calc(var(--block-radius) - 1px);
    object-position: 50% 38%;
  }

  .process-payoff-copy {
    position: absolute;
    top: clamp(16px, 4vw, 24px);
    left: var(--block-padding);
    right: var(--block-padding);
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 8px 16px;
    align-items: start;
    width: auto;
    margin: 0;
  }

  .process-payoff-copy .process-num {
    grid-column: 1;
    grid-row: 1;
    color: var(--accent);
  }

  .process-payoff-copy .process-copy {
    grid-column: 2;
    grid-row: 1 / -1;
  }

  .process-payoff-copy .process-copy h3 {
    margin: 0 0 8px;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
  }

  .process-payoff-copy .process-copy p {
    color: rgba(255, 255, 255, 0.72);
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.28);
  }

  .process-num {
    padding-top: 2px;
    line-height: 1.1;
  }

  .scene-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .scene-grid figure:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .scene-grid figure:nth-child(2),
  .scene-grid figure:nth-child(3),
  .scene-grid figure:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .scene-grid figure:nth-child(4) {
    grid-column: 1 / -1;
  }

  .scene-grid figure:first-child img {
    aspect-ratio: 16 / 10;
  }

  .scene-grid figure:nth-child(2) img,
  .scene-grid figure:nth-child(3) img,
  .scene-grid figure:nth-child(4) img {
    aspect-ratio: 4 / 5;
  }

  .climax-thought {
    right: auto;
    left: clamp(20px, 5vw, 32px);
    max-width: 10em;
    font-size: clamp(1.5rem, 6.5vw, 2rem);
  }

  .landing-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-steps article:nth-child(2) {
    border-right: 0;
  }

  .landing-steps article:nth-child(1),
  .landing-steps article:nth-child(2) {
    border-bottom: 1px solid var(--border-soft);
  }

  .landing-steps article:nth-child(3) {
    border-right: 1px solid var(--border-soft);
  }

  .example-window {
    grid-template-columns: 1fr;
  }

  .example-analysis {
    border-right: 0;
    border-left: 0;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
  }

  .example-source,
  .example-script {
    opacity: 1;
  }

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

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

  .landing-grid .outcome-lead {
    grid-column: 1 / -1;
  }

  .shooting-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .shooting-grid figure.people-feature {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .shooting-grid figure:nth-child(2),
  .shooting-grid figure:nth-child(3),
  .shooting-grid figure:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .shooting-grid figure:nth-child(4) {
    grid-column: 1 / -1;
  }

  .shooting-grid figure.people-feature img {
    aspect-ratio: 16 / 10;
  }

  .shooting-grid figure:nth-child(2) img,
  .shooting-grid figure:nth-child(3) img,
  .shooting-grid figure:nth-child(4) img {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 760px) {
  .landing-shell {
    width: min(100% - 32px, 1160px);
  }

  .landing-header-inner {
    gap: 12px;
    position: relative;
  }

  .landing-menu-toggle {
    display: inline-flex;
  }

  .landing-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    gap: 4px;
    margin-left: 0;
    padding: 10px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    background: rgba(251, 251, 253, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition:
      opacity var(--transition),
      transform var(--transition),
      visibility var(--transition);
    backdrop-filter: blur(20px) saturate(1.2);
  }

  .landing-header.menu-open .landing-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .landing-nav a:not(.landing-cta) {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.9375rem;
  }

  .landing-nav a:not(.landing-cta):hover,
  .landing-nav a:not(.landing-cta).is-active {
    background: var(--surface-soft);
  }

  .landing-nav a:not(.landing-cta).is-active::after {
    display: none;
  }

  .landing-nav .landing-cta {
    justify-content: center;
    margin-top: 4px;
  }

  .landing-brand span {
    display: inline;
  }

  .landing-cta {
    min-height: 40px;
    padding: 0 15px;
    font-size: 0.92rem;
  }

  .landing-hero {
    padding-top: 8px;
    padding-bottom: 24px;
  }

  .hero-stage {
    min-height: clamp(540px, 90svh, 720px);
    border-radius: 14px;
  }

  .hero-photo img {
    object-position: 44% 24%;
  }

  .hero-copy {
    max-width: none;
    padding: 24px 24px 28px;
  }

  .hero-copy h1 {
    margin-bottom: 14px;
    font-size: clamp(1.6875rem, 7.5vw, 2.125rem);
  }

  .landing-hero-lead {
    max-width: none;
    font-size: 0.9375rem;
  }

  .hero-marginalia {
    top: 16px;
    right: 16px;
    max-width: 11rem;
    gap: 8px;
  }

  .hero-marginalia p {
    font-size: 0.6875rem;
  }

  .landing-hero-actions {
    margin-top: 20px;
  }

  .landing-hero-actions .landing-cta {
    flex: 0 1 auto;
  }

  .hero-trust {
    font-size: 0.75rem;
  }

  .hero-points {
    gap: 6px;
  }

  .hero-points li {
    font-size: 0.6875rem;
    padding: 5px 9px;
  }

  .landing-problem-inner h2 {
    margin-bottom: 28px;
  }

  .landing-problem-beat-pause {
    margin-top: 24px !important;
  }

  .landing-problem-accent {
    margin-top: 40px;
  }

  .process-path li {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 18px var(--block-padding);
  }

  .process-path li.process-step-photo {
    padding: 0;
  }

  .process-payoff-copy {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 8px 12px;
  }

  .process-payoff-photo {
    height: clamp(320px, 52vh, 420px);
  }

  .process-num {
    padding-top: 1px;
  }

  .landing-try {
    padding-block: 80px 56px;
  }

  .landing-media-card {
    border-radius: 14px;
  }

  .scene-head {
    margin-bottom: clamp(32px, 4vw, 44px);
  }

  .climax-photo,
  .landing-climax {
    min-height: clamp(400px, 64vh, 580px);
    height: clamp(400px, 64vh, 580px);
  }

  .climax-thought {
    left: 20px;
    right: 20px;
    max-width: none;
    font-size: clamp(1.375rem, 6vw, 1.75rem);
  }

  .landing-section {
    padding: 56px 0;
  }

  #difference,
  #workflow,
  #studio,
  .landing-notes {
    padding-block: 56px;
  }

  .landing-climax {
    padding: 0;
  }

  .workflow-chapter + .workflow-chapter {
    margin-top: 56px;
    padding-top: 56px;
  }

  .landing-steps {
    grid-template-columns: 1fr;
  }

  .landing-steps article {
    border-right: 0;
    border-bottom: 1px solid var(--border-soft);
  }

  .landing-steps article:last-child {
    border-bottom: 0;
  }

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

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

  .landing-platforms {
    grid-template-columns: 1fr;
  }

  .landing-cta-panel {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .landing-cta-panel-copy {
    max-width: none;
  }

  .landing-cta-on-dark {
    width: fit-content;
    max-width: 100%;
    align-self: center;
    justify-content: center;
  }

  .landing-grid .outcome-lead {
    grid-column: auto;
  }

  .shooting-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .scene-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .scene-grid img {
    aspect-ratio: 16 / 10 !important;
  }

  .shooting-grid figure:not(.people-feature) {
    opacity: 1;
  }

  .shooting-grid img {
    border-radius: var(--radius-md);
  }

  .shooting-grid figure:not(.people-feature) img {
    aspect-ratio: 16 / 10;
  }

  .example-window {
    border-radius: var(--radius-md);
  }

  .landing-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .landing-social-links {
    justify-content: flex-start;
  }

  .landing-footer-links {
    justify-content: flex-start;
  }

  .notes-list {
    grid-template-columns: 1fr;
  }

  .notes-list li {
    padding: 24px 20px;
  }

  .notes-list li:not(:nth-child(3n)) {
    border-right: 0;
  }

  .notes-list li:not(:last-child) {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--border-soft);
  }

  .platform-badges {
    flex-direction: column;
    align-items: stretch;
  }

  .platform-badge {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .landing-shell {
    width: min(100% - 28px, 1160px);
  }

  .hero-marginalia {
    display: none;
  }

  .landing-cta-small {
    padding: 0 13px;
  }
}
