/*
 * Landing V3 — comic editorial system.
 * Every selector is scoped under .lpv3 so the application UI keeps its own styles.
 */
.lpv3 {
  --lpv3-ink: #07162d;
  --lpv3-ink-2: #0d2346;
  --lpv3-blue: #0877e8;
  --lpv3-blue-light: #5dbbff;
  --lpv3-orange: #ff6817;
  --lpv3-orange-dark: #d94400;
  --lpv3-yellow: #ffd43b;
  --lpv3-paper: #fffaf0;
  --lpv3-paper-2: #f1eadc;
  --lpv3-white: #ffffff;
  --lpv3-ink-line: 3px solid var(--lpv3-ink);
  position: relative;
  width: 100%;
  overflow: clip;
  color: var(--lpv3-ink);
  background: var(--lpv3-paper);
}

.lpv3,
.lpv3 * {
  box-sizing: border-box;
}

.lpv3 h1,
.lpv3 h2,
.lpv3 h3,
.lpv3 p,
.lpv3 figure,
.lpv3 ul,
.lpv3 ol,
.lpv3 dl,
.lpv3 dd {
  margin-top: 0;
}

.lpv3 h1,
.lpv3 h2,
.lpv3 h3 {
  color: inherit;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.lpv3 p,
.lpv3 li,
.lpv3 figcaption,
.lpv3 dd {
  text-wrap: pretty;
}

.lpv3 img {
  display: block;
  max-width: 100%;
}

.lpv3-wrap {
  width: min(100% - 3rem, 79rem);
  margin-inline: auto;
}

.lpv3-section {
  position: relative;
  padding: clamp(4.7rem, 7vw, 7.25rem) 0;
}

#landing-story-v3,
#landing-audience-v3,
#landing-workshop-v3,
#landing-proof-v3,
#landing-price-v3 {
  scroll-margin-top: 6rem;
}

.lpv3-kicker,
.lpv3-overline {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.15rem;
  color: var(--lpv3-blue);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lpv3-kicker span,
.lpv3-overline span {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: .28rem .7rem;
  color: var(--lpv3-ink);
  border: 2px solid currentColor;
  background: var(--lpv3-yellow);
  box-shadow: 3px 3px 0 currentColor;
  transform: rotate(-1deg);
}

.lpv3-overline--light {
  color: #a9d7ff;
}

.lpv3-heading {
  max-width: 52rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.lpv3-heading h2 {
  max-width: 18ch;
  margin-bottom: 1.15rem;
  font-size: clamp(2.35rem, 5vw, 4.65rem);
  font-weight: 950;
  line-height: .96;
  letter-spacing: -.055em;
}

.lpv3-heading > p,
.lpv3-heading > div + p {
  color: #4b586b;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.72;
}

.lpv3-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, .65fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
}

.lpv3-heading--split h2 {
  margin-bottom: 0;
}

.lpv3-heading--split > p {
  margin-bottom: .2rem;
  padding-left: 1.3rem;
  border-left: 4px solid var(--lpv3-orange);
}

.lpv3-heading--center {
  margin-inline: auto;
  text-align: center;
}

.lpv3-heading--center .lpv3-overline {
  justify-content: center;
}

.lpv3-heading--center h2 {
  max-width: 20ch;
  margin-inline: auto;
}

.lpv3-heading--center > p {
  max-width: 47rem;
  margin-inline: auto;
}

.lpv3-button {
  display: inline-flex;
  min-height: 3.65rem;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  padding: .9rem 1.35rem;
  border: var(--lpv3-ink-line);
  border-radius: .25rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.1;
  text-decoration: none;
  box-shadow: 6px 6px 0 var(--lpv3-ink);
  cursor: pointer;
  transform: rotate(-.4deg);
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.lpv3-button:hover {
  transform: translate(2px, 2px) rotate(0deg);
  box-shadow: 3px 3px 0 var(--lpv3-ink);
}

.lpv3-button:focus-visible,
.lpv3-text-link:focus-visible,
.lpv3-jump a:focus-visible {
  outline: 4px solid var(--lpv3-yellow);
  outline-offset: 4px;
}

.lpv3-button--orange {
  color: var(--lpv3-ink);
  background: var(--lpv3-orange);
}

.lpv3-button--orange:hover {
  background: #ff7b32;
}

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

.lpv3-button--ink {
  color: var(--lpv3-white);
  background: var(--lpv3-ink);
  box-shadow: 6px 6px 0 var(--lpv3-white);
}

.lpv3-button--ink:hover {
  background: var(--lpv3-ink-2);
  box-shadow: 3px 3px 0 var(--lpv3-white);
}

.lpv3-text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: .55rem;
  color: var(--lpv3-white);
  font-size: .95rem;
  font-weight: 850;
  line-height: 1.3;
  text-decoration-thickness: 2px;
  text-underline-offset: .28rem;
}

.lpv3-text-link:hover {
  color: var(--lpv3-yellow);
}

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

/* Hero: comic cover rather than a conventional SaaS split. */
.lpv3-hero {
  position: relative;
  isolation: isolate;
  color: var(--lpv3-white);
  background:
    linear-gradient(112deg, var(--lpv3-ink) 0 55%, #0a2a53 55% 100%);
}

.lpv3-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0 45% 0 0;
  content: "";
  opacity: .24;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 32px 32px;
  transform: skewX(-7deg);
  transform-origin: top right;
}

.lpv3-hero::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  content: "";
  opacity: .7;
  background: repeating-linear-gradient(-55deg, transparent 0 22px, rgba(255,255,255,.055) 22px 25px);
  clip-path: polygon(19% 0, 100% 0, 100% 100%, 0 100%);
}

