:root {
  --cream: #f5f3f0;
  --cream-deep: #ebe6dd;
  --ink: #1a1714;
  --ink-soft: #5d5954;
  --line: rgba(26, 23, 20, 0.16);
  --line-soft: rgba(26, 23, 20, 0.08);
  --red: #e8000b;
  --red-deep: #ba0008;
  --white: #ffffff;
  --green: #2fa06c;
  --amber: #d48a1f;
  --shadow: 0 24px 80px rgba(26, 23, 20, 0.12);
  --section-lg: 112px;
  --section-md: 88px;
  --section-sm: 64px;
  --container: min(1180px, calc(100vw - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(26, 23, 20, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 23, 20, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

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

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

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

.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;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.container-narrow {
  width: var(--container);
  max-width: 800px;
  margin: 0 auto;
}

.text-content {
  margin-top: 14px;
}

.text-content p, .text-content ul {
  margin-top: 18px;
  color: var(--ink-soft);
  line-height: 1.85;
}

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

.text-content li {
  margin-top: 10px;
}

.text-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 64px 0 20px;
}

.text-content h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin: 36px 0 14px;
}

.text-meta {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.blueprint-grid {
  position: relative;
}

.blueprint-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(232, 0, 11, 0.06), transparent 28%),
    radial-gradient(circle at left center, rgba(26, 23, 20, 0.04), transparent 32%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(245, 243, 240, 0.84);
  border-bottom: 1px solid var(--line-soft);
}

.nav-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--red);
  color: var(--white);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.brand-box-dark {
  background: var(--ink);
}

.brand-icon {
  width: 34px;
  height: 34px;
  display: inline-block;
  vertical-align: middle;
}

.brand-text {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.site-nav > a {
  padding: 10px 12px;
  font-family: "DM Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"] {
  color: var(--red);
}

.site-nav > a.button-primary,
.site-nav > a.button-primary:hover {
  color: var(--white);
}

.nav-account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-left: 4px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-soft);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-account:hover {
  color: var(--red);
  border-color: var(--red);
}

.nav-account svg {
  width: 18px;
  height: 18px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--cream);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 23, 20, 0.12);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 1rem;
}

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(232, 0, 11, 0.2);
}

.button-primary:hover {
  background: var(--red-deep);
  box-shadow: 0 4px 16px rgba(232, 0, 11, 0.35);
}

.button-outline {
  border-color: var(--ink);
  color: var(--ink);
}

.button-outline:hover {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(26, 23, 20, 0.15);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero,
.help-hero {
  padding: 72px 0 80px;
}

.hero-grid,
.help-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: 48px;
  align-items: start;
}

.section-pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--cream-deep);
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.section-pill-light {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 0.92;
}

h1 {
  margin-top: 22px;
  font-size: clamp(4rem, 10vw, 8rem);
}

h2 {
  font-size: clamp(3rem, 7vw, 5.8rem);
}

h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.hero-red {
  display: block;
  color: var(--red);
}

.hero-accent {
  display: block;
  margin-top: 14px;
  font-family: "Spectral", serif;
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-soft);
  line-height: 1.3;
}

.hero-body,
.pricing-copy p,
.workflow-copy p,
.help-summary,
.faq-card p,
.faq-card a,
.final-panel p,
.footer-copy {
  color: var(--ink-soft);
}

.hero-body {
  max-width: 42rem;
  margin-top: 22px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-license,
.help-summary,
.help-sidebar-box,
.faq-card,
.workflow-step,
.board-card,
.pricing-panel,
.hero-frame {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  border-radius: 8px;
}

.hero-license {
  display: grid;
  gap: 10px;
  max-width: 42rem;
  margin-top: 28px;
  padding: 18px 20px;
}

.micro-label,
.metric-label,
.panel-title,
.step-mark,
.footer-nav,
.help-section-nav a {
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.micro-label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-soft);
}

.hero-license strong {
  display: block;
  font-size: 1.2rem;
  color: var(--ink);
}

.hero-frame {
  position: relative;
  padding: 16px;
}

.frame-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--ink);
  border-style: solid;
  opacity: 0.3;
}

.frame-corner-tl {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
}

