:root {
  --launch-ink: #101820;
  --launch-muted: #5c6873;
  --launch-line: #d9e0e5;
  --launch-paper: #f7f9fa;
  --launch-white: #ffffff;
  --launch-teal: #008f87;
  --launch-teal-dark: #006e68;
  --launch-amber: #ffbe2e;
  --launch-coral: #ef5b4d;
  --launch-blue: #1769aa;
  --launch-shadow: 0 18px 44px rgba(16, 24, 32, 0.12);
}

.launch-page,
.launch-page * {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.launch-page {
  margin: 0;
  min-width: 320px;
  color: var(--launch-ink);
  background: var(--launch-paper);
  font-family: Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

.launch-page img {
  display: block;
  max-width: 100%;
}

.launch-page a {
  color: inherit;
  text-decoration: none;
}

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

.launch-page h1,
.launch-page h2,
.launch-page h3 {
  letter-spacing: 0;
}

.launch-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(217, 224, 229, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.launch-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1180px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
}

.launch-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-weight: 800;
}

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

.launch-links,
.launch-tools {
  display: flex;
  align-items: center;
  gap: 17px;
}

.launch-links {
  margin-left: auto;
  color: #52606b;
  font-size: 14px;
  font-weight: 700;
}

.launch-links a,
.launch-tools a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  white-space: nowrap;
}

.launch-links a:hover,
.launch-links a[aria-current="page"] {
  color: var(--launch-ink);
}

.launch-tools {
  gap: 8px;
}

.launch-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--launch-line);
  border-radius: 6px;
  color: var(--launch-ink);
  background: var(--launch-white);
  cursor: pointer;
}

.launch-menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.launch-menu-toggle span:first-child {
  transform: translateY(-6px);
}

.launch-menu-toggle span:last-child {
  transform: translateY(6px);
}

.launch-header.is-menu-open .launch-menu-toggle span:first-child {
  transform: rotate(45deg);
}

.launch-header.is-menu-open .launch-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.launch-header.is-menu-open .launch-menu-toggle span:last-child {
  transform: rotate(-45deg);
}