.lpv3-halftone {
  position: absolute;
  z-index: -1;
  top: 4rem;
  left: -7rem;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  opacity: .23;
  background-image: radial-gradient(var(--lpv3-blue-light) 1.8px, transparent 2px);
  background-size: 12px 12px;
  mask-image: radial-gradient(circle, #000 0, transparent 69%);
}

.lpv3-hero__grid {
  display: grid;
  min-height: calc(100vh - 64px - 3.25rem);
  min-height: calc(100svh - 64px - 3.25rem);
  grid-template-columns: minmax(0, .83fr) minmax(31rem, 1.17fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-top: clamp(4.5rem, 8vw, 7rem);
  padding-bottom: clamp(5.5rem, 8vw, 7rem);
}

.lpv3-hero__copy {
  position: relative;
  z-index: 3;
}

.lpv3-hero__copy::after {
  position: absolute;
  right: -4.5rem;
  bottom: -1rem;
  width: 6rem;
  height: 2.6rem;
  content: "";
  background: repeating-linear-gradient(90deg, transparent 0 7px, var(--lpv3-orange) 8px 11px);
  transform: rotate(-17deg);
}

.lpv3-kicker {
  color: #a9d7ff;
}

.lpv3-hero h1 {
  max-width: 13.5ch;
  margin-bottom: 1.45rem;
  font-size: clamp(3.4rem, 4.2vw, 4.5rem);
  font-weight: 950;
  line-height: .86;
  letter-spacing: -.075em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-transform: uppercase;
  text-shadow: 5px 5px 0 rgba(0,0,0,.28);
}

.lpv3 .lpv3-hero .lpv3-hero__copy h1 {
  color: var(--lpv3-white) !important;
}

.lpv3-hero h1 em {
  position: relative;
  display: inline;
  color: var(--lpv3-orange);
  font-style: normal;
}

.lpv3-hero h1 em::after {
  position: absolute;
  z-index: -1;
  right: -.05em;
  bottom: -.03em;
  left: -.03em;
  height: .13em;
  content: "";
  background: var(--lpv3-yellow);
  transform: rotate(-1.5deg);
}

.lpv3-hero__lead {
  max-width: 37rem;
  margin-bottom: 1.8rem;
  color: #d9e4f6;
  font-size: clamp(1.04rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}

.lpv3 .lpv3-hero .lpv3-hero__lead {
  color: #d9e4f6 !important;
}

.lpv3-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 1.5rem;
  align-items: center;
  margin-bottom: 1.7rem;
}

.lpv3-hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #bfcce0;
  font-size: .81rem;
  font-weight: 750;
}

.lpv3-hero__checks li {
  display: inline-flex;
  gap: .38rem;
  align-items: center;
}

.lpv3-hero__checks li span {
  color: var(--lpv3-yellow);
  font-weight: 950;
}

.lpv3 .lpv3-hero .lpv3-hero__checks li {
  color: #c7d4e7 !important;
}

.lpv3-hero__scope {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .2rem .42rem;
  max-width: 34rem;
  margin: 1.15rem 0 0;
  padding: .58rem .78rem;
  color: #dce8f8;
  border: 1px solid rgba(169, 215, 255, .34);
  background: rgba(11, 38, 73, .78);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, .22);
  font-size: .82rem;
  font-weight: 720;
  line-height: 1.35;
}

.lpv3 .lpv3-hero .lpv3-hero__scope {
  color: #e4eefb !important;
}

.lpv3-hero__scope::before {
  color: var(--lpv3-yellow);
  content: "✦";
  font-weight: 950;
}

.lpv3-hero__scope strong {
  color: var(--lpv3-white);
  font-weight: 900;
}

.lpv3-cover {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 43rem;
  margin: 0 auto;
  padding: .55rem;
  color: var(--lpv3-ink);
  border: 4px solid var(--lpv3-ink);
  background: var(--lpv3-paper);
  box-shadow: 13px 13px 0 rgba(0,0,0,.38), 17px 17px 0 var(--lpv3-orange);
  transform: rotate(.65deg);
}

.lpv3-cover__chapter {
  position: absolute;
  z-index: 6;
  top: -1.4rem;
  left: -1.2rem;
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem .75rem .45rem .5rem;
  color: var(--lpv3-white);
  border: 3px solid var(--lpv3-ink);
  background: var(--lpv3-blue);
  box-shadow: 4px 4px 0 var(--lpv3-ink);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.lpv3-cover__chapter span {
  color: var(--lpv3-ink);
  padding: .22rem .35rem;
  background: var(--lpv3-yellow);
  font-size: .85rem;
}

.lpv3-cover__art {
  position: relative;
  height: auto;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 3px solid var(--lpv3-ink);
  background: var(--lpv3-orange);
  clip-path: polygon(0 0, 100% 0, 97% 94%, 2% 100%);
}

.lpv3-cover__art::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 76%, rgba(7,22,45,.38) 100%);
}

.lpv3-cover__character {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
}

