:root {
  --ink: #17313e;
  --ink-soft: #3c5662;
  --ink-muted: #6c7f86;
  --paper: #f4f0e8;
  --paper-light: #fffdf7;
  --white: #ffffff;
  --quartz: #4d87a4;
  --quartz-dark: #28566d;
  --blue: #91d7ee;
  --coral: #ff806f;
  --yellow: #f4d95e;
  --lilac: #cbbcff;
  --mint: #9dd9bc;
  --line: rgba(23, 49, 62, 0.19);
  --line-soft: rgba(23, 49, 62, 0.1);
  --shadow: 7px 7px 0 var(--ink);
  --shell: 1220px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink-soft);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  font: inherit;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 em,
h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.065em;
}

h1 {
  font-size: clamp(4.2rem, 5.6vw, 5rem);
}

h2 {
  font-size: clamp(3.2rem, 6vw, 5.8rem);
}

h3 {
  font-size: clamp(2rem, 3.3vw, 3.3rem);
}

.shell {
  width: min(calc(100% - 56px), var(--shell));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 300;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(244, 240, 232, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line-soft);
  background: rgba(255, 253, 247, 0.95);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  text-decoration: none;
}

.brand img {
  width: 31px;
  height: 36px;
}

.main-navigation,
.legal-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-navigation a,
.legal-nav a {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.main-navigation a:not(.nav-cta) {
  position: relative;
}

.main-navigation a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-navigation a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.main-navigation .nav-cta {
  padding: 10px 17px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
  transition: box-shadow 150ms ease, transform 150ms ease;
}

.main-navigation .nav-cta:hover {
  box-shadow: 1px 1px 0 var(--ink);
  transform: translate(2px, 2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 17px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 160ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-last-child(2) {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 880px;
  padding: calc(var(--header-height) + 78px) 0 105px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16px 16px, rgba(23, 49, 62, 0.07) 1.5px, transparent 1.7px),
    var(--paper);
  background-size: 32px 32px;
}

.hero::before {
  position: absolute;
  top: 14%;
  right: -15%;
  width: 55%;
  aspect-ratio: 1;
  border: 3px solid rgba(77, 135, 164, 0.18);
  border-radius: 50%;
  content: "";
}

.hero-scribble {
  position: absolute;
  pointer-events: none;
}

.hero-scribble-one {
  top: 127px;
  left: -56px;
  width: 180px;
  height: 62px;
  border-top: 5px solid var(--coral);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.hero-scribble-two {
  right: 40%;
  bottom: 65px;
  width: 96px;
  height: 96px;
  background: var(--yellow);
  clip-path: polygon(50% 0, 62% 33%, 100% 50%, 64% 62%, 50% 100%, 38% 64%, 0 50%, 36% 36%);
  opacity: 0.45;
  transform: rotate(16deg);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(480px, 0.86fr);
  gap: clamp(55px, 7vw, 100px);
  align-items: center;
}

.hero-copy {
  padding-top: 15px;
}

.sticker {
  display: inline-block;
  width: fit-content;
  padding: 8px 13px 7px;
  margin-bottom: 28px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1.2;
  text-transform: uppercase;
  transform: rotate(-1.6deg);
}

.sticker-blue {
  background: var(--blue);
}

.sticker-yellow {
  background: var(--yellow);
}

.sticker-white {
  background: var(--paper-light);
}

.sticker-coral {
  background: var(--coral);
}

.hero h1 {
  max-width: 790px;
  margin-bottom: 32px;
}

.hero h1 em {
  position: relative;
  color: var(--quartz-dark);
}

.hero h1 em::after {
  position: absolute;
  right: -3px;
  bottom: -7px;
  left: 2px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
  opacity: 0.85;
  transform: rotate(-1deg);
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 35px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.65vw, 1.3rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 13px 21px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 800;
  text-decoration: none;
  transition: box-shadow 150ms ease, transform 150ms ease;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--coral);
}

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

.text-link {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.text-link span {
  display: inline-block;
  margin-left: 7px;
  color: var(--quartz);
}

.business-loop {
  position: relative;
  width: min(100%, 555px);
  aspect-ratio: 0.96;
  margin-inline: auto;
}

.loop-orbit {
  position: absolute;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.loop-orbit-one {
  inset: 11% 6% 10% 7%;
  transform: rotate(11deg);
}

.loop-orbit-two {
  inset: 24% 18% 23% 17%;
  border-color: var(--quartz);
  border-style: dashed;
  transform: rotate(-14deg);
}

.loop-center {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 190px;
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 9px 9px 0 var(--ink);
  transform: translate(-50%, -50%);
}

.loop-center img {
  width: 70px;
}

.loop-center span {
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.loop-note {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 150px;
  gap: 2px;
  padding: 14px 16px;
  border: 2px solid var(--ink);
  background: var(--paper-light);
  box-shadow: 5px 5px 0 var(--ink);
}

.loop-note small {
  color: var(--ink-muted);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.loop-note strong {
  color: var(--ink);
  font-size: 0.83rem;
  letter-spacing: -0.025em;
}

.loop-note > span:not(.loop-check) {
  color: var(--ink-muted);
  font-size: 0.63rem;
}

.loop-note-client {
  top: 5%;
  left: 4%;
  border-radius: 7px 21px 7px 7px;
  background: var(--blue);
  transform: rotate(-5deg);
}

.loop-note-order {
  top: 20%;
  right: -1%;
  grid-template-columns: 28px 1fr;
  align-items: center;
  border-radius: 999px;
  background: var(--coral);
  transform: rotate(4deg);
}

.loop-check {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper-light);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
}

.loop-note-stock {
  right: 0;
  bottom: 10%;
  border-radius: 5px;
  background: var(--mint);
  transform: rotate(-4deg);
}

.loop-note-invoice {
  bottom: 4%;
  left: 2%;
  border-radius: 5px;
  background: var(--lilac);
  transform: rotate(5deg);
}

.loop-shape {
  position: absolute;
  z-index: 1;
}

.loop-shape-coral {
  top: 12%;
  left: 46%;
  width: 24px;
  height: 24px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--coral);
}

.loop-shape-yellow {
  right: 12%;
  bottom: 41%;
  width: 28px;
  height: 28px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  transform: rotate(21deg);
}

.loop-shape-lilac {
  bottom: 23%;
  left: 10%;
  width: 35px;
  height: 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--lilac);
  transform: rotate(-25deg);
}

.ticker {
  position: relative;
  z-index: 5;
  width: 100%;
  margin: -21px 0 0;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--quartz);
  color: var(--white);
}

.ticker-track {
  display: flex;
  min-width: max-content;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 48px);
  padding: 17px 28px 15px;
  margin-inline: auto;
}

.ticker span {
  font-size: clamp(0.78rem, 1.5vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ticker i {
  color: var(--yellow);
  font-style: normal;
}

.section {
  position: relative;
  padding: clamp(105px, 12vw, 170px) 0;
}

.kicker {
  margin-bottom: 23px;
  color: var(--quartz-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story {
  background: var(--paper-light);
}

.story-heading {
  display: grid;
  max-width: 990px;
  grid-template-columns: 1.2fr 0.55fr;
  column-gap: 90px;
  margin-bottom: 88px;
}

.story-heading .kicker {
  grid-column: 1 / -1;
}

.story-heading h2 {
  margin-bottom: 0;
}

.story-heading h2 span {
  position: relative;
  color: var(--quartz);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
}

.story-heading h2 span::after {
  position: absolute;
  right: -25px;
  bottom: 3px;
  width: 28px;
  height: 28px;
  background: var(--yellow);
  clip-path: polygon(50% 0, 62% 35%, 100% 50%, 64% 62%, 50% 100%, 38% 64%, 0 50%, 36% 36%);
  content: "";
}

.story-heading > p:last-child {
  align-self: end;
  margin-bottom: 8px;
  color: var(--ink-muted);
  font-size: 1rem;
}

.story-board {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.08fr);
  gap: clamp(55px, 8vw, 110px);
  align-items: center;
}

.story-quote {
  position: relative;
  padding: clamp(38px, 5vw, 60px);
  border: 2px solid var(--ink);
  border-radius: 9px 40px 9px 9px;
  background: var(--blue);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.quote-mark {
  position: absolute;
  top: -25px;
  left: 25px;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
  text-shadow: 2px 2px 0 var(--ink);
}

.story-quote p {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.7vw, 2.35rem);
  font-style: italic;
  line-height: 1.25;
}

.story-quote small {
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 750;
}

.story-steps {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-steps::before {
  position: absolute;
  top: 33px;
  bottom: 33px;
  left: 16px;
  width: 3px;
  background: var(--ink);
  content: "";
}

.story-steps li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 25px;
  padding: 22px 0;
}

.story-dot {
  display: block;
  width: 34px;
  height: 34px;
  margin-top: 2px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 3px 3px 0 var(--ink);
}

.dot-coral {
  background: var(--coral);
}

.dot-yellow {
  background: var(--yellow);
}

.dot-lilac {
  background: var(--lilac);
}

.dot-blue {
  background: var(--blue);
}

.story-steps strong {
  color: var(--ink);
  font-size: 1.12rem;
  letter-spacing: -0.025em;
}

.story-steps p {
  margin: 6px 0 0;
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.playground {
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(23, 49, 62, 0.045) 50%, transparent 50.1%),
    var(--paper);
}

.playground-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) 1fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 80px;
}

.playground-heading .sticker {
  margin-top: 10px;
}

.playground-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.activity {
  position: relative;
  min-height: 430px;
  padding: clamp(32px, 5vw, 54px);
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.activity:nth-child(1) {
  border-radius: 9px 55px 9px 9px;
  transform: rotate(-1deg);
}

.activity:nth-child(2) {
  border-radius: 55px 9px 9px 9px;
  transform: rotate(1deg);
}

.activity:nth-child(3) {
  border-radius: 9px 9px 55px 9px;
  transform: rotate(0.8deg);
}

.activity:nth-child(4) {
  border-radius: 9px 9px 9px 55px;
  transform: rotate(-0.8deg);
}

.activity:hover {
  box-shadow: 3px 3px 0 var(--ink);
  transform: translate(4px, 4px);
}

.activity-coral {
  background: var(--coral);
}

.activity-yellow {
  background: var(--yellow);
}

.activity-lilac {
  background: var(--lilac);
}

.activity-blue {
  background: var(--blue);
}

.activity-label {
  margin-bottom: 60px;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.activity h3 {
  max-width: 520px;
  margin-bottom: 28px;
}

.activity > p:not(.activity-label) {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 580;
}

.activity-arrow {
  position: absolute;
  top: 32px;
  right: 34px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 3.6rem;
  line-height: 1;
}

.activity-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: center;
  padding-top: 68px;
}

.activity-foot p,
.activity-foot span {
  margin: 0;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.activity-foot span {
  color: var(--coral);
}

.e-invoice {
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: var(--quartz);
}

.e-invoice::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.17) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  content: "";
}

.invoice-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(430px, 0.82fr) minmax(0, 1fr);
  gap: clamp(70px, 9vw, 135px);
  align-items: center;
}

.invoice-visual {
  position: relative;
  min-height: 600px;
}

.invoice-paper {
  position: absolute;
  top: 50%;
  left: 48%;
  width: min(78%, 380px);
  min-height: 475px;
  padding: 42px 36px;
  border: 3px solid var(--ink);
  background: var(--paper-light);
  box-shadow: 12px 12px 0 var(--ink);
  transform: translate(-50%, -50%) rotate(-5deg);
}

.paper-head,
.paper-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.paper-head {
  padding-bottom: 24px;
  margin-bottom: 42px;
  border-bottom: 3px solid var(--ink);
}

.paper-head span {
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.paper-head strong {
  color: var(--coral);
  font-size: 1.05rem;
}

.paper-line {
  width: 65%;
  height: 9px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(23, 49, 62, 0.17);
}

.paper-line-long {
  width: 100%;
}

.paper-line-short {
  width: 43%;
}

.paper-total {
  padding-top: 26px;
  margin-top: 65px;
  border-top: 2px solid var(--ink);
  color: var(--ink);
}

.paper-total span {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.paper-total strong {
  font-size: 1.5rem;
}

.paper-stamp {
  position: absolute;
  right: -32px;
  bottom: 44px;
  padding: 9px 14px;
  border: 3px solid var(--coral);
  color: var(--coral);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  transform: rotate(-9deg);
}

.invoice-choice {
  position: absolute;
  z-index: 3;
  right: -4%;
  bottom: 4%;
  display: grid;
  gap: 9px;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 13px;
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(4deg);
}

.invoice-choice span {
  padding: 8px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
}

.choice-accept {
  background: var(--mint);
}

.choice-refuse {
  background: var(--coral);
}

.invoice-spark {
  position: absolute;
  color: var(--yellow);
  font-size: 4rem;
  text-shadow: 2px 2px 0 var(--ink);
}

.spark-one {
  top: 3%;
  right: 2%;
}

.spark-two {
  bottom: 12%;
  left: 1%;
  font-size: 2.3rem;
}

.invoice-copy .sticker {
  margin-bottom: 32px;
}

.invoice-copy h2 {
  margin-bottom: 30px;
  color: var(--white);
}

.invoice-copy h2 em {
  color: var(--yellow);
}

.invoice-copy > p:not(.sticker) {
  max-width: 670px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.invoice-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.invoice-copy li {
  padding: 8px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper-light);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  box-shadow: 2px 2px 0 var(--ink);
}

.approach {
  background: var(--paper-light);
}

.approach-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.72fr);
  gap: clamp(70px, 10vw, 145px);
  align-items: start;
}

.approach-title h2 {
  max-width: 750px;
}

.approach-intro {
  margin: 4px 0 55px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
  font-style: italic;
  line-height: 1.45;
}

.approach-list {
  display: grid;
  border-top: 2px solid var(--ink);
}

.approach-list > div {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 25px;
  padding: 22px 0;
  border-bottom: 2px solid var(--ink);
}

.approach-list strong {
  color: var(--ink);
  font-size: 0.84rem;
}

.approach-list span {
  color: var(--ink-muted);
  font-size: 0.82rem;
}

.closing {
  position: relative;
  min-height: 650px;
  padding: clamp(110px, 13vw, 175px) 0;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background:
    linear-gradient(110deg, transparent 65%, rgba(255, 255, 255, 0.22) 65.2%, transparent 65.4%),
    var(--yellow);
}

.closing::after {
  position: absolute;
  right: 5%;
  bottom: -90px;
  width: 290px;
  height: 290px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.closing-mark {
  position: absolute;
  top: 50%;
  right: 8%;
  z-index: 2;
  display: grid;
  width: 290px;
  height: 290px;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--paper-light);
  box-shadow: 12px 12px 0 var(--ink);
  transform: translateY(-50%) rotate(7deg);
}

.closing-mark img {
  width: 135px;
}

.closing-inner {
  position: relative;
  z-index: 3;
}

.closing-inner h2 {
  max-width: 830px;
  margin-bottom: 30px;
}

.closing-inner > p:not(.sticker) {
  max-width: 600px;
  margin-bottom: 35px;
  color: var(--ink);
  font-size: 1.03rem;
}

.site-footer {
  padding: 75px 0 24px;
  background: var(--paper);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand p {
  max-width: 330px;
  margin: 18px 0 0;
  color: var(--ink-muted);
  font-size: 0.78rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 60px;
}

.footer-links > div {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer-links strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 0.69rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--ink-muted);
  font-size: 0.74rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--quartz);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.68rem;
}