.launch-tools a {
  min-width: 44px;
  justify-content: center;
  padding: 0 9px;
  border: 1px solid var(--launch-line);
  border-radius: 6px;
  color: #53616b;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.launch-tools a[aria-current="page"],
.launch-tools a:hover {
  border-color: rgba(0, 143, 135, 0.42);
  color: var(--launch-teal-dark);
  background: #eaf8f6;
}

.launch-hero {
  --hero-image: url("assets/taskable-hero.webp");
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: min(700px, calc(100svh - 126px));
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(7, 16, 24, 0.94) 0%, rgba(7, 16, 24, 0.78) 45%, rgba(7, 16, 24, 0.18) 80%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.launch-hero.creator {
  --hero-image: url("assets/postnova-creator-hero.webp");
  background-position: center 42%;
}

.launch-hero-inner,
.launch-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.launch-hero-copy {
  max-width: 690px;
  padding: 52px 0 58px;
}

.launch-eyebrow {
  margin-bottom: 14px;
  color: var(--launch-teal-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-hero .launch-eyebrow,
.launch-section.dark .launch-eyebrow,
.creator-final-cta .launch-eyebrow {
  color: #70e2d8;
}

.creator .launch-eyebrow {
  color: #ffd260;
}

.creator-theme .launch-section .launch-eyebrow,
.creator-theme .launch-success-panel .launch-eyebrow {
  color: #c43d32;
}

.creator-theme .launch-section.dark .launch-eyebrow,
.creator-theme .creator-final-cta .launch-eyebrow {
  color: #ffd260;
}

.launch-hero h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: 64px;
  line-height: 1.04;
}

.launch-hero .launch-lead {
  max-width: 710px;
  margin-bottom: 0;
  color: #e7edf1;
  font-size: 20px;
  line-height: 1.6;
}

.launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.launch-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 17px;
  border: 1px solid var(--launch-teal-dark);
  border-radius: 6px;
  color: #fff;
  background: var(--launch-teal-dark);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  cursor: pointer;
}

.launch-page .launch-button {
  color: #fff;
}

.launch-button:hover {
  border-color: #005852;
  background: #005852;
}

.creator .launch-button,
.launch-page.creator-theme .launch-button {
  border-color: #bd3b32;
  background: #bd3b32;
}

.creator .launch-button:hover,
.launch-page.creator-theme .launch-button:hover {
  border-color: #9f2f28;
  background: #9f2f28;
}

.launch-page.creator-theme .launch-button.secondary {
  border-color: var(--launch-coral);
  color: #bd3b32;
  background: transparent;
}

.launch-page.creator-theme .launch-button.secondary:hover {
  border-color: #cf3e34;
  color: #fff;
  background: #cf3e34;
}

.launch-page.creator-theme .launch-hero .launch-button.secondary {
  border-color: rgba(255, 255, 255, 0.66);
  color: #fff;
  background: rgba(10, 20, 29, 0.3);
}

.launch-page.creator-theme .launch-hero .launch-button.secondary:hover {
  border-color: #fff;
  background: rgba(10, 20, 29, 0.64);
}

.launch-page.creator-theme .launch-button.dark {
  border-color: var(--launch-ink);
  color: #fff;
  background: var(--launch-ink);
}

.launch-page.creator-theme .launch-button.dark:hover {
  border-color: #2f3a44;
  background: #2f3a44;
}

.launch-button.secondary {
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
  background: rgba(10, 20, 29, 0.3);
}

.launch-button.secondary:hover {
  border-color: #fff;
  background: rgba(10, 20, 29, 0.64);
}

.launch-button.dark {
  border-color: var(--launch-ink);
  color: #fff;
  background: var(--launch-ink);
}

.launch-button.dark:hover {
  border-color: #2f3a44;
  background: #2f3a44;
}

.launch-trust-note {
  display: flex;
  gap: 10px;
  max-width: 710px;
  margin: 28px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: #cad5dc;
  font-size: 13px;
}

.launch-trust-note::before {
  content: "i";
  display: grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.launch-section {
  padding: 78px 0;
  border-top: 1px solid var(--launch-line);
  background: #fff;
}

.launch-section[id] {
  scroll-margin-top: 112px;
}

.launch-section.soft {
  background: #f2f6f7;
}

.launch-section.dark {
  color: #fff;
  background: #111b23;
}

.launch-section.warm {
  background: #fff7df;
}

.launch-section.coral {
  background: #fff0ed;
}

.launch-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.launch-section-head h2,
.launch-form-intro h2,
.launch-hub-intro h1 {
  margin-bottom: 0;
  font-size: 42px;
  line-height: 1.12;
}

.launch-section-head > p,
.launch-form-intro > p,
.launch-hub-intro > p {
  margin-bottom: 0;
  color: var(--launch-muted);
  font-size: 17px;
}

.dark .launch-section-head > p {
  color: #bdcad2;
}

.launch-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.launch-card,
.launch-step,
.launch-package,
.launch-need {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--launch-line);
  border-radius: 8px;
  background: #fff;
}

.launch-card {
  min-height: 240px;
}

.launch-card-number,
.launch-step-number,
.launch-package-label {
  display: block;
  margin-bottom: 30px;
  color: var(--launch-teal-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.creator-theme .launch-card-number,
.creator-theme .launch-step-number,
.creator-theme .launch-package-label {
  color: #c43d32;
}

.launch-card h3,
.launch-step h3,
.launch-package h3,
.launch-need h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.2;
}

.launch-card p,
.launch-step p,
.launch-package p,
.launch-need p {
  margin-bottom: 0;
  color: var(--launch-muted);
}

.launch-step {
  position: relative;
  min-height: 250px;
  border-top: 5px solid var(--launch-coral);
}

.launch-step-number {
  margin-bottom: 38px;
}

.launch-list-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 50px;
  align-items: start;
}

.launch-list-panel h2 {
  margin-bottom: 16px;
  font-size: 42px;
  line-height: 1.12;
}

.launch-checklist {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.launch-checklist li {
  position: relative;
  padding: 15px 0 15px 36px;
  border-top: 1px solid rgba(16, 24, 32, 0.14);
}

.launch-checklist li::before {
  content: "✓";
  position: absolute;
  top: 15px;
  left: 0;
  color: var(--launch-teal-dark);
  font-weight: 900;
}

.creator-theme .launch-checklist li::before {
  color: #c43d32;
}

.launch-package {
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.launch-package.featured {
  border-color: rgba(0, 143, 135, 0.52);
  box-shadow: var(--launch-shadow);
}

.launch-package-label {
  margin-bottom: 18px;
}

.launch-price {
  display: block;
  margin: 8px 0 16px;
  color: var(--launch-blue);
  font-size: 20px;
  font-weight: 800;
}

.launch-package .launch-button {
  width: fit-content;
  margin-top: auto;
}

.launch-package-details {
  display: grid;
  gap: 9px;
  margin: 18px 0 24px;
  padding: 0;
  color: var(--launch-muted);
  font-size: 14px;
  line-height: 1.5;
  list-style: none;
}

.launch-package-details li {
  position: relative;
  padding-left: 18px;
}

.launch-package-details li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--launch-teal-dark);
}

.taskable-pricing-credit {
  margin: 18px 0 0;
  padding: 16px 18px;
  color: var(--launch-muted);
  border: 1px solid rgba(0, 143, 135, 0.24);
  border-radius: 8px;
  background: rgba(0, 143, 135, 0.06);
}

.taskable-pricing-credit strong {
  color: var(--launch-ink);
}

.taskable-pricing-pilot {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 16px;
  padding: 22px 24px;
  border: 1px solid var(--launch-line);
  border-radius: 8px;
  background: #fff;
}

.taskable-pricing-pilot .launch-package-label {
  margin: 0;
}

.taskable-pricing-pilot h3 {
  margin: 0 0 5px;
  font-size: 21px;
  line-height: 1.2;
}

.taskable-pricing-pilot p {
  margin: 0;
  color: var(--launch-muted);
}

.taskable-partner-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 16px;
  padding: 24px;
  border: 1px solid rgba(0, 143, 135, 0.28);
  border-left: 5px solid var(--launch-teal-dark);
  border-radius: 8px;
  background: rgba(0, 143, 135, 0.06);
}

.taskable-partner-note .launch-package-label {
  margin-bottom: 8px;
}

.taskable-partner-note h3 {
  margin: 0 0 7px;
  font-size: 24px;
  line-height: 1.2;
}

.taskable-partner-note p {
  margin: 0;
  color: var(--launch-muted);
}

.taskable-responsibility-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.taskable-responsibility-panel {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.taskable-responsibility-panel h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 28px;
  line-height: 1.2;
}

.taskable-responsibility-panel .launch-checklist li {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.taskable-responsibility-panel .launch-checklist li::before {
  color: #67ddd2;
}

.taskable-form-divider {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--launch-line);
  font-size: 18px;
  line-height: 1.25;
}

.launch-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.launch-fieldset legend {
  margin-bottom: 8px;
  padding: 0;
  font-size: 14px;
  font-weight: 800;
}

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

.taskable-request-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--launch-muted);
  font-size: 13px;
}

