@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Space+Grotesk:wght@400;500;700&display=swap');

:root {
  --bg: #f7f0e4;
  --bg-strong: #fff9f1;
  --ink: #172025;
  --muted: #5f696f;
  --line: rgba(23, 32, 37, 0.1);
  --card: rgba(255, 251, 245, 0.86);
  --card-strong: rgba(255, 255, 255, 0.76);
  --accent: #c35a23;
  --accent-deep: #8e3811;
  --teal: #0d6e69;
  --teal-soft: rgba(13, 110, 105, 0.1);
  --danger: #b34031;
  --shadow: 0 24px 60px rgba(63, 40, 15, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(195, 90, 35, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(13, 110, 105, 0.14), transparent 22%),
    linear-gradient(180deg, #fbf5ea 0%, #f2eadc 52%, #ebdfcc 100%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 24px 0 44px;
}

.narrow-shell {
  width: min(860px, calc(100vw - 32px));
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.76);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-nav a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-lockup strong,
.hero-simple h1,
.sales-card h2,
.report-panel h1,
.report-panel h2,
.job-status-card h2 {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
}

.brand-lockup small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff8f1;
  background: linear-gradient(135deg, var(--accent) 0%, var(--teal) 100%);
}

.topbar-note,
.hero-actions,
.product-actions,
.snapshot-metrics,
.report-highlight-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.pill-muted {
  background: rgba(23, 32, 37, 0.06);
  color: var(--muted);
}

.pill-live {
  background: rgba(13, 110, 105, 0.12);
  color: var(--teal);
}

.pill-danger {
  background: rgba(179, 64, 49, 0.12);
  color: var(--danger);
}

.badge {
  width: fit-content;
  margin: 0 0 8px;
  background: rgba(195, 90, 35, 0.1);
  color: var(--accent-deep);
}

.eyebrow,
.meta-label {
  margin: 0;
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

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

.button:disabled {
  cursor: not-allowed;
  opacity: 0.56;
  transform: none;
}

.button-wide {
  width: 100%;
}

.button-primary {
  color: #fff8f2;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 16px 30px rgba(142, 56, 17, 0.22);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.56);
}

.hero-spotlight,
.hero-simple,
.sales-card,
.flow-section,
.jobs-section,
.report-panel,
.job-status-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero-spotlight,
.hero-simple,
.sales-card,
.flow-section,
.jobs-section,
.report-panel,
.job-status-card {
  padding: 28px;
}

.hero-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 20px;
  margin-top: 26px;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.95), rgba(255, 250, 244, 0.82)),
    radial-gradient(circle at top right, rgba(13, 110, 105, 0.1), transparent 28%);
}

.hero-simple {
  margin-top: 26px;
}

.hero-main h1,
.hero-simple h1 {
  margin: 12px 0 14px;
  max-width: 14ch;
  font-size: clamp(42px, 6.4vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.hero-text,
.value-lead,
.snapshot-headline,
.product-hint,
.section-note,
.report-headline,
.product-summary,
.job-main p {
  color: var(--muted);
  line-height: 1.68;
}

.hero-simple-text {
  max-width: 62ch;
  font-size: 18px;
}

.hero-big-text {
  max-width: 58ch;
  font-size: 20px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(23, 32, 37, 0.08);
}

.hero-playbook {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(23, 32, 37, 0.08);
  background: rgba(255, 255, 255, 0.62);
}

.playbook-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.playbook-list article,
.flow-grid article,
.signal-proof article,
.report-facts article {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(23, 32, 37, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.playbook-list span,
.flow-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  background: var(--teal-soft);
  color: var(--teal);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

.playbook-list h3,
.flow-grid h3 {
  margin: 12px 0 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
}

.playbook-list p,
.flow-grid p,
.signal-proof p {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

.flash-banner {
  margin-top: 16px;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(195, 90, 35, 0.12);
  border: 1px solid rgba(195, 90, 35, 0.18);
  color: var(--accent-deep);
  box-shadow: var(--shadow);
}

.product-stack,
.product-showcase,
.value-grid,
.signal-proof,
.sales-meta,
.report-layout,
.report-summary-strip,
.report-cta-meta {
  display: grid;
  gap: 18px;
}

.product-stack {
  margin-top: 24px;
}

.product-showcase {
  margin-top: 24px;
  gap: 24px;
}

.sales-card {
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.94), rgba(255, 250, 244, 0.84)),
    radial-gradient(circle at top right, rgba(195, 90, 35, 0.08), transparent 32%);
}

.sales-card-x {
  background:
    linear-gradient(180deg, rgba(245, 255, 253, 0.94), rgba(245, 255, 253, 0.84)),
    radial-gradient(circle at top right, rgba(13, 110, 105, 0.12), transparent 32%);
}

.sales-card-head,
.sample-tease-head,
.section-head,
.job-row,
.job-status-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.sales-card h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.02;
}

.value-lead {
  margin: 12px 0 0;
  max-width: 60ch;
  font-size: 18px;
}

.price-box {
  min-width: 150px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(23, 32, 37, 0.05);
  text-align: right;
}

.price-box strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 34px;
  line-height: 1;
}

.price-box span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.signal-proof {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.signal-proof article strong,
.report-facts article strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.45;
}

.signal-proof article p {
  margin-top: 8px;
}

.value-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.value-panel,
.sample-tease,
.sales-meta article,
.report-summary-strip article,
.report-cta-meta > div,
.highlight-card,
.job-status-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 32, 37, 0.08);
  background: var(--card-strong);
}

