@font-face {
  font-family: "DM Sans";
  src: url("./assets/fonts/DMSans-VariableFont_opsz,wght.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

@font-face {
  font-family: "DM Mono";
  src: url("./assets/fonts/DMMono-Light.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "DM Mono";
  src: url("./assets/fonts/DMMono-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --black: #08080a;
  --ink: #09090c;
  --muted: #65616d;
  --paper: #ffffff;
  --paper-deep: #f2f2f2;
  --surface: #ffffff;
  --line: rgba(9, 9, 12, 0.1);
  --line-strong: rgba(9, 9, 12, 0.2);
  --purple: #9b4dff;
  --purple-dark: #6d28c8;
  --purple-soft: #f2eaff;
  --green-soft: #ecf7f1;
  --green: #1f765f;
  --shadow: none;
  --sidebar-width: 270px;
  --content-width: 1050px;
  --radius: 8px;
  --font-ui: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

img {
  display: block;
}

.mobile-menu {
  display: none;
}

.report-shell {
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
  min-height: 100svh;
}

.sidebar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  height: 100svh;
  padding: 28px 20px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--black);
  color: #f6f1ea;
}

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

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

.brand span {
  display: grid;
  gap: 1px;
}

.brand strong {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.brand small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.client-lockup {
  display: grid;
  gap: 8px;
  margin: 44px 8px 28px;
}

.client-lockup span,
.section-heading p,
.card-topline span,
.price-block span,
.side-nav span,
.hero-brand span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.client-lockup span {
  color: var(--purple);
}

.client-lockup strong {
  max-width: 200px;
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}

.side-nav {
  display: grid;
  gap: 3px;
}

.side-nav a {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 8px;
  align-items: center;
  padding: 10px 9px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 680;
  text-decoration: none;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}

.side-nav span {
  color: var(--purple);
  font-size: 9px;
}

.side-nav a:hover,
.side-nav a.is-active {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

main {
  min-width: 0;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  padding: clamp(72px, 10vw, 132px) 0 clamp(54px, 8vw, 92px);
  overflow: hidden;
  background: #000;
  color: #fff;
  box-shadow: inset 0 -8rem 8rem rgba(3, 3, 4, 0.82);
}

.liquid,
.grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.liquid {
  z-index: 0;
}

.grain {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 47%, transparent 0 16rem, rgba(0, 0, 0, 0.08) 28rem, rgba(0, 0, 0, 0.74) 66rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 32%, transparent 84%, rgba(0, 0, 0, 0.68)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.56), transparent 28%, transparent 70%, rgba(0, 0, 0, 0.7));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--content-width), calc(100% - 88px));
  margin: auto;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  color: #fff;
}

.hero-brand img {
  width: 25px;
  height: 25px;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 28px;
  font-family: var(--font-mono);
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero-lede {
  max-width: 780px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.35;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

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

.button.primary {
  border: 1px solid var(--purple);
  background: var(--purple);
  color: #fff;
}

.button.secondary {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.hero .button.primary {
  border-color: #fff;
  background: #fff;
  color: #09090c;
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.46);
  color: #fff;
}

.hero .button.secondary:hover {
  border-color: #fff;
}

.report-content {
  width: min(var(--content-width), calc(100% - 88px));
  margin: 0 auto;
  padding: 46px 0 88px;
}

.section {
  padding: clamp(46px, 7vw, 78px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  align-items: start;
  width: 100%;
  margin-bottom: 1.9rem;
}

.section-heading.wide {
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.section-heading p {
  margin: 0;
  color: var(--purple);
  font-weight: 400;
}

h2 {
  margin-bottom: 0;
  font-family: var(--font-mono);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.2;
}

.prose {
  width: 100%;
  color: #332f39;
  font-size: 18px;
  line-height: 1.58;
}

.prose.lead-copy {
  font-size: 20px;
}

.prose.compact {
  margin-bottom: 18px;
}

.prose p {
  margin-bottom: 18px;
}

.prose p:last-child,
.opportunity-card p:last-child,
.audience-grid p:last-child {
  margin-bottom: 0;
}

.prose ul,
.opportunity-card ul,
.manual-grid ul,
.manual-grid ol,
.pricing-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.prose li,
.opportunity-card li,
.manual-grid li,
.pricing-card li {
  margin: 8px 0;
}

.executive {
  padding-top: 34px;
}

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

.check-list.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-list.three-column {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.check-list li {
  display: grid;
  grid-template-columns: 7px minmax(0, 1fr);
  column-gap: 14px;
  align-items: start;
  min-height: 52px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  color: #3d3843;
  font-size: 15px;
  line-height: 1.35;
}

.check-list li::before {
  width: 7px;
  height: 7px;
  margin-top: calc((1em * 1.35 - 7px) / 2);
  border-radius: 999px;
  background: var(--purple);
  content: "";
}

.comparison-section {
  margin: 16px calc((100vw - var(--sidebar-width) - min(var(--content-width), calc(100vw - var(--sidebar-width) - 88px))) / -2);
  padding: clamp(46px, 7vw, 80px) max(44px, calc((100vw - var(--sidebar-width) - min(var(--content-width), calc(100vw - var(--sidebar-width) - 88px))) / 2));
  background: #fff;
}

.comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
  margin-top: 22px;
}

.section-note {
  margin: -4px 0 0;
  color: #211b29;
  font-size: 19px;
  line-height: 1.45;
}

.compare-card,
.audience-grid article,
.opportunity-card,
.avoid-grid article,
.pricing-card,
.manual-grid > div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.compare-card {
  padding: clamp(24px, 3vw, 34px);
}

.compare-card.current {
  background: #fbfaf8;
}

.compare-card.proposed {
  border-color: rgba(155, 77, 255, 0.42);
  border-top: 3px solid var(--purple);
  background: #fff;
}

.compare-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-card li {
  display: grid;
  grid-template-columns: 6px minmax(0, 1fr);
  column-gap: 13px;
  align-items: start;
  color: #3a3540;
  line-height: 1.42;
}

.compare-card li::before {
  width: 6px;
  height: 6px;
  margin-top: calc((1em * 1.42 - 6px) / 2);
  border-radius: 999px;
  background: var(--purple);
  content: "";
}

.callout,
.highlight-line {
  margin: 24px 0 0;
  padding: 19px 22px;
  border-left: 4px solid var(--purple);
  border-radius: var(--radius);
  background: var(--purple-soft);
  color: #211b29;
  font-size: 19px;
  font-weight: 710;
  line-height: 1.4;
}

.callout.dark {
  border-left-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.prototype-credit {
  margin: -6px 0 0;
  padding: 18px 20px;
  border: 1px solid rgba(155, 77, 255, 0.42);
  border-radius: var(--radius);
  background: rgba(155, 77, 255, 0.16);
  color: #fff;
  font-size: 17px;
  font-weight: 680;
  line-height: 1.45;
}

.split-section {
  display: block;
}

.split-section .section-heading {
  display: grid;
  margin-bottom: 1.9rem;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.chip-list li {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #433d49;
  font-size: 14px;
  font-weight: 680;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.flow-list li {
  min-height: 248px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.flow-list p {
  margin: 0;
  color: #4d4853;
  font-size: 15px;
}

.difference-card {
  margin-top: 18px;
  padding: clamp(34px, 5vw, 54px);
  border: 1px solid rgba(155, 77, 255, 0.32);
  border-radius: var(--radius);
  background: #141218;
  color: #f5f0ea;
}

.difference-card .section-heading p,
.difference-card .prose {
  color: rgba(245, 240, 234, 0.74);
}

.difference-card h2,
.difference-card strong {
  color: #fff;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.audience-grid article {
  display: grid;
  grid-template-rows: 58px 128px auto;
  align-content: start;
  padding: 22px;
}

.audience-grid h3,
.audience-grid p {
  margin: 0;
}

.audience-grid p {
  color: #4c4652;
  font-size: 15px;
}

blockquote {
  margin: 0;
  padding: 0 0 0 15px;
  border-left: 3px solid var(--purple);
  color: #27222e;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.opportunity-stack {
  display: grid;
  gap: 16px;
}

.opportunity-card {
  padding: clamp(24px, 3vw, 34px);
}

.opportunity-card.recommended {
  border-color: rgba(155, 77, 255, 0.42);
  border-top: 3px solid var(--purple);
  background: #fff;
}

.opportunity-card.goodwill {
  border-color: rgba(31, 118, 95, 0.46);
  border-top: 3px solid var(--green);
  background: #fff;
}

.opportunity-card.goodwill .card-topline span {
  background: var(--green);
}

.free-add-on-line {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(31, 118, 95, 0.24);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  background: var(--green-soft);
  color: #182a24 !important;
  font-size: 19px !important;
  font-weight: 700;
}

.free-add-on-line strong {
  font-family: inherit;
  font-weight: 800;
}

.card-topline {
  margin-bottom: 14px;
}

.card-topline span {
  display: inline-flex;
  padding: 7px 9px;
  border-radius: 5px;
  background: var(--black);
  color: #fff;
}

.opportunity-card p {
  width: 100%;
  margin-bottom: 14px;
  color: #3b3541;
  font-size: 17px;
}

.avoid-grid,
.manual-grid,
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.avoid-grid article {
  padding: 22px;
}

.avoid-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--purple-dark);
  font-family: var(--font-mono);
  font-size: 13px;
}

.avoid-grid p {
  color: #453f4b;
}

.pricing-section {
  border-bottom: 0;
}

.pricing-card {
  display: grid;
  gap: 26px;
  padding: clamp(26px, 5vw, 46px);
  background: var(--black);
  color: #fff;
}

.price-block {
  display: grid;
  gap: 10px;
  width: 100%;
}

.price-block span {
  color: var(--purple);
}

.price-block strong {
  font-family: var(--font-mono);
  font-size: clamp(58px, 7vw, 96px);
  font-weight: 400;
  line-height: 1;
}

.price-block p,
.pricing-card .prose {
  color: rgba(255, 255, 255, 0.76);
}

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

.included-grid > div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.included-grid h3 {
  color: #fff;
}

.included-grid li {
  color: rgba(255, 255, 255, 0.72);
}

.next-phase {
  padding-top: 34px;
}

.muted-note {
  width: 100%;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.manual-grid > div {
  padding: 24px;
}

.manual-grid h3 {
  font-size: 18px;
}

.final-recommendation {
  border-bottom: 0;
}

.next-step-section {
  padding-bottom: 0;
}

.next-step-section .prose {
  padding-top: 0;
}

@media (max-width: 1180px) {
  .report-shell {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    right: 16px;
    top: 16px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: var(--black);
    color: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    cursor: pointer;
    font-size: 13px;
    font-weight: 760;
  }

  .sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(320px, calc(100vw - 48px));
    transform: translateX(-105%);
    transition: transform 180ms ease;
  }

  body.nav-open .sidebar {
    transform: translateX(0);
  }

  .hero-inner,
  .report-content {
    width: min(var(--content-width), calc(100% - 48px));
  }

  .comparison-section {
    margin-right: -24px;
    margin-left: -24px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .audience-grid,
  .flow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding: 74px 0 56px;
  }

  .hero-inner,
  .report-content {
    width: min(100% - 34px, var(--content-width));
  }

  .report-content {
    padding-bottom: 112px;
  }

  .hero-brand {
    margin-bottom: 24px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-lede,
  .prose.lead-copy {
    font-size: 18px;
  }

  .section {
    padding: 42px 0;
  }

  .section-heading,
  .split-section,
  .comparison-grid,
  .check-list.two-column,
  .check-list.three-column,
  .audience-grid,
  .flow-list,
  .avoid-grid,
  .manual-grid,
  .included-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 10px;
  }

  .comparison-section {
    margin-right: -17px;
    margin-left: -17px;
    padding-right: 17px;
    padding-left: 17px;
  }

  .difference-card {
    padding: 26px 18px;
  }

  .flow-list li {
    min-height: auto;
  }

  .audience-grid article {
    grid-template-rows: auto;
    gap: 14px;
  }

  .button {
    width: 100%;
  }
}

@media print {
  @page {
    margin: 16mm;
  }

  html,
  body {
    background: #fff;
    color: #111;
  }

  .mobile-menu,
  .sidebar,
  .hero-actions {
    display: none !important;
  }

  .report-shell,
  .section-heading,
  .split-section,
  .comparison-grid,
  .check-list.two-column,
  .check-list.three-column,
  .audience-grid,
  .flow-list,
  .avoid-grid,
  .manual-grid,
  .included-grid {
    display: block;
  }

  .hero,
  .section,
  .comparison-section,
  .difference-card,
  .pricing-card {
    min-height: auto;
    margin: 0;
    padding: 0 0 18px;
    border: 0;
    background: transparent !important;
    color: #111 !important;
    box-shadow: none;
    break-inside: avoid;
  }

  .report-content,
  .hero-inner {
    width: 100%;
    padding: 0;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 24px;
  }

  .compare-card,
  .audience-grid article,
  .opportunity-card,
  .avoid-grid article,
  .manual-grid > div,
  .included-grid > div {
    margin: 0 0 10px;
    padding: 12px;
    border: 1px solid #ccc;
    box-shadow: none;
    break-inside: avoid;
  }

  .price-block strong {
    font-size: 48px;
  }

  a[href]::after {
    content: "";
  }
}