.launch-disclaimer {
  padding: 30px;
  border-left: 5px solid var(--launch-amber);
  background: #fff;
}

.launch-disclaimer h2 {
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1.18;
}

.launch-disclaimer p:last-child {
  margin-bottom: 0;
  color: var(--launch-muted);
}

.launch-form-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 52px;
  align-items: start;
}

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

.launch-form-intro h2 {
  margin-bottom: 18px;
}

.launch-form-intro .launch-checklist {
  margin-top: 28px;
}

.launch-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
  padding: 30px;
  border: 1px solid var(--launch-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--launch-shadow);
}

.productops-form-optional {
  grid-column: 1 / -1;
  overflow: hidden;
  border: 1px solid var(--launch-line);
  border-radius: 6px;
  background: var(--launch-paper);
}

.productops-form-optional summary {
  display: grid;
  gap: 3px;
  padding: 15px 17px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}

.productops-form-optional summary small {
  color: var(--launch-muted);
  font-size: 12px;
  font-weight: 600;
}

.productops-form-optional[open] summary {
  border-bottom: 1px solid var(--launch-line);
}

.productops-optional-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
  padding: 20px;
}

.launch-field {
  display: grid;
  gap: 7px;
}

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

.launch-field label,
.launch-field > span {
  font-size: 14px;
  font-weight: 800;
}

.launch-field input,
.launch-field select,
.launch-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #bdc7ce;
  border-radius: 6px;
  color: var(--launch-ink);
  background: #fff;
  font: inherit;
}

.launch-field textarea {
  min-height: 130px;
  resize: vertical;
}

.launch-field input:focus,
.launch-field select:focus,
.launch-field textarea:focus {
  outline: 3px solid rgba(0, 143, 135, 0.19);
  border-color: var(--launch-teal-dark);
}

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

.launch-help {
  color: var(--launch-muted);
  font-size: 12px;
}

.launch-consent {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  grid-column: 1 / -1;
  padding: 15px;
  border: 1px solid var(--launch-line);
  border-radius: 6px;
  background: var(--launch-paper);
  font-size: 13px;
}

.launch-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
}

.launch-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.launch-choice-grid label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  min-height: 44px;
  padding: 10px;
  border: 1px solid var(--launch-line);
  border-radius: 6px;
  background: var(--launch-paper);
  font-size: 13px;
  font-weight: 700;
}

.launch-choice-grid input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
}

.launch-form .launch-button {
  width: fit-content;
  grid-column: 1 / -1;
}

.launch-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.taskable-page-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: 52px;
  line-height: 1.08;
}

