@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("/fonts/manrope-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("/fonts/roboto-slab-latin.woff2") format("woff2");
}

:root {
  --ink: #171812;
  --paper: #f8f5eb;
  --paper-deep: #eee9dc;
  --lime: #d9ff52;
  --coral: #ff765f;
  --blue: #8eb0ff;
  --lilac: #c4a8ff;
  --pink: #ffacd4;
  --aqua: #8ce9d2;
  --sun: #ffd75c;
  --white: #fffef9;
  --line: rgba(23, 24, 18, .2);
  --muted: #4b4c43;
  --muted-light: #c6c8bd;
  --display: "Roboto Slab", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { width: 100%; max-width: 100%; overflow-x: clip; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { width: 100%; max-width: 100%; margin: 0; overflow-x: clip; background: var(--paper); color: var(--ink); font: 15px/1.55 var(--sans); letter-spacing: .005em; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); font-weight: 350; letter-spacing: -.055em; }
::selection { background: var(--lilac); color: var(--ink); }
:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; border-radius: 2px; }

.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; padding: 9px 12px; transform: translateY(-160%); background: var(--ink); color: #fff; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; top: 0; z-index: 20; height: 68px; padding: 0 24px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; background: rgba(248,245,235,.9); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.logo { width: max-content; display: inline-flex; align-items: center; gap: 9px; font-size: 23px; font-weight: 800; letter-spacing: -.055em; }
.logo svg { width: 31px; overflow: visible; }
.logo svg path:first-child { fill: var(--lime); stroke: var(--ink); stroke-width: 3; stroke-linejoin: round; }
.logo-play { fill: var(--ink); stroke: none; }
.site-header nav { display: flex; gap: 32px; font-size: 13px; font-weight: 650; }
.site-header nav a { position: relative; }
.site-header nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 2px; background: var(--coral); transition: right 180ms ease; }
.site-header nav a:hover::after { right: 0; }
.nav-cta { justify-self: end; padding: 10px 14px; border: 1px solid var(--ink); background: var(--lime); box-shadow: 3px 3px 0 var(--ink); border-radius: 3px; font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .04em; transition: transform 160ms ease, box-shadow 160ms ease; }
.nav-cta:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }

