:root {
  --paper: #f2efe7;
  --paper-deep: #e6dfd0;
  --cream: #fbf8ef;
  --ink: #0b0b0a;
  --fern: #5b9164;
  --fern-dark: #2d5738;
  --blue: #4d88b8;
  --yellow: #f4d451;
  --red: #eb3b2f;
  --line: rgba(11, 11, 10, 0.18);
  --shadow: 6px 6px 0 rgba(11, 11, 10, 0.1);
  --content: 1240px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background-color: var(--paper);
  background-image: radial-gradient(rgba(11, 11, 10, 0.07) 0.7px, transparent 0.7px);
  background-size: 29px 29px;
  font-family: ui-rounded, "SF Pro Rounded", "Avenir Next", system-ui, sans-serif;
  line-height: 1.45;
}

a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-150%);
}

.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(calc(100% - 36px), var(--content));
  min-height: 84px;
  margin: 16px auto 0;
  padding: 10px 14px 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(251, 248, 239, 0.92);
  border: 1.5px solid var(--ink);
  border-radius: 23px 16px 21px 14px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand img {
  border-radius: 13px 9px 12px 8px;
  border: 1.5px solid var(--ink);
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-size: 18px;
  font-weight: 1000;
  letter-spacing: 0.06em;
}

.brand small {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  color: var(--fern-dark);
}

nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

nav > a {
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

nav > a:not(.button):hover { color: var(--fern-dark); }

.button {
  min-height: 52px;
  padding: 11px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--cream);
  background: var(--fern-dark);
  border: 1.5px solid var(--ink);
  border-radius: 17px 12px 16px 10px;
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 850;
  text-decoration: none;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

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

.button:focus-visible,
summary:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding: 8px 15px;
}

.hero {
  width: min(calc(100% - 36px), var(--content));
  min-height: 720px;
  margin: 32px auto 54px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: clamp(20px, 5vw, 76px);
}

.hero-copy { padding: 40px 0; }