.taskable-page-lead,
.taskable-form-note {
  max-width: 760px;
  color: var(--launch-muted);
  font-size: 18px;
}

.taskable-form-note {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  font-size: 14px;
}

.taskable-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--launch-line);
  border-radius: 8px;
  background: #fff;
}

.taskable-report-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  font-size: 15px;
}

.taskable-report-table caption {
  padding: 14px 18px;
  color: var(--launch-muted);
  text-align: left;
  font-weight: 800;
}

.taskable-report-table th,
.taskable-report-table td {
  padding: 15px 18px;
  border-top: 1px solid var(--launch-line);
  text-align: left;
  vertical-align: top;
}

.taskable-report-table th {
  color: #fff;
  background: var(--launch-ink);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.taskable-code-panel {
  padding: 28px;
  border: 1px solid var(--launch-line);
  border-left: 5px solid var(--launch-teal);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--launch-shadow);
}

.taskable-code-panel h3 {
  margin-bottom: 14px;
  font-size: 26px;
  line-height: 1.18;
}

.taskable-code-panel ol {
  margin-bottom: 0;
  padding-left: 24px;
}

.taskable-evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.taskable-evidence {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--launch-line);
  border-top: 5px solid var(--launch-coral);
  border-radius: 8px;
  background: #fff;
}

.taskable-evidence.fixed {
  border-top-color: var(--launch-teal);
}

.taskable-evidence span {
  display: block;
  margin-bottom: 20px;
  color: var(--launch-teal-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.taskable-evidence h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.18;
}

.taskable-evidence p {
  margin-bottom: 0;
  color: var(--launch-muted);
}

.launch-hub-hero {
  color: #fff;
  background: #101a22;
}

.launch-hub-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: 50px;
  align-items: end;
  padding: 74px 0 54px;
}

.launch-hub-intro h1 {
  max-width: 760px;
  font-size: 56px;
}

.launch-hub-intro > p {
  color: #c4d0d7;
}

.launch-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 74px;
}

.launch-product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--launch-ink);
  background: #fff;
}

.launch-product-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.launch-product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.launch-product-card .launch-card-number {
  margin-bottom: 18px;
}

.launch-product-card h2 {
  margin-bottom: 12px;
  font-size: 31px;
  line-height: 1.12;
}

.launch-product-card p {
  margin-bottom: 24px;
  color: var(--launch-muted);
}

.launch-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--launch-teal-dark);
  font-weight: 800;
}

.launch-card-link::after {
  content: "→";
}

.launch-product-card.creator-card .launch-card-link {
  color: #c43d32;
}

.launch-need {
  min-height: 180px;
  border-top: 4px solid var(--launch-blue);
}

.launch-need:nth-child(2) {
  border-top-color: var(--launch-teal);
}

.launch-need:nth-child(3) {
  border-top-color: var(--launch-coral);
}

.launch-need:nth-child(4) {
  border-top-color: var(--launch-amber);
}

.launch-footer {
  color: #d5e0e7;
  background: #08141e;
}

.launch-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  min-height: 116px;
  margin: 0 auto;
}

.launch-footer-brand {
  display: grid;
  gap: 2px;
}

.launch-footer-brand strong {
  color: #fff;
}

.launch-footer-brand span,
.launch-footer-brand a {
  color: #aebdc7;
  font-size: 13px;
}

.launch-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 20px;
  font-size: 14px;
  font-weight: 700;
}

.launch-footer-links a:hover {
  color: #70e2d8;
}

.creator-hero-copy h1 {
  margin-bottom: 10px;
  font-size: 72px;
}

.launch-hero-headline {
  max-width: 760px;
  margin-bottom: 16px;
  color: #fff;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.18;
}

.creator-clarity-grid .launch-card {
  min-height: 205px;
  border-top: 5px solid var(--launch-coral);
}

.creator-clarity-grid .launch-card:nth-child(2) {
  border-top-color: var(--launch-amber);
}

.creator-clarity-grid .launch-card:nth-child(3) {
  border-top-color: var(--launch-teal);
}

.creator-clarity-grid .launch-card:nth-child(4) {
  border-top-color: var(--launch-blue);
}

.creator-clarity-grid .launch-card-number {
  margin-bottom: 18px;
}

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

.creator-copy-stack p:last-child {
  margin-bottom: 0;
}

.creator-cost-list {
  border-top: 1px solid var(--launch-line);
  background: #fff;
}

.creator-cost-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(150px, 0.45fr) minmax(280px, 1.35fr);
  gap: 24px;
  align-items: start;
  margin: 0;
  padding: 22px 18px;
  border-bottom: 1px solid var(--launch-line);
}

