@font-face {
  font-family: Bricolage;
  src: url("assets/fonts/bricolage-semibold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("assets/fonts/manrope-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("assets/fonts/manrope-semibold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
:root {
  --paper: #fff;
  --ink: #18243a;
  --cobalt: #2449d8;
  --cobalt-hover: #1b37a4;
  --pencil: #ffd65a;
  --pencil-hover: #f6cb48;
  --muted: #59657a;
  --line: #cfd7e7;
  --wash: #f1f4fc;
  --radius: 6px;
  color-scheme: light;
}
* {
  box-sizing: border-box;
  scrollbar-color: var(--muted) var(--wash);
  scrollbar-width: thin;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
  scrollbar-gutter: stable;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    400 16px/1.65 Manrope,
    system-ui,
    sans-serif;
  border-top: 7px solid var(--cobalt);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
button,
input {
  font: inherit;
}
button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
summary {
  cursor: pointer;
}
a,
button,
input,
summary {
  touch-action: manipulation;
}
a:hover {
  color: var(--cobalt);
}
:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 5px;
}
button {
  color: var(--ink);
}
[hidden] {
  display: none !important;
}
::selection {
  background: var(--pencil);
  color: var(--ink);
}
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
*::-webkit-scrollbar-track {
  background: var(--wash);
}
*::-webkit-scrollbar-thumb {
  background: var(--muted);
  border: 2px solid var(--wash);
  border-radius: 3px;
}
*::-webkit-scrollbar-thumb:hover {
  background: var(--ink);
}
h1,
h2,
h3,
.wordmark {
  font-family: Bricolage, system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.045em;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}
h3 {
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
p {
  max-width: 65ch;
}
.wrap {
  width: min(1240px, calc(100% - 96px));
  margin-inline: auto;
}
.section-space {
  padding-block: 108px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--cobalt);
  line-height: 1.6;
}
.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;
  top: 12px;
  left: 12px;
  z-index: 10;
  background: var(--pencil);
  padding: 12px 20px;
  transform: translateY(-180%);
  font-weight: 600;
}
.skip-link:focus {
  transform: none;
}
.site-header {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  font-size: 35px;
  letter-spacing: -0.06em;
  text-decoration: none;
  color: var(--cobalt);
  line-height: 1.2;
  display: inline-flex;
  align-items: baseline;
  min-height: 44px;
}
.wordmark span {
  color: var(--ink);
}
.site-header nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}
.site-header nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-header nav a:hover {
  text-decoration: underline;
}
.nav-status {
  gap: 20px;
  border-bottom: 2px solid var(--cobalt);
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: center;
  padding-block: 58px 50px;
}
.hero-copy {
  padding-bottom: 20px;
}
.hero .eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  letter-spacing: 0.09em;
}
.cross {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}
h1 {
  font-size: clamp(72px, 7.8vw, 108px);
  line-height: 0.97;
  color: var(--cobalt);
  margin-block: 28px 30px;
  letter-spacing: -0.06em;
}
.pencil-line {
  position: relative;
  isolation: isolate;
  white-space: nowrap;
}
.pencil-line:after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 13px;
  background: var(--pencil);
  z-index: -1;
  transform: rotate(-2deg);
}
.intro {
  font-size: 18px;
  line-height: 1.7;
  max-width: 390px;
}
.button {
  display: inline-flex;
  gap: 25px;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  transition: background 0.16s;
}
.button span {
  font-size: 23px;
  line-height: 1;
}
.primary {
  background: var(--pencil);
  color: var(--ink);
}
.primary:hover {
  background: var(--pencil-hover);
  color: var(--ink);
}
.hero .button {
  margin-top: 28px;
}
.release-note {
  font-size: 12px;
  line-height: 1.65;
  margin-top: 18px;
  color: var(--muted);
}
.example {
  min-width: 0;
  scroll-margin-top: 32px;
}
.example-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  margin-bottom: 12px;
}
.example-stamp {
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.drawing-sheet {
  position: relative;
  border: 1px solid var(--line);
  padding: 20px 24px 14px;
  background: var(--paper);
}
.drawing-sheet:before,
.drawing-sheet:after {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 23px;
  height: 23px;
  border-color: var(--cobalt);
  border-style: solid;
}
.drawing-sheet:before {
  top: -1px;
  left: -1px;
  border-width: 3px 0 0 3px;
}
.drawing-sheet:after {
  bottom: -1px;
  right: -1px;
  border-width: 0 3px 3px 0;
}
.sheet-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 11px;
}
.sheet-caption > span:last-child {
  font-size: 8px;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.artwork {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin: auto;
  aspect-ratio: 700/850;
}
.artwork img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.outline-art {
  background: var(--paper);
  clip-path: inset(0 0 0 50%);
}
.comparison-rule {
  position: absolute;
  inset: 5% auto 6% 50%;
  width: 1px;
  background: var(--cobalt);
  pointer-events: none;
}
.comparison-rule span {
  position: absolute;
  top: 48%;
  left: 0;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 1px solid var(--cobalt);
  color: var(--cobalt);
  border-radius: 50%;
  width: 27px;
  height: 27px;
  font-size: 15px;
}
.drawing-sheet[data-view="source"] .outline-art,
.drawing-sheet:not([data-view="compare"]) .comparison-rule {
  display: none;
}
.drawing-sheet[data-view="outline"] .source-art {
  visibility: hidden;
}
.drawing-sheet[data-view="outline"] .outline-art {
  clip-path: none;
}
.drawing-sheet figcaption {
  font-size: 10px;
  text-align: center;
  color: var(--muted);
  margin-top: 4px;
}
.view-controls {
  border: 0;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  background: var(--wash);
  border-radius: var(--radius);
}
.view-controls label {
  flex: 1;
  position: relative;
  min-width: 0;
}
.view-controls input {
  position: absolute;
  opacity: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.view-controls label span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid transparent;
}
.view-controls input:checked + span {
  background: var(--cobalt);
  color: var(--paper);
}
.view-controls input:focus-visible + span {
  outline: 3px solid var(--cobalt);
  outline-offset: 4px;
}
.view-controls input:hover:not(:checked) + span {
  border-color: var(--cobalt);
}
.example-note {
  text-align: center;
  font-size: 10px;
  color: var(--muted);
  margin-top: 10px;
}
.principles {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 25px;
  border-block: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
}
.principles p {
  display: flex;
  gap: 10px;
  align-items: center;
}
.principles span {
  color: var(--cobalt);
  font-size: 20px;
  line-height: 1;
}
.section-heading .eyebrow,
.practice-heading .eyebrow,
.questions-intro .eyebrow,
.availability .eyebrow {
  margin-bottom: 18px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
  margin-top: 48px;
}
.step-number {
  font-family: Bricolage, system-ui, sans-serif;
  color: var(--cobalt);
  font-size: 15px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}
.step-number span {
  font-size: 28px;
  line-height: 1;
}
.step h3 {
  margin-bottom: 16px;
}
.step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.photo-tip {
  margin-top: 42px;
  background: var(--wash);
  padding: 21px 24px;
  display: flex;
  gap: 28px;
  align-items: center;
  border-radius: 4px;
  font-size: 13px;
}
.tip-label {
  font-weight: 600;
  white-space: nowrap;
  color: var(--cobalt);
}
.photo-tip p {
  max-width: 85ch;
}
.manifesto {
  background: var(--cobalt);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.manifesto-inner {
  position: relative;
  padding-block: 74px 78px;
}
.manifesto .eyebrow {
  color: var(--paper);
  opacity: 0.8;
  margin-bottom: 26px;
}
.manifesto h2 {
  font-size: clamp(36px, 4.6vw, 62px);
  max-width: 950px;
  position: relative;
  z-index: 1;
  line-height: 1.12;
}
.manifesto h2 span {
  color: var(--pencil);
}
.manifesto p:last-of-type {
  margin-top: 28px;
  font-size: 15px;
  line-height: 1.8;
}
.drawn-loop {
  position: absolute;
  right: -23px;
  bottom: 45px;
  width: 210px;
  height: 120px;
  border: 3px solid var(--pencil);
  border-radius: 48% 52% 45% 55%;
  transform: rotate(-28deg);
  opacity: 0.85;
}
.drawn-loop:after {
  content: "";
  position: absolute;
  width: 130px;
  height: 80px;
  border: 2px solid var(--pencil);
  border-radius: 50%;
  top: 17px;
  left: 35px;
  transform: rotate(30deg);
}
.practice-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 38px;
}
.practice-heading > p {
  color: var(--muted);
  font-size: 13px;
  max-width: 325px;
}
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.practice-card {
  min-width: 0;
}
.practice-image {
  display: block;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--wash);
}
.practice-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 700/680;
  object-fit: contain;
  background: var(--paper);
}
.practice-image > span {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: grid;
  place-items: center;
  background: var(--pencil);
  width: 38px;
  height: 38px;
  font-size: 22px;
  border-radius: 50%;
}
.practice-image:hover {
  border-color: var(--cobalt);
}
.practice-info {
  padding-top: 22px;
}
.practice-info .eyebrow {
  font-size: 10px;
  margin-bottom: 8px;
}
.practice-info h3 {
  font-size: 27px;
}
.practice-info > p:not(.eyebrow) {
  font-size: 12px;
  color: var(--muted);
  margin: 7px 0 14px;
}
.practice-info button {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border: 0;
  border-block: 1px solid var(--line);
  background: var(--paper);
  min-height: 48px;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}