.eyebrow {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.eyebrow span {
  display: inline-block;
  width: 28px;
  height: 8px;
  margin-right: 8px;
  background: var(--red);
  border-radius: 50%;
  transform: rotate(-5deg);
}

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

h1 {
  margin: 0;
  font-size: clamp(75px, 10vw, 142px);
  line-height: 0.78;
  letter-spacing: -0.072em;
  font-weight: 1000;
}

h1 em {
  color: var(--fern);
  font-style: normal;
  text-decoration-line: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 0.1em;
  text-underline-offset: -0.02em;
  text-decoration-skip-ink: none;
}

.lore-headline {
  max-width: 760px;
  font-size: clamp(58px, 7.1vw, 102px);
  line-height: 0.88;
}

.hero h2 {
  margin: 42px 0 18px;
  font-size: clamp(28px, 3vw, 43px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--fern-dark);
}

.lede {
  max-width: 650px;
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
  color: rgba(11, 11, 10, 0.76);
}

.patrol-definition {
  max-width: 620px;
  margin: 18px 0 0;
  padding-left: 15px;
  border-left: 6px solid var(--yellow);
  color: rgba(11, 11, 10, 0.7);
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.patrol-definition img {
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 13px 9px 12px 8px;
  border: 1.5px solid var(--ink);
  background: var(--cream);
}

.patrol-definition p {
  margin: 0;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-actions .button svg {
  width: 27px;
  fill: currentColor;
}

.hero-actions .button span {
  display: grid;
  font-size: 17px;
  line-height: 1.1;
}

.hero-actions .button small {
  font-size: 8px;
  letter-spacing: 0.12em;
}

.price {
  font-size: 13px;
  line-height: 1.3;
}

.price strong { font-size: 23px; }
.price small { color: rgba(11, 11, 10, 0.6); }

.hero-art {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-art::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: min(93%, 570px);
  aspect-ratio: 1;
  background: var(--fern);
  border: 2px solid var(--ink);
  border-radius: 47% 53% 49% 51% / 52% 46% 54% 48%;
  box-shadow: 10px 10px 0 var(--ink);
  transform: rotate(-2deg);
}

.hero-art::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(83%, 510px);
  height: 9%;
  bottom: 34px;
  background: rgba(11, 11, 10, 0.24);
  filter: blur(10px);
  border-radius: 50%;
}

.hero-art > img {
  width: min(90%, 550px);
  filter: drop-shadow(4px 5px 0 rgba(11, 11, 10, 0.17));
}

.sun-dot {
  position: absolute;
  z-index: -1;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.sun-dot-one { width: 56px; height: 58px; top: 7%; right: 3%; }
.sun-dot-two { width: 27px; height: 25px; top: 18%; left: 4%; }

.blue-squiggle {
  position: absolute;
  z-index: -1;
  width: 70px;
  height: 32px;
  left: -1%;
  bottom: 13%;
  border: solid var(--blue);
  border-width: 6px 0;
  border-radius: 50%;
  transform: rotate(16deg);
}

.result-card {
  position: absolute;
  right: 4px;
  bottom: 1%;
  width: 220px;
  padding: 16px 18px;
  display: grid;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 14px 20px 12px 18px;
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(2deg);
}

.result-card span,
.result-card small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.result-card strong {
  margin: 2px 0;
  font-size: 34px;
  line-height: 1;
  color: var(--red);
}

.proof-strip {
  padding: 22px max(18px, calc((100vw - var(--content)) / 2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  color: var(--cream);
  background: var(--ink);
  transform: rotate(-0.45deg);
}

.proof-strip span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 750;
}

.proof-strip b { color: var(--yellow); }

.section {
  width: min(calc(100% - 36px), var(--content));
  margin: 0 auto;
  padding: 64px 0;
}

.section-heading { max-width: 800px; }

.section-heading h2,
.demo-intro h2,
.promise h2,
.launch h2 {
  margin: 0;
  font-size: clamp(46px, 6.3vw, 84px);
  line-height: 0.91;
  letter-spacing: -0.062em;
  font-weight: 1000;
}

.steps {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step {
  position: relative;
  min-height: 330px;
  padding: 28px;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
}

.step:nth-child(1) { border-radius: 21px 13px 17px 10px; transform: rotate(-1deg); }
.step:nth-child(2) { border-radius: 12px 22px 11px 19px; transform: rotate(0.8deg); }
.step:nth-child(3) { border-radius: 19px 11px 23px 13px; transform: rotate(-0.5deg); }
.step-yellow { background: var(--yellow); }
.step-blue { background: var(--blue); }
.step-red { background: var(--red); }

.step-art {
  width: 96px;
  height: 96px;
  margin-bottom: 18px;
  border-radius: 16px 10px 14px 9px;
  border: 1.5px solid var(--ink);
  background: var(--cream);
}

.step > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 25px;
  font-weight: 1000;
}

.step h3 {
  margin: 26px 0 12px;
  font-size: 28px;
  line-height: 1;
}

.step p { font-size: 17px; }

.step small {
  position: static;
  display: inline-block;
  margin-top: 12px;
  padding-top: 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  border-top: 2px solid var(--ink);
}

.change-demo {
  width: min(calc(100% - 36px), var(--content));
  margin: 28px auto 76px;
  padding: 44px;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 65px;
  align-items: center;
  background: var(--paper-deep);
  border: 2px solid var(--ink);
  border-radius: 31px 18px 28px 16px;
  box-shadow: 10px 10px 0 var(--ink);
}

.demo-intro h2 em { color: var(--red); font-style: normal; }
.demo-intro > p:last-child { max-width: 480px; font-size: 18px; }

.demo-card {
  padding: 27px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 17px 24px 14px 20px;
  box-shadow: var(--shadow);
}

.demo-top {
  margin-bottom: 28px;
  padding-bottom: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-bottom: 2px solid var(--ink);
}

.demo-top span { font-size: 11px; font-weight: 900; letter-spacing: 0.12em; }
.demo-top strong { font-size: 42px; line-height: 1; color: var(--red); }

.bar-row {
  margin: 15px 0;
  display: grid;
  grid-template-columns: 95px 1fr 82px;
  gap: 11px;
  align-items: center;
  font-size: 13px;
  font-weight: 750;
}

.bar-row i {
  height: 12px;
  overflow: hidden;
  background: var(--paper-deep);
  border-radius: 20px;
}

.bar-row b {
  display: block;
  width: var(--bar);
  height: 100%;
  background: var(--fern);
  border-radius: inherit;
}

.bar-row strong { text-align: right; }

.finding {
  margin-top: 28px;
  padding: 17px;
  display: grid;
  background: rgba(244, 212, 81, 0.34);
  border: 1.5px solid var(--ink);
  border-radius: 11px 17px 10px 15px;
}

.finding span { font-size: 9px; font-weight: 950; letter-spacing: 0.14em; }
.finding strong { margin-top: 4px; }
.finding small { margin: 3px 0 13px; color: rgba(11, 11, 10, 0.67); }
.finding button {
  justify-self: start;
  padding: 7px 10px;
  background: transparent;
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
}

.promise {
  position: relative;
  overflow: visible;
  padding: 60px max(18px, calc((100vw - var(--content)) / 2));
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  align-items: center;
  gap: 80px;
  color: var(--cream);
  background: var(--fern-dark);
  border-block: 2px solid var(--ink);
}

.orc-peek {
  position: absolute;
  pointer-events: none;
}

.orc-peek-celebrate {
  top: -48px;
  right: 6%;
  width: 90px;
  clip-path: inset(0 0 55% 0);
}

.orc-peek-attack {
  left: -34px;
  bottom: 10%;
  width: 84px;
  transform: rotate(-8deg);
}

@media (max-width: 700px) {
  .orc-peek {
    display: none;
  }
}

.promise-art img {
  width: min(100%, 420px);
  margin: auto;
  border: 2px solid var(--ink);
  border-radius: 29px 17px 25px 14px;
  box-shadow: 9px 9px 0 var(--ink);
  transform: rotate(-2deg);
}

.light { color: var(--yellow); }

.promise ul {
  margin: 42px 0 0;
  padding: 0;
  display: grid;
  gap: 19px;
  list-style: none;
}

.promise li {
  display: grid;
  grid-template-columns: 23px 1fr;
  font-size: 17px;
  color: rgba(251, 248, 239, 0.78);
}

.promise li span { color: var(--yellow); }
.promise li strong { color: var(--cream); }

.section-heading.compact { max-width: 900px; }

.faq-heading {
  display: flex;
  align-items: center;
  gap: 22px;
}

.faq-heading img {
  flex: none;
  width: 72px;
  height: 72px;
  border-radius: 16px 10px 14px 9px;
  border: 1.5px solid var(--ink);
  background: var(--cream);
}

.questions {
  max-width: 920px;
  margin-top: 42px;
  display: grid;
  gap: 11px;
}

.question-item {
  overflow: hidden;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 13px 9px 15px 10px;
  box-shadow: 3px 3px 0 rgba(11, 11, 10, 0.11);
}

.question-item summary {
  position: relative;
  padding: 18px 56px 18px 20px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.question-item summary::-webkit-details-marker { display: none; }

.question-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  font-size: 26px;
  line-height: 1;
  transform: translateY(-54%);
}

.question-item[open] summary {
  color: var(--cream);
  background: var(--fern-dark);
}

.question-item[open] summary::after { content: "−"; }

.question-answer {
  height: auto;
  padding: clamp(22px, 4vw, 38px);
  background: var(--yellow);
  border-top: 1.5px solid var(--ink);
}

.question-answer h3 {
  max-width: 720px;
  margin: 0 0 14px;
  font-size: clamp(27px, 3.3vw, 44px);
  line-height: 0.95;
  letter-spacing: -0.045em;
}
.question-answer > p:last-child {
  max-width: 680px;
  margin: 0;
  font-size: 17px;
}

.launch {
  position: relative;
  width: min(calc(100% - 36px), var(--content));
  margin: 0 auto 90px;
}

.launch-card {
  position: relative;
  min-height: 330px;
  padding: 45px 48px 45px 300px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 24px 15px 27px 13px;
  box-shadow: 9px 9px 0 var(--ink);
  overflow: hidden;
}

.launch-card > img {
  position: absolute;
  width: 315px;
  left: -8px;
  bottom: -58px;
}

.launch h2 { font-size: clamp(39px, 5vw, 66px); }
.launch-card > div > p:last-child { margin-bottom: 0; font-weight: 750; }
.button-ink { background: var(--ink); }

footer {
  width: min(calc(100% - 36px), var(--content));
  margin: 0 auto;
  padding: 30px 0 42px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: center;
  border-top: 1.5px solid var(--ink);
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 920px) {
  nav > a:not(.button) { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 0; }
  .hero-art { min-height: 500px; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 250px; }
  .change-demo { grid-template-columns: 1fr; padding: 40px; }
  .promise { grid-template-columns: 1fr; }
  .promise-art img { width: 310px; }
  .launch-card { padding-left: 230px; grid-template-columns: 1fr; }
  .launch-card > img { width: 240px; }
  footer { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .site-header { min-height: 70px; }
  .site-header .brand img { width: 46px; height: 46px; }
  .site-header .brand small { display: none; }
  nav .button { font-size: 0; width: 45px; min-height: 42px; padding: 0; }
  nav .button::after { content: "↓"; font-size: 19px; }
  .hero { min-height: auto; margin-top: 20px; }
  .hero-art { min-height: 360px; }
  .result-card { right: 8px; width: 180px; }
  .proof-strip { grid-template-columns: 1fr 1fr; transform: none; }
  .section { padding: 48px 0; }
  .section-heading h2,
  .demo-intro h2,
  .promise h2 { font-size: 44px; }
  .change-demo { padding: 24px; box-shadow: 6px 6px 0 var(--ink); }
  .demo-top { align-items: start; flex-direction: column; gap: 5px; }
  .bar-row { grid-template-columns: 75px 1fr; }
  .bar-row strong { grid-column: 2; }
  .promise { padding-block: 80px; }
  .questions { grid-template-columns: 1fr; }
  .question-answer { height: auto; padding: 24px 22px; }
  .launch-card { padding: 265px 26px 30px; }
  .launch-card > img { width: 270px; bottom: auto; top: -30px; left: calc(50% - 135px); }
}

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

/* 2026 character system and autonomous patrol */

.hero h1 {
  max-width: 780px;
  font-size: clamp(58px, 7.6vw, 112px);
  line-height: 0.84;
}

.why-orc {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(30px, 7vw, 100px);
}

.why-copy h2,
.storage-truth h2,
.patrol-copy h2 {
  margin: 0;
  font-size: clamp(47px, 6vw, 82px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-weight: 1000;
}

.why-copy h2 em,
.change-demo h2 em {
  color: var(--fern);
  font-style: normal;
}

.why-copy > p:not(.eyebrow) {
  max-width: 640px;
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(11, 11, 10, 0.73);
}

.why-art {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
}

.why-art::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 90%;
  aspect-ratio: 1;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 53% 47% 45% 55% / 49% 56% 44% 51%;
  transform: rotate(4deg);
}

.why-art img {
  width: min(94%, 560px);
  transform: translateX(-2%) rotate(-2deg);
  filter: drop-shadow(5px 6px 0 rgba(11, 11, 10, 0.12));
}

.scribble-label {
  position: absolute;
  right: -3%;
  bottom: 5%;
  padding: 10px 14px;
  color: var(--cream);
  background: var(--ink);
  border-radius: 9px 14px 8px 12px;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
  transform: rotate(3deg);
}

.section-heading > p:last-child {
  max-width: 690px;
  margin-top: 24px;
  font-size: 19px;
  color: rgba(11, 11, 10, 0.68);
}

.step {
  min-height: 0;
  padding: 20px 20px 24px;
  overflow: hidden;
}

/* Sits on the same line as the step number rather than stacked above it, which is
   what used to force a tall empty band across the top of every card. The number is
   52px in normal flow from the card's top padding; the art is pinned opposite it and
   kept close to that height, so `.step h3`'s top margin below only has to clear the
   taller of the two. */
.step-art {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 80px;
  height: 80px;
  object-fit: contain;
  border: 0;
  background: transparent;
  filter: drop-shadow(3px 4px 0 rgba(11, 11, 10, 0.1));
}

.patrol-section {
  padding: 60px max(18px, calc((100vw - var(--content)) / 2));
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(520px, 1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 90px);
  color: var(--cream);
  background: var(--ink);
  border-block: 2px solid var(--ink);
}

.patrol-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 25px 0 30px;
  color: rgba(251, 248, 239, 0.72);
  font-size: 18px;
}

.button-horn {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--blue);
  cursor: pointer;
  font: inherit;
}

.patrol-world {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
  background: var(--paper);
  border: 2px solid var(--cream);
  border-radius: 31px 19px 28px 17px;
  box-shadow: 11px 11px 0 var(--fern);
}

.patrol-world::before {
  content: "";
  position: absolute;
  inset: auto -8% 0;
  z-index: -2;
  height: 40%;
  background: var(--fern);
  border-top: 3px solid var(--ink);
  clip-path: polygon(0 25%, 13% 8%, 26% 20%, 38% 0, 52% 21%, 66% 9%, 80% 23%, 100% 5%, 100% 100%, 0 100%);
}

.patrol-world::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 9%;
  z-index: -1;
  height: 9%;
  background: rgba(11, 11, 10, 0.22);
  border-radius: 50%;
  filter: blur(10px);
}

.patrol-sky span {
  position: absolute;
  display: block;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.patrol-sky span:nth-child(1) { width: 62px; height: 60px; top: 11%; right: 9%; background: var(--yellow); }
.patrol-sky span:nth-child(2) { width: 28px; height: 26px; top: 25%; right: 23%; background: var(--red); }
.patrol-sky span:nth-child(3) { width: 38px; height: 19px; top: 12%; left: 12%; background: var(--blue); border-radius: 50%; transform: rotate(-10deg); }

.patrol-track i {
  position: absolute;
  bottom: 5%;
  width: 80px;
  height: 42px;
  background: var(--paper-deep);
  border: 2px solid var(--ink);
  border-radius: 48%;
}

.patrol-track i:nth-child(1) { left: 7%; transform: rotate(8deg); }
.patrol-track i:nth-child(2) { left: 28%; bottom: 2%; transform: rotate(-8deg); }
.patrol-track i:nth-child(3) { right: 27%; transform: rotate(5deg); }
.patrol-track i:nth-child(4) { right: 5%; bottom: 1%; transform: rotate(-5deg); }

.patrol-orc {
  position: absolute;
  left: 11%;
  bottom: 7%;
  width: min(66%, 500px);
  height: 72%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(5px 6px 0 rgba(11, 11, 10, 0.14));
  animation: paper-bob 1.3s steps(2, end) infinite;
  transition: opacity 160ms ease, transform 220ms ease;
}

.patrol-world[data-state="charging"] .patrol-orc { transform: translateX(15%) rotate(2deg); animation-duration: 0.42s; }
.patrol-world[data-state="celebrating"] .patrol-orc { transform: translateY(-2%) rotate(-2deg); }

.patrol-peek {
  position: absolute;
  right: -12%;
  bottom: 16%;
  width: 35%;
  transform: rotate(-2deg);
  opacity: 0;
  transition: right 400ms ease, opacity 400ms ease;
}

.patrol-world[data-state="searching"] .patrol-peek { right: -5%; opacity: 1; }

.patrol-hud {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.patrol-hud span {
  min-width: 145px;
  padding: 10px 13px;
  display: grid;
  color: var(--cream);
  background: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 10px 14px 9px 12px;
}

.patrol-hud small { font-size: 8px; font-weight: 900; letter-spacing: 0.12em; color: var(--yellow); }
.patrol-hud strong { font-size: 14px; }

.patrol-status {
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: max-content;
  max-width: calc(100% - 40px);
  margin: 0;
  padding: 9px 13px;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 9px 13px 8px 12px;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 12px;
  font-weight: 850;
  transform: translateX(-50%) rotate(-0.5deg);
}

@keyframes paper-bob {
  0%, 100% { translate: 0 0; rotate: -1deg; }
  50% { translate: 0 -8px; rotate: 1deg; }
}

.app-demo {
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--cream);
  border-radius: 24px 15px 22px 13px;
  box-shadow: 11px 11px 0 var(--fern);
}

.app-demo-titlebar {
  min-height: 46px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1.5px solid var(--ink);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.app-demo-titlebar > span { display: flex; gap: 6px; }
.app-demo-titlebar i { width: 10px; height: 10px; border: 1.5px solid var(--ink); border-radius: 50%; background: var(--red); }
.app-demo-titlebar i:nth-child(2) { background: var(--yellow); }
.app-demo-titlebar i:nth-child(3) { background: var(--fern); }
.app-demo-titlebar small { justify-self: end; font-size: 7px; font-weight: 900; color: var(--fern-dark); }

.app-demo-body { min-height: 455px; display: grid; grid-template-columns: 128px 1fr; }

.app-demo-sidebar {
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: var(--paper-deep);
  border-right: 1.5px solid var(--ink);
}

.app-demo-brand { margin-bottom: 12px; display: grid; gap: 5px; font-size: 9px; letter-spacing: 0.12em; }
.app-demo-brand img { width: 42px; border: 1.5px solid var(--ink); border-radius: 10px 7px 9px 6px; }
.app-demo-sidebar > span { padding: 8px 9px; border-radius: 9px 6px 8px 5px; font-size: 11px; font-weight: 750; }
.app-demo-sidebar > span.is-active { color: var(--cream); background: var(--fern-dark); }
.app-demo-sidebar > small { margin-top: auto; font-size: 7px; font-weight: 950; letter-spacing: 0.11em; color: var(--fern-dark); }

.app-demo-main { min-width: 0; padding: 20px; }
.app-demo-main > header { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.app-demo-main header small { font-size: 8px; font-weight: 950; letter-spacing: 0.12em; color: var(--fern-dark); }
.app-demo-main header h3 { margin: 2px 0 0; font-size: 24px; }
.app-demo-main header > b { padding: 7px 10px; color: var(--fern-dark); background: rgba(91, 145, 100, 0.17); border: 1.5px solid var(--fern-dark); border-radius: 999px; font-size: 9px; }

.app-demo-stats { margin: 9px 0 7px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.app-demo-stats span { padding: 7px 9px; display: grid; gap: 2px; background: var(--paper); border: 1.5px solid var(--ink); border-radius: 10px 7px 9px 6px; }
.app-demo-stats small { font-size: 7px; font-weight: 950; letter-spacing: 0.1em; }
.app-demo-stats strong { font-size: 14px; }
.app-demo-stats span:nth-child(2) strong { color: var(--red); }

.app-demo-tabs { display: flex; gap: 20px; border-bottom: 1.5px solid var(--line); }
.app-demo-tabs span { padding: 7px 0; border-bottom: 4px solid transparent; font-size: 9px; font-weight: 850; animation: app-tab-loop 12s steps(1, end) infinite; }
.app-demo-tabs span:nth-child(2) { animation-delay: -8s; }
.app-demo-tabs span:nth-child(3) { animation-delay: -4s; }

.app-demo-frames { position: relative; height: 225px; margin-top: 14px; }
.app-demo-frame { position: absolute; inset: 0; padding: 16px; background: var(--cream); border: 1.5px solid var(--ink); border-radius: 12px 8px 11px 7px; opacity: 0; animation: app-demo-loop 12s steps(1, end) infinite; }
.app-demo-frame > p { margin: 0 0 13px; display: grid; }
.app-demo-frame > p b { font-size: 15px; }
.app-demo-frame > p small { font-size: 9px; color: rgba(11, 11, 10, 0.6); }
.app-demo-frame ol { margin: 0; padding: 0; list-style: none; }
.app-demo-frame li { padding: 10px 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); font-size: 11px; }
.app-demo-frame li > span { display: grid; }
.app-demo-frame li small { font-size: 8px; color: rgba(11, 11, 10, 0.6); }
.app-demo-frame li > strong { color: var(--red); white-space: nowrap; }
.frame-story { overflow: hidden; }
.frame-story > p { position: relative; z-index: 2; max-width: 100%; }
.frame-story > p small { margin-bottom: 5px; color: var(--fern-dark); font-weight: 950; letter-spacing: 0.12em; }
.frame-story > p b { font-size: 17px; line-height: 1.08; }
.frame-story > a { position: relative; z-index: 2; display: inline-flex; gap: 7px; color: var(--ink); font-size: 10px; font-weight: 900; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.frame-story > a span { color: var(--red); }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.offer-grid article { min-width: 0; min-height: 101px; padding: 9px 8px; display: flex; flex-direction: column; border: 1.5px solid var(--ink); border-radius: 9px 6px 8px 5px; }
.offer-grid article:nth-child(1) { background: rgba(91, 145, 100, 0.19); }
.offer-grid article:nth-child(2) { background: rgba(244, 55, 44, 0.12); }
.offer-grid article:nth-child(3) { background: rgba(249, 214, 75, 0.35); }
.offer-grid small { min-height: 29px; font-size: 6px; font-weight: 950; line-height: 1.2; letter-spacing: 0.07em; text-transform: uppercase; }
.offer-grid b { margin-top: auto; font-size: 16px; }
.offer-grid span { margin-top: 3px; font-size: 7px; line-height: 1.2; color: rgba(11, 11, 10, 0.66); }
.all-quiet { margin: 7px 0 0 !important; font-size: 7px; line-height: 1.3; color: rgba(11, 11, 10, 0.68); }
.frame-map { animation-delay: 0s; }
.frame-changes { animation-delay: -8s; }
.frame-review { animation-delay: -4s; }

.realm-map { height: 130px; position: relative; overflow: hidden; background: rgba(91, 145, 100, 0.16); border-radius: 49% 51% 44% 56% / 53% 44% 56% 47%; }
.realm-map i { position: absolute; display: block; border: 2px solid var(--ink); border-radius: 48% 52% 44% 56%; }
.realm-map i:nth-child(1) { inset: 12% 48% 35% 5%; background: var(--fern); }
.realm-map i:nth-child(2) { inset: 8% 8% 48% 48%; background: var(--blue); }
.realm-map i:nth-child(3) { inset: 55% 55% 8% 12%; background: var(--yellow); }
.realm-map i:nth-child(4) { inset: 49% 24% 7% 42%; background: var(--red); }
.realm-map i:nth-child(5) { inset: 48% 5% 13% 72%; background: var(--paper-deep); }

.app-demo-caption { min-height: 40px; margin: 0; padding: 10px 16px; display: flex; align-items: center; justify-content: center; gap: 7px; color: var(--cream); background: var(--ink); font-size: 9px; font-weight: 850; letter-spacing: 0.05em; }
.app-demo-caption span { width: 8px; height: 8px; background: var(--fern); border-radius: 50%; animation: status-pulse 1.8s ease-in-out infinite; }
.app-demo-caption b { color: var(--yellow); }

@keyframes app-demo-loop {
  0%, 32% { opacity: 1; transform: translateY(0); }
  33%, 100% { opacity: 0; transform: translateY(5px); }
}

@keyframes app-tab-loop {
  0%, 32% { border-bottom-color: var(--yellow); }
  33%, 100% { border-bottom-color: transparent; }
}

@keyframes status-pulse {
  0%, 100% { opacity: 0.45; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1); }
}

.demo-intro > img {
  width: min(70%, 390px);
  max-height: 300px;
  margin: -145px auto 6px;
  object-fit: contain;
  filter: drop-shadow(4px 5px 0 rgba(11, 11, 10, 0.13));
}

.promise {
  grid-template-columns: minmax(300px, 0.58fr) 1fr;
}

.promise-orc {
  width: min(92%, 420px);
  margin: auto;
  filter: drop-shadow(8px 8px 0 var(--ink));
  transform: rotate(-2deg);
}

.storage-truth {
  width: min(calc(100% - 36px), var(--content));
  margin: 0 auto;
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.65fr);
  align-items: center;
  gap: 70px;
}

.storage-truth p:not(.eyebrow) {
  max-width: 720px;
  font-size: 18px;
  color: rgba(11, 11, 10, 0.7);
}

.storage-truth > img {
  width: min(100%, 430px);
  max-height: 450px;
  object-fit: contain;
  transform: rotate(3deg);
}

.faq-heading {
  justify-content: space-between;
}

.faq-heading > img {
  width: 180px;
  height: 180px;
  border: 0;
  background: transparent;
  object-fit: contain;
  transform: translateY(30px);
}

.launch-card {
  padding: 32px 40px;
  grid-template-columns: minmax(200px, 260px) minmax(0, 1fr) auto;
}

.launch-card > img {
  position: static;
  width: min(100%, 260px);
  max-height: 260px;
  object-fit: contain;
  justify-self: center;
}

footer {
  position: relative;
  grid-template-columns: 1fr auto 220px auto;
  overflow: visible;
}

.footer-orc {
  width: 220px;
  max-height: 110px;
  object-fit: contain;
  align-self: end;
}

@media (max-width: 1020px) {
  .why-orc,
  .patrol-section { grid-template-columns: 1fr; }
  .why-art { min-height: 420px; }
  .scribble-label { right: 8px; }
  .patrol-copy { max-width: 720px; }
  .patrol-world { min-height: 500px; }
  .storage-truth {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.48fr);
    gap: 32px;
    padding-block: 82px;
  }
  .storage-truth > img { justify-self: center; }
  .launch-card { grid-template-columns: 220px minmax(0, 1fr); }
  .launch-card .button { grid-column: 2; justify-self: start; }
  footer { grid-template-columns: 1fr auto; }
}

@media (max-width: 700px) {
  .hero h1 { font-size: clamp(50px, 8vw, 58px); }
  .hero .lede { font-size: 18px; }
  .why-art { min-height: 330px; }
  .why-art img { width: 92%; }
  .scribble-label { right: 0; }
  .step {
    min-height: 0;
    padding: 18px 18px 20px;
  }
  .step-art {
    top: 14px;
    right: 12px;
    width: 76px;
    height: 76px;
  }
  .patrol-section { padding-block: 78px; }
  .patrol-copy h2,
  .why-copy h2,
  .storage-truth h2 { font-size: 44px; }
  .patrol-world { min-height: 430px; box-shadow: 7px 7px 0 var(--fern); }
  .patrol-orc { left: 1%; width: 82%; height: 68%; }
  .patrol-peek { width: 42%; }
  .patrol-hud { align-items: stretch; }
  .patrol-hud span { min-width: 0; flex: 1; }
  .patrol-hud strong { font-size: 11px; }
  .demo-intro > img { margin-top: -90px; }
  .promise { grid-template-columns: 1fr; }
  .promise { overflow: hidden; padding-block: 60px; gap: 32px; }
  .promise-orc { width: 230px; }
  .storage-truth { grid-template-columns: 1fr; padding: 58px 0; gap: 18px; }
  .storage-truth > img { width: min(76%, 280px); }
  .faq-heading > img { width: 110px; height: 110px; }
  .launch-card { padding: 26px; grid-template-columns: 1fr; text-align: center; }
  .launch-card > img { width: 210px; }
  .launch-card .button { grid-column: 1; justify-self: center; }
  footer { grid-template-columns: 1fr; }
  .footer-orc { width: 180px; }
  .app-demo-body { min-height: 470px; grid-template-columns: 84px 1fr; }
  .app-demo-sidebar { padding-inline: 8px; }
  .app-demo-brand img { width: 36px; }
  .app-demo-sidebar > span { padding-inline: 6px; font-size: 9px; }
  .app-demo-main { padding: 14px 10px; }
  .app-demo-main header h3 { font-size: 19px; }
  .app-demo-main header > b { display: none; }
  .app-demo-stats { grid-template-columns: 1fr 1fr; }
  .app-demo-stats span:last-child { display: none; }
  .app-demo-stats strong { font-size: 14px; }
  .app-demo-tabs { gap: 11px; }
  .app-demo-frames { height: 245px; }
  .frame-story > p { max-width: 100%; }
  .frame-story > p b { font-size: 17px; }
  .offer-grid { grid-template-columns: 1fr; gap: 5px; }
  .offer-grid article { min-height: 0; padding: 7px 9px; display: grid; grid-template-columns: 1.25fr auto; align-items: center; gap: 2px 8px; }
  .offer-grid small { min-height: 0; }
  .offer-grid b { margin: 0; font-size: 13px; }
  .offer-grid span { grid-column: 1 / -1; }
  .all-quiet { font-size: 6px; }
}

@media (max-width: 520px) {
  .hero-art { min-height: 320px; }
  .result-card { width: 166px; padding: 13px 14px; }
  .result-card strong { font-size: 29px; }
  .step {
    min-height: 0;
    padding: 16px 16px 18px;
  }
  .step-art {
    top: 12px;
    right: 10px;
    width: 68px;
    height: 68px;
  }
  .step h3 { font-size: 25px; }
  .step p { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .patrol-orc { animation: none; }
  .patrol-peek { transition: none; }
  .app-demo-frame { display: none; animation: none; }
  .app-demo-frame.frame-map { display: block; opacity: 1; transform: none; }
  .app-demo-tabs span { animation: none; }
  .app-demo-tabs span:first-child { border-bottom-color: var(--yellow); }
  .app-demo-caption span { animation: none; opacity: 1; }
}