.creator-cost-row:nth-child(even) {
  background: #f7f9fa;
}

.creator-cost-row dt,
.creator-cost-row dd {
  margin: 0;
}

.creator-cost-row dt {
  font-weight: 800;
}

.creator-cost-value {
  color: #bd3b32;
  font-size: 18px;
  font-weight: 900;
}

.creator-cost-note {
  color: var(--launch-muted);
}

.creator-selection-note {
  margin-top: 20px;
  padding: 20px;
  border-left: 5px solid var(--launch-coral);
  background: #fff;
  color: var(--launch-muted);
}

.creator-track-grid,
.creator-score-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.creator-track-panel,
.creator-score-panel {
  min-width: 0;
  border: 1px solid var(--launch-line);
  border-top: 5px solid var(--launch-coral);
  border-radius: 8px;
  background: #fff;
}

.creator-track-panel {
  padding: 28px;
}

.creator-track-panel:nth-child(2),
.creator-score-panel:nth-child(2) {
  border-top-color: var(--launch-teal);
}

.creator-track-label {
  display: block;
  margin-bottom: 18px;
  color: #bd3b32;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.creator-track-panel:nth-child(2) .creator-track-label {
  color: var(--launch-teal-dark);
}

.creator-track-panel h3 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.2;
}

.creator-track-panel > p {
  color: var(--launch-muted);
}

.creator-track-panel .launch-checklist {
  margin-top: 20px;
}

.creator-track-footnote {
  margin: 22px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--launch-line);
  color: var(--launch-muted);
  font-size: 14px;
}

.creator-track-note {
  margin: 20px 0 0;
  padding: 18px 20px;
  border-left: 5px solid var(--launch-amber);
  background: #fff;
  color: var(--launch-muted);
}

.creator-score-panel {
  overflow: hidden;
}

.creator-score-header {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: start;
  justify-content: space-between;
  padding: 24px;
  background: #fff7f4;
}

.creator-score-panel:nth-child(2) .creator-score-header {
  background: #eff9f8;
}

.creator-score-header h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.2;
}

.creator-score-total {
  flex: 0 0 auto;
  color: #bd3b32;
  font-size: 18px;
  font-weight: 900;
}

.creator-score-panel:nth-child(2) .creator-score-total {
  color: var(--launch-teal-dark);
}

.creator-score-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.creator-score-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 20px;
  padding: 16px 20px;
  border-top: 1px solid var(--launch-line);
}

.creator-score-list li > div {
  min-width: 0;
}

.creator-score-list h4 {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
}

.creator-score-list strong {
  color: #bd3b32;
  white-space: nowrap;
}

.creator-score-panel:nth-child(2) .creator-score-list strong {
  color: var(--launch-teal-dark);
}

.creator-score-list p {
  margin: 5px 0 0;
  color: var(--launch-muted);
  font-size: 14px;
}

.creator-score-gate {
  margin: 0;
  padding: 18px 20px;
  border-top: 1px solid var(--launch-line);
  background: #f7f9fa;
  color: var(--launch-muted);
  font-size: 14px;
}

.creator-review-summary {
  display: grid;
  grid-template-columns: minmax(230px, 0.65fr) minmax(0, 1.35fr);
  gap: 36px;
  align-items: start;
  margin-top: 26px;
  padding: 24px 26px;
  border-left: 5px solid var(--launch-teal);
  background: #f2f6f7;
}

.creator-review-summary h3 {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.2;
}

.creator-review-summary p {
  margin-bottom: 10px;
  color: var(--launch-muted);
}

.creator-review-summary p:last-child {
  margin-bottom: 0;
}

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

.creator-fit-panel {
  padding: 28px;
  border: 1px solid var(--launch-line);
  border-top: 5px solid var(--launch-teal);
  border-radius: 8px;
  background: #fff;
}

.creator-fit-panel.not-fit {
  border-top-color: var(--launch-coral);
}

.creator-fit-panel h3 {
  margin-bottom: 18px;
  font-size: 28px;
}

.creator-fit-panel .launch-checklist li::before {
  color: var(--launch-teal-dark);
}

.creator-fit-panel.not-fit .launch-checklist li::before {
  content: "×";
  color: #bd3b32;
}

.creator-faq,
.taskable-faq {
  display: grid;
  gap: 10px;
}

.creator-faq details,
.taskable-faq details {
  border: 1px solid var(--launch-line);
  border-radius: 8px;
  background: #fff;
}

.creator-faq summary,
.taskable-faq summary {
  position: relative;
  min-height: 64px;
  padding: 18px 54px 18px 20px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.creator-faq summary::-webkit-details-marker,
.taskable-faq summary::-webkit-details-marker {
  display: none;
}

.creator-faq summary::after,
.taskable-faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  color: #bd3b32;
  font-size: 26px;
  transform: translateY(-50%);
}