.frame-corner-tr {
  top: 0;
  right: 0;
  border-width: 1px 1px 0 0;
}

.frame-corner-bl {
  bottom: 0;
  left: 0;
  border-width: 0 0 1px 1px;
}

.frame-corner-br {
  right: 0;
  bottom: 0;
  border-width: 0 1px 1px 0;
}

.app-shell {
  border: 1px solid var(--line-soft);
  background: var(--cream);
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line-soft);
}

.app-dots {
  display: inline-flex;
  gap: 6px;
}

.app-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(26, 23, 20, 0.22);
}

.app-dots span:nth-child(1) {
  background: #ff8d76;
}

.app-dots span:nth-child(2) {
  background: #f2c24b;
}

.app-dots span:nth-child(3) {
  background: #63ba52;
}

.app-name,
.app-state {
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.app-state {
  color: var(--red);
}

.app-main {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 210px;
  min-height: 500px;
}

.app-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-right: 1px solid var(--line-soft);
}

.app-rail span {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(26, 23, 20, 0.25);
}

.app-rail .is-live {
  border: 2px solid var(--red);
}

.app-canvas {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background:
    linear-gradient(rgba(26, 23, 20, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 23, 20, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
}

.canvas-sheet {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 4 / 5;
  background: var(--white);
  box-shadow:
    inset 0 0 0 14px rgba(29, 184, 215, 0.12),
    inset 0 0 0 28px rgba(232, 0, 11, 0.08),
    inset 0 0 0 42px rgba(47, 160, 108, 0.1);
}

.sheet-art {
  position: absolute;
  inset: 92px 94px 88px;
  background: linear-gradient(180deg, #f2e9d8, #fffaf1);
  border: 1px solid rgba(26, 23, 20, 0.08);
}

.sheet-art::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #5a8c26;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 16px rgba(90, 140, 38, 0.16);
}

.sheet-copy {
  position: absolute;
  left: 64px;
  top: 84px;
  width: 58px;
  height: 200px;
  background:
    linear-gradient(180deg, rgba(26, 23, 20, 0.18) 0 8px, transparent 8px 20px, rgba(26, 23, 20, 0.1) 20px 24px, transparent 24px 100%);
}

.box-label {
  position: absolute;
  left: 24px;
  padding: 4px 8px;
  font-family: "DM Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-box {
  top: 20px;
  color: #16809b;
  background: rgba(29, 184, 215, 0.12);
}

.bleed-box {
  top: 48px;
  color: var(--red-deep);
  background: rgba(232, 0, 11, 0.1);
}

.trim-box {
  top: 76px;
  color: #227d57;
  background: rgba(47, 160, 108, 0.12);
}

.picker-mark {
  position: absolute;
  top: 56%;
  left: 53%;
  width: 30px;
  height: 30px;
  border: 2px solid var(--red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.picker-mark::before,
.picker-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--red);
  transform: translate(-50%, -50%);
}

.picker-mark::before {
  width: 1px;
  height: 42px;
}

.picker-mark::after {
  width: 42px;
  height: 1px;
}

.overlay-note {
  position: absolute;
  top: 20px;
  right: 22px;
  padding: 4px 8px;
  background: var(--white);
  color: var(--red);
  font-family: "DM Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-panel {
  padding: 16px;
  border-left: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.55);
}

.panel-block + .panel-block {
  margin-top: 22px;
}

.panel-title {
  display: block;
  margin-bottom: 12px;
  color: var(--ink-soft);
}

.swatch {
  height: 74px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #5a8c26, #87b64b);
}

.panel-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.panel-row strong {
  color: var(--ink);
}

.status-item {
  padding: 10px;
  margin-bottom: 8px;
  font-family: "DM Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-bad {
  background: rgba(232, 0, 11, 0.1);
  color: var(--red-deep);
}

.status-warn {
  background: rgba(212, 138, 31, 0.12);
  color: #8f5b07;
}

.metrics-strip {
  padding: 28px 0;
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.metric-item {
  text-align: center;
}

.metric-label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.5);
}

