: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%; }
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;
  background-image: linear-gradient(to right, var(--yellow), var(--yellow));
  background-repeat: no-repeat;
  background-position: 0 96%;
  background-size: 100% 0.09em;
  border-radius: 2px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding-bottom: 0.06em;
}

.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: 620px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-art::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: 93%;
  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: 83%;
  height: 9%;
  bottom: 34px;
  background: rgba(11, 11, 10, 0.24);
  filter: blur(10px);
  border-radius: 50%;
}

.hero-art > img {
  width: min(95%, 610px);
  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: -5%;
  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: 125px 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: 48px 0 12px;
  font-size: 28px;
  line-height: 1;
}

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

.step small {
  position: absolute;
  left: 28px;
  bottom: 28px;
  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: 40px auto 120px;
  padding: 70px;
  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: 110px 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 {
  margin-top: 55px;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 26px;
  align-items: stretch;
}

.question-list {
  display: grid;
  align-content: start;
  gap: 10px;
}

.question-list button {
  width: 100%;
  padding: 16px 18px;
  color: var(--ink);
  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);
  font: inherit;
  font-size: 16px;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

.question-list button:hover { transform: translateX(3px); }

.question-list button[aria-selected="true"] {
  color: var(--cream);
  background: var(--fern-dark);
  box-shadow: 5px 5px 0 var(--yellow);
  transform: translateX(5px) rotate(-0.35deg);
}

.question-answer {
  height: 330px;
  padding: clamp(28px, 5vw, 58px);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 24px 15px 27px 13px;
  box-shadow: 8px 8px 0 var(--ink);
  overflow: auto;
}

.question-answer .eyebrow { color: var(--fern-dark); }
.question-answer h3 {
  max-width: 720px;
  margin: 0 0 20px;
  font-size: clamp(31px, 4vw, 54px);
  line-height: 0.95;
  letter-spacing: -0.045em;
}
.question-answer > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 18px;
}

.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: 580px; }
  .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; }
  h1 { font-size: clamp(69px, 24vw, 108px); }
  .hero { min-height: auto; margin-top: 20px; }
  .hero-art { min-height: 440px; }
  .result-card { right: 1%; width: 180px; }
  .proof-strip { grid-template-columns: 1fr 1fr; transform: none; }
  .section { padding: 85px 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: 320px; padding: 28px 24px; }
  .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; }
}
