:root {
  --ink: #161511;
  --paper: #f7f1df;
  --paper-deep: #eee3c4;
  --acid: #d8ff43;
  --coral: #ff6d4d;
  --blue: #3867ff;
  --cream: #fffaf0;
  --muted: #625f55;
  --line: 2px solid var(--ink);
  --shadow: 6px 6px 0 var(--ink);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(22, 21, 17, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 21, 17, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 4px solid var(--blue);
  outline-offset: 3px;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  border: var(--line);
  background: var(--acid);
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: var(--line);
  background: rgba(247, 241, 223, 0.94);
  backdrop-filter: blur(12px);
}

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

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

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: var(--line);
  border-radius: 50%;
  background: var(--coral);
  transform: rotate(-7deg);
}

.brand-mark svg {
  width: 25px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.86rem;
  font-weight: 800;
}

.nav-links a {
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.nav-links .nav-cta {
  padding: 9px 14px;
  border: var(--line);
  border-radius: 999px;
  background: var(--acid);
  text-decoration: none;
}

.hero {
  overflow: hidden;
  border-bottom: var(--line);
}

.hero-inner {
  width: min(calc(100% - 32px), var(--max));
  min-height: 710px;
  margin: 0 auto;
  padding: 76px 0 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(330px, 0.86fr);
  align-items: center;
  gap: 58px;
}

.eyebrow,
.section-kicker {
  width: fit-content;
  margin: 0 0 22px;
  padding: 6px 11px;
  border: var(--line);
  border-radius: 999px;
  background: var(--cream);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

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

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

h1 {
  max-width: 790px;
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 7.4vw, 7rem);
  font-weight: 950;
}

h1 .swipe {
  position: relative;
  display: inline-block;
  isolation: isolate;
}

h1 .swipe::after {
  position: absolute;
  left: -0.03em;
  right: -0.03em;
  bottom: 0.04em;
  height: 0.28em;
  z-index: -1;
  background: var(--coral);
  content: "";
  transform: rotate(-1.4deg);
}

.hero-lede {
  max-width: 665px;
  margin-bottom: 30px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 650;
  line-height: 1.45;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 19px;
  border: var(--line);
  border-radius: 12px;
  background: var(--acid);
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

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

.button:active {
  box-shadow: 0 0 0 var(--ink);
  transform: translate(4px, 4px);
}

.button.secondary {
  background: var(--cream);
}

.button.dark {
  border-color: var(--cream);
  background: var(--coral);
  box-shadow: 4px 4px 0 var(--cream);
}

.button.textual {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.button.textual:hover,
.button.textual:active {
  box-shadow: none;
  transform: none;
}

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

.hero-art {
  position: relative;
  min-height: 520px;
}

.phone {
  position: absolute;
  top: 16px;
  right: 34px;
  width: min(320px, 80vw);
  min-height: 492px;
  padding: 20px 17px;
  border: 4px solid var(--ink);
  border-radius: 38px;
  background: var(--cream);
  box-shadow: 12px 13px 0 var(--ink);
  transform: rotate(4deg);
}

.phone-top {
  width: 84px;
  height: 18px;
  margin: 0 auto 24px;
  border-radius: 20px;
  background: var(--ink);
}

.phone-label {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.call {
  margin: 10px 0;
  padding: 12px 13px;
  border: var(--line);
  border-radius: 12px;
  background: white;
  font-size: 0.82rem;
  font-weight: 800;
}

.call span {
  display: block;
  color: var(--coral);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.call.muted {
  opacity: 0.47;
}

.stamp {
  position: absolute;
  left: 0;
  bottom: 45px;
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  border: 5px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  font-size: 1.38rem;
  font-weight: 950;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-14deg);
}

.trust-strip {
  border-bottom: var(--line);
  background: var(--ink);
  color: var(--cream);
}

.trust-strip-inner {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 16px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding: 94px 0;
  border-bottom: var(--line);
}

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

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.section h2 {
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 5vw, 5rem);
  font-weight: 950;
}

.section-head > p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  font-size: 1.15rem;
  font-weight: 600;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step,
.card {
  position: relative;
  padding: 30px;
  border: var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.step:nth-child(2) {
  background: var(--acid);
  transform: rotate(1deg);
}

.step:nth-child(3) {
  background: #dfe7ff;
}

.step-number {
  width: 45px;
  height: 45px;
  margin-bottom: 38px;
  display: grid;
  place-items: center;
  border: var(--line);
  border-radius: 50%;
  background: var(--coral);
  font-weight: 950;
}

.step h3,
.card h3 {
  margin-bottom: 13px;
  font-size: 1.55rem;
  font-weight: 950;
}

.step p,
.card p:last-child {
  margin-bottom: 0;
}

.code-block {
  overflow-x: auto;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: #171714;
  color: #fffaf0;
  box-shadow: 4px 4px 0 var(--coral);
  white-space: pre-wrap;
  word-break: break-word;
}

.callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 10px 10px 0 var(--ink);
}

.callout-copy {
  padding: clamp(34px, 6vw, 70px);
}

.callout-quote {
  padding: clamp(34px, 6vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: var(--line);
  background: var(--coral);
}

.callout-quote blockquote {
  margin: 0 0 18px;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.callout-quote cite {
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 850;
}

.tool-section {
  background: var(--paper-deep);
}

.tool-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.tool-intro {
  position: sticky;
  top: 104px;
}

.tool-intro h2 {
  font-size: clamp(2.45rem, 4.8vw, 4.7rem);
}

.privacy-chip {
  width: fit-content;
  margin-top: 25px;
  padding: 9px 12px;
  border: var(--line);
  border-radius: 10px;
  background: var(--acid);
  font-size: 0.78rem;
  font-weight: 900;
}

.generator,
.order-form {
  padding: clamp(24px, 4vw, 42px);
  border: var(--line);
  border-radius: 24px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label,
legend {
  font-size: 0.82rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: var(--line);
  border-radius: 10px;
  background: white;
  color: var(--ink);
}

input,
select {
  min-height: 48px;
  padding: 10px 12px;
}

textarea {
  min-height: 160px;
  padding: 14px;
  resize: vertical;
}

.form-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.generated-output {
  margin-top: 28px;
  padding-top: 28px;
  border-top: var(--line);
}

.generated-output[hidden] {
  display: none;
}

.generated-output h3 {
  font-size: 1.35rem;
}

.copy-status {
  min-height: 1.5em;
  margin: 9px 0 0;
  color: #196b3b;
  font-size: 0.8rem;
  font-weight: 850;
}

.price-section {
  background: var(--ink);
  color: var(--cream);
}

.price-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.price-section .section-kicker {
  border-color: var(--cream);
  background: var(--acid);
  color: var(--ink);
}

.price-section h2 {
  color: var(--cream);
}

.price-card {
  padding: clamp(28px, 4vw, 48px);
  border: 3px solid var(--cream);
  border-radius: 24px;
  background: #25231d;
  box-shadow: 10px 10px 0 var(--coral);
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.price {
  color: var(--acid);
  font-size: 4.8rem;
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.price-note {
  font-size: 0.84rem;
  font-weight: 800;
}

.check-list,
.plain-list {
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  margin: 13px 0;
  padding-left: 29px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--acid);
  content: "✓";
  font-weight: 950;
}

.plain-list li::before {
  position: absolute;
  left: 5px;
  content: "—";
  font-weight: 950;
}

.order-wrap {
  margin-top: 58px;
  color: var(--ink);
}

.order-form {
  max-width: 850px;
  margin: 0 auto;
}

.order-form h3 {
  font-size: clamp(1.85rem, 4vw, 3rem);
}

.checkbox {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
}

.checkbox input {
  width: 20px;
  min-height: 20px;
  margin-top: 3px;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.faq-list {
  max-width: 900px;
}

.faq-list details {
  border-top: var(--line);
}

.faq-list details:last-child {
  border-bottom: var(--line);
}

.faq-list summary {
  padding: 22px 46px 22px 0;
  cursor: pointer;
  font-size: 1.12rem;
  font-weight: 900;
}

.faq-list details p {
  max-width: 760px;
  padding: 0 0 24px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.resource-grid .card {
  box-shadow: none;
}

.resource-grid .card a {
  font-weight: 900;
  text-underline-offset: 4px;
}

.final-cta {
  padding: 86px 0;
  background: var(--acid);
  text-align: center;
}

.final-cta h2 {
  max-width: 840px;
  margin: 0 auto 24px;
}

.final-cta p {
  max-width: 640px;
  margin: 0 auto 30px;
  font-weight: 650;
}

.site-footer {
  padding: 50px 0 28px;
  background: var(--ink);
  color: var(--cream);
}

.footer-grid {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 36px;
}

.footer-brand {
  max-width: 380px;
}

.footer-brand .brand {
  margin-bottom: 14px;
  color: var(--cream);
}

.footer-brand p {
  color: #cbc5b6;
  font-size: 0.84rem;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin: 9px 0;
  color: #e7e1d2;
  font-size: 0.82rem;
}

.footer-bottom {
  width: min(calc(100% - 32px), var(--max));
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid #4e4a40;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  color: #b9b3a5;
  font-size: 0.72rem;
}

.subpage-main {
  width: min(calc(100% - 32px), 900px);
  margin: 0 auto;
  padding: 76px 0 110px;
}

.subpage-main h1 {
  max-width: 880px;
  font-size: clamp(3rem, 7vw, 6rem);
}

.subpage-main h2 {
  margin-top: 50px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.subpage-main h3 {
  margin-top: 32px;
  font-size: 1.35rem;
}

.subpage-main p,
.subpage-main li {
  max-width: 780px;
}

.subpage-main .updated {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.note {
  margin: 28px 0;
  padding: 20px 22px;
  border: var(--line);
  border-radius: 12px;
  background: var(--acid);
  font-weight: 700;
}

.source-list li {
  margin-bottom: 14px;
}

.research-main {
  width: min(calc(100% - 32px), 1040px);
}

.research-main h1 .swipe {
  position: relative;
  display: inline-block;
  isolation: isolate;
}

.research-main h1 .swipe::after {
  position: absolute;
  left: -0.03em;
  right: -0.03em;
  bottom: 0.04em;
  height: 0.28em;
  z-index: -1;
  background: var(--coral);
  content: "";
  transform: rotate(-1.4deg);
}

.scope-note {
  background: #dfe7ff;
}

.evidence-grid {
  margin: 30px 0 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.evidence-stat {
  min-height: 180px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: var(--line);
  border-radius: 18px;
  background: var(--acid);
  box-shadow: 5px 5px 0 var(--ink);
}

.evidence-stat.coral {
  background: var(--coral);
}

.evidence-stat.blue {
  background: #dfe7ff;
}

.evidence-stat strong {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.evidence-stat span {
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.3;
}

.research-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.research-steps .card {
  box-shadow: none;
}

.research-steps .step-number {
  margin-bottom: 24px;
}

.research-cta {
  margin: 62px 0 18px;
  padding: clamp(28px, 6vw, 58px);
  border: var(--line);
  border-radius: 26px;
  background: var(--ink);
  box-shadow: 9px 9px 0 var(--coral);
  color: var(--cream);
}

.research-cta h2 {
  margin-top: 0;
  color: var(--cream);
}

.research-cta .section-kicker {
  border-color: var(--cream);
  background: var(--acid);
  color: var(--ink);
}

.success-card {
  margin: 80px auto;
  padding: clamp(34px, 7vw, 76px);
  border: var(--line);
  border-radius: 28px;
  background: var(--cream);
  box-shadow: 10px 10px 0 var(--ink);
  text-align: center;
}

.success-card h1 {
  max-width: none;
  font-size: clamp(3rem, 7vw, 6rem);
}

.not-found {
  min-height: 70vh;
  display: grid;
  place-items: center;
}

@media (max-width: 900px) {
  .hero-inner,
  .tool-grid,
  .price-grid,
  .callout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 52px;
  }

  .hero-art {
    min-height: 545px;
  }

  .phone {
    right: 10%;
  }

  .steps,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .callout-quote {
    border-top: var(--line);
    border-left: 0;
  }

  .tool-intro {
    position: static;
  }

  .trust-strip-inner {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .nav {
    min-height: 66px;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .hero-inner {
    gap: 18px;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .hero-art {
    min-height: 470px;
  }

  .phone {
    right: 2px;
    width: min(282px, 86vw);
    min-height: 430px;
  }

  .stamp {
    left: -10px;
    bottom: 8px;
    width: 148px;
    height: 148px;
    font-size: 1.04rem;
  }

  .trust-strip-inner,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .evidence-grid,
  .research-steps {
    grid-template-columns: 1fr;
  }

  .evidence-stat {
    min-height: 150px;
  }

  .trust-strip-inner {
    gap: 10px;
    text-align: left;
  }

  .section {
    padding: 70px 0;
  }

  .step,
  .card {
    padding: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Professional offer and client handout */
.professional-hero .hero-inner {
  align-items: center;
}

.pro-proof {
  padding: clamp(28px, 5vw, 52px);
  border: var(--line);
  border-radius: 28px;
  background: var(--acid);
  box-shadow: 10px 10px 0 var(--ink);
  transform: rotate(1deg);
}

.pro-proof-big {
  margin: 22px 0;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.pro-proof a {
  font-weight: 900;
  text-underline-offset: 4px;
}

.pro-preview-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.handout-mini {
  padding: clamp(28px, 5vw, 54px);
  border: var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 12px 12px 0 var(--coral);
  transform: rotate(-1deg);
}

.handout-mini h3 {
  margin: 8px 0 12px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  letter-spacing: -0.06em;
}

.handout-kicker,
.handout-license {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.handout-mini-lede {
  font-size: 1.12rem;
  font-weight: 750;
}

.handout-mini li {
  margin: 11px 0;
}

.handout-mini-footer {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 2px solid var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
}

.download-hero {
  padding-top: 72px;
  background:
    radial-gradient(circle at 5% 20%, rgba(255, 107, 87, 0.18), transparent 23rem),
    linear-gradient(rgba(22, 21, 17, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 21, 17, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 28px 28px, 28px 28px, auto;
}

.download-preview-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.download-preview-grid h1 {
  max-width: 720px;
  font-size: clamp(4rem, 8vw, 8rem);
}

.pdf-preview {
  margin: 0;
  padding: 18px;
  border: var(--line);
  border-radius: 18px;
  background: var(--cream);
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(1deg);
}

.pdf-preview img {
  width: 100%;
  display: block;
  border: 1px solid #c7c0af;
}

.pdf-preview figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 750;
}

.pro-kit-body {
  background:
    linear-gradient(rgba(22, 21, 17, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 21, 17, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
}

.pro-kit-main {
  width: min(calc(100% - 32px), 1500px);
  margin: 0 auto;
  padding: 50px 0 100px;
}

.pro-kit-intro {
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.45fr);
  gap: 42px;
  align-items: end;
}

.pro-kit-intro h1 {
  max-width: 850px;
  margin-bottom: 15px;
  font-size: clamp(3.2rem, 7vw, 7rem);
}

.pro-kit-intro .hero-lede {
  max-width: 760px;
  margin-bottom: 0;
}

.pro-kit-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.45fr) minmax(650px, 1fr);
  gap: 30px;
  align-items: start;
}

.pro-kit-controls {
  position: sticky;
  top: 92px;
  padding: 28px;
  border: var(--line);
  border-radius: 20px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.pro-kit-controls .field {
  margin-top: 15px;
}

.pro-kit-actions {
  margin-top: 24px;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 2px solid var(--ink);
}

.pro-kit-actions .copy-status {
  width: 100%;
}

.client-handout {
  min-height: 1050px;
  padding: clamp(34px, 6vw, 72px);
  border: var(--line);
  background: white;
  box-shadow: 10px 10px 0 var(--ink);
}

.client-handout-header {
  padding-bottom: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  border-bottom: 4px solid var(--ink);
}

.client-handout-header h2 {
  margin: 4px 0;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.client-handout-header p {
  margin: 0;
}

.practice-contact {
  max-width: 260px;
  white-space: pre-line;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: right;
}

.handout-title {
  padding: 52px 0 38px;
}

.handout-title h1 {
  max-width: 900px;
  margin: 14px 0;
  font-size: clamp(3.5rem, 7vw, 7.4rem);
}

.handout-title > p:last-child {
  max-width: 680px;
  font-size: 1.3rem;
  font-weight: 750;
}

.handout-section {
  padding: 34px 0;
  border-top: 2px solid var(--ink);
}

.handout-section h2 {
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3.3vw, 3rem);
}

.handout-steps {
  margin: 0;
  padding-left: 24px;
}

.handout-steps li {
  margin: 17px 0;
  padding-left: 8px;
}

.handout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.handout-note {
  padding: 24px;
  border: var(--line);
  border-radius: 14px;
  background: var(--acid);
}

.handout-section blockquote {
  margin: 0;
  padding: 24px;
  border-left: 8px solid var(--coral);
  background: var(--paper);
  font-size: 1.15rem;
  font-weight: 750;
}

.client-handout-footer {
  padding-top: 26px;
  border-top: 4px solid var(--ink);
  font-size: 0.75rem;
}

.client-handout-footer p {
  max-width: none;
}

@media (max-width: 1060px) {
  .pro-preview-grid,
  .download-preview-grid,
  .pro-kit-intro,
  .pro-kit-layout {
    grid-template-columns: 1fr;
  }

  .pro-kit-controls {
    position: static;
  }
}

@media (max-width: 700px) {
  .client-handout-header,
  .handout-grid {
    grid-template-columns: 1fr;
  }

  .practice-contact {
    text-align: left;
  }

  .client-handout {
    padding: 28px 22px;
  }
}

/* Paid command center */
.command-body {
  background:
    radial-gradient(circle at 94% 4%, rgba(216, 255, 67, 0.52), transparent 25rem),
    linear-gradient(rgba(22, 21, 17, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 21, 17, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 28px 28px, 28px 28px, auto;
}

.command-main {
  width: min(calc(100% - 32px), 1420px);
  margin: 0 auto;
  padding: 48px 0 100px;
}

.command-hero {
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 40px;
  align-items: end;
}

.command-hero h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 7vw, 7rem);
}

.command-hero .hero-lede {
  max-width: 860px;
  margin-bottom: 0;
}

.command-guardrail,
.command-notice {
  padding: 20px;
  border: var(--line);
  border-radius: 14px;
  background: var(--acid);
  box-shadow: 4px 4px 0 var(--ink);
}

.command-guardrail p,
.command-notice p {
  margin: 6px 0 0;
  font-size: 0.86rem;
}

.local-badge,
.verified-badge,
.save-state,
.count-pill {
  width: fit-content;
  padding: 6px 9px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-transform: uppercase;
}

.verified-badge {
  background: #dfe7ff;
}

.save-state {
  border-color: #347046;
  color: #205c34;
}

.count-pill {
  background: var(--coral);
}

.command-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(520px, 1.3fr);
  gap: 28px;
  align-items: start;
}

.command-sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 22px;
}

.setup-card,
.progress-card,
.task-stack,
.workspace-placeholder {
  padding: clamp(24px, 3vw, 34px);
  border: var(--line);
  border-radius: 22px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.setup-card h2,
.progress-card h2,
.task-stack h2,
.workspace-placeholder h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.command-card-head,
.task-section-head,
.task-top {
  margin-bottom: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.command-card-head .section-kicker,
.task-section-head .section-kicker,
.progress-card .section-kicker {
  margin-bottom: 12px;
}

.compact-grid {
  margin-top: 20px;
  gap: 13px;
}

.compact-grid input,
.compact-grid select,
.setup-card > .field input,
.setup-card > .field select,
.setup-card form input {
  min-height: 44px;
}

.full-button {
  width: 100%;
  margin-top: 20px;
  justify-content: center;
}

.small-copy {
  margin-top: -4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.field-error {
  min-height: 1.3em;
  margin: 8px 0 0;
  color: #9b2319;
  font-size: 0.78rem;
  font-weight: 800;
}

.command-workspace {
  min-width: 0;
  display: grid;
  gap: 22px;
}

.progress-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--acid);
}

.progress-card p:last-child {
  max-width: 650px;
  margin: 8px 0 0;
}

.progress-ring {
  --progress: 0deg;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border: var(--line);
  border-radius: 50%;
  background: conic-gradient(var(--coral) var(--progress), var(--cream) 0);
  box-shadow: 4px 4px 0 var(--ink);
}

.progress-ring span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: var(--line);
  border-radius: 50%;
  background: var(--cream);
  font-size: 1.08rem;
  font-weight: 950;
}

.command-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.compact-button {
  padding: 8px 12px;
  font-size: 0.76rem;
  box-shadow: 2px 2px 0 var(--ink);
}

.text-button {
  padding: 6px 3px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.danger-button {
  color: #9b2319;
}

.task-stack {
  box-shadow: none;
}

.task-card {
  margin-top: 17px;
  padding: 22px;
  border: var(--line);
  border-radius: 16px;
  background: white;
}

.task-card:first-child {
  margin-top: 0;
}

.task-title-wrap {
  min-width: 0;
  display: flex;
  gap: 12px;
  align-items: center;
}

.task-number {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: var(--line);
  border-radius: 50%;
  background: var(--coral);
  font-size: 0.78rem;
  font-weight: 950;
}

.task-card h3,
.finish-card h3 {
  margin: 0;
  font-size: 1.22rem;
}

.task-card > p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.88rem;
}

.status-control {
  flex: 0 0 190px;
}

.status-control span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-control select {
  min-height: 38px;
  padding: 5px 8px;
  font-size: 0.76rem;
}

.task-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.request-details {
  margin-top: 16px;
  border-top: 1px solid #c7c0af;
}

.request-details summary {
  padding: 14px 0 8px;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 900;
}

.request-preview {
  min-height: 300px;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.72rem;
  line-height: 1.45;
}

.due-date {
  width: fit-content;
  margin: 15px 0 0 !important;
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--paper-deep);
  color: var(--ink) !important;
  font-size: 0.7rem !important;
  font-weight: 850;
}

.empty-state,
.workspace-placeholder {
  padding: 34px;
  border-style: dashed;
  text-align: center;
}

.empty-state p,
.workspace-placeholder p:last-child {
  max-width: 510px;
  margin: 8px auto 0;
  color: var(--muted);
}

.workspace-placeholder {
  min-height: 470px;
  display: grid;
  place-content: center;
  background: rgba(255, 250, 240, 0.7);
}

.placeholder-arrow {
  margin-bottom: 24px;
  color: var(--coral);
  font-size: 5rem;
  font-weight: 950;
  line-height: 0.8;
}

.workspace-placeholder .eyebrow {
  margin-inline: auto;
}

.finish-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.finish-card > div {
  padding: 20px;
  border: var(--line);
  border-radius: 14px;
  background: var(--paper);
}

.finish-card .task-number {
  margin-bottom: 16px;
  background: var(--acid);
}

.finish-card p {
  color: var(--muted);
  font-size: 0.82rem;
}

.command-workspace > .command-notice:empty {
  display: none;
}

.command-footer .footer-bottom {
  margin-top: 0;
}

@media (max-width: 1060px) {
  .command-hero,
  .command-layout {
    grid-template-columns: 1fr;
  }

  .command-sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .workspace-placeholder {
    min-height: 330px;
  }

  .placeholder-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 720px) {
  .command-main {
    padding-top: 34px;
  }

  .command-nav .local-badge {
    display: none;
  }

  .command-sidebar,
  .finish-card,
  .progress-card {
    grid-template-columns: 1fr;
  }

  .progress-ring {
    width: 92px;
    height: 92px;
  }

  .progress-ring span {
    width: 62px;
    height: 62px;
    font-size: 0.92rem;
  }

  .task-top,
  .task-section-head {
    flex-direction: column;
  }

  .status-control {
    width: 100%;
    flex-basis: auto;
  }
}

@media print {
  @page {
    size: letter;
    margin: 0.55in;
  }

  .no-print,
  .pro-kit-header {
    display: none !important;
  }

  .pro-kit-body {
    background: white;
  }

  .pro-kit-main,
  .pro-kit-layout {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
  }

  .client-handout {
    min-height: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .client-handout-header h2 {
    font-size: 22pt;
  }

  .handout-title {
    padding: 28pt 0 22pt;
  }

  .handout-title h1 {
    font-size: 45pt;
  }

  .handout-title > p:last-child {
    font-size: 12pt;
  }

  .handout-section {
    padding: 18pt 0;
    break-inside: avoid;
  }

  .handout-section h2 {
    font-size: 18pt;
  }

  .handout-steps li,
  .handout-section li,
  .handout-section p,
  .handout-section blockquote {
    font-size: 9.5pt;
  }

  .site-header,
  .command-sidebar,
  .command-toolbar,
  .task-actions,
  .request-details,
  .command-footer,
  .command-guardrail {
    display: none !important;
  }

  .command-main {
    width: 100%;
    padding: 0;
  }

  .command-hero,
  .command-layout {
    display: block;
  }

  .command-workspace {
    display: block !important;
  }

  .progress-card,
  .task-stack,
  .task-card,
  .finish-card > div {
    break-inside: avoid;
    box-shadow: none;
  }
}