.practice-info button:hover {
  color: var(--cobalt);
  background: var(--wash);
}
.practice-info button span {
  font-size: 21px;
}
.practice-info > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
}
.file-type {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.practice-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 24px;
}
.questions {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
}
.questions-intro > p:last-child {
  font-size: 14px;
  color: var(--muted);
  margin-top: 24px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  font-size: 14px;
  font-weight: 600;
  padding-block: 20px;
}
summary::-webkit-details-marker {
  display: none;
}
summary:hover {
  color: var(--cobalt);
}
summary > span {
  font-size: 23px;
  line-height: 1;
  font-weight: 400;
  color: var(--cobalt);
}
details[open] summary > span {
  transform: rotate(45deg);
}
.answer {
  padding: 0 32px 26px 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}
.answer p + p {
  margin-top: 14px;
}
.availability {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  background: var(--wash);
  padding: 52px 48px;
  border-radius: 4px;
  border-left: 4px solid var(--cobalt);
}
.availability h2 {
  font-size: 45px;
}
.availability p:last-child {
  font-size: 13px;
  color: var(--muted);
  margin-top: 24px;
}
.availability .button {
  flex-shrink: 0;
}
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 160px;
  padding-block: 40px;
}
.site-footer .wordmark {
  font-size: 30px;
  align-items: center;
}
.site-footer p,
.site-footer > a:last-child {
  font-size: 11px;
}
.site-footer > a:last-child {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 1600px) {
  .hero {
    padding-block: 70px;
  }
  .artwork {
    max-width: 380px;
  }
}
@media (max-width: 1050px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero {
    gap: 34px;
  }
  h1 {
    font-size: 76px;
  }
  .hero .eyebrow {
    font-size: 10px;
  }
  .intro {
    font-size: 16px;
  }
  .example-stamp {
    display: none;
  }
  .steps {
    gap: 28px;
  }
  .questions {
    gap: 42px;
  }
  .drawn-loop {
    right: 5px;
    width: 160px;
    opacity: 0.5;
  }
  .availability {
    padding: 40px 32px;
  }
  .availability h2 {
    font-size: 39px;
  }
  .practice-heading {
    display: block;
  }
  .practice-heading > p {
    margin-top: 20px;
  }
  .principles {
    font-size: 10px;
    gap: 14px;
  }
}
@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    min-height: 84px;
    gap: 0;
    flex-wrap: wrap;
    padding-block: 10px 8px;
  }
  .wordmark {
    font-size: 29px;
    align-items: center;
  }
  .site-header nav {
    width: 100%;
    justify-content: space-between;
    gap: 18px;
    font-size: 11px;
  }
  .nav-status {
    gap: 10px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-block: 44px 30px;
  }
  .hero-copy {
    padding-bottom: 0;
  }
  .hero .eyebrow {
    font-size: 10px;
  }
  h1 {
    font-size: clamp(62px, 12.7vw, 88px);
    margin-block: 22px 24px;
    line-height: 1;
  }
  .intro {
    max-width: 450px;
    font-size: 16px;
  }
  .hero .button {
    margin-top: 24px;
  }
  .release-note {
    max-width: 270px;
    font-size: 11px;
    margin-top: 16px;
  }
  .example {
    width: 100%;
    max-width: 500px;
    justify-self: center;
  }
  .example-heading {
    font-size: 11px;
  }
  .example-stamp {
    display: block;
    font-size: 8px;
  }
  .drawing-sheet {
    padding: 20px 20px 13px;
  }
  .artwork {
    max-width: 330px;
  }
  .example-note {
    font-size: 9px;
  }
  .principles {
    flex-direction: column;
    gap: 10px;
    padding-block: 20px;
    font-size: 11px;
  }
  .principles span {
    font-size: 18px;
  }
  .section-space {
    padding-block: 64px;
  }
  h2 {
    font-size: 36px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 34px;
  }
  .step-number {
    margin-bottom: 17px;
  }
  .step h3 {
    font-size: 26px;
  }
  .step h3 br {
    display: none;
  }
  .step p {
    font-size: 14px;
    max-width: 52ch;
  }
  .photo-tip {
    align-items: start;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    margin-top: 30px;
  }
  .manifesto-inner {
    padding-block: 56px;
  }
  .manifesto h2 {
    font-size: 38px;
    line-height: 1.1;
  }
  .manifesto h2 br {
    display: none;
  }
  .manifesto p:last-of-type {
    font-size: 13px;
    margin-top: 24px;
  }
  .drawn-loop {
    display: none;
  }
  .practice-heading {
    margin-bottom: 28px;
  }
  .practice-heading > p {
    font-size: 13px;
  }
  .practice-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .practice-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
    align-items: center;
  }
  .practice-image img {
    aspect-ratio: 700/900;
  }
  .practice-image > span {
    width: 30px;
    height: 30px;
    font-size: 18px;
    bottom: 10px;
    right: 10px;
  }
  .practice-info {
    padding-top: 0;
  }
  .practice-info h3 {
    font-size: 25px;
  }
  .practice-info > p:not(.eyebrow) {
    font-size: 11px;
  }
  .practice-info button {
    font-size: 12px;
  }
  .practice-info .eyebrow {
    font-size: 8px;
  }
  .practice-note {
    margin-top: 28px;
  }
  .questions {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .questions-intro h2 br {
    display: none;
  }
  .questions-intro > p:last-child {
    display: none;
  }
  summary {
    font-size: 13px;
    min-height: 72px;
    gap: 15px;
  }
  .answer {
    padding-right: 8px;
  }
  .availability {
    flex-direction: column;
    align-items: start;
    padding: 32px 24px;
    gap: 28px;
  }
  .availability h2 {
    font-size: 36px;
  }
  .availability p:last-child {
    margin-top: 18px;
  }
  .availability .button {
    font-size: 13px;
  }
  .site-footer {
    flex-wrap: wrap;
    min-height: 160px;
    gap: 12px;
    padding-block: 36px;
  }
  .site-footer .wordmark {
    font-size: 28px;
  }
  .site-footer p {
    order: 3;
    flex-basis: 100%;
    font-size: 10px;
  }
  .site-footer > a:last-child {
    font-size: 10px;
  }
}
@media (max-width: 359px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .site-header nav {
    gap: 10px;
    font-size: 10px;
  }
  .wordmark {
    font-size: 26px;
  }
  h1 {
    font-size: 61px;
  }
  .hero .eyebrow {
    font-size: 8px;
  }
  .hero .button {
    font-size: 12px;
    padding-inline: 16px;
    gap: 16px;
  }
  .sheet-caption > span:last-child {
    font-size: 7px;
  }
  .practice-card {
    gap: 14px;
    grid-template-columns: 1fr 1.25fr;
  }
  .practice-info h3 {
    font-size: 23px;
  }
  .practice-info button {
    font-size: 11px;
  }
  .practice-info > a {
    font-size: 10px;
  }
  .availability {
    padding: 28px 20px;
  }
  .availability h2 {
    font-size: 32px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
@media (forced-colors: active) {
  * {
    scrollbar-color: auto;
  }
  .view-controls input:checked + span {
    border: 2px solid Highlight;
  }
  .view-controls input:focus-visible + span,
  :focus-visible {
    outline-color: Highlight;
  }
  .pencil-line:after,
  .drawn-loop {
    display: none;
  }
  .practice-image > span {
    border: 1px solid ButtonText;
  }
}
.example-error {
  font-size: 12px;
  color: var(--ink);
  background: var(--wash);
  border-left: 3px solid var(--cobalt);
  padding: 12px;
  margin-top: 12px;
}
@media (min-width: 761px) and (max-width: 900px) {
  h1 {
    font-size: 65px;
  }
}