.metric-item strong {
  display: block;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section {
  padding: var(--section-md) 0;
}

.section-lg {
  padding: var(--section-lg) 0;
}

.section-md {
  padding: var(--section-md) 0;
}

.section-sm {
  padding: var(--section-sm) 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(26, 23, 20, 0.02), rgba(26, 23, 20, 0));
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

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

.section-heading h2,
.pricing-copy h2,
.workflow-copy h2,
.final-panel h2,
.faq-heading h2 {
  margin-top: 16px;
}

.faq-heading h2 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}

.feature-list {
  width: var(--container);
  margin: 48px auto 0;
  border-top: 1px solid var(--line);
}

.feature-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 230px;
  gap: 24px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.feature-index {
  color: var(--red);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 0.8;
}

.feature-copy h3 {
  line-height: 1.0;
}

.feature-copy p {
  max-width: 42rem;
  margin-top: 14px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.feature-copy p + p {
  margin-top: 12px;
}


.workflow-grid,
.pricing-grid,
.help-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.84fr);
  gap: 40px;
}

.workflow-steps {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.workflow-step,
.board-card,
.pricing-panel,
.help-summary,
.help-sidebar-box,
.faq-card {
  padding: 22px;
}

.step-mark {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--red);
}

.workflow-step p,
.board-card p {
  margin-top: 10px;
  color: var(--ink-soft);
}

.workflow-board {
  display: grid;
  gap: 20px;
}

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

.board-card-dark p,
.board-card-dark .panel-title {
  color: rgba(255, 255, 255, 0.62);
}

.board-price {
  margin-top: 10px;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.9;
  color: var(--red);
}

.board-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.board-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.pricing-grid {
  align-items: center;
}

.pricing-copy p {
  max-width: 38rem;
  margin: 18px 0 24px;
}

.pricing-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(232, 0, 11, 0.2);
  background:
    radial-gradient(circle at top right, rgba(232, 0, 11, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(235, 230, 221, 0.78));
}

.pricing-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(232, 0, 11, 0.14), transparent 70%);
  pointer-events: none;
}

.pricing-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 16px;
  background: var(--red);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(232, 0, 11, 0.18);
}

.pricing-splash {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.pricing-savings {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--red);
}

.pricing-savings-note {
  font-family: "DM Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.pricing-price {
  display: grid;
  gap: 10px;
  padding: 18px 0 22px;
  border-bottom: 1px solid var(--line);
}

.pricing-was-label {
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.pricing-was {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 12px;
  border: 1px solid rgba(26, 23, 20, 0.14);
  background: rgba(26, 23, 20, 0.05);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--red);
  transform: rotate(-4deg);
}

.pricing-current {
  display: flex;
  align-items: baseline;
  gap: 6px;
  width: fit-content;
  padding: 12px 18px 10px;
  border: 1px solid rgba(232, 0, 11, 0.22);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 40px rgba(26, 23, 20, 0.1);
}

.pricing-currency {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--red);
}

.pricing-price strong {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 7rem;
  font-weight: 900;
  line-height: 0.8;
  color: var(--red);
  text-shadow: 0 10px 24px rgba(232, 0, 11, 0.12);
}

.pricing-once {
  font-family: "DM Mono", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.pricing-rules {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.pricing-rules div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
}

.pricing-rules span {
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.pricing-rules strong {
  text-align: right;
}

.final-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.final-panel p {
  max-width: 42rem;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.66);
}

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

.footer-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 48px;
  color: var(--ink-soft);
}

.footer-nav a {
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--red);
}

.help-main-section {
  padding-bottom: 88px;
}

.help-summary {
  position: relative;
  z-index: 1;
}

.summary-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

.summary-list li + li {
  margin-top: 10px;
}

.help-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.help-section-nav {
  display: grid;
  gap: 6px;
  margin-top: 14px;
}