.footer-bottom a {
  text-decoration: none;
}

.inner-page {
  background: var(--paper-light);
}

.legal-hero {
  padding: calc(var(--header-height) + 95px) 0 82px;
  border-bottom: 2px solid var(--ink);
  background:
    radial-gradient(circle at 86% 24%, var(--yellow) 0 7%, transparent 7.2%),
    var(--quartz);
}

.legal-hero-inner {
  max-width: 850px;
}

.legal-hero .eyebrow {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-hero .eyebrow span {
  display: inline-block;
  width: 28px;
  height: 2px;
  margin-right: 10px;
  background: var(--yellow);
  vertical-align: middle;
}

.legal-hero h1 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(3.4rem, 7vw, 6rem);
}

.legal-hero p:not(.eyebrow) {
  max-width: 630px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: clamp(55px, 9vw, 120px);
  justify-content: center;
  padding-top: 90px;
  padding-bottom: 130px;
}

.legal-aside {
  position: sticky;
  top: calc(var(--header-height) + 35px);
  display: grid;
  height: fit-content;
  gap: 9px;
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
}

.legal-aside strong {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.75rem;
}

.legal-aside a {
  color: var(--ink);
  font-size: 0.73rem;
  text-decoration: none;
}

.legal-aside a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-content {
  min-width: 0;
}