.value-panel h3,
.sample-tease h3,
.section-head h2,
.report-panel h2,
.job-status-card h2 {
  margin: 0;
  font-size: 24px;
}

.mini-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(23, 32, 37, 0.08);
}

.mini-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.sales-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.sales-meta article strong,
.report-summary-strip article strong,
.report-cta-meta strong,
.highlight-card strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.5;
}

.sample-tease {
  margin-top: 18px;
}

.sample-tease-head h3 {
  margin-top: 6px;
}

.sample-tease-head a,
.job-side a {
  font-weight: 700;
  text-decoration: none;
}

.snapshot-metrics {
  margin-top: 16px;
}

.snapshot-metrics article {
  min-width: 160px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(23, 32, 37, 0.08);
  background: rgba(255, 255, 255, 0.56);
}

.snapshot-metrics span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.snapshot-metrics strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
}

.product-actions {
  margin-top: 18px;
}

.product-hint {
  margin: 12px 0 0;
}

.jobs-section {
  margin-top: 24px;
}

.flow-section {
  margin-top: 24px;
}

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

.section-head-tight {
  align-items: end;
}

.jobs-board {
  margin-top: 18px;
}

.jobs-board-compact .job-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.job-row {
  padding: 18px 0;
  border-bottom: 1px solid rgba(23, 32, 37, 0.08);
}

.job-main h3,
.report-panel h1 {
  margin: 0;
}

.job-side {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 28px 0 6px;
  color: var(--muted);
  text-align: center;
}

.report-layout {
  margin-top: 24px;
}

.report-layout-split {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
}

.report-panel-wide {
  grid-column: 1 / -1;
}

.report-hero-panel {
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.94), rgba(255, 250, 244, 0.84)),
    radial-gradient(circle at top right, rgba(195, 90, 35, 0.08), transparent 34%);
}

.report-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.report-facts {
  display: grid;
  gap: 14px;
}

.report-panel h1 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.97;
}

.report-headline {
  margin: 14px 0 0;
  font-size: 18px;
}

.report-summary-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.report-cta-card {
  position: sticky;
  top: 20px;
  align-self: start;
}

.report-cta-card h2 {
  font-size: clamp(28px, 3.3vw, 40px);
  line-height: 1.02;
}

.report-cta-meta {
  margin-top: 18px;
}

.report-highlight-grid {
  margin-top: 18px;
}

.highlight-card {
  min-width: 220px;
  flex: 1 1 220px;
}

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

.repo-table {
  width: 100%;
  border-collapse: collapse;
}

.repo-table th,
.repo-table td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid rgba(23, 32, 37, 0.08);
}

.repo-table th {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.checkout-layout {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.job-status-card {
  margin-top: 18px;
}

@media (max-width: 960px) {
  .hero-spotlight,
  .report-layout-split,
  .report-hero-grid,
  .signal-proof,
  .value-grid,
  .sales-meta,
  .report-summary-strip,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .report-cta-card {
    position: static;
  }

  .topbar,
  .topbar-nav,
  .sales-card-head,
  .sample-tease-head,
  .section-head,
  .job-row,
  .job-status-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100vw - 20px, 1120px);
    padding-top: 16px;
  }

  .hero-simple,
  .sales-card,
  .jobs-section,
  .report-panel,
  .job-status-card {
    padding: 22px;
  }

  .hero-simple h1,
  .report-panel h1 {
    max-width: none;
  }

  .price-box,
  .snapshot-metrics article,
  .highlight-card {
    width: 100%;
  }
}
