:root {
  --ink: #071a3d;
  --muted: #536079;
  --line: #dbe2f0;
  --paper: #f7f9ff;
  --panel: #ffffff;
  --pine: #0b2b66;
  --pine-2: #071a3d;
  --gold: #ff7a1a;
  --blue: #1368ff;
  --purple: #7c3cff;
  --danger: #9d2b2b;
  --shadow: 0 22px 70px rgba(7, 26, 61, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--paper);
  color: var(--ink);
  margin: 0;
}

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

.site-header,
.app-header {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(246, 244, 238, 0.92);
  border-bottom: 1px solid rgba(23, 33, 27, 0.1);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 16px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  min-width: 190px;
}

.brand-mark {
  align-items: center;
  background: var(--pine);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.nav-links {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 14px;
  gap: 26px;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 12px;
}

.header-link {
  color: var(--pine);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.header-cta,
.button,
.ghost-button {
  align-items: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
}

.header-cta,
.button.primary {
  background: var(--gold);
  color: #15130f;
}

.button.secondary,
.ghost-button {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}

.button.wide {
  width: 100%;
}

.button.wide + .button.wide {
  margin-top: 10px;
}

.hero {
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

.hero-light {
  align-items: center;
  background: linear-gradient(135deg, #f7faff 0%, #ffffff 58%, #fff2e8 100%);
  display: grid;
  gap: clamp(24px, 5vw, 60px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 860px;
  padding: 118px clamp(20px, 5vw, 72px) 64px;
}

.hero-image,
.hero-overlay {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(13, 31, 25, 0.88), rgba(13, 31, 25, 0.66) 42%, rgba(13, 31, 25, 0.18));
}

.hero-content {
  color: #fff;
  max-width: 760px;
  padding: 160px clamp(20px, 5vw, 72px) 70px;
  position: relative;
  z-index: 2;
}

.hero-light .hero-content {
  color: var(--ink);
  max-width: 720px;
  padding: 0;
}

.hero-light h1 {
  font-size: clamp(46px, 6vw, 82px);
}

.hero-light .hero-copy {
  color: var(--muted);
}

.hero-copy.smaller {
  font-size: 18px;
}

.hero-note {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  margin-top: 16px;
  max-width: 560px;
}

.hero-art img,
.supporting-visual img {
  background: #fff;
  border: 1px solid rgba(7, 26, 61, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: block;
  object-fit: contain;
  width: 100%;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  line-height: 1.18;
  margin-bottom: 10px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.5;
  max-width: 680px;
}

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

.proof-row {
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 12px;
  margin-top: 28px;
}

.proof-row span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 8px 12px;
}

.hero-light .proof-row {
  color: var(--muted);
}

.hero-light .proof-row span {
  background: #fff;
  border-color: var(--line);
}

.section,
.problem-band,
.final-cta,
.value-strip {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.problem-band,
.security-section {
  background: #fff;
}

.value-strip,
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding-bottom: 28px;
  padding-top: 28px;
}

.trust-bar {
  padding: 26px clamp(20px, 5vw, 72px);
}

.trust-bar p {
  color: var(--ink);
  font-weight: 900;
  margin-bottom: 14px;
  text-align: center;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.trust-items span {
  background: #f5f8fb;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  padding: 9px 13px;
}

.trust-items span::before {
  color: var(--blue);
  content: "✓ ";
  font-weight: 900;
}

.value-row {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1.4fr);
}

.value-row p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
  margin: 0;
}

.value-row p:first-child {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.05;
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
}

.two-column {
  display: grid;
  gap: clamp(28px, 5vw, 76px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.split-with-image,
.before-after-grid {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.pain-list,
.check-grid,
.plan p,
.steps p,
.setup-panel p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.section-heading {
  max-width: 760px;
}

.section-heading.centered {
  margin: 0 auto;
  text-align: center;
}

.body-large {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.outcome-card-grid,
.builder-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.outcome-card-grid article,
.builder-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.outcome-card-grid span,
.builder-grid span {
  color: var(--gold);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 14px;
}

.outcome-card-grid p,
.builder-grid p,
.timeline-list p,
.lead-box p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.steps,
.plans,
.agent-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.steps article,
.agent-grid article,
.plan,
.form-card,
.status-card,
.setup-workflow {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.steps span {
  align-items: center;
  background: var(--pine);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  margin-bottom: 18px;
  width: 38px;
}

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

.stacked-steps article {
  align-items: flex-start;
  box-shadow: none;
  display: grid;
  gap: 8px 16px;
  grid-template-columns: auto 1fr;
}

.stacked-steps article span {
  grid-row: span 2;
}

.agent-grid article {
  box-shadow: none;
}

.agent-card {
  overflow: hidden;
  position: relative;
}

.agent-card::after {
  border-radius: 999px;
  content: "";
  height: 84px;
  opacity: 0.18;
  position: absolute;
  right: -26px;
  top: -26px;
  width: 84px;
}

.agent-logo {
  align-items: center;
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-size: 22px;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
  width: 48px;
}

.staff-avatar {
  background-image: url("assets/teamlineupstaff.png");
  background-repeat: no-repeat;
  background-size: 300% 300%;
  border: 1px solid rgba(7, 26, 61, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(7, 26, 61, 0.12);
  height: 150px;
  margin-bottom: 18px;
  width: 100%;
}

.staff-avatar.chad { background-position: 0% 0%; }
.staff-avatar.felix { background-position: 50% 0%; }
.staff-avatar.ivy { background-position: 100% 0%; }
.staff-avatar.oz { background-position: 0% 50%; }
.staff-avatar.max { background-position: 50% 50%; }
.staff-avatar.zoe { background-position: 100% 50%; }
.staff-avatar.nina { background-position: 0% 100%; }
.staff-avatar.eli { background-position: 50% 100%; }
.staff-avatar.jax { background-position: 100% 100%; }

.agent-box-mark {
  align-items: center;
  background: linear-gradient(135deg, #0b2b66, #1368ff);
  border: 1px solid rgba(7, 26, 61, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(7, 26, 61, 0.12);
  color: #fff;
  display: inline-flex;
  font-size: 32px;
  font-weight: 950;
  height: 150px;
  justify-content: center;
  margin-bottom: 18px;
  width: 100%;
}

.agent-box-mark.openclaw {
  background: linear-gradient(135deg, #071a3d, #ff7a1a);
}

.agent-box-mark.credits {
  background: linear-gradient(135deg, #17463a, #19b982);
  font-size: 26px;
}

.agent-logo span {
  border: 0;
  color: #fff;
  display: block;
  font-size: 22px;
  line-height: 1;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}

.agent-logo i {
  background: rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  bottom: -12px;
  display: block;
  height: 30px;
  position: absolute;
  right: -10px;
  width: 30px;
}

.agent-role {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.agent-grid h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.agent-card span {
  border-top: 1px solid var(--line);
  color: var(--ink);
  display: block;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  margin-top: 18px;
  padding-top: 14px;
}

.sales-card .agent-logo,
.sales-card::after {
  background: var(--gold);
}

.marketing-card .agent-logo,
.marketing-card::after {
  background: var(--purple);
}

.ops-card .agent-logo,
.ops-card::after {
  background: var(--blue);
}

.production-card .agent-logo,
.production-card::after {
  background: var(--gold);
}

.support-card .agent-logo,
.support-card::after {
  background: var(--gold);
}

.research-card .agent-logo,
.research-card::after {
  background: var(--gold);
}

.custom-card .agent-logo,
.custom-card::after {
  background: var(--blue);
}

.quality-card .agent-logo,
.quality-card::after {
  background: var(--purple);
}

.tester-card .agent-logo,
.tester-card::after {
  background: var(--blue);
}

.catalog-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.timeline-section,
.success-section {
  background: #fff;
}

.timeline-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.timeline-list p {
  border-left: 4px solid var(--gold);
  margin: 0;
  padding: 6px 0 6px 16px;
}

.timeline-list strong {
  color: var(--pine);
  display: block;
  margin-bottom: 3px;
}

.before-after-section,
.faq-section {
  background: #fff;
}

.contrast-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
}

.before-list {
  background: #fff7f4;
}

.after-list {
  background: #f2fbf7;
}

.contrast-list ul,
.faq-grid {
  margin-top: 22px;
}

.why-section {
  background: #f8fbff;
}

.toolbox-line {
  margin-top: 32px;
  text-align: center;
}

.toolbox-line h3 {
  color: var(--pine);
  font-size: clamp(24px, 3vw, 36px);
}

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

.faq-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.faq-grid p,
.final-cta p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.final-cta .fine-print {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  margin-top: 18px;
}

.catalog-page {
  padding-top: 78px;
}

.catalog-hero {
  background: var(--pine-2);
  color: #fff;
  padding: clamp(74px, 9vw, 128px) clamp(20px, 5vw, 72px);
}

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

.catalog-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.5;
  max-width: 760px;
}

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

.agent-detail {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: space-between;
  min-height: 420px;
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.agent-detail::after {
  border-radius: 999px;
  content: "";
  height: 104px;
  opacity: 0.16;
  position: absolute;
  right: -30px;
  top: -30px;
  width: 104px;
}

.agent-detail h2 {
  font-size: 42px;
  margin-bottom: 0;
}

.agent-detail p:not(.agent-role) {
  color: var(--muted);
  line-height: 1.5;
}

.outcome-band {
  background: var(--pine-2);
  color: #fff;
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.outcome-grid {
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.outcome-list {
  display: grid;
  gap: 14px;
}

.outcome-list p {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
  padding-bottom: 14px;
}

.outcome-list strong {
  color: #fff;
}

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

.plans.single-offer {
  grid-template-columns: minmax(0, 640px);
  justify-content: center;
}

.plan {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: space-between;
}

.plan.featured {
  border-color: var(--gold);
}

.plan-kicker {
  color: var(--blue);
  font-weight: 900;
}

.price {
  color: var(--ink);
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 18px;
}

ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

li::before {
  color: var(--blue);
  content: "✓";
  font-weight: 900;
  margin-right: 10px;
}

.check-grid {
  display: grid;
  gap: 12px;
}

.check-grid p {
  border-left: 4px solid var(--gold);
  margin: 0;
  padding: 8px 0 8px 14px;
}

.final-cta {
  background: var(--pine-2);
  color: #fff;
  text-align: center;
}

.center-actions {
  justify-content: center;
}

.lead-section {
  background: #f8fbff;
}

.lead-box {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(24px, 4vw, 42px);
}

.playbook-page {
  padding-top: 78px;
}

.preview-page {
  padding-top: 78px;
}

.playbook-hero {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 58%, #fff7ed 100%);
  padding: clamp(86px, 10vw, 132px) clamp(20px, 5vw, 72px) clamp(58px, 8vw, 96px);
}

.preview-hero {
  background: var(--pine-2);
  color: #fff;
  padding: clamp(86px, 10vw, 132px) clamp(20px, 5vw, 72px) clamp(58px, 8vw, 96px);
}

.preview-hero .hero-copy {
  color: rgba(255, 255, 255, 0.84);
}

.preview-section {
  background: #fff;
}

.preview-caption {
  margin-bottom: 28px;
}

.preview-caption p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.preview-intro {
  background: #f8fbff;
}

.dashboard-preview-img {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: block;
  width: 100%;
}

.dashboard-mock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 760px;
  overflow: hidden;
}

.mock-sidebar {
  background: linear-gradient(180deg, #fff, #f5f8ff);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 16px;
}

.mock-brand {
  align-items: center;
  display: flex;
  font-size: 18px;
  gap: 10px;
  margin-bottom: 18px;
}

.mock-brand span,
.mock-brief span {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  color: var(--gold);
  display: inline-grid;
  font-weight: 900;
  height: 34px;
  place-items: center;
  width: 34px;
}

.mock-sidebar > b {
  background: #eef5ff;
  border-radius: 8px;
  color: var(--pine);
  padding: 12px 14px;
}

.mock-sidebar div:last-child {
  background: #fff;
  border: 1px solid #cfe0ff;
  border-radius: 8px;
  margin-top: auto;
  padding: 14px;
}

.mock-sidebar small,
.mock-sidebar p {
  color: var(--muted);
}

.mock-sidebar div:last-child strong {
  color: var(--blue);
  display: block;
  font-size: 22px;
  margin-top: 4px;
}

.mock-main {
  background: linear-gradient(135deg, #f7faff, #fff7ed);
  display: grid;
  gap: 14px;
  padding: 22px;
}

.mock-hero {
  align-items: center;
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 122, 26, .22), transparent 30%),
    linear-gradient(135deg, rgba(7, 26, 61, .98), rgba(8, 54, 143, .9));
  border-radius: 8px;
  color: #fff;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, .92fr) minmax(260px, .62fr);
  min-height: 230px;
  padding: 26px;
}

.mock-hero img {
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .22);
  display: block;
  height: 190px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.mock-hero .eyebrow {
  color: #9fc2ff;
}

.mock-hero h3 {
  color: #fff;
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: 0;
  line-height: .98;
  margin: 0 0 10px;
  max-width: 650px;
}

.mock-hero p:not(.eyebrow) {
  color: #deebff;
  font-size: 18px;
  line-height: 1.45;
  margin: 0;
  max-width: 620px;
}

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

.mock-brief article,
.mock-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(7, 26, 61, .08);
  padding: 18px;
}

.mock-brief article {
  display: grid;
  gap: 10px;
  grid-template-columns: auto 1fr;
}

.mock-brief strong,
.mock-brief p {
  grid-column: 2;
}

.mock-brief strong {
  font-size: 17px;
}

.mock-brief p {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.4;
  margin: 0;
}

.mock-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: .86fr 1.14fr;
}

.mock-grid.lower {
  grid-template-columns: .92fr 1.08fr;
}

.mock-selected {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 150px 1fr;
}

.mock-avatar {
  background-color: #fff;
  background-image: url("assets/teamlineupstaff.png");
  background-repeat: no-repeat;
  background-size: 300% 300%;
  border: 1px solid #d7e6ff;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(7, 26, 61, .12);
  display: block;
}

.mock-selected > .mock-avatar {
  aspect-ratio: 1;
  width: 150px;
}

.mock-avatar.chad { background-position: 0% 0%; }
.mock-avatar.oz { background-position: 0% 50%; }
.mock-avatar.jax { background-position: 100% 100%; }

.mock-selected h3 {
  color: var(--pine);
  font-size: 42px;
  line-height: 1;
  margin: 0 0 4px;
}

.mock-selected strong {
  color: var(--blue);
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
}

.mock-selected p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 800;
  margin: 0;
}

.mock-head {
  align-items: baseline;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.mock-head h3 {
  font-size: 22px;
  margin: 0;
}

.mock-head span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.mock-staff-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mock-staff-row div {
  background: #f8fbff;
  border: 1px solid #d7e6ff;
  border-radius: 8px;
  display: grid;
  justify-items: center;
  padding: 12px;
  text-align: center;
}

.mock-staff-row .mock-avatar {
  height: 86px;
  margin-bottom: 8px;
  width: 86px;
}

.mock-staff-row strong {
  font-size: 18px;
}

.mock-staff-row small {
  color: var(--muted);
  font-weight: 800;
}

.mock-chat {
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,251,255,.94)),
    url("assets/businessstaff-office-workflow.png") center / cover no-repeat;
}

.mock-chat p {
  background: #f1f5fb;
  border: 1px solid #dfe8f4;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
  margin: 0 0 10px;
  padding: 12px;
}

.mock-chat p.you {
  background: #fff7ed;
  border-color: #fed7aa;
  margin-left: auto;
  max-width: 78%;
}

.mock-board {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mock-board .mock-head {
  grid-column: 1 / -1;
}

.mock-board div:not(.mock-head) {
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 124px;
  padding: 12px;
}

.mock-board b {
  color: var(--blue);
}

.mock-board p {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

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

.preview-notes article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.preview-notes p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.readiness-page {
  background: #f7faf8;
  min-height: 100vh;
  padding-top: 78px;
}

.readiness-hero {
  background: linear-gradient(135deg, #173f35 0%, #0f2d27 58%, #253d68 100%);
  color: #fff;
  padding: clamp(54px, 8vw, 92px) 0;
}

.readiness-hero-grid {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
}

.readiness-hero h1 {
  color: #fff;
  font-size: clamp(38px, 5vw, 64px);
  max-width: 960px;
}

.readiness-hero .hero-copy {
  color: rgba(255, 255, 255, 0.78);
  max-width: 760px;
}

.readiness-status {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 24px;
}

.readiness-status small,
.server-plan-card small {
  color: var(--gold);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.readiness-status strong {
  display: block;
  font-size: 34px;
  margin-bottom: 8px;
}

.readiness-status p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
  margin: 0;
}

.readiness-status.ready {
  background: rgba(33, 132, 92, 0.22);
}

.readiness-status.blocked {
  background: rgba(215, 168, 79, 0.18);
}

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

.readiness-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(23, 33, 27, 0.07);
  padding: clamp(22px, 3vw, 32px);
}

.readiness-panel .section-heading {
  margin-bottom: 22px;
}

.readiness-panel .section-heading h2 {
  font-size: clamp(28px, 3vw, 38px);
}

.readiness-list {
  display: grid;
  gap: 12px;
}

.readiness-item {
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 78px 1fr;
  padding: 16px;
}

.readiness-item span {
  background: #eef6f2;
  border-radius: 999px;
  color: #17463a;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  justify-content: center;
  padding: 8px 10px;
}

.readiness-item.missing span {
  background: #fff4dc;
  color: #7b4d00;
}

.readiness-item strong {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}

.readiness-item p,
.readiness-item em,
.empty-state {
  color: var(--muted);
  display: block;
  font-size: 15px;
  font-style: normal;
  line-height: 1.45;
  margin: 0;
}

.readiness-item em {
  margin-top: 8px;
}

.readiness-infra-section {
  padding-top: 0;
}

.server-plan-grid {
  display: grid;
  gap: 12px;
}

.server-plan-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.server-plan-card strong {
  color: var(--pine);
  display: block;
  font-size: 34px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.server-plan-card p {
  color: var(--muted);
  line-height: 1.45;
}

.server-plan-card b {
  color: var(--blue);
  display: block;
}

.readiness-kit-section {
  padding-top: 0;
}

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

.launch-kit-field {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 9px;
  padding: 16px;
}

.launch-kit-field.required {
  border-color: rgba(215, 168, 79, 0.7);
  background: #fffaf0;
}

.launch-kit-field span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.launch-kit-field.optional span {
  color: var(--muted);
}

.launch-kit-field strong {
  color: var(--pine);
  font-size: 16px;
  overflow-wrap: anywhere;
}

.launch-kit-field code {
  background: #f5f7f4;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #1d2b24;
  display: block;
  font: 800 13px ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  overflow-wrap: anywhere;
  padding: 10px;
}

.launch-kit-field p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

.owner-package-panel {
  display: grid;
  gap: 22px;
}

.owner-package-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

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

.owner-package-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.owner-package-card small {
  color: var(--gold);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.owner-package-card strong {
  color: var(--pine);
  display: block;
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}

.owner-package-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

.command-list {
  display: grid;
  gap: 10px;
}

.command-list h3 {
  margin-bottom: 4px;
}

.command-list code {
  background: #102c26;
  border-radius: 8px;
  color: #f6fbf8;
  display: block;
  font: 800 14px ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  overflow-wrap: anywhere;
  padding: 13px;
}

.owner-console-section {
  padding-top: 0;
}

.owner-console {
  background: #102c26;
  border-radius: 8px;
  color: #f6fbf8;
  display: grid;
  gap: 22px;
  padding: 26px;
}

.owner-console .section-heading {
  margin-bottom: 0;
}

.owner-console .eyebrow {
  color: #f2b84b;
}

.owner-console h2,
.owner-console .section-heading p {
  color: #f6fbf8;
}

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

.owner-console-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  display: grid;
  gap: 11px;
  padding: 16px;
}

.owner-console-card span {
  align-items: center;
  background: #f2b84b;
  border-radius: 8px;
  color: #102c26;
  display: inline-flex;
  font-size: 13px;
  font-weight: 950;
  height: 34px;
  justify-content: center;
  width: 42px;
}

.owner-console-card small {
  color: #d7e2dc;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.owner-console-card h3 {
  color: #fff;
  font-size: 19px;
  line-height: 1.2;
  margin: 0;
}

.owner-console-card code {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: #fff8df;
  display: block;
  font: 800 13px ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  overflow-wrap: anywhere;
  padding: 10px;
}

.owner-console-card p {
  color: #d7e2dc;
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

.owner-console-card b {
  color: #f2b84b;
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.final-proof-gate-section {
  padding-top: 0;
}

.final-proof-gate {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 22px;
  padding: 26px;
}

.final-proof-gate-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
}

.final-proof-gate-cards {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.final-proof-gate-cards article {
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 156px;
  padding: 15px;
}

.final-proof-gate-cards article.locked {
  background: #fff7ed;
  border-color: #fed7aa;
}

.final-proof-gate-cards article.warning {
  background: #fffbe8;
  border-color: #f8e3a0;
}

.final-proof-gate-cards article.ready {
  background: #effaf4;
  border-color: #bfe7cd;
}

.final-proof-gate-cards small,
.final-proof-command-path h3 {
  color: var(--gold);
  display: block;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.final-proof-gate-cards strong {
  color: var(--pine);
  display: block;
  font-size: 19px;
  line-height: 1.22;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}

.final-proof-gate-cards p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

.final-proof-command-path {
  background: #102c26;
  border-radius: 8px;
  color: #f6fbf8;
  display: grid;
  gap: 10px;
  padding: 18px;
}

.final-proof-command-path h3 {
  color: #f2b84b;
  margin: 0;
}

.final-proof-command-path code {
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: #fff8df;
  display: block;
  font: 850 13px ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  overflow-wrap: anywhere;
  padding: 10px;
}

.final-proof-command-path p {
  color: #d7e2dc;
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

.final-proof-command-path b {
  color: #f2b84b;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.operator-page {
  padding-top: 78px;
}

.operator-token-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  padding: 18px;
}

.operator-status-section {
  padding-top: 0;
}

.operator-total-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-bottom: 18px;
}

.operator-total-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.operator-total-card small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.operator-total-card strong {
  color: var(--pine);
  display: block;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 8px;
}

.operator-total-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.operator-table-panel {
  overflow: hidden;
}

.operator-table-wrap {
  overflow-x: auto;
}

.operator-table {
  border-collapse: collapse;
  min-width: 1320px;
  width: 100%;
}

.gateway-retry-panel {
  background: #fffaf0;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  padding: 16px;
}

.gateway-retry-panel.is-clear {
  background: #eef8f2;
  border-color: #bbf7d0;
}

.gateway-retry-panel h3,
.gateway-retry-panel p,
.gateway-retry-panel ul {
  margin: 0;
}

.gateway-retry-panel h3 {
  color: var(--pine);
  font-size: 18px;
}

.gateway-retry-panel p,
.gateway-retry-panel small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.gateway-retry-panel ul {
  display: grid;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.gateway-retry-panel li {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 10px;
}

.automation-health-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.automation-health-grid span {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 10px;
}

.automation-health-grid strong {
  color: var(--pine);
  font-size: 18px;
  overflow-wrap: anywhere;
}

.operator-table th,
.operator-table td {
  border-bottom: 1px solid var(--line);
  padding: 13px 12px;
  text-align: left;
  vertical-align: top;
}

.operator-table th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.operator-table td {
  font-size: 14px;
  font-weight: 800;
}

.operator-table small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-top: 4px;
  max-width: 230px;
  overflow-wrap: anywhere;
}

.operator-status-pill {
  background: #eef4ef;
  border-radius: 999px;
  color: var(--pine);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 9px;
}

.operator-status-pill.failed {
  background: #fff0f0;
  color: var(--danger);
}

.operator-status-pill.block_failed,
.operator-status-pill.missing_master_key,
.operator-status-pill.block_skipped {
  background: #fff0f0;
  color: var(--danger);
}

.operator-status-pill.active {
  background: #e9f7ee;
  color: #166534;
}

.operator-status-pill.provisioning,
.operator-status-pill.deprovisioning,
.operator-status-pill.pending {
  background: #fff6df;
  color: #8a5a00;
}

.operator-status-pill.blocked,
.operator-status-pill.deprovisioned {
  background: #eef2f7;
  color: #334155;
}

.operator-ai-test-section {
  padding-top: 34px;
}

.operator-ai-grid {
  align-items: start;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
}

.operator-ai-form,
.operator-ai-notes,
.operator-ai-results-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  padding: 24px;
}

.compact-heading {
  margin-bottom: 0;
}

.operator-ai-form label,
.provider-test-card label {
  color: var(--ink);
  display: grid;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
}

.operator-ai-form input,
.operator-ai-form textarea,
.provider-test-card input {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  padding: 11px 12px;
  width: 100%;
}

.operator-ai-form textarea {
  line-height: 1.45;
  resize: vertical;
}

.provider-card-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.provider-test-card {
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 16px;
}

.provider-check {
  align-items: center;
  display: flex !important;
  gap: 10px !important;
}

.provider-check input {
  height: 18px;
  width: 18px;
}

.provider-test-card p,
.operator-ai-notes p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
}

.operator-ai-notes {
  box-shadow: none;
  position: sticky;
  top: 96px;
}

.operator-ai-notes article {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 8px;
  padding-bottom: 16px;
}

.operator-ai-notes article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.operator-ai-notes h3 {
  color: var(--pine);
  font-size: 17px;
  margin: 0;
}

.operator-ai-results-wrap {
  margin-top: 22px;
}

.operator-ai-results {
  display: grid;
  gap: 14px;
}

.provider-result-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 16px;
}

.provider-result-card.ok {
  background: #f2fbf5;
  border-color: #bbf7d0;
}

.provider-result-card.failed {
  background: #fff7f7;
  border-color: #fecaca;
}

.provider-result-head,
.provider-result-metrics,
.provider-result-meta {
  align-items: start;
  display: grid;
  gap: 12px;
}

.provider-result-head {
  grid-template-columns: minmax(0, 1fr) auto;
}

.provider-result-head small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.provider-result-head em {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  margin-top: 4px;
}

.provider-result-head h3 {
  color: var(--pine);
  font-size: 20px;
  margin: 2px 0 0;
}

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

.provider-result-metrics span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 5px;
  padding: 10px;
}

.provider-result-metrics small,
.provider-result-meta dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.provider-result-metrics strong,
.provider-result-meta dd {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  margin: 0;
  overflow-wrap: anywhere;
}

.provider-result-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.provider-reply,
.provider-error {
  border-radius: 8px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.5;
  margin: 0;
  overflow-wrap: anywhere;
  padding: 12px;
}

.provider-reply {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}

.provider-error {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: var(--danger);
}

.table-link {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
}

.table-action {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  margin-top: 8px;
  padding: 7px 9px;
}

.table-action:hover {
  border-color: var(--blue);
}

.proof-command-list {
  margin-top: 18px;
}

.muted-cell {
  color: var(--muted);
}

.error-cell {
  color: var(--danger) !important;
}

.empty-state {
  background: #f7faf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.empty-state.success {
  background: #eef8f2;
  color: #17463a;
  font-weight: 900;
}

.playbook-grid {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
}

.playbook-grid h1 {
  color: var(--ink);
  max-width: 820px;
}

.playbook-grid .hero-copy {
  color: var(--muted);
}

.lead-form h2 {
  font-size: 30px;
}

.app-body {
  min-height: 100vh;
}

.app-shell {
  padding: 112px clamp(18px, 5vw, 64px) 48px;
}

.setup-panel {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  margin: 0 auto;
  max-width: 1180px;
}

.panel-copy {
  padding-top: 24px;
}

.panel-copy h1,
.workflow-head h1 {
  color: var(--ink);
  font-size: clamp(34px, 5vw, 58px);
}

.form-card,
.setup-workflow {
  display: grid;
  gap: 18px;
}

.segmented,
.choice-grid,
.template-grid {
  background: #eef1ed;
  border-radius: 8px;
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 4px;
}

.segment,
.choice {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 42px;
}

.segment.active,
.choice:has(input:checked) {
  background: #fff;
}

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

.template-card {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  gap: 6px;
  min-height: 116px;
  padding: 14px;
}

.template-card:has(input:checked) {
  background: #fff;
  border-color: var(--gold);
}

.template-card input {
  height: auto;
  min-height: 0;
  width: auto;
}

.template-card span {
  font-weight: 900;
}

.template-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

label,
fieldset {
  display: grid;
  gap: 8px;
}

fieldset {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

legend,
label {
  font-weight: 800;
}

input,
select,
textarea {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 0 12px;
  width: 100%;
}

textarea {
  min-height: auto;
  padding: 12px;
  resize: vertical;
}

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

.form-message {
  color: var(--muted);
  font-weight: 700;
  min-height: 24px;
}

.form-message.error {
  color: var(--danger);
}

.status-card {
  align-self: start;
}

.status-card dl {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.status-card div {
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
}

.status-card dt {
  color: var(--muted);
  font-weight: 800;
}

.status-card dd {
  font-weight: 900;
  margin: 0;
  text-align: right;
}

.instructions {
  background: #f7f8f4;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}

@media (max-width: 840px) {
  .nav-links {
    display: none;
  }

  .site-header,
  .app-header {
    gap: 12px;
    padding-inline: 16px;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-link {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .hero {
    min-height: 860px;
  }

  .hero-light {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 120px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(13, 31, 25, 0.9), rgba(13, 31, 25, 0.68));
  }

  .hero-content {
    padding-top: 128px;
  }

  .two-column,
  .split-with-image,
  .before-after-grid,
  .outcome-grid,
  .value-row,
  .outcome-card-grid,
  .builder-grid,
  .steps,
  .agent-grid,
  .agent-catalog-grid,
  .plans,
  .setup-panel,
  .form-grid,
  .template-grid,
  .faq-grid,
  .lead-box,
  .playbook-grid,
  .preview-notes,
  .dashboard-mock,
  .mock-brief,
  .mock-grid,
  .mock-grid.lower,
  .mock-board,
  .readiness-hero-grid,
  .readiness-grid,
  .launch-kit-grid,
  .owner-package-grid,
  .owner-console-grid,
  .final-proof-gate-grid,
  .final-proof-gate-cards,
  .operator-total-grid,
  .operator-ai-grid,
  .provider-card-list,
  .provider-result-metrics,
  .provider-result-meta {
    grid-template-columns: 1fr;
  }

  .operator-ai-notes {
    position: static;
  }

  .readiness-item {
    grid-template-columns: 1fr;
  }

  .readiness-panel,
  .readiness-panel .section-heading,
  .readiness-panel .section-heading h2,
  .readiness-panel .section-heading p,
  .readiness-list,
  .readiness-item,
  .readiness-item div,
  .readiness-item span,
  .owner-package-panel,
  .owner-package-grid,
  .owner-package-card,
  .server-plan-grid,
  .server-plan-card {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .readiness-item strong,
  .readiness-item p,
  .readiness-item em,
  .owner-package-card strong,
  .owner-package-card p,
  .readiness-panel .section-heading p {
    overflow-wrap: anywhere;
  }

  .dashboard-mock {
    min-height: 0;
  }

  .mock-sidebar {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .mock-sidebar div:last-child {
    margin-top: 8px;
  }

  .mock-main {
    padding: 14px;
  }

  .mock-hero {
    min-height: 300px;
    padding: 18px;
  }

  .mock-hero h3 {
    font-size: 34px;
  }

  .mock-selected {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .mock-staff-row {
    grid-template-columns: 1fr;
  }

  .lead-box .button {
    width: 100%;
  }
}