.legal-content section {
  padding: 0 0 42px;
  margin: 0 0 42px;
  border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
  margin-bottom: 0;
}

.legal-content h2 {
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.1;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.legal-content a {
  color: var(--quartz-dark);
  text-underline-offset: 3px;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-meta {
  margin-top: 28px;
  color: var(--ink-muted) !important;
  font-size: 0.7rem !important;
}

.simple-footer {
  padding-top: 24px;
}

@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.82fr);
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 7.2vw, 5.8rem);
  }

  .business-loop {
    transform: scale(0.93);
  }

  .story-board {
    grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1fr);
    gap: 65px;
  }

  .invoice-layout {
    grid-template-columns: minmax(390px, 0.8fr) 1fr;
    gap: 65px;
  }

  .closing-mark {
    right: 4%;
    width: 240px;
    height: 240px;
  }

  .closing-mark img {
    width: 110px;
  }
}

@media (max-width: 899px) {
  :root {
    --header-height: 70px;
  }

  .shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .menu-toggle {
    display: block;
  }

  .main-navigation {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    left: 18px;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 2px solid var(--ink);
    border-radius: 10px;
    background: var(--paper-light);
    box-shadow: 5px 5px 0 var(--ink);
  }

  .main-navigation.is-open {
    display: grid;
  }

  .main-navigation a {
    padding: 12px 13px;
  }

  .main-navigation a:not(.nav-cta)::after {
    display: none;
  }

  .main-navigation .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 72px);
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    font-size: clamp(4.4rem, 12vw, 6.2rem);
  }

  .business-loop {
    width: min(100%, 570px);
    transform: none;
  }

  .story-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .story-heading > p:last-child {
    max-width: 600px;
  }

  .story-board {
    grid-template-columns: 1fr;
  }

  .story-quote {
    max-width: 620px;
  }

  .playground-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .playground-heading .sticker {
    margin-top: 0;
  }

  .activity {
    min-height: 390px;
  }

  .invoice-layout {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .invoice-visual {
    width: min(100%, 570px);
    margin-inline: auto;
  }

  .invoice-copy {
    max-width: 740px;
  }

  .approach-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .approach-intro {
    max-width: 700px;
  }

  .closing-mark {
    right: -70px;
    opacity: 0.32;
  }

  .closing-inner h2 {
    max-width: 700px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .legal-aside {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .legal-aside strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .brand {
    font-size: 1.35rem;
  }

  .hero {
    padding-top: calc(var(--header-height) + 55px);
    padding-bottom: 80px;
  }

  .hero-scribble-one {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 15.5vw, 4.6rem);
  }

  .hero h1 em::after {
    height: 5px;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    justify-items: start;
  }

  .business-loop {
    height: 465px;
    aspect-ratio: auto;
  }

  .loop-orbit-one {
    inset: 9% 2% 9% 2%;
  }

  .loop-orbit-two {
    inset: 22% 15% 21%;
  }

  .loop-center {
    width: 145px;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .loop-center img {
    width: 54px;
  }

  .loop-note {
    min-width: 126px;
    padding: 11px 12px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .loop-note-client {
    top: 3%;
    left: 0;
  }

  .loop-note-order {
    top: 18%;
    right: -2%;
  }

  .loop-note-stock {
    right: -1%;
    bottom: 7%;
  }

  .loop-note-invoice {
    bottom: 1%;
    left: 0;
  }

  .ticker-track {
    justify-content: flex-start;
    gap: 20px;
  }

  .section {
    padding: 88px 0;
  }

  .story-heading {
    margin-bottom: 58px;
  }

  .story-heading h2,
  .playground-heading h2,
  .approach-title h2 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .story-heading h2 span::after {
    right: -18px;
    width: 21px;
    height: 21px;
  }

  .story-quote {
    padding: 42px 28px 32px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .quote-mark {
    top: -18px;
    font-size: 6rem;
  }

  .story-steps li {
    gap: 18px;
  }

  .activity-grid {
    grid-template-columns: 1fr;
  }

  .activity {
    min-height: 350px;
    padding: 32px 27px;
  }

  .activity-label {
    margin-bottom: 72px;
  }

  .activity h3 {
    font-size: clamp(2.3rem, 11vw, 3rem);
  }

  .activity-foot {
    justify-content: flex-start;
  }

  .invoice-visual {
    min-height: 500px;
  }

  .invoice-paper {
    left: 45%;
    width: 82%;
    min-height: 410px;
    padding: 32px 25px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .paper-head {
    margin-bottom: 34px;
  }

  .paper-head span {
    font-size: 1.08rem;
  }

  .paper-total {
    margin-top: 50px;
  }

  .paper-stamp {
    right: -24px;
    bottom: 38px;
  }

  .invoice-choice {
    right: -1%;
    bottom: 0;
  }

  .invoice-copy h2 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .approach-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .closing {
    min-height: auto;
    padding: 95px 0;
  }

  .closing-inner h2 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .closing-mark {
    top: auto;
    right: -95px;
    bottom: -110px;
    width: 230px;
    height: 230px;
    transform: rotate(7deg);
  }

  .closing::after {
    display: none;
  }

  .footer-main {
    padding-bottom: 45px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .legal-nav a:first-child {
    display: none;
  }

  .legal-hero {
    padding-top: calc(var(--header-height) + 65px);
  }

  .legal-layout {
    padding-top: 60px;
    padding-bottom: 90px;
  }

  .legal-aside {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