.help-section-nav a {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.help-section-nav a:hover,
.help-section-nav a.is-active {
  color: var(--red);
}

.help-content {
  display: grid;
  gap: 0;
}

.faq-group {
  scroll-margin-top: 110px;
  padding-top: 64px;
}

.faq-group:first-child {
  padding-top: 0;
}

.faq-group + .faq-group {
  border-top: 1px solid var(--line-soft);
}

.faq-heading {
  margin-bottom: 18px;
}

.at-a-glance {
  margin-bottom: 18px;
  padding: 18px 22px;
  background: rgba(47, 160, 108, 0.06);
  border: 1px solid rgba(47, 160, 108, 0.18);
}

.at-a-glance-label {
  display: inline-block;
  margin-bottom: 8px;
  font-family: "DM Mono", monospace;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}

.at-a-glance p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.faq-card + .faq-card {
  margin-top: 14px;
}

.guide-list {
  margin: 14px 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.guide-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.6;
}

.guide-list li strong {
  color: var(--ink);
}

.faq-card h3 {
  font-size: 1.75rem;
}

.faq-card p {
  margin-top: 10px;
}

.faq-card-highlight {
  border-color: rgba(232, 0, 11, 0.24);
  background: rgba(232, 0, 11, 0.05);
}

/* ─── Hero local statement ─── */

.page-header {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--line-soft);
}

.page-header h1 {
  margin-top: 16px;
  font-size: clamp(3rem, 8vw, 5rem);
}

.page-content {
  padding: 72px 0 100px;
}

/* ─── Hero local statement ─── */

.hero-local {
  max-width: 42rem;
  margin-top: 14px;
  font-family: "DM Mono", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ─── Problem / Workflow compare section ─── */

.workflow-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 44px;
}

.workflow-compare + .problem-resolve {
  margin-top: 56px;
}

.workflow-col .section-pill {
  margin-bottom: 20px;
}

.workflow-col-kova .problem-list li {
  color: rgba(255, 255, 255, 0.85);
}

.workflow-col-kova .problem-list li::before {
  color: var(--green);
}

.problem-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  counter-reset: problem;
}

.problem-list li {
  counter-increment: problem;
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "DM Mono", monospace;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.65);
}

.problem-list li::before {
  content: counter(problem, decimal-leading-zero);
  color: var(--red);
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding-top: 2px;
}

.problem-resolve {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
}

/* ─── Capability grid (dark section) ─── */

.capability-intro {
  max-width: 56rem;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.section-dark .section-pill-light + h2 {
  margin-top: 20px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.capability-item {
  padding: 44px 36px;
  background: var(--ink);
}

.capability-item h3 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--white);
}

.capability-item p {
  margin: 14px 0 0;
  font-family: "DM Mono", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.52);
}

/* ─── Philosophy / warm section ─── */