.lpv3-balloon {
  position: absolute;
  z-index: 3;
  top: 2.2rem;
  right: 1.25rem;
  width: min(15rem, 44%);
  padding: 1rem 1.15rem;
  border: 3px solid var(--lpv3-ink);
  border-radius: 52% 48% 51% 49% / 46% 47% 53% 54%;
  background: var(--lpv3-white);
  box-shadow: 5px 5px 0 var(--lpv3-ink);
  font-size: .86rem;
  font-weight: 750;
  line-height: 1.35;
  text-align: center;
  transform: rotate(2deg);
}

.lpv3-balloon-question {
  position: absolute;
  z-index: 4;
  top: 3rem;
  left: 34.5%;
  display: grid;
  width: 17%;
  min-height: 3.2rem;
  place-items: center;
  color: var(--lpv3-ink);
  font-size: .68rem;
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
  transform: rotate(-3deg);
}

.lpv3-balloon::after {
  position: absolute;
  right: 65%;
  bottom: -1.15rem;
  width: 1.5rem;
  height: 1.6rem;
  content: "";
  border-right: 3px solid var(--lpv3-ink);
  border-bottom: 3px solid var(--lpv3-ink);
  background: var(--lpv3-white);
  clip-path: polygon(0 0, 100% 0, 12% 100%);
  transform: rotate(17deg);
}

.lpv3-balloon strong {
  display: block;
  margin-top: .2rem;
  font-size: 1.03rem;
  line-height: 1.15;
}

.lpv3-sfx {
  position: absolute;
  z-index: 4;
  color: var(--lpv3-yellow);
  font-family: "Arial Black", var(--font-sans);
  font-weight: 950;
  letter-spacing: -.06em;
  -webkit-text-stroke: 5px var(--lpv3-ink);
  paint-order: stroke fill;
  text-shadow: 4px 4px 0 var(--lpv3-white);
  transform: rotate(-9deg);
}

.lpv3-sfx--one {
  bottom: 10.5rem;
  left: 1rem;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
}

.lpv3-sfx--two {
  right: 1rem;
  bottom: 8.3rem;
  color: var(--lpv3-orange);
  font-size: clamp(1.25rem, 3vw, 2.1rem);
  transform: rotate(7deg);
}