.creator-faq details[open] summary::after,
.taskable-faq details[open] summary::after {
  content: "−";
}

.creator-faq details p,
.taskable-faq details p {
  margin: 0;
  padding: 10px 54px 20px 20px;
  color: var(--launch-muted);
}

.creator-consent-stack {
  display: grid;
  grid-column: 1 / -1;
  gap: 10px;
}

.creator-consent-stack .launch-consent {
  grid-column: auto;
}

.creator-form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--launch-muted);
  font-size: 13px;
}

.creator-final-cta {
  color: #fff;
  background: #111b23;
}

.creator-final-cta .launch-section-head {
  margin-bottom: 0;
}

.creator-final-cta .launch-section-head > p {
  color: #bdcad2;
}

.creator-payment-detail {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid var(--launch-line);
  border-bottom: 1px solid var(--launch-line);
}

.creator-payment-detail div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.creator-payment-detail span {
  color: var(--launch-muted);
}

.creator-payment-detail strong {
  text-align: right;
}

.launch-success {
  display: grid;
  min-height: calc(100svh - 188px);
  place-items: center;
  padding: 70px 20px;
  background: #edf4f5;
}

.launch-success-panel {
  width: min(680px, 100%);
  padding: 44px;
  border: 1px solid var(--launch-line);
  border-top: 6px solid var(--launch-teal);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--launch-shadow);
}

.creator-theme .launch-success-panel {
  border-top-color: var(--launch-coral);
}

.launch-success-panel h1 {
  margin-bottom: 16px;
  font-size: 42px;
  line-height: 1.12;
}

.launch-success-panel p {
  color: var(--launch-muted);
}

.product-trio {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.product-trio .service-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
}

.product-trio .service-card p {
  margin-bottom: 22px;
}

.product-trio .home-product-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: #135f94;
  font-size: 0.9rem;
  font-weight: 800;
}

.product-trio .home-product-cta::after {
  content: "→";
}

.productops-page {
  background: #f4f8fb;
}

.productops-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 76px;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(13, 35, 59, 0.98) 0%, rgba(13, 35, 59, 0.92) 45%, rgba(24, 105, 154, 0.82) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 76px);
}

.productops-hero::after {
  content: "";
  position: absolute;
  right: -7vw;
  bottom: -90px;
  width: min(620px, 58vw);
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.productops-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  gap: 58px;
  align-items: center;
}

.productops-hero-copy h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: 58px;
  line-height: 1.05;
}

.productops-hero .launch-lead {
  max-width: 760px;
  color: #e7f0f5;
  font-size: 20px;
}

.productops-record,
.productops-record-card {
  border: 1px solid rgba(217, 224, 229, 0.9);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--launch-shadow);
}

.productops-record {
  color: var(--launch-ink);
  padding: 24px;
}

.productops-record-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--launch-line);
}