.hero { min-height: calc(100vh - 68px); padding: 70px max(22px, calc((100vw - 1440px)/2)) 35px; display: grid; grid-template-columns: minmax(480px, 1.08fr) minmax(430px, .92fr); gap: 3vw; align-items: center; }
.hero-copy { padding: 25px 0 40px; }
.kicker, .section-number { margin-bottom: 22px; font-size: 12px; font-weight: 780; letter-spacing: .12em; text-transform: uppercase; }
.kicker > span { width: 8px; height: 8px; margin-right: 9px; display: inline-block; border-radius: 50%; background: currentColor; }
.centered { text-align: center; }
.hero h1 { max-width: 830px; margin-bottom: 28px; font-size: clamp(60px, 6.2vw, 94px); line-height: .91; }
.hero h1 em { position: relative; display: inline-block; color: var(--coral); font-style: italic; font-weight: 500; }
.hero h1 em::after { content: ""; position: absolute; left: 1%; right: -2%; bottom: -4px; height: 9px; border-bottom: 3px solid var(--coral); border-radius: 50%; transform: rotate(-1deg); }
.hero-lede { max-width: 660px; margin-bottom: 32px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.hero-lede strong { color: var(--ink); font-weight: 760; }
.hero-loop { max-width: 700px; margin: 0 0 36px; padding: 0; display: grid; grid-template-columns: minmax(0, 1fr) 26px minmax(0, 1fr) 26px minmax(0, 1fr); gap: 7px; align-items: stretch; list-style: none; }
.hero-loop > li:not(.hero-loop-arrow) { min-height: 118px; padding: 14px; display: flex; flex-direction: column; justify-content: space-between; gap: 8px; border: 1px solid var(--ink); box-shadow: 3px 3px 0 var(--ink); }
.hero-loop > li:first-child { background: var(--lime); }
.hero-loop > li:nth-child(3) { background: var(--coral); }
.hero-loop > li:last-child { background: var(--blue); }
.hero-loop small { font-size: 10px; font-weight: 800; letter-spacing: .09em; }
.hero-loop strong { font: 500 19px/1.05 var(--display); letter-spacing: -.035em; }
.hero-loop span { font-size: 11px; font-weight: 650; line-height: 1.35; }
.hero-loop-arrow { display: grid; place-items: center; color: var(--coral); font: 700 23px var(--display); }
.hero-actions { display: flex; align-items: center; gap: 26px; }
.button { min-height: 52px; padding: 14px 18px; display: inline-flex; align-items: center; gap: 18px; border: 1px solid var(--ink); border-radius: 3px; font-size: 12px; font-weight: 780; letter-spacing: .05em; text-transform: uppercase; box-shadow: 4px 4px 0 var(--ink); transition: transform 160ms ease, box-shadow 160ms ease; }
.button:hover { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ink); }
.button.dark { background: var(--ink); color: #fff; box-shadow: 4px 4px 0 var(--coral); }
.button.dark:hover { box-shadow: 1px 1px 0 var(--coral); }
.button.light { background: var(--lime); color: var(--ink); }
.text-link { padding: 7px 0; border-bottom: 1px solid var(--ink); font-size: 12px; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.proof-strip { max-width: 625px; margin: 58px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; border-block: 1px solid var(--ink); }
.proof-strip li { min-height: 94px; padding: 15px; display: flex; align-items: center; gap: 13px; border-right: 1px solid var(--ink); }
.proof-strip li:last-child { border: 0; }
.proof-strip strong { font: 400 42px/.8 var(--display); }
.proof-strip span { color: var(--muted); font-size: 11px; font-weight: 680; line-height: 1.35; letter-spacing: .06em; text-transform: uppercase; }

.story-machine-wrap { position: relative; min-height: 640px; padding: 18px; background-color: var(--lilac); background-image: linear-gradient(rgba(23,24,18,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(23,24,18,.09) 1px, transparent 1px); background-size: 45px 45px; border: 1px solid var(--ink); box-shadow: 13px 13px 0 var(--ink); }
.story-world { position: absolute; inset: 20px 12px 92px; cursor: grab; touch-action: pan-y; }
.story-world:active, .story-world[data-dragging="true"] { cursor: grabbing; }
.story-world canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.machine-note { position: absolute; z-index: 3; padding: 9px 11px; border: 1px solid var(--ink); box-shadow: 3px 3px 0 var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.note-a { top: 30px; left: -22px; transform: rotate(-6deg); background: var(--lime); }
.note-b { top: 45%; right: -10px; transform: rotate(4deg); background: var(--coral); }
.machine-feedback { position: absolute; z-index: 4; top: 22px; right: 18px; width: 238px; min-height: 132px; padding: 15px; display: flex; flex-direction: column; gap: 8px; justify-content: space-between; background: var(--lime); border: 1px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); transform: rotate(2deg); }
.machine-feedback small { font-size: 10px; font-weight: 850; letter-spacing: .1em; }
.machine-feedback strong { font: 500 17px/1 var(--display); }
.machine-feedback strong span { font-size: 36px; letter-spacing: -.08em; }
.machine-feedback p { margin: 0; font-size: 11px; line-height: 1.45; }
.machine-feedback b { font-weight: 800; }
.machine-caption { position: absolute; left: 17px; right: 17px; bottom: 16px; min-height: 72px; padding: 13px 15px; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: rgba(248,245,235,.94); border: 1px solid var(--ink); }
.machine-caption span { font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.machine-caption strong { text-align: right; font: 400 17px/1.2 var(--display); letter-spacing: -.03em; }
.story-fallback { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; animation: fallback-in 200ms linear 900ms forwards; }
@keyframes fallback-in { to { opacity: 1; } }
.story-world.is-ready .story-fallback { display: none; }
.fallback-card { position: absolute; width: 160px; aspect-ratio: 9/14; padding: 14px; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 18px; box-shadow: 8px 8px 0 var(--ink); font: 800 23px/.9 var(--sans); text-align: center; }
.fallback-card.one { transform: translate(-90px, 18px) rotate(-13deg); background: var(--coral); }
.fallback-card.two { z-index: 2; transform: translate(10px, -25px) rotate(3deg); background: var(--lime); }
.fallback-card.three { transform: translate(105px, 23px) rotate(15deg); background: var(--blue); }

.ticker { overflow: hidden; background: var(--lime); border-block: 1px solid var(--ink); }
.ticker > div { width: max-content; min-height: 56px; display: flex; align-items: center; gap: 26px; animation: ticker 28s linear infinite; }
.ticker span { font: 650 22px var(--display); letter-spacing: -.03em; }
.ticker i { font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.manifesto { position: relative; padding: 155px 24px 170px; text-align: center; background: linear-gradient(var(--paper), var(--paper-deep)); }
.manifesto h2 { max-width: 1200px; margin: 0 auto; font-size: clamp(58px, 6.8vw, 100px); line-height: .96; }
.manifesto > p:nth-of-type(2) { max-width: 660px; margin: 34px auto 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.scribble { position: absolute; right: 9%; bottom: 83px; color: var(--coral); font: italic 600 19px var(--display); transform: rotate(-8deg); }

.weekly-drop { padding: 24px; }
.section-intro { max-width: 1360px; margin: auto; padding: 90px 30px 80px; display: grid; grid-template-columns: 190px minmax(0, 1.35fr) minmax(260px, .65fr); gap: 40px; align-items: start; border-top: 1px solid var(--ink); }
.section-intro h2, .formats-heading h2 { margin: -15px 0 0; font-size: clamp(57px, 6.2vw, 88px); line-height: .94; }
.section-intro > p:last-child, .formats-heading > p:last-child { color: var(--muted); font-size: 16px; line-height: 1.7; }
.drop-stage { min-height: 740px; max-width: 1360px; margin: auto; padding: 65px 6%; display: grid; grid-template-columns: minmax(300px, .72fr) minmax(430px, 1.28fr); gap: 8%; align-items: center; background-color: var(--aqua); background-image: radial-gradient(rgba(23,24,18,.18) 1px, transparent 1px); background-size: 16px 16px; border: 1px solid var(--ink); }
.phone-shell { position: relative; width: min(350px, 100%); aspect-ratio: 9/17.3; margin: auto; padding: 12px; overflow: hidden; border: 2px solid var(--ink); border-radius: 32px; background: var(--ink); box-shadow: 15px 18px 0 rgba(23,24,18,.19); }
.phone-top { position: absolute; z-index: 5; top: 16px; left: 23px; right: 23px; display: flex; justify-content: space-between; align-items: center; color: #fff; font-size: 10px; }
.phone-top i { width: 70px; height: 19px; display: block; border-radius: 99px; background: var(--ink); }
.episode { position: absolute; inset: 12px; overflow: hidden; border-radius: 22px; background: var(--paper); opacity: 0; transform: translateX(14px) scale(.985); transition: opacity 240ms ease, transform 240ms ease; }
.episode.is-active { opacity: 1; transform: none; }
.episode-scene { height: calc(100% - 78px); padding: 64px 22px 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.salon-scene { position: relative; overflow: hidden; background: var(--pink); }
.salon-scene::before, .salon-scene::after { content: ""; position: absolute; border: 1px solid rgba(23,24,18,.45); border-radius: 50%; }
.salon-scene::before { width: 330px; height: 330px; top: -150px; left: -170px; }
.salon-scene::after { width: 260px; height: 260px; right: -150px; bottom: 80px; }
.scene-label { position: absolute; top: 50px; left: 18px; padding: 6px 8px; border: 1px solid var(--ink); background: var(--lime); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.character-face { position: relative; z-index: 1; width: 130px; height: 130px; margin-bottom: 32px; border: 2px solid var(--ink); border-radius: 46% 54% 45% 55%; background: var(--sun); box-shadow: 8px 8px 0 var(--ink); }
.character-face i { position: absolute; top: 53px; width: 8px; height: 12px; border-radius: 50%; background: var(--ink); }
.character-face i:first-child { left: 38px; }
.character-face i:nth-child(2) { right: 38px; }
.character-face b { position: absolute; left: 50%; top: 77px; width: 30px; height: 15px; border-bottom: 3px solid var(--ink); border-radius: 50%; transform: translateX(-50%); }
.hair-shape { position: absolute; z-index: 0; width: 170px; height: 350px; border-radius: 50%; background: var(--coral); }
.hair-shape.one { top: 90px; left: -100px; transform: rotate(18deg); }
.hair-shape.two { top: 65px; right: -105px; transform: rotate(-20deg); }
.episode-scene h3 { position: relative; z-index: 1; margin: 0; font-size: 35px; line-height: .95; }
.episode-scene p { position: relative; z-index: 1; margin: 14px 0 0; font-size: 12px; font-weight: 700; letter-spacing: .02em; }
.episode-footer { height: 78px; padding: 15px 14px 12px; display: flex; flex-direction: column; justify-content: center; gap: 2px; background: var(--paper); border-top: 1px solid var(--ink); }
.episode-footer strong { font: 500 15px var(--display); }
.episode-footer span { color: var(--muted); font-size: 11px; }
.phone-controls { position: absolute; z-index: 7; right: 22px; bottom: 94px; display: flex; flex-direction: column; gap: 11px; color: #fff; font-weight: 800; text-shadow: 0 1px 4px #000; }
.cafe-scene { position: relative; overflow: hidden; background: var(--blue); }
.cafe-scene::after { content: "УТРО\A НАЧАЛОСЬ"; white-space: pre; position: absolute; inset: auto -10px 60px; color: rgba(255,255,255,.45); font: 800 62px/.72 var(--sans); letter-spacing: -.09em; transform: rotate(-7deg); }
.coffee-cup { position: relative; z-index: 1; width: 126px; height: 145px; margin-bottom: 37px; border: 2px solid var(--ink); border-radius: 8px 8px 45px 45px; background: var(--paper); box-shadow: 8px 8px 0 var(--ink); }
.coffee-cup::before { content: ""; position: absolute; right: -37px; top: 29px; width: 49px; height: 61px; border: 2px solid var(--ink); border-left: 0; border-radius: 0 50% 50% 0; }
.coffee-cup::after { content: ":)"; position: absolute; inset: 46px 0 auto; font: 700 25px var(--sans); }
.coffee-cup i { position: absolute; left: 31px; top: -38px; width: 3px; height: 28px; background: var(--ink); box-shadow: 29px 5px 0 var(--ink), 56px -3px 0 var(--ink); transform: rotate(-5deg); }

.episode-list { border: 1px solid var(--ink); background: var(--paper); box-shadow: 13px 13px 0 var(--ink); }
.episode-list > header { min-height: 68px; padding: 18px; display: flex; align-items: center; justify-content: space-between; gap: 14px; border-bottom: 1px solid var(--ink); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.episode-list > header b { padding: 6px 10px; border-radius: 99px; background: var(--ink); color: #fff; font-size: 9px; letter-spacing: .08em; }
.episode-item { width: 100%; min-height: 88px; padding: 12px 15px; display: grid; grid-template-columns: 58px 1fr auto; gap: 14px; align-items: center; border: 0; border-bottom: 1px solid var(--ink); background: var(--paper); text-align: left; }
button.episode-item { cursor: pointer; }
button.episode-item:hover, .episode-item.active { background: #fffcf2; }
.episode-item.active { box-shadow: inset 5px 0 0 var(--coral); }
.episode-thumb { width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid var(--ink); font: 700 18px var(--display); }
.lime { background: var(--lime); }
.coral { background: var(--coral); }
.blue { background: var(--blue); }
.lilac { background: var(--lilac); }
.episode-item > span:nth-child(2) { display: flex; flex-direction: column; }
.episode-item strong { font: 450 18px var(--display); letter-spacing: -.03em; }
.episode-item small { margin-top: 4px; color: var(--muted); font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }
.episode-item > b { font-size: 9px; letter-spacing: .08em; }
.episode-item.active > b { color: #a33a2b; }
.episode-list footer { min-height: 104px; padding: 18px; display: flex; justify-content: space-between; align-items: end; gap: 20px; background: var(--ink); color: #fff; }
.episode-list footer p { max-width: 220px; margin: 0; color: var(--muted-light); font-size: 11px; line-height: 1.5; }
.episode-list footer p span { width: 7px; height: 7px; margin-right: 6px; display: inline-block; border-radius: 50%; background: var(--lime); }
.episode-list footer strong { text-align: right; font: 400 18px/1.15 var(--display); }

.process { padding: 155px 24px; background: var(--ink); color: #fff; }
.process-heading { max-width: 1100px; margin: auto; text-align: center; }
.process-heading h2 { margin: 0; font-size: clamp(58px, 7vw, 100px); line-height: .95; }
.process-grid { max-width: 1280px; margin: 90px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); color: var(--ink); border: 1px solid #fff; }
.process-grid article { min-height: 500px; padding: 24px; display: flex; flex-direction: column; border-right: 1px solid var(--ink); }
.process-grid article:last-child { border: 0; }
.process-grid article:nth-child(1) { background: var(--blue); }
.process-grid article:nth-child(2) { background: var(--lime); }
.process-grid article:nth-child(3) { background: var(--coral); }
.step-no { font-size: 11px; font-weight: 800; letter-spacing: .06em; }
.step-icon { position: relative; width: 150px; height: 150px; margin: 60px auto 42px; }
.intake-icon { border: 2px solid var(--ink); border-radius: 50%; background: var(--paper); }
.intake-icon::before { content: ""; position: absolute; inset: 25px; border: 2px solid var(--ink); border-radius: 50%; }
.intake-icon i { position: absolute; width: 18px; height: 18px; border: 2px solid var(--ink); border-radius: 50%; background: var(--coral); }
.intake-icon i:nth-child(1) { top: -6px; left: 64px; }
.intake-icon i:nth-child(2) { right: 4px; bottom: 21px; background: var(--lime); }
.intake-icon i:nth-child(3) { left: 5px; bottom: 22px; background: var(--pink); }
.ideas-icon i { position: absolute; inset: 20px 13px 14px 14px; border: 2px solid var(--ink); border-radius: 50% 48% 45% 55%; background: var(--lilac); box-shadow: 8px 9px 0 var(--ink); transform: rotate(-8deg); }
.ideas-icon b { position: absolute; z-index: 2; top: 45px; left: 55px; font-size: 41px; }
.drop-icon i { position: absolute; inset: 15px 28px; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 13px; background: var(--paper); box-shadow: 8px 8px 0 var(--ink); font-style: normal; font-size: 28px; }
.drop-icon b { position: absolute; right: 8px; top: 6px; width: 26px; height: 26px; border: 2px solid var(--ink); border-radius: 50%; background: var(--lime); }
.process-grid h3 { margin: 0 0 15px; font-size: 34px; }
.process-grid p { margin-bottom: 24px; color: #33342d; font-size: 14px; line-height: 1.65; }
.process-grid small { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .1em; }

.formats { padding: 150px 24px; }
.formats-heading { max-width: 1250px; margin: 0 auto 80px; display: grid; grid-template-columns: 190px minmax(0, 1.3fr) minmax(250px, .7fr); gap: 40px; }
.formats-heading h2 em { color: var(--coral); font-style: italic; }
.format-grid { max-width: 1250px; margin: auto; display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--ink); }
.format-card { min-height: 620px; padding: 20px; display: flex; flex-direction: column; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.format-card:nth-child(even) { border-right: 0; }
.format-card:nth-child(n+3) { border-bottom: 0; }
.format-card.pov { background: var(--pink); }
.format-card.character { background: var(--lime); }
.format-card.myth { background: var(--blue); }
.format-card.serial { background: var(--coral); }
.format-card header { display: flex; justify-content: space-between; gap: 14px; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.format-art { position: relative; flex: 1; margin: 18px 0; overflow: hidden; border: 1px solid var(--ink); background: var(--paper); transition: transform 220ms ease; }
.format-card:hover .format-art { transform: rotate(-1deg) scale(.99); }
.format-card footer { max-width: 420px; min-height: 48px; color: #3c3d36; font-size: 14px; line-height: 1.5; }
.format-card footer small { display: block; margin-bottom: 8px; color: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.pov .format-art { padding: 45px; display: flex; flex-direction: column; justify-content: center; background: var(--ink); color: #fff; }
.pov .format-art::after { content: ""; position: absolute; width: 240px; height: 240px; right: -110px; bottom: -80px; border-radius: 50%; background: var(--coral); }
.pov .format-art span { font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.pov .format-art strong { margin-top: 10px; font: 400 54px/.93 var(--display); letter-spacing: -.06em; }
.pov .format-art i { margin-top: 19px; color: var(--lime); font-style: normal; font-size: 12px; }
.character .format-art { display: grid; place-items: center; background-image: linear-gradient(rgba(23,24,18,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(23,24,18,.09) 1px, transparent 1px); background-size: 35px 35px; }
.blob-face { position: relative; width: 230px; height: 190px; border: 2px solid var(--ink); border-radius: 47% 53% 42% 58%; background: var(--lilac); box-shadow: 12px 12px 0 var(--ink); transform: rotate(-5deg); }
.blob-face::after { content: ""; position: absolute; right: 7px; bottom: -34px; width: 58px; height: 65px; background: var(--lilac); border-right: 2px solid var(--ink); transform: skew(-22deg) rotate(25deg); }
.blob-face i { position: absolute; z-index: 1; top: 75px; width: 11px; height: 16px; border-radius: 50%; background: var(--ink); }
.blob-face i:first-child { left: 65px; }
.blob-face i:nth-child(2) { right: 65px; }
.blob-face b { position: absolute; z-index: 1; left: 50%; top: 112px; width: 48px; height: 20px; border-bottom: 4px solid var(--ink); border-radius: 50%; transform: translateX(-50%); }
.character .format-art > span { position: absolute; left: 22px; bottom: 18px; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.myth .format-art { padding: 55px 45px; display: flex; flex-direction: column; justify-content: center; background: var(--sun); }
.myth del { font: 400 53px/.92 var(--display); text-decoration-thickness: 7px; text-decoration-color: var(--coral); }
.myth span { align-self: flex-end; margin-top: 25px; color: var(--coral); font: italic 600 30px var(--display); transform: rotate(-7deg); }
.serial .format-art { padding: 35px; display: flex; flex-direction: column; background: var(--lilac); }
.serial .format-art > span { font: 650 77px/.75 var(--sans); letter-spacing: -.09em; }
.serial .format-art > b { position: absolute; right: 23px; top: 27px; width: 82px; height: 82px; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 50%; background: var(--lime); font-size: 13px; }
.serial .format-art > i { margin-top: auto; align-self: flex-end; font: italic 500 19px var(--display); }

.learning { padding: 150px 24px; overflow: hidden; background: var(--ink); color: #fff; }
.learning-heading { max-width: 1250px; margin: 0 auto 85px; display: grid; grid-template-columns: 190px minmax(0, 1.3fr) minmax(280px, .7fr); gap: 40px; }
.learning-heading h2 { margin: -15px 0 0; font-size: clamp(57px, 6.2vw, 88px); line-height: .94; }
.learning-heading h2 em { color: var(--lime); font-style: italic; }
.learning-heading > p:last-child { color: var(--muted-light); font-size: 16px; line-height: 1.7; }
.learning-board { max-width: 1360px; min-height: 650px; margin: auto; padding: 55px 30px; display: grid; grid-template-columns: minmax(280px, .9fr) minmax(350px, 1.1fr) minmax(280px, .9fr); gap: 30px; align-items: center; background-color: var(--lilac); background-image: linear-gradient(rgba(23,24,18,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(23,24,18,.1) 1px, transparent 1px); background-size: 45px 45px; border: 1px solid #fff; color: var(--ink); }
.signals-card, .hypothesis-card { min-width: 0; min-height: 500px; display: flex; flex-direction: column; border: 1px solid var(--ink); background: var(--paper); box-shadow: 10px 10px 0 var(--ink); }
.signals-card > header, .hypothesis-card > header { min-height: 62px; padding: 15px; display: flex; justify-content: space-between; align-items: center; gap: 14px; border-bottom: 1px solid var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .09em; }
.signals-card > header b, .hypothesis-card > header b { padding: 6px 9px; border-radius: 99px; background: var(--ink); color: #fff; white-space: nowrap; font-size: 9px; }
.completion { min-height: 215px; padding: 22px; display: grid; grid-template-columns: 1fr auto; align-items: end; background: var(--lime); border-bottom: 1px solid var(--ink); }
.completion > span { align-self: start; font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.completion > strong { grid-row: 1 / 3; grid-column: 2; font: 400 77px/.8 var(--display); letter-spacing: -.08em; }
.completion > strong small { font-size: 25px; }
.completion > i { height: 10px; overflow: hidden; border: 1px solid var(--ink); background: var(--paper); }
.completion > i b { width: 68%; height: 100%; display: block; background: var(--coral); border-right: 1px solid var(--ink); }
.completion p { grid-column: 1 / -1; margin: 11px 0 0; font-size: 11px; }
.signals-card dl { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--ink); }
.signals-card dl div { min-width: 0; min-height: 88px; padding: 13px; display: flex; flex-direction: column; justify-content: space-between; gap: 6px; border-right: 1px solid var(--ink); }
.signals-card dl div:last-child { border: 0; }
.signals-card dt { color: var(--muted); font-size: 10px; }
.signals-card dd { margin: 0; font: 500 20px var(--display); }
.signals-card dd span { color: #4b7c14; font: 800 11px var(--sans); }
.signals-card blockquote { min-height: 80px; margin: auto 0 0; padding: 20px; display: flex; align-items: center; background: var(--coral); font: italic 500 19px var(--display); }
.loop-track { position: relative; width: min(390px, 100%); aspect-ratio: 1; margin: auto; }
.loop-track::before { content: ""; position: absolute; inset: 42px; border: 2px dashed var(--ink); border-radius: 50%; animation: learning-spin 24s linear infinite; }
.loop-track::after { content: "↻"; position: absolute; right: 26px; top: 38px; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; background: var(--lime); font-size: 19px; }
@keyframes learning-spin { to { transform: rotate(360deg); } }
.loop-center { position: absolute; left: 50%; top: 50%; width: 176px; height: 176px; padding: 24px; display: flex; flex-direction: column; justify-content: center; border: 2px solid var(--ink); border-radius: 50%; background: var(--paper); box-shadow: 7px 7px 0 var(--ink); transform: translate(-50%, -50%); }
.loop-center span { margin-bottom: 10px; font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.loop-center strong { font: 450 23px/.95 var(--display); letter-spacing: -.04em; }
.loop-node { position: absolute; z-index: 2; width: 112px; min-height: 66px; padding: 10px; display: flex; flex-direction: column; justify-content: space-between; gap: 4px; border: 1px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); }
.loop-node span { font-size: 9px; font-weight: 800; }
.loop-node strong { font: 500 15px var(--display); }
.node-one { left: 50%; top: 0; background: var(--lime); transform: translateX(-50%) rotate(-2deg); }
.node-two { right: 0; top: 50%; background: var(--coral); transform: translateY(-50%) rotate(2deg); }
.node-three { left: 50%; bottom: 0; background: var(--blue); transform: translateX(-50%) rotate(2deg); }
.node-four { left: 0; top: 50%; background: var(--pink); transform: translateY(-50%) rotate(-2deg); }
.hypothesis-card > p { margin: 0; padding: 24px; color: var(--muted); font-size: 13px; line-height: 1.65; border-bottom: 1px solid var(--ink); }
.hypothesis-card ul { margin: 0; padding: 0 16px; list-style: none; }
.hypothesis-card li { min-height: 60px; display: grid; grid-template-columns: 1fr 1.45fr auto; gap: 9px; align-items: center; border-bottom: 1px solid var(--line); }
.hypothesis-card li > span { color: var(--muted); font-size: 9px; letter-spacing: .05em; text-transform: uppercase; }
.hypothesis-card li > strong { font: 450 14px var(--display); letter-spacing: -.02em; }
.hypothesis-card li > b { color: #4b7c14; }
.hypothesis-card footer { min-height: 55px; margin-top: auto; padding: 16px; display: flex; align-items: center; font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.hypothesis-card footer span { width: 8px; height: 8px; margin-right: 8px; display: inline-block; border-radius: 50%; background: var(--lime); border: 1px solid var(--ink); }
.learning-balance { max-width: 1360px; margin: 35px auto 0; display: grid; grid-template-columns: .8fr .8fr 1.4fr; border: 1px solid #fff; color: var(--ink); }
.learning-balance > div { min-height: 190px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; gap: 12px; border-right: 1px solid var(--ink); }
.learning-balance > div:first-child { background: var(--lime); }
.learning-balance > div:nth-child(2) { background: var(--coral); }
.learning-balance > div strong { font: 400 70px/.8 var(--display); letter-spacing: -.07em; }
.learning-balance > div span { font-size: 11px; font-weight: 700; line-height: 1.45; text-transform: uppercase; }
.learning-balance > p { margin: 0; padding: 25px; display: flex; flex-direction: column; justify-content: space-between; gap: 14px; background: var(--paper); }
.learning-balance > p small { font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.learning-balance > p strong { font: 400 28px/1.05 var(--display); letter-spacing: -.04em; }

.memory { min-height: 850px; display: grid; grid-template-columns: 1fr 1fr; background: var(--paper-deep); border-block: 1px solid var(--ink); }
.memory-copy { padding: 110px max(45px, 8vw); display: flex; flex-direction: column; justify-content: center; }
.memory-copy h2 { margin-bottom: 28px; font-size: clamp(58px, 6vw, 86px); line-height: .95; }
.memory-copy h2 em { color: var(--coral); font-style: italic; }
.memory-copy > p:nth-of-type(2) { max-width: 580px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.memory-copy ul { max-width: 580px; margin: 38px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.memory-copy li { min-height: 56px; padding: 14px 0; display: grid; grid-template-columns: 45px 1fr; align-items: center; border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 650; }
.memory-copy li span { font-size: 10px; }
.bible-card { align-self: center; justify-self: center; width: min(540px, calc(100% - 70px)); border: 1px solid var(--ink); background: var(--paper); box-shadow: 15px 15px 0 var(--ink); transform: rotate(2deg); transition: transform 260ms ease; }
.bible-card:hover { transform: rotate(.6deg); }
.bible-card > header, .bible-card > footer { min-height: 58px; padding: 16px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 10px; font-weight: 800; letter-spacing: .09em; }
.bible-card > header { background: var(--lime); border-bottom: 1px solid var(--ink); }
.bible-title { min-height: 245px; padding: 32px; display: flex; flex-direction: column; justify-content: center; border-bottom: 1px solid var(--ink); }
.bible-title small, .bible-row small, .bible-palette small { font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.bible-title strong { margin-top: 15px; font: 400 38px/1 var(--display); letter-spacing: -.05em; }
.bible-row { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--ink); }
.bible-row > span { min-height: 125px; padding: 20px; display: flex; flex-direction: column; gap: 13px; border-right: 1px solid var(--ink); }
.bible-row > span:last-child { border: 0; }
.bible-row strong { font: 400 18px/1.25 var(--display); }
.bible-insight { min-height: 120px; padding: 20px; display: flex; flex-direction: column; justify-content: center; background: var(--blue); border-bottom: 1px solid var(--ink); }
.bible-insight small { font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.bible-insight strong { margin-top: 9px; font: 450 21px var(--display); }
.bible-insight span { margin-top: 5px; font-size: 11px; font-weight: 700; }
.bible-palette { min-height: 105px; padding: 19px; display: flex; align-items: end; gap: 8px; }
.bible-palette small { margin-right: auto; align-self: start; }
.bible-palette i { width: 31px; height: 45px; border: 1px solid var(--ink); }
.bible-palette i:nth-of-type(1) { background: var(--lime); }
.bible-palette i:nth-of-type(2) { background: var(--coral); }
.bible-palette i:nth-of-type(3) { background: var(--pink); }
.bible-palette i:nth-of-type(4) { background: var(--lilac); }
.bible-palette i:nth-of-type(5) { background: var(--ink); }
.bible-card > footer { background: var(--ink); color: #fff; }
.bible-card > footer span { color: var(--lime); }

.pilot { padding: 120px max(24px, calc((100vw - 1300px)/2)); display: grid; grid-template-columns: 1fr 1fr; gap: 7%; align-items: center; background: var(--blue); }
.pilot-offer h2 { margin: 0 0 28px; font-size: clamp(62px, 6.7vw, 98px); line-height: .9; }
.pilot-offer > p:nth-of-type(2) { max-width: 580px; color: #2e2f29; font-size: 16px; line-height: 1.7; }
.pilot-offer > small { max-width: 590px; margin-top: 26px; display: block; font-size: 10px; font-weight: 750; line-height: 1.6; letter-spacing: .09em; }
.lead-form { position: relative; max-width: 590px; margin-top: 30px; padding: 24px; display: grid; gap: 18px; border: 1px solid var(--ink); background: rgba(248,245,235,.92); box-shadow: 9px 9px 0 var(--ink); }
.lead-field { display: grid; gap: 8px; }
.lead-field label { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.lead-field input, .lead-field textarea { width: 100%; padding: 14px 15px; border: 1px solid var(--ink); border-radius: 0; outline: none; background: var(--white); color: var(--ink); font: 600 16px/1.5 var(--sans); transition: box-shadow 150ms ease, background 150ms ease; }
.lead-field textarea { min-height: 122px; resize: vertical; }
.lead-field input::placeholder, .lead-field textarea::placeholder { color: #7c7d73; font-weight: 500; }
.lead-field input:focus, .lead-field textarea:focus { background: #fff; box-shadow: 4px 4px 0 var(--coral); }
.lead-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.lead-submit { display: flex; align-items: center; gap: 18px; }
.lead-submit .button { flex: none; cursor: pointer; }
.lead-submit .button:disabled { cursor: wait; opacity: .65; transform: none; box-shadow: 2px 2px 0 var(--ink); }
.lead-status { margin: 0; color: #2e2f29; font-size: 12px; font-weight: 700; line-height: 1.45; }
.lead-form[data-state="success"] { background: var(--lime); }
.lead-form[data-state="error"] .lead-status { color: #8a2319; }
.pilot-plan { border: 1px solid var(--ink); background: var(--paper); box-shadow: 14px 14px 0 var(--ink); }
.pilot-plan > header { min-height: 64px; padding: 17px; display: flex; align-items: center; justify-content: space-between; gap: 14px; border-bottom: 1px solid var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .09em; }
.pilot-plan > header b { padding: 7px 10px; border: 1px solid var(--ink); border-radius: 99px; background: var(--lime); }
.plan-count { min-height: 210px; padding: 28px; display: flex; align-items: end; gap: 20px; background: var(--coral); border-bottom: 1px solid var(--ink); }
.plan-count strong { font: 400 135px/.74 var(--display); letter-spacing: -.09em; }
.plan-count span { font: 400 21px/1.15 var(--display); }
.pilot-plan ul { margin: 0; padding: 0 18px; list-style: none; }
.pilot-plan li { min-height: 58px; display: grid; grid-template-columns: 40px 1fr auto; gap: 10px; align-items: center; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 600; }
.pilot-plan li > span { font-size: 10px; font-weight: 800; }
.pilot-plan li > b { color: #53731c; font-size: 11px; letter-spacing: .05em; }
.pilot-plan > footer { min-height: 110px; padding: 20px; display: flex; align-items: end; justify-content: space-between; gap: 20px; background: var(--ink); color: #fff; }
.pilot-plan > footer span { color: var(--muted-light); font-size: 10px; font-weight: 750; line-height: 1.5; letter-spacing: .09em; }
.pilot-plan > footer strong { text-align: right; font: 400 21px/1.1 var(--display); }

.site-footer { min-height: 400px; padding: 80px max(24px, calc((100vw - 1300px)/2)) 24px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; align-content: space-between; background: var(--ink); color: #fff; }
.logo.inverse svg path:first-child { fill: var(--coral); stroke: #fff; }
.logo.inverse .logo-play { fill: #fff; stroke: none; }
.footer-lead p { margin: 25px 0 0; color: #b5b7ac; font: 400 23px/1.25 var(--display); }
.site-footer nav, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; font-size: 13px; }
.site-footer nav a:hover, .footer-contact a:hover { color: var(--lime); }
.site-footer nav strong, .footer-contact > strong { margin-bottom: 10px; color: #9a9c90; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.footer-contact a { color: var(--lime); border-bottom: 1px solid; }
.footer-contact span { color: #9a9c90; }
.footer-line { grid-column: 1 / -1; margin: 70px 0 0; padding-top: 18px; display: flex; justify-content: space-between; gap: 14px; border-top: 1px solid #46473f; color: #9a9c90; font-size: 10px; letter-spacing: .09em; }

.stage-note { max-width: 1360px; margin: 18px auto 0; color: var(--muted); font-size: 11px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.stage-note span { width: 8px; height: 8px; margin-right: 8px; display: inline-block; border-radius: 50%; background: var(--sun); border: 1px solid var(--ink); }

.faq { padding: 150px 24px 160px; }
.faq-heading { max-width: 940px; margin: 0 auto 70px; text-align: center; }
.faq-heading h2 { margin: 0; font-size: clamp(50px, 5.6vw, 78px); line-height: .95; }
.faq-heading h2 em { color: var(--coral); font-style: italic; }
.faq-list { max-width: 940px; margin: auto; border: 1px solid var(--ink); background: var(--paper); box-shadow: 13px 13px 0 var(--ink); }
.faq-list details { border-bottom: 1px solid var(--ink); }
.faq-list details:last-child { border-bottom: 0; }
.faq-list summary { position: relative; padding: 26px 74px 26px 26px; display: block; cursor: pointer; font: 450 22px/1.25 var(--display); letter-spacing: -.03em; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 22px; top: 50%; width: 33px; height: 33px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; background: var(--lime); font: 700 18px var(--sans); transform: translateY(-50%); transition: transform 180ms ease; }
.faq-list details[open] summary::after { content: "−"; background: var(--coral); transform: translateY(-50%) rotate(180deg); }
.faq-list summary:hover { background: #fffcf2; }
.faq-list details p { max-width: 760px; margin: 0; padding: 0 26px 28px; color: var(--muted); font-size: 15px; line-height: 1.7; }

[id] { scroll-margin-top: 88px; }

.error-page { min-height: 100vh; display: grid; place-items: center; background: var(--lilac); }
.error-page main { width: min(720px, calc(100% - 40px)); padding: 70px; border: 1px solid var(--ink); background: var(--paper); box-shadow: 14px 14px 0 var(--ink); }
.error-page h1 { margin: 0; font-size: clamp(70px, 13vw, 140px); line-height: .75; }
.error-page p:not(.kicker) { margin: 35px 0; color: var(--muted); font-size: 16px; }

@media (max-width: 1060px) {
  .site-header nav { gap: 22px; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: clamp(52px, 7vw, 72px); }
  .story-machine-wrap { min-height: 570px; }
  .section-intro, .formats-heading, .learning-heading { grid-template-columns: 140px 1fr; }
  .section-intro > p:last-child, .formats-heading > p:last-child, .learning-heading > p:last-child { grid-column: 2; }
  .learning-board { grid-template-columns: 1fr 1fr; }
  .loop-track { grid-column: 1 / -1; grid-row: 1; }
  .memory-copy { padding-inline: 45px; }
  .process-grid article { min-height: 480px; }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { padding-top: 50px; grid-template-columns: 1fr; }
  .hero > * { min-width: 0; }
  .hero-copy { padding-inline: 10px; }
  .story-machine-wrap { width: calc(100% - 25px); min-height: 620px; margin: 20px auto 45px; }
  .section-intro, .formats-heading, .learning-heading { grid-template-columns: 1fr; }
  .section-intro > p:last-child, .formats-heading > p:last-child, .learning-heading > p:last-child { grid-column: 1; }
  .drop-stage { grid-template-columns: 1fr; gap: 70px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 430px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .process-grid article:last-child { border-bottom: 0; }
  .step-icon { margin-block: 44px 34px; }
  .learning-board { grid-template-columns: 1fr; padding: 45px 22px; }
  .loop-track { grid-column: 1; grid-row: auto; order: 1; }
  .signals-card { order: 2; }
  .hypothesis-card { order: 3; }
  .learning-balance { grid-template-columns: 1fr 1fr; }
  .learning-balance > p { grid-column: 1 / -1; min-height: 180px; }
  .memory { grid-template-columns: 1fr; padding-bottom: 90px; }
  .bible-card { min-height: 0; }
  .pilot { grid-template-columns: 1fr; gap: 80px; }
  .format-grid { grid-template-columns: minmax(0, 1fr); }
  .format-card, .format-card:nth-child(even), .format-card:nth-child(n+3) { min-height: 560px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .format-card:last-child { border-bottom: 0; }
  .format-card, .format-art { min-width: 0; }
  .pov .format-art strong, .myth del { font-size: clamp(34px, 6.5vw, 53px); overflow-wrap: anywhere; }
  .serial .format-art > span { font-size: clamp(48px, 9.5vw, 77px); overflow-wrap: anywhere; }
}

@media (max-width: 580px) {
  .site-header { height: 60px; padding-inline: 13px; }
  .logo { font-size: 20px; }
  .logo svg { width: 27px; }
  .nav-cta { padding: 8px 10px; box-shadow: 2px 2px 0 var(--ink); font-size: 10px; }
  .hero { min-height: 0; padding: 58px 12px 25px; }
  .hero h1 { font-size: clamp(44px, 13vw, 56px); }
  .hero-lede { font-size: 15px; }
  .hero-loop { grid-template-columns: 1fr; gap: 9px; margin-bottom: 30px; }
  .hero-loop > li:not(.hero-loop-arrow) { min-height: 96px; }
  .hero-loop-arrow { height: 13px; transform: rotate(90deg); font-size: 19px; }
  .hero-loop strong { font-size: 20px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .proof-strip { margin-top: 43px; }
  .proof-strip li { min-height: 78px; padding: 9px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .proof-strip strong { font-size: 31px; }
  .proof-strip span { font-size: 10px; }
  .story-machine-wrap { min-height: 500px; margin-top: 5px; box-shadow: 8px 8px 0 var(--ink); }
  .story-world { inset: 10px 0 86px; }
  .machine-feedback { top: 18px; right: 9px; width: 200px; min-height: 116px; padding: 12px; box-shadow: 4px 4px 0 var(--ink); }
  .machine-feedback strong span { font-size: 30px; }
  .note-a { left: -5px; }
  .note-b { right: 0; }
  .machine-caption strong { font-size: 14px; }
  .ticker span { font-size: 18px; }
  .manifesto { padding: 105px 18px 125px; }
  .manifesto h2, .process-heading h2 { font-size: 46px; }
  .scribble { right: 7%; bottom: 60px; font-size: 15px; }
  .weekly-drop { padding: 10px; }
  .section-intro { padding: 75px 5px 55px; }
  .section-intro h2, .formats-heading h2 { font-size: 49px; }
  .drop-stage { padding: 48px 14px; }
  .episode-item { grid-template-columns: 48px 1fr; }
  .episode-thumb { width: 45px; height: 45px; }
  .episode-item > b { grid-column: 2; }
  .episode-list footer { align-items: flex-start; flex-direction: column; }
  .episode-list footer strong { text-align: left; }
  .process { padding: 105px 12px; }
  .process-grid { margin-top: 60px; }
  .process-grid article { min-height: 430px; }
  .formats { padding: 105px 11px; }
  .formats-heading { margin-bottom: 55px; }
  .format-grid { grid-template-columns: minmax(0, 1fr); }
  .format-card, .format-card:nth-child(even), .format-card:nth-child(n+3) { min-height: 520px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .format-card:last-child { border-bottom: 0; }
  .format-card, .format-art { min-width: 0; }
  .pov .format-art { padding: 24px; }
  .pov .format-art strong, .myth del { font-size: 34px; overflow-wrap: anywhere; }
  .serial .format-art { padding: 25px; }
  .serial .format-art > span { font-size: 48px; overflow-wrap: anywhere; }
  .learning { padding: 105px 11px; }
  .learning-heading { margin-bottom: 55px; }
  .learning-heading h2 { font-size: 49px; }
  .learning-board { padding: 40px 13px; gap: 38px; }
  .signals-card, .hypothesis-card { min-height: 480px; box-shadow: 7px 7px 0 var(--ink); }
  .loop-track { width: 310px; }
  .loop-track::before { inset: 35px; }
  .loop-track::after { top: 27px; right: 20px; }
  .loop-center { width: 150px; height: 150px; padding: 18px; }
  .loop-center strong { font-size: 19px; }
  .loop-node { width: 92px; min-height: 58px; }
  .loop-node strong { font-size: 12px; }
  .learning-balance { grid-template-columns: 1fr; }
  .learning-balance > div { min-height: 150px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .learning-balance > p { grid-column: 1; min-height: 170px; }
  .memory-copy { padding: 95px 20px 60px; }
  .memory-copy h2 { font-size: 51px; }
  .bible-card { width: calc(100% - 35px); box-shadow: 8px 8px 0 var(--ink); }
  .bible-title { min-height: 210px; padding: 24px; }
  .bible-title strong { font-size: 31px; }
  .bible-palette i { width: 24px; }
  .faq { padding: 100px 14px 110px; }
  .faq-heading { margin-bottom: 50px; }
  .faq-heading h2 { font-size: 44px; }
  .faq-list { box-shadow: 8px 8px 0 var(--ink); }
  .faq-list summary { padding: 20px 60px 20px 16px; font-size: 18px; }
  .faq-list details p { padding: 0 16px 24px; font-size: 14px; }
  .pilot { padding: 95px 17px; }
  .pilot-offer h2 { font-size: 57px; }
  .lead-form { padding: 16px; box-shadow: 7px 7px 0 var(--ink); }
  .lead-submit { align-items: flex-start; flex-direction: column; }
  .plan-count strong { font-size: 110px; }
  .site-footer { padding: 70px 20px 20px; grid-template-columns: 1fr 1fr; }
  .footer-lead { grid-column: 1 / -1; }
  .footer-line { flex-direction: column; gap: 9px; }
  .error-page main { padding: 45px 25px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