.lpv3-stripe {
  display: flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: .7rem 1.5rem;
  overflow: hidden;
  color: var(--lpv3-ink);
  border-top: 4px solid var(--lpv3-ink);
  border-bottom: 4px solid var(--lpv3-ink);
  background: var(--lpv3-orange);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.lpv3-stripe i {
  width: .7rem;
  height: .7rem;
  flex: 0 0 auto;
  background: var(--lpv3-ink);
  transform: rotate(45deg);
}

/* Section index */
.lpv3-jump {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr repeat(5, 1fr);
  margin-top: 2.2rem;
  margin-bottom: -2.2rem;
  border: var(--lpv3-ink-line);
  background: var(--lpv3-white);
  box-shadow: 8px 8px 0 rgba(7,22,45,.12);
}

.lpv3-jump__label,
.lpv3-jump a {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  padding: .8rem 1rem;
}

.lpv3-jump__label {
  color: var(--lpv3-white);
  background: var(--lpv3-ink);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.lpv3-jump a {
  gap: .45rem;
  color: var(--lpv3-ink);
  border-left: 2px solid var(--lpv3-ink);
  font-size: .75rem;
  font-weight: 820;
  line-height: 1.2;
  text-decoration: none;
  transition: color 140ms ease, background-color 140ms ease;
}

.lpv3-jump a b {
  color: var(--lpv3-orange-dark);
  font-size: .68rem;
}

.lpv3-jump a:hover {
  color: var(--lpv3-white);
  background: var(--lpv3-blue);
}

.lpv3-jump a:hover b {
  color: var(--lpv3-yellow);
}

/* Four-panel storyboard */
.lpv3-story {
  padding-top: clamp(7rem, 9vw, 8.7rem);
  background:
    linear-gradient(rgba(7,22,45,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,22,45,.045) 1px, transparent 1px),
    var(--lpv3-paper);
  background-size: 28px 28px;
}

.lpv3-storyboard {
  display: grid;
  grid-template-columns: .93fr 1.07fr .94fr 1.06fr;
  gap: .72rem;
  margin: 0 0 4.5rem;
  padding: 0;
  list-style: none;
}

.lpv3-storyboard__panel {
  position: relative;
  min-height: 24rem;
  padding: 2rem 1.45rem 1.55rem;
  overflow: hidden;
  border: var(--lpv3-ink-line);
  background: var(--lpv3-white);
  box-shadow: 5px 5px 0 var(--lpv3-ink);
}

.lpv3-storyboard__panel:nth-child(odd) {
  transform: translateY(1.2rem) rotate(-.45deg);
}

.lpv3-storyboard__panel:nth-child(even) {
  transform: rotate(.5deg);
}

.lpv3-storyboard__panel::after {
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 9rem;
  height: 9rem;
  content: "";
  border-radius: 50%;
  opacity: .2;
  background-image: radial-gradient(currentColor 1.6px, transparent 1.8px);
  background-size: 9px 9px;
}

.lpv3-storyboard__panel--blue {
  color: var(--lpv3-white);
  background: var(--lpv3-blue);
}

.lpv3-storyboard__panel--paper {
  color: var(--lpv3-ink);
  background: var(--lpv3-paper-2);
}

.lpv3-storyboard__panel--orange {
  color: var(--lpv3-ink);
  background: var(--lpv3-orange);
}

.lpv3-storyboard__panel--ink {
  color: var(--lpv3-white);
  background: var(--lpv3-ink);
}

.lpv3 .lpv3-storyboard__panel--blue h3,
.lpv3 .lpv3-storyboard__panel--blue p,
.lpv3 .lpv3-storyboard__panel--ink h3,
.lpv3 .lpv3-storyboard__panel--ink p {
  color: var(--lpv3-white) !important;
}

.lpv3-storyboard__number {
  position: absolute;
  top: .75rem;
  right: .85rem;
  opacity: .78;
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .1em;
}

.lpv3-storyboard__symbol {
  display: grid;
  width: 7.2rem;
  height: 7.2rem;
  place-items: center;
  margin: 1.4rem auto 2.3rem;
  color: var(--lpv3-ink);
  border: 3px solid var(--lpv3-ink);
  border-radius: 50%;
  background: var(--lpv3-yellow);
  box-shadow: 6px 6px 0 rgba(7,22,45,.65);
  font-size: 3.7rem;
  font-weight: 950;
  transform: rotate(-7deg);
}

.lpv3-storyboard__panel--ink .lpv3-storyboard__symbol {
  border-color: var(--lpv3-white);
  box-shadow: 6px 6px 0 var(--lpv3-blue);
}

.lpv3-storyboard__verb {
  margin-bottom: .6rem;
  font-size: .71rem;
  font-weight: 950;
  letter-spacing: .15em;
}

.lpv3-storyboard__panel h3 {
  margin-bottom: .85rem;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: -.035em;
}

.lpv3-storyboard__panel > p:last-of-type {
  margin-bottom: 0;
  opacity: .86;
  font-size: .88rem;
  line-height: 1.58;
}

.lpv3-story__caption {
  display: flex;
  width: fit-content;
  max-width: 100%;
  justify-content: flex-start;
  gap: .7rem;
  margin: 0;
  padding: .72rem 1rem;
  color: #576276;
  border-left: 3px solid var(--lpv3-orange);
  background: rgba(255,255,255,.68);
  font-size: .88rem;
  font-weight: 750;
}

.lpv3-story__caption span {
  color: var(--lpv3-orange-dark);
  font-weight: 950;
}

/* Three roles, each with a different visual mission. */
.lpv3-audience {
  border-top: 4px solid var(--lpv3-ink);
  background: var(--lpv3-paper-2);
}

.lpv3-audience::after {
  position: absolute;
  z-index: 0;
  top: 7rem;
  right: -4rem;
  width: 23rem;
  height: 23rem;
  content: "";
  opacity: .11;
  background-image: radial-gradient(var(--lpv3-ink) 2px, transparent 2.2px);
  background-size: 12px 12px;
  clip-path: circle(50%);
}

.lpv3-audience .lpv3-wrap {
  position: relative;
  z-index: 1;
}

.lpv3-missions {
  display: grid;
  gap: 1.6rem;
}

.lpv3-mission {
  display: grid;
  min-height: 20rem;
  grid-template-columns: 5.2rem minmax(0, 1fr) minmax(18rem, .62fr);
  border: var(--lpv3-ink-line);
  background: var(--lpv3-white);
  box-shadow: 8px 8px 0 var(--lpv3-ink);
}

.lpv3-mission:nth-child(2) {
  margin-left: clamp(0rem, 4vw, 3.5rem);
  margin-right: clamp(0rem, 2vw, 1.5rem);
}

.lpv3-mission:nth-child(3) {
  margin-right: clamp(0rem, 5vw, 4.5rem);
}

.lpv3-mission__rail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem .6rem;
  color: var(--lpv3-white);
  border-right: 3px solid var(--lpv3-ink);
  background: var(--lpv3-blue);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.lpv3-mission--tutor .lpv3-mission__rail {
  color: var(--lpv3-ink);
  background: var(--lpv3-orange);
}

.lpv3-mission--teacher .lpv3-mission__rail {
  color: var(--lpv3-ink);
  background: var(--lpv3-yellow);
}

.lpv3-mission__rail span {
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .15em;
}

.lpv3-mission__rail b {
  font-size: 1.45rem;
}

.lpv3-mission__body {
  align-self: center;
  padding: clamp(1.7rem, 4vw, 3.3rem);
}

.lpv3-mission__situation {
  margin-bottom: .7rem;
  color: var(--lpv3-orange-dark);
  font-size: .71rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lpv3-mission__body h3 {
  max-width: 24ch;
  margin-bottom: 1rem;
  font-size: clamp(1.65rem, 3.3vw, 2.65rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.045em;
}

.lpv3-mission__body > p:not(.lpv3-mission__situation) {
  max-width: 46rem;
  margin-bottom: 1.15rem;
  color: #4e5a6c;
  font-size: .98rem;
  line-height: 1.68;
}

.lpv3-mission__body ul {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lpv3-mission__body li {
  padding: .35rem .58rem;
  color: var(--lpv3-ink);
  border: 2px solid var(--lpv3-ink);
  background: var(--lpv3-paper);
  font-size: .7rem;
  font-weight: 850;
}

.lpv3-mission__visual {
  align-self: center;
  width: calc(100% - 1.7rem);
  margin: 1.6rem 1.7rem 1.6rem 0;
  overflow: hidden;
  border: 3px solid var(--lpv3-ink);
  background: var(--lpv3-ink);
  box-shadow: 6px 6px 0 var(--lpv3-blue);
  transform: rotate(1deg);
}

.lpv3-mission__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.lpv3-mission__visual figcaption {
  min-height: 3.25rem;
  padding: .68rem .78rem;
  color: var(--lpv3-white);
  font-size: .69rem;
  font-weight: 820;
  line-height: 1.35;
  letter-spacing: .015em;
}

.lpv3-mission--tutor .lpv3-mission__visual {
  box-shadow: 6px 6px 0 var(--lpv3-orange);
  transform: rotate(-1deg);
}

.lpv3-mission--teacher .lpv3-mission__visual {
  box-shadow: 6px 6px 0 var(--lpv3-yellow);
  transform: rotate(.5deg);
}

/* Toolbox */
.lpv3-workshop {
  color: var(--lpv3-white);
  border-top: 4px solid var(--lpv3-ink);
  border-bottom: 4px solid var(--lpv3-ink);
  background:
    repeating-linear-gradient(-55deg, transparent 0 28px, rgba(255,255,255,.035) 28px 31px),
    var(--lpv3-ink);
}

.lpv3-workshop__grid {
  display: grid;
  grid-template-columns: minmax(18rem, .72fr) minmax(28rem, 1.28fr);
  gap: clamp(3rem, 8vw, 7.5rem);
  align-items: center;
}

.lpv3-workshop .lpv3-heading {
  margin-bottom: 0;
}

.lpv3-workshop .lpv3-heading h2 {
  color: var(--lpv3-white) !important;
}

.lpv3-workshop .lpv3-heading > p {
  color: #bdcbe1 !important;
  margin-bottom: 1.7rem;
}

.lpv3-workshop-process {
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--lpv3-white);
  background: var(--lpv3-ink);
  box-shadow: 10px 10px 0 var(--lpv3-orange);
  transform: rotate(.4deg);
}

.lpv3-workshop-process img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border-bottom: 2px solid var(--lpv3-ink);
}

.lpv3-workshop-process figcaption {
  padding: .9rem 1rem;
  color: var(--lpv3-white);
  font-size: .72rem;
  font-weight: 850;
  line-height: 1.45;
  text-align: center;
}

.lpv3-workshop-process figcaption span {
  color: var(--lpv3-yellow);
  padding-inline: .25rem;
}

/* Product proof */
.lpv3-proof {
  background:
    radial-gradient(circle at 12% 15%, rgba(8,119,232,.09), transparent 25rem),
    var(--lpv3-paper);
}

.lpv3-contact-sheet {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  grid-template-areas: "wide link" "wide result";
  gap: 1.2rem;
  align-items: start;
}

.lpv3-shot {
  position: relative;
  margin: 0;
  padding: .55rem;
  border: var(--lpv3-ink-line);
  background: var(--lpv3-white);
  box-shadow: 8px 8px 0 var(--lpv3-ink);
}

.lpv3-shot--wide {
  grid-area: wide;
  transform: rotate(-.55deg);
}

.lpv3-shot--link {
  grid-area: link;
  transform: rotate(.8deg);
}

.lpv3-shot--result {
  grid-area: result;
  transform: rotate(-.5deg);
}

.lpv3-shot__label {
  display: grid;
  min-height: 3.2rem;
  grid-template-columns: 2rem 1fr auto;
  gap: .65rem;
  align-items: center;
  padding: .55rem .7rem;
  color: var(--lpv3-white);
  background: var(--lpv3-ink);
}

.lpv3-shot__label b {
  color: var(--lpv3-yellow);
  font-size: .75rem;
}

.lpv3-shot__label span {
  font-size: .76rem;
  font-weight: 900;
}

.lpv3-shot__label small {
  color: #b9c7db;
  font-size: .61rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lpv3-shot picture {
  display: block;
  overflow: hidden;
  border-right: 2px solid var(--lpv3-ink);
  border-bottom: 2px solid var(--lpv3-ink);
  border-left: 2px solid var(--lpv3-ink);
}

.lpv3-shot img {
  width: 100%;
  height: auto;
}

.lpv3-shot figcaption {
  margin: .7rem .35rem .2rem;
  color: #4f5b6e;
  font-size: .76rem;
  line-height: 1.5;
}

/* Transparent price */
.lpv3-price {
  border-top: 4px solid var(--lpv3-ink);
  background: var(--lpv3-orange);
}

.lpv3-price::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .15;
  background-image: radial-gradient(var(--lpv3-ink) 2px, transparent 2.2px);
  background-size: 13px 13px;
  mask-image: linear-gradient(90deg, #000, transparent 55%);
}

.lpv3-price__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(20rem, .8fr) minmax(22rem, .9fr);
  grid-template-areas: "copy ticket" "copy limits";
  gap: 1.35rem clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.lpv3-price__copy {
  grid-area: copy;
  align-self: center;
}

.lpv3-price__copy .lpv3-overline {
  color: var(--lpv3-ink);
}

.lpv3-price__copy .lpv3-overline span {
  background: var(--lpv3-white);
}

.lpv3-price__copy h2 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.65rem, 5.5vw, 5rem);
  font-weight: 950;
  line-height: .92;
  letter-spacing: -.065em;
}

.lpv3-price__copy > p:not(.lpv3-overline) {
  max-width: 35rem;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.65;
}

.lpv3-price-ticket {
  grid-area: ticket;
  border: 4px solid var(--lpv3-ink);
  background: var(--lpv3-white);
  box-shadow: 10px 10px 0 var(--lpv3-ink);
  transform: rotate(.65deg);
}

.lpv3-price-ticket__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 1rem;
  color: var(--lpv3-white);
  background: var(--lpv3-ink);
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .1em;
}

.lpv3-price-ticket__start,
.lpv3-price-ticket__plus {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .45rem 1rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  border-bottom: 2px solid var(--lpv3-ink);
}

.lpv3-price-ticket__start span,
.lpv3-price-ticket__plus span {
  font-size: .81rem;
  font-weight: 850;
}

.lpv3-price-ticket__start strong,
.lpv3-price-ticket__plus strong {
  color: var(--lpv3-blue);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 950;
  letter-spacing: -.04em;
}

.lpv3-price-ticket__plus small {
  grid-column: 1 / -1;
  color: #5b6676;
  font-size: .7rem;
}

.lpv3-price-ticket__examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.lpv3-price-ticket__examples span {
  display: flex;
  min-height: 4.2rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .22rem;
  border-right: 2px solid var(--lpv3-ink);
  font-size: .82rem;
  font-weight: 900;
}

.lpv3-price-ticket__examples span:last-child {
  border-right: 0;
}

.lpv3-price-ticket__examples b {
  color: #5c6878;
  font-size: .64rem;
  text-transform: uppercase;
}

.lpv3-limits {
  grid-area: limits;
  padding: 1rem 1.15rem;
  border: 3px solid var(--lpv3-ink);
  background: #ffdd78;
  box-shadow: 6px 6px 0 var(--lpv3-ink);
  transform: rotate(-.45deg);
}

.lpv3-limits > p {
  margin-bottom: .7rem;
  font-size: .78rem;
}

.lpv3-limits ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .55rem 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lpv3-limits li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .6rem;
  padding-bottom: .35rem;
  border-bottom: 1px dashed rgba(7,22,45,.5);
  font-size: .69rem;
}