.productops-record-head span,
.productops-record-grid span,
.productops-record-card dt {
  display: block;
  color: var(--launch-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.productops-record-head strong {
  display: block;
  margin-top: 4px;
  color: #0d2f4b;
  font-size: 18px;
  line-height: 1.2;
}

.productops-record-head mark {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 9px;
  border-radius: 6px;
  color: #0d695e;
  background: #dff8f4;
  font-size: 12px;
  font-weight: 800;
}

.productops-meter {
  height: 10px;
  margin: 20px 0;
  overflow: hidden;
  border-radius: 99px;
  background: #e7edf2;
}

.productops-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1769aa, #00a7a0);
}

.productops-record-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.productops-record-grid div {
  min-width: 0;
  padding: 13px;
  border: 1px solid #e3ebf0;
  border-radius: 8px;
  background: #f5f8fa;
}

.productops-record-grid strong {
  display: block;
  margin-top: 4px;
  color: #0d2f4b;
  line-height: 1.25;
}

.productops-gap {
  margin: 14px 0 0;
  padding: 13px 14px;
  border-left: 4px solid var(--launch-amber);
  border-radius: 6px;
  color: #5d410d;
  background: #fff8e7;
  font-size: 13px;
}

.productops-outcome-strip,
.productops-example-grid {
  display: grid;
  gap: 16px;
}

.productops-outcome-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.productops-outcome {
  min-height: 142px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.productops-outcome strong {
  display: block;
  margin-bottom: 8px;
  color: #78e4dc;
  font-size: 18px;
}

.productops-outcome span {
  color: #d7e4ec;
}

.launch-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.productops-flow .launch-step {
  min-height: 285px;
}

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

.productops-record-card {
  overflow: hidden;
}

.productops-record-card h3 {
  margin: 0;
  padding: 19px 22px;
  color: #fff;
  background: #102233;
  font-size: 22px;
  line-height: 1.2;
}

.productops-record-card dl {
  margin: 0;
}

.productops-record-card dl div {
  display: grid;
  grid-template-columns: minmax(150px, 0.38fr) minmax(0, 1fr);
  border-top: 1px solid var(--launch-line);
}

.productops-record-card dt,
.productops-record-card dd {
  margin: 0;
  padding: 14px 18px;
}

.productops-record-card dd {
  color: #17283a;
  font-weight: 700;
}

.productops-fit-panel {
  color: var(--launch-ink);
  border-color: var(--launch-line);
  background: #fff;
}

.productops-fit-panel h3 {
  color: var(--launch-ink);
}

.productops-fit-panel .launch-checklist li {
  border-top-color: rgba(16, 24, 32, 0.14);
}

.productops-fit-panel .launch-checklist li::before {
  color: var(--launch-teal-dark);
}

.productops-negative-list li::before,
.productops-not-fit .launch-checklist li::before {
  content: "×";
  color: #bd3b32;
}

.productops-compact-card {
  min-height: 230px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

.productops-compact-card h3 {
  color: #fff;
}

.productops-compact-card p {
  color: #cbd8e0;
}

.productops-price-note {
  margin-top: 16px;
}

.productops-error-summary {
  grid-column: 1 / -1;
  padding: 14px 16px;
  border: 1px solid rgba(189, 59, 50, 0.35);
  border-left: 5px solid #bd3b32;
  border-radius: 8px;
  color: #7f231d;
  background: #fff0ed;
}

.productops-error-summary p {
  margin: 0 0 8px;
  font-weight: 800;
}

.productops-error-summary ul {
  margin: 0;
  padding-left: 18px;
}

.productops-form [aria-invalid="true"] {
  border-color: #bd3b32;
  box-shadow: 0 0 0 3px rgba(189, 59, 50, 0.12);
}

@media (max-width: 700px) {
  .productops-optional-grid {
    grid-template-columns: 1fr;
    padding: 16px;
  }
}

.productops-card-visual {
  display: grid;
  align-content: end;
  min-height: 220px;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 35, 51, 0.96), rgba(23, 105, 170, 0.86)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.12) 0 1px, transparent 1px 56px);
}

