:root {
  --canvas: #fffdf9;
  --surface: #ffffff;
  --ink: #111114;
  --muted: #5c5a62;
  --orange: #ff5a1f;
  --orange-deep: #e6400a;
  --orange-soft: #fff0e6;
  --orange-pale: #fff8f2;
  --line: #e9e5de;
  --green: #1da869;
  --shadow: 0 24px 70px rgba(51, 30, 15, 0.12);
  --radius-lg: 32px;
  --radius-md: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; padding: .75rem 1rem; background: var(--ink); color: white; border-radius: .75rem; }
.skip-link:focus { top: 1rem; }
.site-header {
  width: min(1180px, calc(100% - 40px));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; font-size: 1.22rem; font-weight: 800; letter-spacing: -.035em; min-height: 44px; }
.brand-logo { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.brand-logo img { width: 100%; max-width: none; }
.nav-cta, .cta-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: .65rem 1.1rem;
  background: var(--ink);
  color: white;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 4px 4px 0 var(--orange);
  transition: transform 100ms ease-out, box-shadow 100ms ease-out;
}
.nav-cta:active, .cta-button:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--orange); }
.nav-cta:focus-visible, .cta-button:focus-visible, .brand:focus-visible, input:focus-visible, button:focus-visible, footer a:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 700px;
  margin: 0 auto;
  padding: 72px 0 88px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 4rem;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .kicker { margin: 0 0 1rem; color: var(--orange-deep); font-size: .82rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.eyebrow { width: fit-content; display: flex; align-items: center; gap: .45rem; padding: .42rem .7rem; border: 1.5px solid #ffc3a5; border-radius: 999px; background: var(--orange-soft); }
h1, h2, h3, p { text-wrap: balance; }
h1 { max-width: 720px; margin: 0; font-size: clamp(3.4rem, 6vw, 5.75rem); line-height: .99; letter-spacing: -.03em; font-weight: 800; }
h1 span { color: var(--orange); position: relative; white-space: nowrap; }
h1 span::after { content: ""; position: absolute; left: 2%; right: 1%; bottom: -.05em; height: .11em; background: var(--orange); border-radius: 999px; transform: rotate(-1.5deg); opacity: .25; }
.hero-lede { max-width: 610px; margin: 1.6rem 0 1.7rem; color: var(--muted); font-size: 1.14rem; line-height: 1.65; }
.waitlist-form { max-width: 610px; }
.waitlist-form label { display: block; margin-bottom: .55rem; font-weight: 700; font-size: .9rem; }
.form-row { display: flex; gap: .65rem; padding: .45rem; border: 2px solid var(--ink); border-radius: 18px; background: var(--surface); box-shadow: 7px 7px 0 var(--ink); }
.form-row:focus-within { box-shadow: 7px 7px 0 var(--orange); }
.form-row input { min-width: 0; flex: 1; min-height: 52px; border: 0; border-radius: 12px; padding: 0 .8rem; color: var(--ink); background: transparent; font: inherit; }
.form-row input::placeholder { color: #96929a; }
.form-row input:focus-visible { outline: none; }
.form-row button { min-height: 52px; border: 0; border-radius: 12px; padding: 0 1.25rem; background: var(--orange); color: white; font: inherit; font-weight: 800; cursor: pointer; transition: background-color 100ms ease-out, transform 100ms ease-out; }
.form-row button:hover { background: var(--orange-deep); }
.form-row button:active { transform: translateY(1px); }
.form-row button[disabled] { opacity: .65; cursor: wait; }
.form-note, .form-message { margin: 1.15rem 0 0; color: var(--muted); font-size: .8rem; }
.form-message { min-height: 1.25rem; color: var(--orange-deep); font-weight: 700; }
.form-message.success { color: #087846; }
.audience { display: flex; align-items: center; gap: .75rem; margin-top: 1rem; color: var(--muted); font-size: .84rem; font-weight: 600; }
.avatar-stack { display: flex; padding-left: .5rem; }
.avatar-stack i { width: 30px; height: 30px; margin-left: -.5rem; border: 2px solid white; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: white; font-size: .68rem; font-style: normal; }
.avatar-stack i:nth-child(2) { background: var(--orange); }
.avatar-stack i:nth-child(3) { background: #ffc12d; color: var(--ink); }

.hero-visual { position: relative; min-height: 555px; display: grid; place-items: center; isolation: isolate; }
.hero-visual::before { content: ""; position: absolute; width: 440px; height: 440px; border-radius: 50%; background: var(--orange-soft); box-shadow: inset 0 0 0 1px #ffd4bc; z-index: -3; }
.orbit { position: absolute; border: 1.5px dashed #ffb087; border-radius: 50%; z-index: -2; }
.orbit-one { width: 520px; height: 310px; transform: rotate(-14deg); }
.orbit-two { width: 350px; height: 535px; transform: rotate(30deg); opacity: .58; }
.mascot-frame { width: 335px; height: 390px; overflow: hidden; position: relative; filter: drop-shadow(0 26px 25px rgba(38, 24, 15, .14)); z-index: 3; }
.mascot-frame img { width: 930px; max-width: none; transform: translate(-12px, -34px); mix-blend-mode: multiply; }
.screen-card { position: absolute; border: 2.5px solid var(--ink); border-radius: 18px; background: white; box-shadow: 8px 8px 0 rgba(17, 17, 20, .1); }
.screen-card-a { width: 205px; height: 135px; left: 0; top: 75px; transform: rotate(-8deg); padding: .8rem; z-index: -1; }
.screen-card-b { width: 190px; height: 158px; right: -8px; bottom: 42px; transform: rotate(8deg); padding: 1rem; background: var(--orange); color: white; z-index: 4; }
.mini-bar { display: flex; gap: 4px; margin-bottom: .65rem; }
.mini-bar b { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.mini-bar b:nth-child(2) { background: #ffbd22; }.mini-bar b:nth-child(3) { background: var(--green); }
.mini-layout { display: grid; grid-template-columns: 48% 1fr; gap: .5rem; height: 82px; }
.mini-layout > i { display: block; border-radius: 9px; background: var(--orange-soft); }
.mini-layout span { display: flex; flex-direction: column; gap: 7px; padding-top: 5px; }
.mini-layout span b { display: block; height: 8px; border-radius: 99px; background: #d9d6d0; }.mini-layout span b:last-child { width: 60%; background: var(--orange); }
.screen-card-b small { font-size: .65rem; letter-spacing: .12em; font-weight: 800; opacity: .8; }
.screen-card-b strong { display: block; margin-top: .8rem; font-size: 1.05rem; line-height: 1.28; }
.play-dot { position: absolute; right: 14px; bottom: 14px; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); font-size: .7rem; padding-left: 2px; }
.motion-pill { position: absolute; z-index: 5; padding: .38rem .65rem; border: 2px solid var(--ink); border-radius: 999px; background: white; font-size: .65rem; letter-spacing: .08em; font-weight: 800; box-shadow: 3px 3px 0 var(--ink); }
.motion-pill-a { left: 12px; bottom: 84px; transform: rotate(-5deg); }.motion-pill-b { right: 12px; top: 34px; transform: rotate(5deg); }.motion-pill-c { left: 48%; top: 4px; background: #ffca36; transform: rotate(-2deg); }

.hero2 {
  width: min(1180px, calc(100% - 40px));
  min-height: 750px;
  margin: 0 auto;
  padding: 64px 0 96px;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  align-items: center;
  gap: 5rem;
}
.hero2-copy { position: relative; z-index: 2; min-width: 0; }
.hero2 h1 { max-width: 640px; font-size: clamp(3.6rem, 5.5vw, 5.35rem); }
.hero2 h1 span { color: var(--orange); }
.hero2 .hero-lede { max-width: 590px; margin-top: 1.4rem; }
.hero-proof { display: flex; flex-wrap: wrap; align-items: center; gap: .55rem 1rem; margin-top: 1.15rem; color: var(--muted); font-size: .8rem; font-weight: 700; }
.hero-proof span { display: inline-flex; align-items: center; gap: .4rem; }
.hero-proof i { width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: white; font-size: .58rem; font-style: normal; }

.launch-stage {
  min-height: 590px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 2px solid var(--ink);
  border-radius: 32px;
  background: var(--orange);
  box-shadow: 11px 11px 0 var(--ink);
  transform: rotate(1deg);
}
.launch-stage::before { content: ""; position: absolute; inset: 0; z-index: -2; opacity: .14; background-image: radial-gradient(var(--ink) 1.1px, transparent 1.1px); background-size: 18px 18px; }
.launch-stage::after { content: ""; position: absolute; width: 420px; height: 420px; right: -180px; bottom: -190px; z-index: -1; border: 2px solid rgba(255,255,255,.38); border-radius: 50%; box-shadow: 0 0 0 42px rgba(255,255,255,.09), 0 0 0 84px rgba(255,255,255,.06); }
.stage-label { position: absolute; left: 26px; right: 26px; top: 24px; z-index: 7; display: flex; align-items: center; gap: .7rem; padding: .75rem 1rem; border: 2px solid var(--ink); border-radius: 999px; background: var(--canvas); color: var(--ink); font-size: .66rem; font-weight: 800; letter-spacing: .12em; }
.stage-label span { margin-right: auto; }.stage-label i { width: 8px; height: 8px; border-radius: 50%; background: #18a768; box-shadow: 0 0 0 4px rgba(24,167,104,.13); }.stage-label strong { color: #087846; font-size: .6rem; }
.motion-orbit { position: absolute; width: 480px; height: 335px; left: 56px; top: 126px; z-index: 1; border: 2px dashed rgba(17,17,20,.34); border-radius: 50%; transform: rotate(-11deg); }
.scene-stack { position: absolute; width: 205px; height: 205px; left: 22px; top: 124px; z-index: 3; }
.scene-shot { position: absolute; width: 172px; height: 116px; padding: 12px; border: 2px solid var(--ink); border-radius: 15px; background: var(--surface); box-shadow: 5px 5px 0 rgba(17,17,20,.18); }
.scene-shot small { position: absolute; right: 10px; top: 8px; font-size: .48rem; font-weight: 800; letter-spacing: .05em; }
.scene-shot span { display: block; width: 46%; height: 8px; margin-bottom: 10px; border-radius: 99px; background: var(--ink); }
.scene-shot i { display: block; height: 65px; border-radius: 8px; background: linear-gradient(135deg, var(--orange-soft) 0 48%, white 48% 100%); border: 1px solid #ffd3ba; }
.shot-back { left: 24px; top: 0; transform: rotate(11deg); opacity: .72; }
.shot-mid { left: 12px; top: 28px; transform: rotate(3deg); background: #ffc934; }
.shot-mid i { background: rgba(255,255,255,.72); border-color: var(--ink); }
.shot-front { left: 0; top: 58px; transform: rotate(-7deg); }
.motion-signal { position: absolute; width: 108px; height: 18px; left: 208px; top: 276px; z-index: 4; display: flex; align-items: center; justify-content: space-between; transform: rotate(-3deg); }
.motion-signal::before { content: ""; position: absolute; left: 4px; right: 4px; height: 2px; background: var(--ink); }
.motion-signal i { width: 11px; height: 11px; z-index: 1; border: 2px solid var(--ink); border-radius: 50%; background: #ffc934; }
.launch-output { position: absolute; width: 330px; height: 320px; right: 24px; top: 132px; z-index: 4; padding: 11px; border: 2px solid var(--ink); border-radius: 22px; background: var(--canvas); box-shadow: 8px 8px 0 var(--ink); transform: rotate(1.5deg); }
.output-top { height: 32px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: .7rem; font-size: .52rem; font-weight: 800; letter-spacing: .05em; }
.output-top > span { display: flex; gap: 4px; }.output-top > span i { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }.output-top > span i:nth-child(2) { background: #ffc934; }.output-top > span i:nth-child(3) { background: var(--green); }
.output-top b { white-space: nowrap; }.output-top strong { justify-self: end; font-variant-numeric: tabular-nums; }
.output-screen { height: 238px; position: relative; overflow: hidden; padding: 18px; border: 2px solid var(--ink); border-radius: 14px; background: var(--ink); color: white; }
.output-copy { position: relative; z-index: 2; }.output-copy small { display: block; margin-bottom: 4px; color: #ff9b72; font-size: .5rem; font-weight: 800; letter-spacing: .13em; }.output-copy strong { display: block; font-size: 1rem; line-height: 1.08; letter-spacing: -.035em; }
.output-ui { position: absolute; width: 200px; height: 118px; right: -8px; bottom: -2px; display: grid; grid-template-columns: .75fr 1fr; gap: 9px; padding: 11px; border: 2px solid var(--ink); border-radius: 13px; background: white; transform: rotate(-4deg); }
.output-ui > i { display: block; border-radius: 8px; background: var(--orange); }
.output-ui span { display: flex; flex-direction: column; gap: 9px; padding-top: 5px; }.output-ui b { height: 7px; border-radius: 99px; background: #d7d4ce; }.output-ui b:last-child { width: 58%; background: var(--orange); }
.output-play { position: absolute; right: 12px; top: 46px; z-index: 3; width: 38px; height: 38px; display: grid; place-items: center; padding-left: 2px; border: 2px solid var(--ink); border-radius: 50%; background: #ffc934; color: var(--ink); font-size: .7rem; box-shadow: 3px 3px 0 var(--orange); }
.output-progress { height: 24px; display: flex; align-items: flex-end; padding: 0 3px 3px; }.output-progress::before { content: ""; width: 100%; height: 5px; border-radius: 99px; background: #dedad2; }.output-progress span { position: absolute; left: 14px; bottom: 14px; width: calc(100% - 28px); height: 5px; border-radius: 99px; background: var(--orange); transform: scaleX(.2); transform-origin: left center; }
.stage-mascot { position: absolute; left: 64px; bottom: -30px; width: 245px; height: 250px; overflow: hidden; z-index: 6; filter: drop-shadow(0 16px 14px rgba(30,15,5,.18)); }
.stage-mascot img { width: 324px; max-width: none; transform: translate(-39px, -40px); }
.format-badge { position: absolute; right: 30px; bottom: 34px; z-index: 7; display: inline-flex; align-items: center; gap: .45rem; padding: .68rem .82rem; border: 2px solid var(--ink); border-radius: 999px; background: var(--canvas); font-size: .62rem; font-weight: 800; letter-spacing: .05em; box-shadow: 3px 3px 0 var(--ink); }
.format-badge span { color: var(--orange); }
.launch-stage, .scene-shot, .stage-mascot, .launch-output, .motion-signal i, .output-progress span { will-change: transform, opacity; }

.hero3 {
  width: min(1180px, calc(100% - 40px));
  min-height: 710px;
  margin: 0 auto;
  padding: 56px 0 92px;
  display: grid;
  place-items: center;
  text-align: center;
}
.hero3-inner { width: 100%; max-width: 1080px; min-width: 0; display: flex; flex-direction: column; align-items: center; }
.hero3-pill {
  width: fit-content;
  margin: 0 0 2rem;
  padding: .58rem 1rem;
  border: 1px solid #ffc3a5;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--ink);
  font-size: .82rem;
  font-weight: 800;
}
.hero3-pill span { color: var(--orange-deep); }
.hero3 h1 { width: 100%; max-width: 960px; font-size: clamp(3.5rem, 6.25vw, 5.55rem); line-height: .99; }
.hero3 h1 span { position: static; color: inherit; white-space: normal; }
.hero3 h1 span::after { content: none; }
.hero3 h1 .hero3-accent { color: var(--orange); font-style: italic; white-space: normal; }
.hero3-lede { max-width: 700px; margin: 1.6rem auto 0; color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.hero3 .waitlist-form { width: min(620px, 100%); margin: 1.65rem auto 0; text-align: left; }
.hero3 .form-note, .hero3 .form-message { text-align: center; }
.hero3 .hero-proof { justify-content: center; margin-top: .75rem; }

.format-strip { width: min(1180px, calc(100% - 40px)); margin: 0 auto; min-height: 92px; padding: 1.2rem 2rem; border: 2px solid var(--ink); border-radius: var(--radius-md); background: var(--ink); color: white; display: flex; align-items: center; justify-content: space-between; box-shadow: 8px 8px 0 var(--orange); }
.format-strip p { margin: 0; font-weight: 800; }
.format-strip div { display: flex; gap: 1.7rem; }
.format-strip span { display: inline-flex; align-items: center; gap: .55rem; font-size: .86rem; font-weight: 700; }
.ratio { display: inline-block; border: 2px solid var(--orange); border-radius: 3px; }.ratio.wide { width: 25px; height: 15px; }.ratio.square { width: 18px; height: 18px; }.ratio.tall { width: 13px; height: 22px; }

.section-shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.process { padding: 130px 0; }
.section-heading { max-width: 780px; margin-bottom: 3rem; }
h2 { margin: 0; font-size: clamp(2.35rem, 4.2vw, 4.3rem); line-height: 1.05; letter-spacing: -.055em; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.steps article { min-height: 360px; padding: 1.5rem; border: 2px solid var(--ink); border-radius: 24px; background: white; position: relative; box-shadow: 5px 5px 0 var(--line); }
.steps article.featured-step { background: var(--orange); color: white; box-shadow: 6px 6px 0 var(--ink); transform: translateY(-12px) rotate(-1deg); }
.step-number { position: absolute; right: 1.35rem; top: 1.15rem; font-size: .75rem; font-weight: 800; opacity: .5; }
.step-icon { width: 90px; height: 90px; margin: 2.2rem 0 2.5rem; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 24px; background: var(--orange-soft); box-shadow: 5px 5px 0 var(--ink); }
.step-icon > span { font-size: 2rem; font-weight: 800; }
.story-icon { grid-template-columns: repeat(3, 1fr); gap: 4px; padding: 14px; background: white; }
.story-icon i { height: 45px; border-radius: 8px; background: var(--orange-soft); border: 1.5px solid var(--ink); transform: rotate(-5deg); }.story-icon i:nth-child(2) { background: #ffbb28; transform: translateY(-6px); }.story-icon i:nth-child(3) { background: var(--orange); transform: rotate(5deg); }
.launch-icon { background: var(--ink); color: white; }.launch-icon span { padding-left: 4px; }
.steps h3 { margin: 0 0 .7rem; font-size: 1.35rem; line-height: 1.2; letter-spacing: -.025em; }
.steps p { margin: 0; color: var(--muted); font-size: .96rem; }.featured-step p { color: rgba(255,255,255,.82); }

.director { margin-bottom: 130px; padding: 76px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 5rem; border-radius: var(--radius-lg); background: var(--orange-soft); border: 1.5px solid #ffd5bf; }
.director-copy > p:not(.kicker) { margin: 1.35rem 0 1.5rem; color: var(--muted); font-size: 1.04rem; }
.director ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; font-weight: 700; }
.director li { display: flex; gap: .65rem; align-items: center; }.director li span { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: white; font-size: .7rem; }
.storyboard { min-height: 480px; position: relative; padding: 1rem; border: 2px solid var(--ink); border-radius: 24px; background: white; box-shadow: 10px 10px 0 var(--ink); overflow: hidden; }
.story-top { display: flex; justify-content: space-between; padding: .65rem .7rem 1rem; font-size: .7rem; font-weight: 800; letter-spacing: .1em; }
.story-frame { height: 100px; margin-bottom: .65rem; padding: .8rem; border: 1.5px solid var(--ink); border-radius: 14px; display: grid; grid-template-columns: 28px 90px 1fr; align-items: center; gap: .7rem; position: relative; overflow: hidden; }
.story-frame span, .story-frame b { font-size: .68rem; letter-spacing: .08em; }.story-frame i { display: block; height: 56px; border-radius: 8px; background: repeating-linear-gradient(90deg, var(--orange-soft) 0 14px, white 14px 20px); border: 1px solid #ffd0b8; }
.frame-two { background: var(--orange); color: white; transform: translateX(16px); }.frame-two i { background: var(--ink); border-color: var(--ink); }.frame-three i { background: #ffca36; border-color: var(--ink); }
.story-line { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; height: 45px; border-top: 2px solid var(--ink); }
.story-line span { display: block; width: 42%; height: 6px; margin-top: -4px; border-radius: 99px; background: var(--orange); }

.final-cta { min-height: 290px; margin-bottom: 50px; padding: 3rem 3.5rem; display: grid; grid-template-columns: 205px 1fr auto; align-items: center; gap: 2rem; border: 2px solid var(--ink); border-radius: var(--radius-lg); background: var(--orange); color: white; box-shadow: 8px 8px 0 var(--ink); overflow: hidden; }
.final-cta .kicker { color: white; opacity: .8; }.final-cta h2 { font-size: clamp(2.5rem, 4.5vw, 4.5rem); }.final-cta p:not(.kicker) { max-width: 570px; margin-bottom: 0; color: rgba(255,255,255,.84); }
.cta-button { background: white; color: var(--ink); box-shadow: 5px 5px 0 var(--ink); white-space: nowrap; }
.cta-mascot { width: 205px; display: flex; align-items: center; justify-content: center; }
.cta-mascot img { width: 100%; max-width: none; }
footer { width: min(1180px, calc(100% - 40px)); min-height: 110px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; color: var(--muted); font-size: .83rem; }
footer p { margin: 0; text-align: center; } footer > a:last-child { justify-self: end; min-height: 40px; display: inline-flex; align-items: center; font-weight: 700; }

@media (hover: hover) {
  .nav-cta:hover, .cta-button:hover { transform: translateY(-2px); box-shadow: 6px 6px 0 var(--orange); }
  .cta-button:hover { box-shadow: 7px 7px 0 var(--ink); }
  footer > a:last-child:hover { color: var(--orange-deep); }
}
@media (max-width: 1080px) {
  .hero2 { grid-template-columns: 1fr; padding-top: 50px; gap: 3rem; }
  .hero2-copy { max-width: 760px; }
  .launch-stage { width: min(720px, 100%); justify-self: center; transform: none; }
  .hero { grid-template-columns: 1fr; padding-top: 50px; gap: 1rem; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 550px; }
  .steps { grid-template-columns: 1fr; gap: 1.2rem; }
  .steps article { min-height: auto; }.steps article.featured-step { transform: none; }
  .step-icon { margin-bottom: 1.8rem; }
  .director { padding: 48px; grid-template-columns: 1fr; gap: 3rem; }
  .final-cta { grid-template-columns: 110px 1fr; }.final-cta .cta-button { grid-column: 2; width: fit-content; }.cta-mascot { width: 110px; }.cta-mascot img { width: 170px; transform: translate(-30px, 2px); }
}
@media (max-width: 640px) {
  .site-header { min-height: 74px; width: min(100% - 28px, 1180px); }
  .nav-cta { padding-inline: .85rem; font-size: .82rem; }
  .hero, .hero2, .section-shell, .format-strip, footer { width: min(100% - 28px, 1180px); }
  .hero3 { width: min(100% - 28px, 1180px); min-height: auto; padding: 40px 0 76px; }
  .hero3-pill { margin-bottom: 1.5rem; font-size: .7rem; line-height: 1.45; }
  .hero3 h1 { font-size: clamp(2.45rem, 11vw, 3rem); line-height: 1; }
  .hero3 h1 .hero3-accent { white-space: normal; }
  .hero3-lede { margin-top: 1.4rem; font-size: 1rem; }
  .hero3 .waitlist-form { margin-top: 1.45rem; }
  .hero3 .hero-proof { gap: .55rem .8rem; }
  .hero2 { min-height: auto; padding: 40px 0 76px; gap: 2rem; }
  .hero2 h1 { font-size: clamp(2.65rem, 12.3vw, 3.2rem); }
  .hero2 .eyebrow { width: 100%; font-size: .68rem; line-height: 1.35; }
  .hero2 .hero-lede { font-size: 1rem; }
  .hero-proof { align-items: flex-start; gap: .55rem .8rem; }
  .launch-stage { min-height: 555px; border-radius: 24px; box-shadow: 7px 7px 0 var(--ink); }
  .stage-label { left: 12px; right: 12px; top: 14px; padding: .62rem .72rem; font-size: .5rem; letter-spacing: .07em; }
  .motion-orbit { width: 330px; height: 300px; left: -2px; top: 100px; }
  .scene-stack { width: 190px; height: 165px; left: -2px; top: 88px; transform: scale(.66); transform-origin: top left; }
  .motion-signal { width: 74px; left: 116px; top: 196px; transform: rotate(24deg); }
  .launch-output { width: 250px; height: 286px; right: 13px; top: 190px; padding: 9px; border-radius: 18px; box-shadow: 6px 6px 0 var(--ink); }
  .output-top { height: 29px; gap: .4rem; font-size: .43rem; }
  .output-screen { height: 211px; padding: 15px; }
  .output-copy strong { font-size: .9rem; }
  .output-ui { width: 165px; height: 100px; }
  .output-progress span { left: 12px; bottom: 12px; width: calc(100% - 24px); }
  .stage-mascot { left: -8px; bottom: -25px; width: 190px; height: 195px; }
  .stage-mascot img { width: 252px; transform: translate(-31px, -31px); }
  .format-badge { right: 13px; bottom: 15px; padding: .58rem .66rem; font-size: .52rem; }
  .hero { min-height: auto; padding: 40px 0 68px; }
  h1 { font-size: clamp(3rem, 14.5vw, 4.25rem); }
  .hero-lede { font-size: 1rem; }
  .form-row { flex-direction: column; }
  .form-row button { width: 100%; }
  .audience { align-items: flex-start; }
  .hero-visual { min-height: 450px; transform: scale(.87); margin: -20px -28px -40px; }
  .hero-visual::before { width: 380px; height: 380px; }
  .mascot-frame { width: 300px; height: 350px; }.mascot-frame img { width: 830px; }
  .screen-card-a { left: -5px; }.screen-card-b { right: -5px; }
  .format-strip { min-height: 150px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 1rem; padding: 1.4rem; }
  .format-strip div { width: 100%; justify-content: space-between; gap: .5rem; }
  .process { padding: 100px 0; }
  .section-heading { margin-bottom: 2rem; }
  .steps article { padding: 1.25rem; }
  .director { margin-bottom: 100px; padding: 34px 22px; border-radius: 24px; }
  .storyboard { min-height: 450px; box-shadow: 6px 6px 0 var(--ink); }
  .story-frame { grid-template-columns: 24px 76px 1fr; padding: .6rem; gap: .45rem; }
  .frame-two { transform: translateX(6px); }
  .final-cta { min-height: 430px; padding: 2rem 1.5rem; grid-template-columns: 1fr; text-align: center; }
  .final-cta .cta-mascot { display: none; }.final-cta .cta-button { grid-column: 1; justify-self: center; }.final-cta p { margin-inline: auto; }
  footer { padding: 2rem 0 3rem; display: flex; flex-direction: column; align-items: center; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