.lpv3-limits b {
  text-align: right;
}

/* Control and final splash */
.lpv3-control {
  color: var(--lpv3-white);
  border-top: 4px solid var(--lpv3-ink);
  background: var(--lpv3-blue);
}

.lpv3-control__grid {
  display: grid;
  grid-template-columns: 9rem minmax(18rem, .8fr) minmax(24rem, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.lpv3-control__mark {
  display: grid;
  width: 8rem;
  height: 8rem;
  place-items: center;
  color: var(--lpv3-ink);
  background: var(--lpv3-yellow);
  clip-path: polygon(50% 0, 61% 30%, 86% 14%, 70% 39%, 100% 50%, 70% 61%, 86% 86%, 60% 70%, 50% 100%, 39% 70%, 14% 86%, 30% 60%, 0 50%, 30% 40%, 14% 14%, 40% 30%);
  font-size: 4rem;
  font-weight: 950;
  transform: rotate(-7deg);
}

.lpv3-control h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 4.4vw, 4.2rem);
  font-weight: 950;
  line-height: .95;
  letter-spacing: -.055em;
}

.lpv3 .lpv3-control h2 {
  color: var(--lpv3-white) !important;
}

.lpv3-control ul {
  display: grid;
  gap: .7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lpv3-control li {
  padding: 1rem 1.1rem;
  color: var(--lpv3-ink);
  border: 3px solid var(--lpv3-ink);
  background: var(--lpv3-white);
  box-shadow: 4px 4px 0 var(--lpv3-ink);
  transform: rotate(.25deg);
}

.lpv3-control li:nth-child(2) {
  transform: rotate(-.35deg);
}

.lpv3-control li b,
.lpv3-control li span {
  display: block;
}

.lpv3-control li b {
  margin-bottom: .25rem;
  font-size: .89rem;
}

.lpv3-control li span {
  color: #556173;
  font-size: .74rem;
  line-height: 1.45;
}

.lpv3-final {
  position: relative;
  isolation: isolate;
  padding: clamp(4.7rem, 7vw, 7.25rem) 0;
  overflow: hidden;
  border-top: 4px solid var(--lpv3-ink);
  background: var(--lpv3-yellow);
}

.lpv3-final__rays {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -8rem;
  width: 40rem;
  height: 40rem;
  opacity: .22;
  background: repeating-conic-gradient(from 0deg, var(--lpv3-orange) 0deg 7deg, transparent 7deg 16deg);
  clip-path: circle(50%);
  transform: translateY(-50%);
}

.lpv3-final__inner {
  display: grid;
  grid-template-columns: minmax(22rem, .88fr) minmax(28rem, 1.12fr);
  grid-template-areas:
    "visual copy"
    "visual action";
  column-gap: clamp(2rem, 5vw, 4.5rem);
  row-gap: 1.25rem;
  align-items: center;
}

.lpv3-final__visual {
  grid-area: visual;
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--lpv3-ink);
  background: var(--lpv3-orange);
  box-shadow: 8px 8px 0 var(--lpv3-ink);
  transform: rotate(-1.1deg);
}