.productops-card-visual span {
  display: block;
  width: fit-content;
  margin-bottom: 42px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.productops-card-visual strong {
  font-size: 25px;
  line-height: 1.1;
}

.productops-card-visual em {
  margin-top: 8px;
  color: #d7e8ef;
  font-style: normal;
}

@media (max-width: 980px) {
  .launch-nav {
    position: relative;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 9px 0;
  }

  .launch-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .launch-links {
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    left: 0;
    z-index: 4;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    width: auto;
    margin: 0;
    padding: 10px;
    border: 1px solid var(--launch-line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--launch-shadow);
  }

  .launch-header.is-menu-open .launch-links {
    display: grid;
  }

  .launch-links a {
    min-height: 42px;
    padding: 7px 10px;
    border-radius: 4px;
  }

  .launch-links a:hover,
  .launch-links a[aria-current="page"] {
    background: #eef5f6;
  }

  .launch-hero h1 {
    font-size: 52px;
  }

  .launch-grid.four,
  .launch-grid.five,
  .launch-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .productops-hero-grid,
  .productops-outcome-strip {
    grid-template-columns: 1fr;
  }

  .productops-hero-copy h1 {
    font-size: 50px;
  }

  .launch-product-card:last-child {
    grid-column: 1 / -1;
  }

  .launch-product-card:last-child img {
    aspect-ratio: 16 / 7;
  }

  .launch-form-layout,
  .launch-list-panel {
    grid-template-columns: 1fr;
  }

  .launch-form-intro {
    position: static;
  }

  .creator-cost-row {
    grid-template-columns: minmax(170px, 0.7fr) minmax(130px, 0.4fr) minmax(240px, 1fr);
  }

  .creator-score-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .launch-nav,
  .launch-hero-inner,
  .launch-inner,
  .launch-footer-inner {
    width: min(100% - 28px, 1180px);
  }

  .launch-brand span {
    display: none;
  }

  .launch-tools {
    margin-left: 0;
  }

  .launch-links {
    grid-template-columns: 1fr;
  }

  .launch-links a {
    justify-content: flex-start;
    min-height: 42px;
    white-space: nowrap;
    text-align: left;
  }

  .launch-hero {
    min-height: 610px;
    background-position: 61% center;
  }

  .launch-hero.creator {
    background-position: 62% center;
  }

  .launch-hero-copy {
    padding: 56px 0 64px;
  }

  .launch-hero h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  .creator-hero-copy h1 {
    font-size: 46px;
  }

  .launch-hero-headline {
    font-size: 25px;
  }

  .launch-hero .launch-lead {
    font-size: 18px;
  }

  .launch-section {
    padding: 58px 0;
  }

  .launch-section-head,
  .launch-hub-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .launch-section-head h2,
  .launch-form-intro h2,
  .launch-list-panel h2,
  .launch-hub-intro h1 {
    font-size: 34px;
  }

  .launch-grid.two,
  .launch-grid.three,
  .launch-grid.four,
  .launch-grid.five,
  .launch-product-grid,
  .product-trio,
  .taskable-responsibility-grid,
  .productops-example-grid {
    grid-template-columns: 1fr !important;
  }

  .productops-hero {
    padding: 62px 0;
  }

  .productops-hero-copy h1 {
    font-size: 39px;
  }

  .productops-record-card dl div {
    grid-template-columns: 1fr;
  }

  .productops-record-card dt {
    padding-bottom: 3px;
  }

  .productops-record-card dd {
    padding-top: 3px;
  }

  .creator-fit-grid {
    grid-template-columns: 1fr;
  }

  .creator-track-grid,
  .creator-score-grid,
  .creator-review-summary {
    grid-template-columns: 1fr;
  }

  .creator-review-summary {
    gap: 14px;
  }

  .creator-cost-row {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 18px 14px;
  }

  .creator-cost-value {
    margin: 2px 0 8px !important;
  }

  .launch-product-card:last-child {
    grid-column: auto;
  }

  .launch-product-card:last-child img {
    aspect-ratio: 16 / 10;
  }

  .launch-card,
  .launch-step,
  .launch-package,
  .launch-product-card,
  .launch-need {
    min-height: auto;
  }

  .launch-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .launch-choice-grid {
    grid-template-columns: 1fr;
  }

  .taskable-partner-note {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }

  .taskable-partner-note .launch-button {
    width: fit-content;
  }

  .launch-field.full,
  .launch-consent,
  .launch-form .launch-button,
  .taskable-form-note {
    grid-column: auto;
  }

  .creator-consent-stack,
  .creator-form-note {
    grid-column: auto;
  }

  .creator-faq summary,
  .taskable-faq summary {
    padding: 16px 48px 16px 16px;
    font-size: 16px;
  }

  .creator-faq details p,
  .taskable-faq details p {
    padding: 10px 16px 18px;
  }

  .creator-payment-detail div {
    display: grid;
    gap: 2px;
  }

  .creator-payment-detail strong {
    text-align: left;
  }

  .taskable-page-hero h1 {
    font-size: 38px;
  }

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

  .taskable-pricing-pilot {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }

  .taskable-pricing-pilot .launch-button {
    width: fit-content;
  }

  .launch-footer-inner {
    display: grid;
    padding: 28px 0;
  }

  .launch-footer-links {
    justify-content: flex-start;
  }

  .launch-success-panel {
    padding: 28px 22px;
  }

  .launch-success-panel h1 {
    font-size: 34px;
  }
}

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

/* Commercial-readiness pass: keep the product chooser compact and evidence-led. */
.launch-hub-intro {
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  max-width: 880px;
  padding: 62px 0 38px;
}

.launch-hub-intro h1 {
  font-size: 54px;
}

.launch-hub-intro > p {
  max-width: 780px;
  color: #d7e1e6;
  font-size: 17px;
}

.launch-product-grid {
  padding-bottom: 58px;
}

.launch-product-card {
  min-height: 470px;
}

.launch-product-card img,
.productops-card-visual {
  height: 220px;
  aspect-ratio: auto;
  object-fit: cover;
}

.launch-product-card-body {
  padding: 22px;
}

.launch-product-card .launch-card-number {
  margin-bottom: 12px;
}

.launch-product-card p {
  margin-bottom: 18px;
}

.productops-outcome-strip {
  margin-top: 28px;
}

.productops-sample-actions {
  margin-top: 24px;
}

@media (max-width: 720px) {
  .launch-hub-intro {
    padding: 44px 0 30px;
  }

  .launch-hub-intro h1 {
    font-size: 36px;
    line-height: 1.12;
  }

  .launch-product-grid {
    gap: 12px;
    padding-bottom: 42px;
  }

  .launch-product-card {
    min-height: 0;
  }

  .launch-product-card img,
  .productops-card-visual {
    height: 160px;
    aspect-ratio: auto;
  }
}
