:root {
  --ink: #0b0b0b;
  --ink-soft: #24211d;
  --paper: #fffaf0;
  --paper-2: #fff3d6;
  --white: #ffffff;
  --orange: #ff6a00;
  --orange-deep: #de4f00;
  --yellow: #ffd84d;
  --yellow-soft: #fff0a6;
  --line: rgba(11, 11, 11, 0.16);
  --muted: #675e52;
  --max: 1200px;
  --shadow: 0 24px 70px rgba(19, 12, 4, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(11, 11, 11, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 11, 11, 0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 99;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(255, 250, 240, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 36px), var(--max));
  min-height: 76px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-menu,
.nav-actions {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-menu a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #4d463d;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 216, 77, 0.5);
}

.nav-actions {
  gap: 10px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  font-size: 1.2rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  padding: 0 19px;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-orange {
  color: var(--ink);
  background: var(--orange);
  box-shadow: 4px 4px 0 var(--ink);
}

.button-yellow {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
}

.button-ghost {
  border-color: transparent;
  background: transparent;
}

.button-outline {
  background: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 96px;
}

.hero::after {
  position: absolute;
  top: 34px;
  right: -110px;
  z-index: -1;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  content: "";
  background: var(--yellow);
  filter: blur(1px);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 20px;
  padding: 7px 11px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--orange);
}

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

h1,
h2,
h3 {
  letter-spacing: -0.055em;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 7.2vw, 6.8rem);
  line-height: 0.92;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(3.5rem, 4.3vw, 4.75rem);
}

.ink-swipe {
  position: relative;
  z-index: 0;
  white-space: nowrap;
}

.ink-swipe::after {
  position: absolute;
  right: -3px;
  bottom: 0.06em;
  left: -3px;
  z-index: -1;
  height: 0.23em;
  content: "";
  background: var(--orange);
  transform: rotate(-1.2deg);
}

.hero-lede,
.page-lede {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.microcopy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.canvas-demo {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 28px;
  background-color: #181818;
  background-image:
    radial-gradient(
      circle at 1px 1px,
      rgba(255, 255, 255, 0.12) 1px,
      transparent 0
    ),
    linear-gradient(135deg, rgba(255, 106, 0, 0.13), transparent 55%);
  background-size:
    22px 22px,
    100% 100%;
  box-shadow:
    13px 13px 0 var(--orange),
    var(--shadow);
  transform: rotate(1.2deg);
}

.canvas-topbar {
  display: flex;
  gap: 7px;
  align-items: center;
  height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
}

.canvas-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #595959;
}

.canvas-topbar span:first-child {
  background: var(--orange);
}

.canvas-topbar strong {
  margin-left: 8px;
  color: #d8d1c5;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.demo-node,
.demo-note,
.demo-prompt,
.demo-receipt {
  position: absolute;
  border: 2px solid var(--ink);
  color: var(--ink);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.72);
}

.demo-node {
  display: grid;
  width: 138px;
  min-height: 70px;
  padding: 12px;
  place-items: center;
  border-color: #fff;
  border-radius: 16px;
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 850;
  text-align: center;
}

.demo-node.one {
  top: 105px;
  left: 42px;
}

.demo-node.two {
  top: 105px;
  right: 40px;
  background: var(--yellow);
}

.demo-node.three {
  top: 252px;
  left: 50%;
  border-radius: 50%;
  background: var(--orange);
  transform: translateX(-50%);
}

.demo-line {
  position: absolute;
  height: 4px;
  border-radius: 99px;
  background: var(--orange);
  transform-origin: left center;
}

.demo-line.a {
  top: 142px;
  left: 180px;
  width: 126px;
}

.demo-line.b {
  top: 176px;
  left: 334px;
  width: 112px;
  transform: rotate(126deg);
}

.demo-line::after {
  position: absolute;
  top: -6px;
  right: -1px;
  width: 12px;
  height: 12px;
  border-top: 4px solid var(--orange);
  border-right: 4px solid var(--orange);
  content: "";
  transform: rotate(45deg);
}

.demo-note {
  top: 238px;
  left: 35px;
  width: 118px;
  min-height: 106px;
  padding: 16px;
  border-color: var(--ink);
  border-radius: 4px 16px 5px 9px;
  background: var(--yellow);
  font-family: Georgia, serif;
  font-size: 0.8rem;
  line-height: 1.3;
  transform: rotate(-4deg);
}

.demo-prompt {
  right: 24px;
  bottom: 72px;
  left: 24px;
  padding: 17px 52px 17px 18px;
  border-color: #4b4b4b;
  border-radius: 16px;
  color: #eee7da;
  background: #262626;
  font-size: 0.76rem;
  line-height: 1.45;
}

.demo-prompt::after {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  content: "↑";
  color: var(--ink);
  background: var(--orange);
  font-weight: 900;
}

.demo-receipt {
  bottom: 22px;
  left: 36px;
  border: 0;
  color: #aaa;
  background: transparent;
  box-shadow: none;
  font-size: 0.65rem;
}

.logo-float {
  position: absolute;
  top: 72px;
  left: 50%;
  width: 54px;
  height: 54px;
  object-fit: contain;
  transform: translateX(-50%);
}

.section {
  padding: 100px 0;
}

.section-tight {
  padding: 70px 0;
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-dark .eyebrow {
  color: var(--ink);
  background: var(--yellow);
}

.section-orange {
  background: var(--orange);
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.5fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 48px;
}

.section h2,
.page-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.section-head p,
.section-copy,
.rich-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.section-dark .section-head p,
.section-dark .section-copy,
.section-dark .rich-copy p {
  color: #c5bdaf;
}

.section-dark .section-head .eyebrow {
  color: var(--ink);
}

.three-grid,
.four-grid,
.two-grid {
  display: grid;
  gap: 18px;
}

.three-grid {
  grid-template-columns: repeat(3, 1fr);
}

.four-grid {
  grid-template-columns: repeat(4, 1fr);
}

.two-grid {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  position: relative;
  padding: 28px;
  overflow: hidden;
  border: 1.5px solid var(--ink);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 5px 5px 0 rgba(11, 11, 11, 0.12);
}

.card.orange {
  background: var(--orange);
}

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

.card.dark {
  border-color: #3b3834;
  color: var(--white);
  background: #171717;
  box-shadow: none;
}

.card-number {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 50px;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
  font-weight: 800;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.card p {
  margin-bottom: 0;
  color: #5d554c;
  line-height: 1.62;
}

.card.dark p {
  color: #bbb2a5;
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 38px;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  background: var(--yellow);
  font-size: 1.35rem;
}

.statement {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
}

.statement-visual {
  position: relative;
  min-height: 430px;
  border: 2px solid var(--ink);
  border-radius: 36px;
  background: var(--yellow);
  box-shadow: 12px 12px 0 var(--ink);
}

.statement-visual::before,
.statement-visual::after {
  position: absolute;
  border: 2px solid var(--ink);
  content: "";
}

.statement-visual::before {
  top: 15%;
  right: 12%;
  left: 12%;
  height: 27%;
  border-radius: 24px;
  background: var(--white);
}

.statement-visual::after {
  right: 20%;
  bottom: 13%;
  width: 34%;
  height: 31%;
  border-radius: 50%;
  background: var(--orange);
}

.visual-label {
  position: absolute;
  z-index: 2;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.visual-label.top {
  top: 26%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.visual-label.bottom {
  right: 21%;
  bottom: 27%;
  transform: translateY(50%);
}

.visual-connector {
  position: absolute;
  top: 42%;
  left: 48%;
  width: 4px;
  height: 25%;
  background: var(--ink);
  transform: rotate(12deg);
}

.visual-connector::after {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 13px;
  height: 13px;
  border-right: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  content: "";
  transform: rotate(45deg);
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 31px;
  line-height: 1.55;
}

.check-list li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "✓";
  font-size: 0.7rem;
  font-weight: 900;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 9px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 700;
}

.page-hero {
  padding: 92px 0 76px;
}

.page-hero h1 {
  max-width: 950px;
}

.page-hero .page-lede {
  max-width: 780px;
}

.page-marker {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--orange-deep);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.bento .card:nth-child(1) {
  grid-column: span 7;
}

.bento .card:nth-child(2) {
  grid-column: span 5;
}

.bento .card:nth-child(3) {
  grid-column: span 4;
}

.bento .card:nth-child(4) {
  grid-column: span 8;
}

.bento .card:nth-child(5),
.bento .card:nth-child(6) {
  grid-column: span 6;
}

.quote-block {
  padding: 58px;
  border: 2px solid var(--ink);
  border-radius: 28px;
  background: var(--yellow);
  box-shadow: 10px 10px 0 var(--orange);
}

.quote-block p {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.step {
  display: grid;
  grid-template-columns: 70px 0.65fr 1fr;
  gap: 28px;
  padding: 28px 0;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.step strong {
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.step-index {
  color: var(--orange-deep);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 800;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1.5px solid var(--ink);
}

.faq-item {
  border-bottom: 1.5px solid var(--ink);
}

.faq-question {
  display: flex;
  width: 100%;
  padding: 24px 4px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 1.2rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  color: var(--orange-deep);
  font-size: 1.7rem;
}

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

.faq-answer {
  display: none;
  max-width: 760px;
  padding: 0 48px 26px 4px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item[data-open] .faq-answer {
  display: block;
}

.cta-band {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.cta-band::after {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 360px;
  height: 360px;
  border: 76px solid var(--orange);
  border-radius: 50%;
  content: "";
}

.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 32px;
  align-items: end;
  justify-content: space-between;
}

.cta-content h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.96;
}

.site-footer {
  padding: 64px 0 34px;
  border-top: 1px solid var(--line);
  background: #f7eedc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.6fr);
  gap: 46px;
}

.footer-brand p {
  max-width: 320px;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.footer-col strong {
  display: block;
  margin-bottom: 13px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  width: fit-content;
  margin: 9px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--orange-deep);
}

.footer-bottom {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

[data-reveal][data-visible] {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .menu-button {
    display: grid;
    place-items: center;
  }

  .nav-menu {
    position: absolute;
    top: 68px;
    right: 18px;
    left: 18px;
    display: none;
    padding: 14px;
    border: 1.5px solid var(--ink);
    border-radius: 18px;
    background: var(--paper);
    box-shadow: 7px 7px 0 var(--orange);
  }

  .nav-menu[data-open] {
    display: grid;
  }

  .nav-menu a {
    padding: 13px 14px;
  }

  .nav-actions .button-ghost {
    display: none;
  }

  .hero-grid,
  .statement,
  .section-head {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 60px;
  }

  .hero h1 {
    max-width: 820px;
  }

  .canvas-demo {
    width: min(100%, 620px);
  }

  .three-grid,
  .four-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento .card {
    grid-column: span 6 !important;
  }

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

@media (max-width: 650px) {
  .nav-shell {
    min-height: 66px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .nav-actions .button-dark {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.8rem;
  }

  .hero {
    padding: 50px 0 72px;
  }

  .hero h1,
  h1 {
    font-size: clamp(3rem, 15vw, 4.3rem);
  }

  .ink-swipe {
    white-space: normal;
  }

  .canvas-demo {
    min-height: 470px;
    border-radius: 20px;
    box-shadow: 8px 8px 0 var(--orange);
  }

  .demo-node {
    width: 110px;
  }

  .demo-node.one {
    left: 22px;
  }

  .demo-node.two {
    right: 22px;
  }

  .demo-line.a {
    left: 132px;
    width: calc(100% - 264px);
  }

  .demo-note {
    left: 22px;
    width: 102px;
  }

  .section,
  .section-tight {
    padding: 72px 0;
  }

  .three-grid,
  .four-grid,
  .two-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .bento .card {
    grid-column: auto !important;
  }

  .card-number {
    margin-bottom: 30px;
  }

  .statement-visual {
    min-height: 340px;
  }

  .step {
    grid-template-columns: 42px 1fr;
  }

  .step p {
    grid-column: 2;
  }

  .quote-block {
    padding: 36px 26px;
  }

  .cta-content {
    align-items: flex-start;
    flex-direction: column;
  }

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