.lpv3-final__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.lpv3-final__inner > div:not(.lpv3-final__action) {
  grid-area: copy;
  align-self: end;
}

.lpv3-final h2 {
  max-width: 18ch;
  margin-bottom: .85rem;
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  font-weight: 950;
  line-height: .94;
  letter-spacing: -.06em;
}

.lpv3-final__inner > div > p:not(.lpv3-overline) {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 650;
}

.lpv3-final__action {
  grid-area: action;
  display: grid;
  max-width: 22rem;
  gap: 1rem;
  align-self: start;
  justify-items: center;
}

.lpv3-final__action small {
  font-size: .69rem;
  font-weight: 780;
  line-height: 1.45;
  text-align: center;
}

/* Static prerender only exists before JS replaces the shell. */
.lpv3-prerender {
  min-height: calc(100svh - 3.5rem);
}

.lpv3-prerender .lpv3-hero__grid {
  min-height: 42rem;
}

/* Tablet */
@media (max-width: 1080px) {
  .lpv3-hero__grid {
    grid-template-columns: minmax(0, .8fr) minmax(26rem, 1.2fr);
    gap: 2rem;
  }

  .lpv3-hero h1 {
    font-size: clamp(3.25rem, 6.5vw, 5.2rem);
  }

  .lpv3-cover__art {
    height: auto;
  }

  .lpv3-jump {
    grid-template-columns: repeat(5, 1fr);
  }

  .lpv3-jump__label {
    display: none;
  }

  .lpv3-jump a:first-of-type {
    border-left: 0;
  }

  .lpv3-storyboard {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .lpv3-storyboard__panel,
  .lpv3-storyboard__panel:nth-child(odd),
  .lpv3-storyboard__panel:nth-child(even) {
    min-height: 20rem;
    transform: none;
  }

  .lpv3-mission {
    grid-template-columns: 4.5rem minmax(0, 1fr);
  }

  .lpv3-mission__visual {
    grid-column: 2;
    width: min(30rem, calc(100% - 4rem));
    margin: -1rem 2rem 2.2rem auto;
  }

  .lpv3-workshop__grid {
    grid-template-columns: minmax(17rem, .75fr) minmax(24rem, 1.25fr);
    gap: 3rem;
  }

  .lpv3-control__grid {
    grid-template-columns: 7rem 1fr;
  }

  .lpv3-control__mark {
    width: 6.5rem;
    height: 6.5rem;
  }

  .lpv3-control ul {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }

  .lpv3-final__inner {
    grid-template-columns: minmax(18rem, .85fr) minmax(22rem, 1.15fr);
  }

  .lpv3-final__action {
    grid-column: 2;
    justify-items: start;
  }
}

/* Mobile and narrow tablet */
@media (max-width: 820px) {
  .lpv3-wrap {
    width: min(100% - 2rem, 46rem);
  }

  .lpv3-section {
    padding: 4.2rem 0;
  }

  .lpv3-heading--split {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .lpv3-heading--split > p {
    margin: 0;
  }

  .lpv3-hero {
    background: var(--lpv3-ink);
  }

  .lpv3-hero::after {
    width: 100%;
    opacity: .4;
    clip-path: none;
  }

  .lpv3-hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 2.4rem;
    padding-top: 3.25rem;
    padding-bottom: 3.5rem;
  }

  .lpv3-hero__copy {
    max-width: 39rem;
  }

  .lpv3-hero__copy::after {
    display: none;
  }

  .lpv3-hero h1 {
    max-width: 11ch;
    font-size: clamp(2.65rem, 7vw, 3.4rem);
  }

  .lpv3-cover {
    max-width: 37rem;
  }

  .lpv3-cover__art {
    height: auto;
  }

  .lpv3-jump {
    display: flex;
    width: calc(100% - 2rem);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .lpv3-jump a {
    min-width: 9rem;
    flex: 0 0 auto;
  }

  .lpv3-story {
    padding-top: 7rem;
  }

  .lpv3-mission,
  .lpv3-mission:nth-child(2),
  .lpv3-mission:nth-child(3) {
    margin-right: 0;
    margin-left: 0;
  }

  .lpv3-workshop__grid,
  .lpv3-price__grid {
    grid-template-columns: 1fr;
  }

  .lpv3-workshop__grid {
    gap: 3rem;
  }

  .lpv3-price__grid {
    grid-template-areas: "copy" "ticket" "limits";
  }

  .lpv3-price__copy h2 {
    max-width: 14ch;
  }

  .lpv3-contact-sheet {
    grid-template-columns: 1fr;
    grid-template-areas: "wide" "link" "result";
  }

  .lpv3-shot--wide,
  .lpv3-shot--link,
  .lpv3-shot--result {
    transform: none;
  }

  .lpv3-final__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "visual" "copy" "action";
  }

  .lpv3-final__action {
    grid-column: 1;
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .lpv3-wrap {
    width: min(100% - 1.25rem, 35rem);
  }

  .lpv3-section {
    padding: 3.25rem 0;
  }

  .lpv3-heading {
    margin-bottom: 2.4rem;
  }

  .lpv3-heading h2 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .lpv3-heading--center {
    text-align: left;
  }

  .lpv3-heading--center .lpv3-overline {
    justify-content: flex-start;
  }

  .lpv3-hero__grid {
    gap: 1.9rem;
    padding-top: 2.5rem;
    padding-bottom: 2.8rem;
  }

  .lpv3-kicker span,
  .lpv3-overline span {
    min-height: 1.6rem;
    padding: .22rem .48rem;
  }

  .lpv3-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8.9vw, 2.65rem);
    overflow-wrap: normal;
  }

  .lpv3-hero__lead {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.52;
  }

  .lpv3-hero__actions {
    align-items: stretch;
    gap: .7rem;
    margin-bottom: 1.15rem;
  }

  .lpv3-hero__actions .lpv3-button {
    width: 100%;
  }

  .lpv3-hero__actions .lpv3-text-link {
    justify-content: center;
    padding: .45rem;
  }

  .lpv3-hero__checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .lpv3-hero__scope {
    display: flex;
    width: 100%;
    margin-top: .85rem;
  }

  .lpv3-cover {
    width: calc(100% - .35rem);
    padding: .35rem;
    box-shadow: 8px 8px 0 rgba(0,0,0,.38), 11px 11px 0 var(--lpv3-orange);
  }

  .lpv3-cover__chapter {
    top: -1.25rem;
    left: -.45rem;
  }

  .lpv3-cover__art {
    height: auto;
  }

  .lpv3-balloon {
    top: 1.2rem;
    right: .65rem;
    width: 47%;
    padding: .8rem;
    font-size: .72rem;
  }

  .lpv3-balloon strong {
    font-size: .85rem;
  }

  .lpv3-sfx--one {
    bottom: 9rem;
  }

  .lpv3-sfx--two {
    bottom: 7.4rem;
  }

  .lpv3-stripe {
    justify-content: flex-start;
  }

  .lpv3-jump {
    width: calc(100% - 1.25rem);
  }

  .lpv3-story {
    padding-top: 6.5rem;
  }

  .lpv3-storyboard {
    grid-template-columns: 1fr;
  }

  .lpv3-storyboard__panel {
    display: grid;
    min-height: 0;
    grid-template-columns: 5rem 1fr;
    column-gap: 1rem;
    padding: 1.2rem;
  }

  .lpv3-storyboard__symbol {
    width: 4.7rem;
    height: 4.7rem;
    grid-row: 1 / 4;
    margin: .7rem 0 0;
    font-size: 2.5rem;
  }

  .lpv3-storyboard__verb,
  .lpv3-storyboard__panel h3,
  .lpv3-storyboard__panel > p:last-of-type {
    grid-column: 2;
  }

  .lpv3-storyboard__verb {
    align-self: end;
    margin-top: .65rem;
  }

  .lpv3-storyboard__panel h3 {
    margin-bottom: .55rem;
    font-size: 1.4rem;
  }

  .lpv3-story__caption {
    justify-content: flex-start;
    margin-top: 0;
  }

  .lpv3-storyboard {
    margin-bottom: 2rem;
  }

  .lpv3-mission {
    grid-template-columns: 3.5rem 1fr;
    box-shadow: 5px 5px 0 var(--lpv3-ink);
  }

  .lpv3-mission__body {
    padding: 1.4rem 1.15rem;
  }

  .lpv3-mission__body h3 {
    font-size: 1.75rem;
  }

  .lpv3-mission__body ul {
    display: grid;
  }

  .lpv3-mission__visual {
    grid-column: 2;
    width: calc(100% - 2rem);
    margin: 0 1rem 1.6rem;
  }

  .lpv3-workshop-process {
    box-shadow: 6px 6px 0 var(--lpv3-orange);
    transform: none;
  }

  .lpv3-workshop-process figcaption {
    padding: .8rem .7rem;
    font-size: .66rem;
  }

  .lpv3-shot__label {
    grid-template-columns: 1.5rem 1fr;
  }

  .lpv3-shot__label small {
    display: none;
  }

  .lpv3-price-ticket {
    box-shadow: 6px 6px 0 var(--lpv3-ink);
  }

  .lpv3-price-ticket__start,
  .lpv3-price-ticket__plus {
    grid-template-columns: 1fr;
  }

  .lpv3-price-ticket__start strong,
  .lpv3-price-ticket__plus strong {
    font-size: 1.75rem;
  }

  .lpv3-price-ticket__examples {
    grid-template-columns: 1fr;
  }

  .lpv3-price-ticket__examples span {
    min-height: 3.4rem;
    border-right: 0;
    border-bottom: 2px solid var(--lpv3-ink);
  }

  .lpv3-price-ticket__examples span:last-child {
    border-bottom: 0;
  }

  .lpv3-limits ul {
    grid-template-columns: 1fr;
  }

  .lpv3-control__grid {
    grid-template-columns: 4.8rem 1fr;
    gap: 1rem;
  }

  .lpv3-control__mark {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 2.5rem;
  }

  .lpv3-control ul {
    grid-template-columns: 1fr;
  }

  .lpv3-final__visual {
    box-shadow: 6px 6px 0 var(--lpv3-ink);
    transform: none;
  }

  .lpv3-final h2 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .lpv3-final__action,
  .lpv3-final__action .lpv3-button {
    width: 100%;
  }
}

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

}

@media print {
  .lpv3-hero,
  .lpv3-workshop,
  .lpv3-control {
    color: #000;
    background: #fff;
  }

  .lpv3-button,
  .lpv3-jump,
  .lpv3-stripe,
  .lpv3-final__rays {
    display: none !important;
  }
}