.section-warm {
  background: var(--cream-deep);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.philosophy-grid h2 {
  margin-top: 16px;
}

.philosophy-copy {
  padding-top: 8px;
}

.philosophy-copy p {
  margin-top: 0;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

.philosophy-copy p + p {
  margin-top: 20px;
}

/* ─── Pricing includes ─── */

.pricing-includes {
  margin: 20px 0 0;
  padding-left: 0;
  list-style: none;
}

.pricing-includes li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: "DM Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
}

.pricing-includes li::before {
  content: "✓";
  color: var(--green);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-note {
  margin-top: 14px;
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ─── Closing stamp ─── */

.stamp-section {
  padding: 120px 0;
  text-align: center;
}

.stamp-heading {
  margin: 0;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--white);
}

.stamp-heading-muted {
  color: rgba(255, 255, 255, 0.3);
}

.stamp-contact {
  margin-top: 32px;
  font-family: "DM Mono", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
}

.stamp-contact a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.stamp-contact a:hover {
  color: var(--white);
}

/* Download page */

.download-hero {
  padding: 72px 0 80px;
  border-bottom: 1px solid var(--line-soft);
}

.download-hero h1 {
  margin-top: 16px;
  font-size: clamp(3rem, 8vw, 5.5rem);
}

.download-hero p {
  max-width: 44rem;
  margin-top: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.checkout-banner {
  display: none;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(203, 42, 42, 0.22);
  border-radius: 8px;
  background: rgba(203, 42, 42, 0.08);
  box-shadow: 0 8px 24px rgba(232, 0, 11, 0.08);
}

.checkout-banner.is-visible {
  display: block;
}

.checkout-banner h2 {
  margin: 0 0 8px;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.checkout-banner p {
  margin: 0;
  max-width: none;
  font-size: 0.92rem;
  line-height: 1.7;
}

.checkout-banner .checkout-note {
  margin-top: 10px;
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.checkout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.download-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: 48px;
  align-items: start;
  padding: 72px 0 88px;
}

.download-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.download-version {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-soft);
}

.version-number {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 0.9;
}

.version-tag {
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.download-btn-wrap {
  margin: 20px 0;
}

.download-hash {
  margin-top: 14px;
  font-family: "DM Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  word-break: break-all;
}

.download-hash-note {
  display: inline-block;
  margin-top: 2px;
  font-size: 0.62rem;
  opacity: 0.8;
}

.sysreq-grid {
  display: grid;
  gap: 0;
  margin-top: 24px;
}

.sysreq-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: "DM Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sysreq-row span {
  color: var(--ink-soft);
}

.sysreq-row strong {
  text-align: right;
}

.sidebar-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.sidebar-card + .sidebar-card {
  margin-top: 18px;
}

.page-download .sidebar-card h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.page-download .sidebar-card p {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.page-download .sidebar-card a:not(.button) {
  color: var(--red);
  text-decoration: underline;
}

.sidebar-card-action {
  margin-top: 16px;
}

.changelog {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.changelog h2 {
  margin-bottom: 28px;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.changelog-entry {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-soft);
}

.changelog-version {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.changelog-date {
  display: block;
  margin-top: 4px;
  font-family: "DM Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.changelog-body ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.8;
}

.changelog-body li {
  margin-top: 8px;
}

/* Support page */

.support-hero {
  padding: 72px 0 80px;
}

.support-hero h1 {
  margin-top: 16px;
  font-size: clamp(3.5rem, 9vw, 6rem);
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 48px;
  align-items: start;
  padding: 0 0 88px;
}

.contact-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-card p {
  margin-top: 12px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.contact-email {
  display: inline-block;
  margin-top: 22px;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--red);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--red);
}

.contact-email:hover {
  color: var(--red-deep);
  border-color: var(--red-deep);
}

.response-note {
  display: block;
  margin-top: 12px;
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.support-topics {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
}

.support-topics h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.topic-list {
  display: grid;
  gap: 0;
}

.topic-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}

.topic-item span {
  font-family: "DM Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.topic-item a {
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
}

.page-support .sidebar-card + .sidebar-card {
  border-top: 1px solid var(--line-soft);
}

.page-support .sidebar-card h3 {
  margin-bottom: 14px;
  font-size: 1.5rem;
}

.page-support .sidebar-card p {
  margin-top: 10px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

.page-support .sidebar-card .button {
  width: 100%;
  margin-top: 16px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .help-hero-grid,
  .workflow-grid,
  .pricing-grid,
  .help-layout,
  .final-panel,
  .feature-row,
  .workflow-compare {
    grid-template-columns: 1fr;
  }

  .feature-row {
    gap: 16px;
    padding: 34px 0;
  }

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

  .help-sidebar {
    position: static;
  }

  .faq-group {
    padding-top: 48px;
  }

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

  .download-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .changelog-entry {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100vw - 24px, 1180px);
  }

  .nav-account {
    margin-left: auto;
  }

  .nav-toggle {
    display: inline-block;
    order: 1;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 12px;
    left: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--cream);
    border: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a {
    text-align: center;
  }

  .button,
  .button-small {
    width: 100%;
  }

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

  .app-rail {
    flex-direction: row;
    justify-content: center;
    padding: 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .app-panel {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
  }

  .hero-actions,
  .final-actions,
  .footer-row {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 560px) {
  .hero,
  .help-hero {
    padding: 48px 0 52px;
  }

  .section {
    padding: 42px 0;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

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

  .feature-row {
    padding: 28px 0;
  }

  .faq-group {
    padding-top: 42px;
  }

  .pricing-price strong,
  .board-price {
    font-size: 4.8rem;
  }

  .stamp-section {
    padding: 80px 0;
  }

  .canvas-sheet {
    width: 100%;
  }

  .sheet-art {
    inset: 78px 58px 70px;
  }

  .sheet-copy {
    left: 38px;
    width: 42px;
  }
}
